/* :: HEADER :: */
.header {
	padding: 30px 0 50px;
	background: rgb(152,221,202);
	background: linear-gradient(0deg, rgba(152,221,202,1) -20%, rgba(173,232,216,1) 15%, rgba(173,232,216,1) 54%, rgba(152,221,202,1) 100%);
	overflow: hidden;
  }
  @media only screen and (max-width: 767.98px) {
	.header {
	  padding: 70px 0;
	}
  }
  
  /* navigator */
  .header .navigator {
	margin-bottom: 100px;
	font-family: var(--secondary-font);
  }
  
  /* title */
  .header .navigator .title {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	color: var(--darkBlue);
	margin-right: 45px;
  }
  .header .navigator .title::before {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: var(--darkBlue);
	right: -24px;
  }
  
  /* item */
  .header .navigator .item {
	font-size: 15px;
	font-weight: 500;
	color: var(--darkBlue);
	border-bottom: 1px solid transparent;
  }
  .header .navigator .item.active {
	font-weight: 600;
	border-bottom-color: var(--darkBlue);
   }
  .header .navigator .item:not(:last-child) {
	margin-right: 25px;
  }
  .header .navigator .item:hover {
	border-bottom-color: var(--darkBlue);
  }
  
  /* title-5 */
  .header .title-5 {
	font-size: 17px;
	font-family: var(--secondary-font);
	color: var(--darkBlue);
	font-weight: 500;
	margin-bottom: 10px;
  }
  
  /* title-5 */
  .header .title-1 {
	font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
	font-family: var(--primary-font);
	font-weight: 700;
	color: var(--darkBlue);
	line-height: 1.1;
	margin-bottom: 30px;
  }
  
  /* para-1 */
  .header .para-1 {
	color: var(--darkBlue);
  }
  
  /* hero */
  .header .hero {
	position: absolute;
	bottom: -100px;
	left: 50%;
	width: 800px;
  }
  @media only screen and (max-width: 1199.98px) {
	.header .hero {
	  left: 60%;
	  width: 700px;
	}
  }
  @media only screen and (max-width: 991.98px) {
	.header .hero {
	  display: none !important
	}
  }
  /* ----------------------------------- */
  
  /* :: SECTION I :: */
  .se-i {
	padding: 60px 0;
  }
  
  /* title-1 */
  .se-i .title-1 {
	font-size: clamp(2.01rem,calc(.5rem + 1.9004vw),3.247rem);
	color: #fff;
	line-height: 1.1;
  }
  .light-theme .se-i .title-1 {
	color: var(--darkBlue);
  }
  
  
  /* circle */
  .se-i .circle {
	position: relative;
	width: 100%;
	aspect-ratio: 1/1;
	background-color: var(--semi-dark-2);
	border-radius: 50%;
  }
  .se-i .circle:hover {
	background-color: #aae6d6;
  }
  .light-theme .se-i .circle {
	background-color: var(--light);
  }
  .light-theme .se-i .circle:hover {
	background-color: #aae6d6;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-i .circle {
	  border-radius: 0;
	  background-color: transparent;
	  aspect-ratio: unset;
	}
	.light-theme .se-i .circle,
	.light-theme .se-i .circle:hover {
	  background-color: transparent;
	}
  }
  
  /* icon */
  .se-i .circle .icon {
	width: 80px;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-i .circle .icon {
	  width: 70px;
	}
  }
  @media only screen and (max-width: 767.98px) {
	.se-i .circle .icon {
	  width: 50px;
	}
  }
  
  /* text */
  .se-i .circle .text {
	position: absolute;
	left: 4px;
	top: 4px;
	right: 4px;
	bottom: 4px;
	background-color: var(--darkBlue);
	padding: 20px;
	border-radius: 50%;
	overflow: hidden;
	font-size: 16px;
	font-family: var(--third-font);
	font-weight: 700;
	color: #fff;
	opacity: 0;
	z-index: 2;
  }
  .light-theme .se-i .circle .text {
	background-color: #fff;
	color: var(--darkBlue);
  }
  .se-i .circle:hover .text {
	opacity: 1;
  }
  @media only screen and (max-width: 1199.98px) {
	.se-i .circle .text {
	  position: unset;
	  opacity: unset;
	  background-color: unset;
	  padding: 0;
	  border-radius: 0;
	  font-weight: 500;
	  font-size: 14px;
	}
	.light-theme .se-i .circle .text {
	  background-color: transparent;
	}
  }
  /* ----------------------------------- */
  
  /* :: PLANS SECTION :: */
  .plans-sec .plans-toggler .buttons {
	background-color: var(--semi-dark);
	padding: 8px;
	border-radius: 50px;
  }
  .light-theme .plans-sec .plans-toggler .buttons {
	background-color: #fff;
  }
  .plans-sec .plans-toggler button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--semi-dark);
	border: 0;
	font-size: 14px;
	font-family: var(--secondary-font);
	font-weight: 500;
	color: #fff;
	padding: 10px 20px;
	border-radius: 50px;
	transition: all .15s ease;
  }
  .light-theme .plans-sec .plans-toggler button {
	background-color: #fff;
	color: var(--darkBlue);
  }
  .plans-sec .plans-toggler button.active {
	background-color: var(--primary);
	color: #fff;
  }
  
  /* plan */
  .plans-sec .plans .plan {
	position: relative;
	padding: 40px;
	background-color: var(--semi-dark-3);
	border: 1px solid var(--darkBlue);
	border-radius: 12px;
	height: 100%;
	z-index: 2
  }
  .light-theme .plans-sec .plans .plan {
	background-color: #fff;
	border-color: var(--border);
  }
  
  /* popular-box */
  .plans-sec .plans .plan .popular-box {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #000000;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
  }
  .light-theme .plans-sec .plans .plan .popular-box {
	background-color: #fff;
  }
  .plans-sec .plans .plan .popular-box::before {
	position: absolute;
	content: '';
	left: -4px;
	top: -4px;
	width: 48px;
	height: 48px;
	background: conic-gradient(
	  #fd004c,
	  #fe9000,
	  #fff020,
	  #3edf4b,
	  #3363ff,
	  #b102b7,
	  #fd004c
	);
	animation: spin 1.5s infinite linear;
	border-radius: 50%;
	z-index: -1;
  }
  .plans-sec .plans .plan .popular-box img {
	width: 17px;
  }
  
  /* plan-icon */
  .plans-sec .plans .plan-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	margin-bottom: 20px;
	margin-left: -4px
  }
  
  /* plan-head */
  .plans-sec .plans .plan-head {
	margin-bottom: 45px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .light-theme .plans-sec .plans .plan-head {
	border-color: rgba(0, 0, 0, 0.1);
  }
  .plans-sec .plans .plan-name {
	font-size: 20px;
	font-family: var(--primary-font);
	font-weight: 700;
	color: #ffffff;
  }
  .light-theme .plans-sec .plans .plan-name {
	color: var(--darkBlue);
	margin-bottom: 10px;
  }
  .plans-sec .plans .plan-para {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
	min-height: 50px
  }
  
  /* plan-price */
  .plans-sec .plans .plan-price {
	margin-bottom: 20px
  }
  .plans-sec .plans .plan-price:not([data-for="monthly"]) {
	display: none;
  }
  .plans-sec .plans .plan-price .price {
	font-size: 30px;
	font-family: var(--third-font);
	font-weight: 700;
	color: #ffffff;
  }
  .light-theme .plans-sec .plans .plan-price .price {
	color: var(--darkBlue);
  }
  .plans-sec .plans .plan-price .price-comment {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
  }
  
  /* actions */
  .plans-sec .plans .actions {
	padding-bottom: 10px
  }
  
  /* group */
  .plans-sec .plans .group {
	margin-top: 45px;
  }
  .plans-sec .plans .group .title-4 {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	margin-bottom: 20px
  }
  .light-theme .plans-sec .plans .group .title-4 {
	color: var(--darkBlue);
  }
  .plans-sec .plans .group .list li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
	padding-right: 26px;
  }
  .plans-sec .plans .group .list li:not(last-of-type) {
	margin-bottom: 10px
  }
  .plans-sec .plans .group .list li img {
	margin-right: 10px;
	width: 16px
  }
  
  /* float-box */
  .plans-sec .plans .group .list li .float-box {
	position: absolute;
	top: 2px;
	right: 0;
	width: 18px;
	height: 18px;
  }
  .plans-sec .plans .group .list li .float-box::before {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	content: '?';
	right: 0;
	top: 0;
	width: 18px;
	height: 18px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 50%;
	font-size: 12px;
	font-family: var(--secondary-font);
	font-weight: 600;
	line-height: 1;
	transition: all .15s ease-in-out;
  }
  .light-theme .plans-sec .plans .group .list li .float-box::before {
	background-color: rgba(0, 0, 0, .1);
  }
  .plans-sec .plans .group .list li .float-box:hover::before {
	background-color: rgba(0, 0, 0, .2);
  }
  .plans-sec .plans .group .list li .float-box::after {
	position: absolute;
	content: attr(data-text);
	top: 50%;
	right: 26px;
	transform: translateY(-50%);
	width: 280px;
	background-color: var(--semi-dark);
	white-space: normal;
	padding: 10px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--darkGray);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 4px;
	box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
	z-index: 3;
	visibility: hidden;
	opacity: 0;
	transition: all .15s ease-in-out;
  }
  .light-theme .plans-sec .plans .group .list li .float-box::after {
	background-color: #fff;
	border: 1px solid var(--border);
	background-color: #FFFFFF;
	box-shadow: 0 2px 15px #dde5eb;
  }
  .plans-sec .plans .group .list li .float-box:hover::after {
	visibility: visible;
	opacity: 1;
  }
  
  /* se-footer */
  .plans-sec .se-footer .line {
	margin: 6px 12px;
  }
  .plans-sec .se-footer .line .icon {
	min-width: 16px;
	width: 16px;
	margin-right: 10px;
  }
  .plans-sec .se-footer .line .text {
	font-size: 14px;
	font-family: var(--secondary-font);
	font-weight: 500;
	color: var(--darkGray);
	line-height: 1;
  }
  /* ----------------------------------- */
  
  /* :: SECTION II :: */
  
  /* text-area */
  .se-ii .text-area .title-1 {
	font-size: 42px;
	font-family: var(--primary-font);
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
  }
  .light-theme .se-ii .text-area .title-1 {
	color: var(--darkBlue);
  }
  .se-ii .text-area .para-1 {
	color: var(--darkGray);
  }
  @media only screen and (max-width: 767.98px) {
	.se-ii .text-area .title-1 {
	  font-size: 26px;
	}
  }
  
  /* box */
  .se-ii .box {
	background-color: var(--semi-dark-2);
	border-radius: 8px;
	padding: 20px;
	border: 1px solid var(--border);
	transition: all .20s ease;
  }
  .light-theme .se-ii .box {
	background-color: var(--light);
  }
  .se-ii .box .box-title {
	font-family: var(--secondary-font);
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
  }
  .light-theme .se-ii .box .box-title {
	color: var(--darkBlue);
  }
  .se-ii .box .box-para {
	color: var(--darkGray);
  }
  /* ----------------------------------- */
  
  /* :: COMPARISON SECTION :: */
  
  /* tables-toggler */
  .comp-sec .tables-toggler .buttons {
	background-color: var(--semi-dark);
	padding: 8px;
	border-radius: 50px;
  }
  .light-theme .comp-sec .tables-toggler .buttons {
	background-color: #fff;
  }
  .comp-sec .tables-toggler button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--semi-dark);
	border: 0;
	font-size: 14px;
	font-family: var(--secondary-font);
	font-weight: 500;
	color: #fff;
	padding: 10px 20px;
	border-radius: 50px;
	transition: all .15s ease;
  }
  .light-theme .comp-sec .tables-toggler button {
	background-color: #fff;
	color: var(--darkBlue);
  }
  .comp-sec .tables-toggler button.active {
	background-color: var(--primary);
	color: #fff;
  }
  
  /* t-container */
  @media only screen and (max-width: 1599.98px) {
	.comp-sec .t-container {
	  overflow-x: auto;
	}
  }
  
  /* t-head */
  .comp-sec .t-head {
	display: flex;
	align-items: center;
	top: 0;
  }
  
  /* t-head > t-col */
  .comp-sec .t-head .t-col {
	background-color: var(--semi-dark);
	padding: 18px 30px;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
  }
  .light-theme .comp-sec .t-head .t-col {
	background-color: #fff;
	color: var(--darkBlue);
  }
  .comp-sec .t-head .t-col.t-col-1 {
	width: 25%;
	justify-content: flex-start;
	text-align: left;
  }
  .comp-sec .t-head .t-col.t-col-2 {
	width: 10%;
  }
  .comp-sec .t-head .t-col.t-col-3 {
	width: 15%;
  }
  .comp-sec .t-head .t-col.t-col-4 {
	width: 15%;
  }
  .comp-sec .t-head .t-col.t-col-5 {
	width: 15%;
  }
  .comp-sec .t-head .t-col.t-col-6 {
	width: 20%;
  }
  
  .comp-sec .t-head .t-col:nth-child(1) {
	border-radius: 8px 0 0 0;
  }
  .comp-sec .t-head .t-col:last-child {
	border-radius: 0 8px 0 0;
  }
  .comp-sec .t-head .t-col:not(:nth-child(1)) {
	border-left: 0;
  }
  .comp-sec .t-head .t-col img {
	width: 20px;
	margin-right: 15px;
  }
  .light-theme .comp-sec .t-head .t-col img {
	filter: invert(1);
  }
  @media only screen and (max-width: 1599.98px) {
	.comp-sec .t-head .t-col.t-col-1 {
	  width: 20%;
	  justify-content: center;
	}
	.comp-sec .t-head .t-col.t-col-5 {
	  width: 20%;
	}
  }
  
  /* t-body */
  .comp-sec .t-body:not([data-for="1"]) {
	display: none;
  }
  
  /* t-row */
  .comp-sec .t-body .t-row {
	display: flex;
	align-items: center;
  }
  
  /* t-body > t-col */
  .comp-sec .t-body .t-col {
	color: #fff;
	font-size: 16px;
	padding: 10px 30px;
	border: 1px solid var(--border);
	border-top: 0;
	height: 75px;
	text-align: center;
  }
  .light-theme .comp-sec .t-body .t-col {
	background-color: #fff;
	color: var(--darkBlue);
  }
  .comp-sec .t-body .t-row:last-child .t-col:first-child {
	border-bottom-left-radius: 8px;
  }
  .comp-sec .t-body .t-row:last-child .t-col:last-child {
	border-bottom-right-radius: 8px;
  }
  .comp-sec .t-body .t-col.t-col-1 {
	width: 25%;
	display: flex;
	align-items: center;
	text-align: left;
  }
  .comp-sec .t-body .t-col.t-col-1 img {
	max-height: 24px;
	margin-right: 15px;
  }
  .comp-sec .t-body .t-col:not(.t-col-1) {
	display: flex;
	justify-content: center;
	flex-direction: column;
  }
  .comp-sec .t-body .t-col.t-col-2 {
	width: 10%;
  }
  .comp-sec .t-body .t-col.t-col-3 {
	width: 15%;
  }
  .comp-sec .t-body .t-col.t-col-4 {
	width: 15%;
  }
  .comp-sec .t-body .t-col.t-col-5 {
	width: 15%;
	text-align: center;
  }
  .comp-sec .t-body .t-col.t-col-6 {
	width: 20%;
	text-align: center;
	color: var(--gold);
	font-size: 20px;
	font-family: var(--secondary-font);
  }
  .comp-sec .t-body .t-col.t-col-6 > div {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
  }
  .comp-sec .t-body .t-col:not(:first-child) {
	border-left: 0;
  }
  @media only screen and (max-width: 1599.98px) {
	.comp-sec .t-body .t-row {
	  align-items: inherit;
	}
	.comp-sec .t-body .t-col {
	  padding: 10px 20px;
	  height: auto;
	  font-size: 14px;
	}
	.comp-sec .t-body .t-col.t-col-1 {
	  width: 20%;
	  flex-direction: column;
	  text-align: center;
	}
	.comp-sec .t-body .t-col.t-col-1 img {
	  max-height: 24px;
	  margin-right: 0;
	  margin-bottom: 10px;
	}
	.comp-sec .t-body .t-col.t-col-5 {
	  width: 20%;
	}
  }
  @media only screen and (max-width: 1199.98px) {
	.comp-sec .t-head,
	.comp-sec .t-body {
	  min-width: 1000px;
	}
  }
  /* ----------------------------------- */
  
  /* :: SECTION IV :: */
  
  /* box */
  .se-iv .box {
	background-color: var(--semi-dark);
	border-radius: 8px;
	padding: 35px 30px 10px;
	border: 1px solid var(--border);
	transition: all .20s ease;
  }
  .light-theme .se-iv .box {
	background-color: #fff;
  }
  .se-iv .box:hover {
	background-color: var(--semi-dark-2);
  }
  .light-theme .se-iv .box:hover {
	background-color: var(--light);
  }
  
  /* box-link */
  .se-iv .box-link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
  }
  
  /* icon */
  .se-iv .box .icon {
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
  }
  .se-iv .box .icon::before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: var(--primary);
	opacity: .1;
  }
  .se-iv .box.color-1 .icon::before {
	background-color: #26C6DA;
  }
  .se-iv .box.color-2 .icon::before {
	background-color: #FC573B;
  }
  .se-iv .box.color-3 .icon::before {
	background-color: #FFD200;
  }
  .se-iv .box.color-4 .icon::before {
	background-color: #BD63F9;
  }
  .se-iv .box.color-5 .icon::before {
	background-color: #00FFB7;
  }
  .se-iv .box.color-6 .icon::before {
	background-color: #FE9801;
  }
  .se-iv .box .icon img {
	width: 34px;
  }
  
  /* box-title */
  .se-iv .box-title {
	color: #FFFFFF;
	font-size: 20px;
	font-family: var(--secondary-font);
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.2;
  }
  .light-theme .se-iv .box-title {
	color: var(--darkBlue);
  }
  
  /* box-para */
  .se-iv .box-para {
	font-size: 14px;
	font-weight: 500;
	color: var(--darkGray);
	line-height: 1.7;
	max-height: 70px;
	height: 70px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 25px;
  }
  
  /* arrow */
  .se-iv .arrow {
	margin-top: 20px;
  }
  .se-iv .arrow img {
	width: 24px;
	filter: contrast(0);
	transition: all .15s ease;
  }
  .se-iv .box:hover .arrow img {
	filter: contrast(100%);
  }
  /* ----------------------------------- */