/* :: HEADER :: */
.header {
  padding: 30px 0 50px;
  background: #B5E7FF;
  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: -20px;
  left: 60%;
  width: 600px;
}
@media only screen and (max-width: 1365.98px) {
  .header .hero {
    bottom: 20px;
    width: 500px;
  }
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    left: 65%;
    width: 400px;
  }
}
@media only screen and (max-width: 991.98px) {
  .header .hero {
    display: none !important
  }
}
/* ----------------------------------- */

/* :: SECTION-I :: */
.se-i .plan {
  border-top: 2px solid var(--border);
  padding-top: 40px;
}

/* plan-head */
.se-i .plan .plan-head {
  border-bottom: 2px solid var(--border);
  padding-bottom: 40px;
}

/* plan-name, plan-para*/
.se-i .plan .plan-name {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}
.light-theme .se-i .plan .plan-name {
  color: var(--darkBlue);
}
.se-i .plan .plan-para {
  font-size: 16px;
  color: var(--darkGray);
}
@media only screen and (max-width: 767.98px) {
  .se-i .plan .plan-name {
    font-size: 18px;
  }
}

/* plan-price */
.se-i .plan .plan-price {
  padding: 40px 0;
  border-bottom: 2px solid var(--border);
}
.se-i .plan .price {
  font-size: 24px;
  font-family: var(--third-font);
  font-weight: bold;
  color: #fff;
}
.light-theme .se-i .plan .price {
  color: var(--darkBlue);
}
.se-i .plan .price span {
  font-size: 16px;
  margin-left: 5px;
}
.se-i .plan .price-para {
  font-size: 14px;
  color: var(--darkGray);
}

/* features */
.se-i .plan .features {
  padding: 40px 0 0;
}
.se-i .plan .features .se-title {
  font-size: 16px;
  font-family: var(--third-font);
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.light-theme .se-i .plan .features .se-title {
  color: var(--darkBlue);
}

/* list */
.se-i .plan .features .list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 15px;
  font-weight: 600;
  color: var(--darkGray);
}
.se-i .plan .features .list li:not(:last-child) {
  margin-bottom: 25px
}
.se-i .plan .features .list li img {
  margin-top: 4px;
  margin-right: 10px;
  width: 14px
}
/* ----------------------------------- */

/* :: SECTION-II :: */
/* feat */
.se-ii .feat {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--darkGray);
  padding: 20px 0;
}
.light .se-ii .feat {
  color: var(--darkBlue);
}
@media only screen and (max-width: 767.98px) {
  .se-ii .feat {
    padding: 10px 0;
  }
}
/* ----------------------------------- */

/* :: SECTION-III :: */

/* box */
.se-iii .box .title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}
.light-theme .se-iii .box .title {
  color: var(--darkBlue);
}
.se-iii .box .text {
  font-size: 16px;
  color: var(--darkGray);
}
@media only screen and (max-width: 767.98px) {
  .se-iii .box .title {
    font-size: 18px;
  }
  .se-iii .box .text {
    font-size: 14px;
  }
}
/* ----------------------------------- */