body {
  background-color: var(--bg-main);
  font-family: 'Montserrat';
}

.container {
  width: 100%;
  max-width: calc(var(--container-max-width) + var(--container-padding) * 2);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .container {
    max-width: calc(
      var(--container-max-width) + var(--container-padding-mob) * 2
    );
    padding-left: var(--container-padding-mob);
    padding-right: var(--container-padding-mob);
  }
}

/* start hero */

.hero {
  position: relative;
}

.hero > .container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero > .container > .hero-image {
  max-width: 684px;
  width: 100%;
}

.hero > .container > .content > .content__title {
  font-weight: 600;
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 628px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero > .container > .content > .content__desc {
  font-weight: 400;
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 539px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero > .container > .content > .content__btn-container {
  display: flex;
  gap: 19px;
  max-width: 533px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero > .container > .content > .content__btn-container > button {
  width: 100%;
  height: 62px;
}

.hero > .container > .content > .content__yellow-decoration {
  position: absolute;
  height: 531px;
  width: 531px;
  left: 36px;
  bottom: -36px;
  background-image: url(../images/hero-yellow-decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 8;
}

.hero > .hero__main-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, #ffffff00 0, #ffffff 100%);
  z-index: 15;
}

.hero > .hero__green-decoration {
  position: absolute;
  top: -110px;
  right: 0;
  width: 383px;
  height: 531px;
  background-image: url(../images/hero-green-decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 1406px) and (min-width: 1251px) {
  .hero > .hero__main-decoration {
    height: 100px;
  }
}

@media (max-width: 1406px) {
  .hero > .container > .hero-image {
    max-width: 529px;
  }
}

@media (max-width: 1250px) {
  .hero > .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero > .container > .content > .content__title {
    text-align: center;
  }

  .hero > .container > .content > .content__desc {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 45px;
  }

  .hero > .container > .content > .content__btn-container {
    margin-right: auto;
    margin-left: auto;
  }

  .hero > .hero__green-decoration {
    top: 0;
  }

  .hero > .container > .content > .content__yellow-decoration {
    left: -155px;
    top: 125px;
    bottom: initial;
    height: 725px;
  }

  .hero > .container > .hero-image,
  .hero > .hero__main-decoration {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero > .container > .content > .content__title {
    font-size: 30px;
    max-width: 318px;
  }

  .hero > .container > .content > .content__desc {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 329px;
  }

  .hero > .container > .content > .content__btn-container > button {
    max-width: 246px;
    margin: 0 auto;
  }

  .hero > .container > .hero-image {
    /* position: relative;
    z-index: 10;
    max-width: 538px; */
    display: none;
  }

  .hero > .hero__green-decoration {
    width: 165px;
    height: 231px;
  }

  .hero > .container > .content > .content__yellow-decoration {
    width: 231px;
    height: 231px;
    left: -75px;
  }
}

/* end hero */

/* start btn */

.btn {
  font-family: 'Inter';
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
}

.btn:hover {
  scale: 1.05;
}

.btn--primary {
  background-color: var(--bg-blue);
  color: var(--text-white);
}

/* end btn */

/* start features*/

.features {
  padding-top: 80px;
  position: relative;
}

.features > .features__main-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 602px;
  background: linear-gradient(180deg, #ffffff 0, #ffffff00 100%);
}

.features > .container {
  position: relative;
  z-index: 10;
}

.features > .container > .title {
  max-width: 795px;
  width: 100%;
}

.features > .container > .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.features > .container > .list > li {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 18px 0 26px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.features > .container > .list > li:nth-of-type(1) {
  background: linear-gradient(180deg, #c7e5ed 0, #e2f9ff 100%);
}

.features > .container > .list > li:nth-of-type(2) {
  background: linear-gradient(180deg, #ffa0c1 0, #ffdde9 100%);
}

.features > .container > .list > li:nth-of-type(3) {
  background: linear-gradient(180deg, #a7e3d1 0, #d2fff1 100%);
}

.features > .container > .list > li:nth-of-type(4) {
  background: linear-gradient(180deg, #98a5f4 0, #d3d9ff 100%);
}

.features > .container > .list > li > .content {
  padding-left: 15px;
  padding-right: 15px;
}

.features > .container > .list > li > .content > h3 {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 28px;
  margin-bottom: 5px;
}

.features > .container > .list > li > .content > p {
  font-weight: 400;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 20px;
}

.features > .container > .list > li > .content > button {
  height: 45px;
  width: 100%;
}

.features > .container > .list > li > .image-container {
  width: 200px;
  overflow: hidden;
  position: relative;
  margin: auto;
  margin-bottom: 35px;
  padding: 10px 10px 0;
}

@media (max-width: 1250px) {
  .features {
    padding-top: 85px;
  }

  .features > .container > .title {
    max-width: 637px;
  }

  .features > .container > .list {
    grid-template-columns: repeat(2, 1fr);
  }

  .features > .container > .list > li > .image-container > img {
    width: 279px;
    margin: auto;
  }

  .features > .features__main-decoration {
    display: none;
  }
}

@media (max-width: 700px) {
  .features {
    padding-top: 55px;
  }

  .features > .container > .title {
    max-width: 329px;
  }

  .features > .container > .list {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

/* end features*/

/* start about */

.about {
  padding-top: 70px;
}

.about > .top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 65px;
  margin-bottom: 65px;
}

.about > .top > li:first-of-type > h3 {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 120%;
}

.about > .top > li:first-of-type > p {
  font-weight: 300;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 120%;
}

.about > .top > li:last-of-type {
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 30px;
}

.about > .top > li:last-of-type > p:first-of-type {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #000000;
  font-size: 20px;
  margin-bottom: 30px;
}

.about > .top > li:last-of-type > p:first-of-type > img {
  width: 30px;
}

.about > .top > li:last-of-type > p:last-of-type {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 40px;
}

.about > .top > li:last-of-type > button {
  height: 48px;
  width: 100%;
}

.about > .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 70px;
}

.about > .bottom > li:first-of-type {
  display: flex;
  gap: 20px;
}

.about > .bottom > li:first-of-type > div {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-spacing: 10px;
  cursor: pointer;
  position: relative;
}

.about > .bottom > li:first-of-type > div.active::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #000000;
  border-radius: 50%;
}

.about > .bottom > li:first-of-type > div > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about > .bottom > li:last-of-type > div:first-of-type {
  width: 96.35416412353516px;
  margin-bottom: 45px;
}

.about > .bottom > li:last-of-type > div:last-of-type > div > p:first-of-type {
  color: #000000;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 20px;
}

.about > .bottom > li:last-of-type > div:last-of-type > div > p:last-of-type {
  font-weight: 600;
  font-size: 25px;
  color: #000000;
}

.about
  > .bottom
  > li:last-of-type
  > div:last-of-type
  > div
  > p:last-of-type
  > span {
  font-weight: 400;
  color: #797979;
  display: block;
}

.testimonials {
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  width: 100%;
}

.testimonial.active {
  left: 0;
  opacity: 1;
}

.testimonial.exit-left {
  left: -100%;
  opacity: 0;
}

@media (max-width: 1250px) {
  .about {
    padding-top: 45px;
  }

  .about > .top,
  .about > .bottom {
    grid-template-columns: 1fr;
  }

  .about > .top > li:last-of-type {
    max-width: 500px;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .about {
    padding-top: 30px;
  }

  .about > .top > li:first-of-type > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about > .top > li:first-of-type > p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .about > .top > li:last-of-type > p:first-of-type {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .about > .top > li:last-of-type > p:last-of-type {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .about > .top {
    margin-bottom: 20px;
  }

  .about > .bottom > li:first-of-type > div {
    width: 100px;
    height: 100px;
  }

  .about > .bottom {
    gap: 20px;
  }

  .about > .bottom > li:last-of-type > div:first-of-type {
    width: 55px;
    margin-bottom: 10px;
  }

  .about
    > .bottom
    > li:last-of-type
    > div:last-of-type
    > div
    > p:first-of-type {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about > .bottom > li:last-of-type > div:last-of-type > div > p:last-of-type {
    font-size: 20px;
  }
}

/* end about */

/* start join us */

.join-us {
  padding-top: 40px;
  position: relative;
}

.join-us > .container {
  display: flex;
  align-items: center;
  gap: 0 70px;
  position: relative;
  z-index: 10;
}

.join-us > .container > .image-container {
  max-width: 674px;
  width: 100%;
}

.join-us > .container > h2 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  width: 537px;
}

.join-us > .join-us__green-decoration {
  width: 383px;
  height: 531px;
  background-image: url(../images/hero-green-decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 44px;
  right: 0;
}

.join-us > .join-us__main-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 188px;
  background: linear-gradient(180deg, #ffffff00 0, #ffffff 100%);
  z-index: 15;
}

@media (max-width: 1395px) {
  .join-us > .container > .image-container {
    max-width: 660px;
  }
}

@media (max-width: 1380px) {
  .join-us {
    padding-top: 70px;
  }

  .join-us > .container {
    flex-direction: column-reverse;
  }

  .join-us > .container > h2 {
    text-align: center;
  }

  .join-us > .container > .image-container {
    max-width: 703px;
  }
}

@media (max-width: 700px) {
  .join-us {
    padding-top: 30px;
  }

  .join-us > .container > h2 {
    font-size: 30px;
    max-width: 290px;
  }
}

/* end join us */

/* start services */

.services {
  padding-top: 80px;
}

.services > .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.services > .list > li {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services > .list > li:nth-of-type(1) {
  background-color: #c8e6ee;
}

.services > .list > li:nth-of-type(2) {
  background-color: #a8e4d2;
}

.services > .list > li:nth-of-type(3) {
  background-color: #ffb2cd;
}

.services > .list > li:nth-of-type(4) {
  background-color: #9aa7f4;
}

.services > .list > li > div > div {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 24px;
}

.services > .list > li > div > div > div {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.services > .list > li:nth-of-type(1) > div > div > div {
  background-color: #89d6eb;
}

.services > .list > li:nth-of-type(2) > div > div > div {
  background-color: #78d3b8;
}

.services > .list > li:nth-of-type(3) > div > div > div {
  background-color: #ff76a6;
}

.services > .list > li:nth-of-type(4) > div > div > div {
  background-color: #6977cc;
}

.services > .list > li > div > div > div > img {
  height: 54px;
  width: auto;
}

.services > .list > li > div > div > h3 {
  color: var(--text-primary);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 28px;
  width: 75%;
}

.services > .list > li > div > p {
  color: var(--text-secondary);
  font-family: 'Inter';
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 12px;
}

.services > .list > li > button {
  height: 55px;
  max-width: 245px;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 1250px) {
  .services {
    padding-top: 70px;
  }

  .services > .list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .services {
    padding-top: 30px;
  }

  .services > .list > li {
    padding: 25px 20px;
  }

  .services > .list > li > div > div {
    grid-gap: 15px;
    margin-bottom: 15px;
  }

  .services > .list > li > div > div > h3 {
    font-size: 20px;
  }

  .services > .list > li > div > p {
    margin-bottom: 15px;
  }

  .services > .list > li > button {
    margin-right: auto;
  }
}

/* end services */

/* start plans */

.plans {
  padding-top: 15px;
  position: relative;
  z-index: 15;
}

.plans > .plans__main-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 602px;
  background: linear-gradient(180deg, #ffffff 0, #ffffff00 100%);
}

.plans > .list {
  position: relative;
  z-index: 15;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.plans > .list > li {
  max-width: 310px;
  width: 100%;
  background-color: #ffffff;
  padding: 30px 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}

.plans > .list > li > div:first-of-type > div {
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  width: 35px;
  height: 35px;
  font-family: 'Inter';
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.plans > .list > li:nth-of-type(1) > div:first-of-type > div,
.plans > .list > li:nth-of-type(1) > div:last-of-type > button {
  background-color: #15ca93;
  color: var(--text-white);
}

.plans > .list > li:nth-of-type(2) > div:first-of-type > div,
.plans > .list > li:nth-of-type(2) > div:last-of-type > button {
  background-color: #ff76a6;
  color: var(--text-white);
}

.plans > .list > li:nth-of-type(3) > div:first-of-type > div,
.plans > .list > li:nth-of-type(3) > div:last-of-type > button {
  background-color: #3263ff;
  color: var(--text-white);
}

.plans > .list > li > div:first-of-type > p:nth-of-type(1) {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 15px;
}

.plans > .list > li:nth-of-type(1) > div:first-of-type > p:nth-of-type(1),
.plans > .list > li:nth-of-type(1) > div:last-of-type > p {
  color: #15ca93;
}

.plans > .list > li:nth-of-type(2) > div:first-of-type > p:nth-of-type(1),
.plans > .list > li:nth-of-type(2) > div:last-of-type > p {
  color: #ff76a6;
}

.plans > .list > li:nth-of-type(3) > div:first-of-type > p:nth-of-type(1),
.plans > .list > li:nth-of-type(3) > div:last-of-type > p {
  color: #3263ff;
}

.plans > .list > li > div:first-of-type > p:nth-of-type(2) {
  color: var(--text-secondary);
  font-family: 'Inter';
  font-weight: 300;
  font-size: 16px;
}

.plans > .list > li > div:last-of-type > p {
  font-family: 'Inter';
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 10px;
}

.plans > .list > li > div:last-of-type > button {
  width: 100%;
  height: 54px;
}

@media (max-width: 700px) {
  .plans {
    padding-top: 50px;
  }
}

/* end plans */

/* start contacts */

.contacts {
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
}

.contacts > .container {
  display: grid;
  grid-template-columns: 1fr minmax(708px, 1fr);
  grid-gap: 20px 40px;
  position: relative;
  z-index: 20;
}

.contacts > .container > div:first-of-type > .contacts-form {
  background-color: #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px;
}

.contacts > .container > div:first-of-type > .contacts-form > h3 {
  color: black;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.contacts > .container > div:first-of-type > .contacts-form > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.contacts > .container > div:first-of-type > .contacts-form > div > input {
  background-color: #3263ff33;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  height: 48px;
  width: 100%;
  outline: none;
  border: 0;
  padding: 0 20px;
}

.contacts > .container > div:first-of-type > .contacts-form > div > label {
  padding-left: 16px;
  color: #000000;
  font-weight: 400;
  font-size: 14px;
}

.contacts > .container > div:first-of-type > .contacts-form > input.btn {
  height: 48px;
  width: 100%;
  margin-top: 20px;
  display: block;
  outline: none;
  border: 0;
}

.contacts > .container > .map {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}

.contacts > .contacts__red-decoration {
  width: 369px;
  height: 657px;
  background-image: url(../images/contacts-red-decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -167px;
  right: 0;
}

.contacts > .contacts__yellow-decoration {
  width: 657px;
  height: 564px;
  background-image: url(../images/contacts-yellow-decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 1250px) {
  .contacts {
    padding-top: 70px;
    padding-bottom: 35px;
  }

  .contacts > .container {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .contacts > .container > div:first-of-type > .contacts-form {
    max-width: 551px;
    width: 100%;
    margin: 0 auto;
  }

  .contacts > .container > div:first-of-type > h2 {
    text-align: center;
  }

  .contacts > .container > .map {
    height: 506px;
  }
}

@media (max-width: 700px) {
  .contacts {
    padding-top: 55px;
    padding-bottom: 40px;
  }

  .contacts > .contacts__red-decoration {
    width: 215px;
    height: 389px;
  }

  .contacts > .contacts__yellow-decoration {
    width: 350px;
    height: 300px;
  }

  .contacts > .container > .map {
    height: 400px;
  }
}

/* end contacts */

.title {
  font-weight: 400;
  color: var(--text-primary);
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media (max-width: 1250px) {
  .title {
    font-size: 40px;
    margin-bottom: 25px;
  }
}

@media (max-width: 700px) {
  .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* start popup */

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup-content {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 86px 0 100px;
  width: 96%;
  max-width: 1070px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 50px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-content > h2 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 60px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 45px;
  text-align: center;
}

.popup-content > .form {
  max-width: 893px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.popup-content > .form input[type='text'],
.popup-content > .form input[type='email'],
.popup-content > .form select {
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 0 30px;
  height: 69px;
  width: 100%;
  margin-bottom: 15px;
  outline: none;
}

.popup-content > .form input[type='text']::placeholder,
.popup-content > .form input[type='email']::placeholder {
  color: #747474;
  font-size: 20px;
  font-weight: 300;
}

.card-data {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #747474;
  font-weight: 600;
  font-size: 24px;
}

.btn-submit {
  background-color: #3263ff;
  width: 100%;
  height: 54px;
  border: 0;
  outline: 0;
  color: var(--text-white);
}

.d-flex {
  display: flex;
}

.gap-10 {
  gap: 10px;
}

.duration {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 55px;
  margin-top: 25px;
  margin-bottom: 40px;
}

.duration > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.duration > div > input {
  width: 35px;
  height: 35px;
}

.duration > div > label {
  color: #747474;
  font-weight: 500;
  font-size: 24px;
  cursor: pointer;
}

.terms {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
  margin-bottom: 25px;
}

.terms > input {
  width: 38px;
  height: 38px;
}

.terms > label {
  font-weight: 500;
  font-size: 24px;
  color: #747474;
  line-height: 120%;
}

.terms > label > a {
  color: #3263ff;
  text-decoration: none;
}

@media (max-width: 1250px) {
  .popup-content > h2 {
    font-size: 30px;
  }
}

/* end popup */

/* start header */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
  z-index: 20;
}

header > .logo {
  width: 140px;
  position: relative;
  z-index: 999;
}

header > .right {
  display: flex;
  align-items: center;
  gap: 0 102px;
}

@media (max-width: 1406px) {
  header > .right {
    gap: 0 30px;
  }
}

header > .right > div {
  display: flex;
  align-items: center;
  gap: 0 35px;
}

header > .right > div > button {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 25px;
  background-color: transparent;
}

header > .right > button {
  height: 62px;
  width: 174px;
}

header > .mob-menu {
  display: none;
}

@media (max-width: 1300px) {
  header > .logo {
    width: 165px;
  }

  header > .right > button {
    display: none;
  }

  header > .right {
    display: none;
  }

  header > .mob-menu {
    display: block;
  }

  header > .mob-menu > .burger {
    background-color: #ffffff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 999;
  }

  header > .mob-menu > .burger > span {
    height: 3px;
    background-color: #000000;
    width: 36px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    display: block;
  }

  header > .mob-menu > .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  header > .mob-menu > .burger.active span:nth-child(2) {
    opacity: 0;
  }
  header > .mob-menu > .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  header > .mob-menu > .burger span {
    transition: 0.3s;
  }

  header > .mob-menu > .menu {
    height: 0;
    transition: all 0.5s ease;
    position: fixed;
    top: -40px;
    right: 0;
    background-color: white;
    width: 100%;
    z-index: -200;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    overflow: hidden;
  }

  header > .mob-menu > .menu.active {
    height: calc(100% + 40px);
    z-index: 200;
  }

  header > .mob-menu > .menu > ul {
    padding-top: 200px;
    width: 100%;
  }

  header > .mob-menu > .menu > ul > li {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid #bababa;
  }

  header > .mob-menu > .menu > ul > li:first-of-type {
    border: 0;
  }

  header > .mob-menu > .menu > ul > li > button.item {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 20px;
    background-color: transparent;
  }

  header > .mob-menu > .menu > ul > li > button.btn {
    height: 55px;
    width: 299px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 1250px) {
  header {
    padding-top: 35px;
    padding-bottom: 50px;
  }
}

@media (max-width: 700px) {
  header > .mob-menu > .menu > ul {
    padding-top: 107px;
  }

  header > .logo {
    width: 100px;
  }

  header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  header > .mob-menu > .burger {
    width: 45px;
    height: 45px;
  }

  header > .mob-menu > .burger > span {
    width: 25px;
  }
}

/* end header */

/* start faq */

.faq {
  padding-top: 85px;
  position: relative;
  z-index: 20;
}

.faq > .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq > .list > li {
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.faq > .list > li > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq > .list > li > div > p {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 25px;
}

.faq > .list > li > div > button {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9d9d9;
  width: 58px;
  height: 58px;
}

.faq > .list > li > div > button > img {
  width: 30px;
  transition: transform 0.3s linear;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.faq > .list > li.active > div > button > img {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.faq > .list > li > p {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 25px;
  width: 90%;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.faq > .list > li.active > p {
  max-height: 200px;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .faq > .list > li > div > p,
  .faq > .list > li > p {
    font-size: 20px;
  }

  .faq > .list > li > p {
    width: 100%;
  }

  .faq > .list > li > div > button {
    width: 40px;
    height: 40px;
  }

  .faq > .list > li > div > button > img {
    width: 20px;
  }

  .faq > .list > li > div > p {
    width: 80%;
  }
}
/* end faq */

/* start footer */

footer {
  background-color: #d6e0ff;
}

footer > .footer-container {
  max-width: 1005px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 34.5px 125px;
  padding: 50px 20px;
}

footer > .footer-container > li * {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

footer > .footer-container > li:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

footer > .footer-container > li:first-of-type > .logo {
  width: 180px;
}

footer > .footer-container > li:last-of-type > h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
}

footer > .footer-container > li:last-of-type > ul {
  margin-bottom: 30px;
}

@media (max-width: 1250px) {
  footer > .footer-container {
    grid-gap: 34.5px 45px;
  }
}

@media (max-width: 700px) {
  footer > .footer-container {
    grid-template-columns: 100%;
    padding: 30px 20px;
  }
}

/* end footer */

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.no-scroll {
  overflow: hidden;
}

#confirmationPopup .popup-content {
  max-width: 600px;
  padding: 20px 20px 40px 20px;
}
