/*TODO: start - move to the global styles after all pages redesigned */
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*TODO move to global styles*/
.main {
  /*overflow-x: hidden;*/
}
.btn.btn--new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Nunito, serif;
  letter-spacing: 0;
  font-size: 18px;
  padding: 16px 28px;
  background-color: #a9242c;
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  transition: color 0.5s ease, background-color 0.5s ease, border-color 0.5s ease;
}
.btn.btn--new:hover {
  background-color: #0d3b5e;
  color: #fff;
}
.btn.btn--new.btn--dark {
  background-color: #0d3b5e;
}
.btn.btn--new.btn--dark:hover {
  background-color: #a9242c;
  color: #fff;
}

.btn.btn--new .btn__icon {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .btn.btn--new {
    font-size: 16px;
    padding: 12px 24px;
  }
}
section.section.section--shaped {
  position: relative;
  padding-top: 20px;
  padding-bottom: 80px;
  width: 100%;
}
.section.section--shaped .shape {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}


.cards-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  max-width: 360px;
  width: 30%;
  flex-basis: 30%;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid #bfbfbf;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.card-mark-popular {
  content: '';
  display: block;
  position: absolute;
  top: -45px;
  left: -25px;
  /*height: 120px;*/
  /*width: 80px;*/
  height: 140px;
  width: 100px;
  background: url('../../_dev/img/pricing-new-most-popular.svg') no-repeat;
  background-size: contain;
}

 .card-title {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 2px solid white;
  font-weight: 600;
}

.card-top {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-bottom: 30px;
  color: #fff;
}

.card-top .card-title,
.card-top .card-sub-title,
.card-top .card-sub-title strong {
  color: #fff;
}

.card-top .card-sub-title strong {
  font-weight: 700;
}

.card-top::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: calc(100% + 60px);
  height: calc(100% + 70px);
  background: #16619c;
  transform: translateX(-50%);
  z-index: -1;
}

.card-monthly-price {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.card-price {
  font-family: Nunito, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  display: block;
}

.card-list {
  padding: 36px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 34px;
}

@media screen and (max-width: 1200px) {
  .card {
    padding: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .cards-row {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .card {
    width: 100%;
    flex-basis: 100%;
  }

  .card-title {
    font-size: 26px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}

.checklist li {
  margin-bottom: 8px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.checklist li::before {
  content: '';
  left: 0;
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url('../../_dev/img/home-icon-check.png') no-repeat;
  background-size: cover;
  margin-right: 12px;
  margin-top: 3px;
}

.card .btn {
  width: 100%;
}

.card-button:hover {
  background-color: white;
  color: #124E72FF;
}

.row-text-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  padding: 80px 0;
}

.row-text-image__col {
  width: 50%;
}

.row-text-image .row-text-image__title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #16609c;
  padding-bottom: 10px;
  border-bottom: 4px solid #16609c;
  font-weight: 700;
  max-width: 451px;
}
.row-text-image .row-text-image__title.heading {
  font-size: 48px;
}

.row-text-image__txt {
  margin-bottom: 40px;
  max-width: 500px;
}

.section--info .row-text-image .col-image {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .row-text-image {
    gap: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .row-text-image image__title.heading  {
    flex-direction: column;
    gap: 40px;
  }

  .row-text-image .row-text-image__title.heading {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .row-text-image {
    flex-direction: column;
    gap: 40px;
  }

  .row-text-image__col {
    width: 100%;
  }

  .row-text-image .row-text-image__title.heading {
    font-size: 36px;
  }
}


/*TODO: end - of new global styles*/

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #16609c;
  z-index: 10;
  font-family: Asap, sans-serif;
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
}

.main-header .headerBanner {
  background-color: #66ccff;
}

.main-header a {
  transition: color 0.5s ease;
  color: #fff;
}
.main-header a:hover {
  color: #a9242c;
}

.main-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}

.main-header__logo {
  display: block;
  max-width: 180px;
  margin-right: 60px;
}

.main-header__nav ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.main-header__col {
  display: flex;
  align-items: center;
}

.main-header .btn--new {
  padding: 10px 20px;
  font-size: 16px;
}

.main-header .account-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.main-header .account__link {
  color: #fff;
  text-decoration: none;
  padding: 0 14px;
}

.main-header .account__link:nth-child(2) {
  border-left: 2px solid #fff;
}

@media screen and (max-width: 1200px) {
  .main-header .container {
    max-width: 100%;
  }

  .main-header__row {
    padding: 10px 0;
  }

  .main-header__logo {
    max-width: 120px;
    margin-right: 20px;
  }

  .main-header__nav ul {
    gap: 10px;
  }

  .main-header .btn--new {
    padding: 10px 16px;
    font-size: 14px;
  }

  .main-header .account__link {
    padding: 0 10px;
  }
}

@media screen and (max-width: 1024px) {
  /*burger menu btn styles*/
  .main-header .mobile-menu-btn {
    display: block;
    position: absolute;
    bottom: 10px;
    right: 2px;
    z-index: 20;
    background-color: #16609c;
    padding: 6px;
    border-radius: 5px;
    border: none;
    box-shadow: none;
    outline: none;
    transition: 0.5s ease;
  }
  .main-header .mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    margin: 4px 0;
    transition: 0.5s ease;
    opacity: 1;
  }
  .main-header .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .main-header .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .main-header .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  .main-header__row {
    flex-direction: column;
    gap: 10px;
    padding: 8px 0;
  }

  .main-header__col:first-child {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .main-header__col--account {
    position: absolute;
    bottom: 10px;
    right: 50px;
  }

  .main-header__logo {
    margin-right: 0;
  }

  .main-header__nav {
    position: absolute;
    height: 100vh;
    width: 100vw;
    left: 50%;
    top: 60px;
    transform: translateX(100%);
    background-color: #16609c;
    transition: transform 0.5s ease;
    z-index: 10;
  }
  .main-header__nav.active {
    transform: translateX(-50%);
  }

  .main-header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding: 70px 30px;
  }

  .main-header__nav ul li a {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .main-header {
    max-height: 120px;
  }

  .main-header__col--account {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .main-header .btn--new {
    padding: 8px 10px;
    font-size: 14px;
    flex-basis: 50%;
  }

  .main-header .account {
    position: fixed;
    /*top: 80px;*/
    background-color: #16609c;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    padding: 20px 0;
    transform: translateY(-20px);
    opacity: 0;
    transition: .5s ease;
    z-index: -1;
  }
  .main-header .account.mobile-active {
    transform: translateY(0);
    opacity: 1;
    z-index: 10;
  }

  .main-header .account-icon.mobile-active path {
    fill: #a9242c;
  }

  .main-header .btn--new {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .main-header .account-icon {
    margin-right: 10px;
  }
}