:root {
  --color-bg: #F6F9FF;
  --color-bg-card: #F2F9FF;
  --color-bg-footer: #EBF2FE;
  --color-text: #0A2E50;
  --color-accent: #0D70C7;
  --color-accent-light: #41B5FE;
  --color-grey: #6C7A87;
  --color-border: #036FB2;
  --color-gradient: linear-gradient(234.58deg, #3284E2 16.47%, #006DE9 86.55%);
}

@media (max-width: 767px) {
  :root {
    --color-bg: #FCFEFF;
  }
}
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  scrollbar-width: thin;
}

::-webkit-scrollbar-track {
  background: vac(---color-bg-footer);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text);
}

body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  box-sizing: border-box;
  background-color: var(--color-bg);
}
body * {
  box-sizing: border-box;
}

.container {
  width: calc(100% - 40px);
  margin: 0 auto;
  max-width: 1702px;
}

header, footer {
  position: relative;
  z-index: 2;
}

main {
  position: relative;
  z-index: 1;
}

.header {
  padding-top: 37px;
}
.header__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.header__wrapper-left, .header__wrapper-right {
  flex: 1;
}
.header__wrapper-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 100px;
}
.header-logo {
  display: block;
  line-height: 1;
  text-decoration: none;
}
.header-logo img {
  width: 316px;
  height: auto;
  display: block;
  margin-bottom: 3px;
}
.header-logo span {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 22px;
  line-height: 140%;
}
.header-menu {
  flex: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 100px;
}
.header-menu li {
  padding: 0;
  margin: 0;
  display: block;
  line-height: 1;
}
.header-menu li a {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  text-decoration: none;
  color: var(--color-text);
  transition: 0.3s all;
}
.header-menu li a:hover {
  color: var(--color-accent);
}
.header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--color-text);
  padding: 12px 25px;
  border: 1px solid var(--color-text);
  background: transparent;
  outline: none;
  border-radius: 10px;
  gap: 20px;
  text-decoration: none;
  transition: 0.3s all;
}
.header-button:after {
  content: "";
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/account.svg);
  transition: 0.3s all;
}
.header-button:hover {
  background: var(--color-text);
  color: white;
}
.header-button:hover::after {
  filter: brightness(0) invert(1);
}
.header-button--mob {
  display: none;
}
.header-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 60px;
  border: 1px solid var(--color-text);
  background-color: transparent;
  border-radius: 10px;
  transition: 0.3s all;
  overflow: hidden;
  cursor: pointer;
}
.header-burger:after {
  content: "";
  display: block;
  position: relative;
  width: 35px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/burger.svg);
}
.header-burger:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.header-burger:hover::after {
  filter: brightness(0) invert(1);
}
.header-burger.is-active {
  background: var(--color-text);
}
.header-burger.is-active::after {
  background-image: url(../images/close.svg);
}
.header-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  border-radius: 10px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: auto;
  padding: 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-text);
  transition: 0.3s all;
  transform: translateY(-100vh);
  opacity: 0;
}
.header-mobile.is-open {
  transform: translateY(0vh);
  opacity: 1;
}
.header-mobile .header-menu {
  flex-direction: column;
  gap: 15px;
  flex: none;
  width: 100%;
}
.header-mobile .header-menu li {
  width: 100%;
  text-align: right;
}
.header-mobile .header-menu li a {
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .header__wrapper-right {
    gap: 30px;
  }
  .header-logo img {
    width: 200px;
  }
  .header-logo span {
    font-size: 14px;
  }
  .header-menu {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .header-menu--desc {
    display: none;
  }
}
@media (max-width: 767px) {
  .header {
    padding-top: 20px;
  }
  .header__wrapper-center {
    display: none;
  }
  .header__wrapper-left, .header__wrapper-right {
    flex: none;
    position: relative;
  }
  .header-logo img {
    width: 120px;
    margin-bottom: 0;
  }
  .header-logo span {
    font-size: 8px;
  }
  .header-button--desc {
    display: none;
  }
  .header-button--mob {
    display: flex;
  }
  .header-burger {
    width: 42px;
    height: 35px;
    border-radius: 5px;
  }
  .header-burger:after {
    width: 20px;
    height: 12px;
  }
  .header-menu li a {
    font-size: 16px;
  }
}

.footer {
  background: var(--color-bg-footer);
  width: 100%;
  padding: 40px 0 70px;
}
.footer__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15%;
}
.footer__wrapper-left, .footer__wrapper-right {
  flex: none;
}
.footer__wrapper-center {
  flex: 1;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-logo img {
  width: 287px;
  height: auto;
  display: block;
}
.footer-cop {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}
.footer-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 160%;
  margin-bottom: 3px;
  margin-top: 8px;
}
.footer-address {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 30px;
}
.footer-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 5px;
}
.footer-mail {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: 28px;
  line-height: 160%;
  transition: 0.3s all;
}
.footer-mail:hover {
  color: var(--color-accent);
}
.footer-socials ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-socials ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
  line-height: 1;
}
.footer-socials ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: white;
  padding: 12px 25px;
  border: none;
  background: var(--color-gradient);
  outline: none;
  border-radius: 52px;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s all;
}
.footer-socials ul li a svg {
  width: 24px;
  height: 24px;
  flex: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-socials ul li a:hover {
  background: var(--color-text);
}
@media (max-width: 1399px) {
  .footer__wrapper {
    gap: 8%;
  }
}
@media (max-width: 1199px) {
  .footer__wrapper {
    gap: 50px;
  }
  .footer-logo img {
    width: 200px;
  }
  .footer-cop {
    font-size: 16px;
    margin-left: 0;
  }
  .footer-title {
    font-size: 18px;
  }
  .footer-address {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 42px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 26px 0 70px;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-logo img {
    width: 124px;
  }
  .footer-cop {
    font-size: 14px;
  }
  .footer-title {
    margin-bottom: 2px;
    margin-top: 0;
    font-size: 16px;
  }
  .footer-address {
    margin-bottom: 35px;
  }
  .footer-mail {
    font-size: 16px;
  }
  .footer-socials ul li a {
    font-size: 12px;
    gap: 15px;
  }
}

.block-back {
  margin-bottom: 95px;
}
.block-back__link {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-decoration: none;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s all;
}
.block-back__link:before {
  content: "";
  display: block;
  width: 13px;
  height: 25px;
  background-image: url(../images/arrow-back.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(0px);
  transition: 0.3s all;
}
.block-back__link:hover::before {
  transform: translateX(-5px);
}
@media (max-width: 1199px) {
  .block-back {
    margin-bottom: 65px;
  }
  .block-back__link {
    gap: 15px;
    font-size: 22px;
  }
  .block-back__link:before {
    width: 10px;
    height: 18px;
  }
}
@media (max-width: 767px) {
  .block-back {
    margin-bottom: 35px;
  }
  .block-back__link {
    gap: 10px;
    font-size: 14px;
  }
  .block-back__link:before {
    width: 8px;
    height: 15px;
  }
}

.section-margin {
  margin: 150px 0;
}
.section-padding {
  padding: 150px 0;
}
.section-head {
  margin: 0 auto 68px;
  text-align: center;
}
.section-head h2 {
  font-weight: 700;
  font-size: 46px;
  line-height: 140%;
  margin: 0;
}
.section-head p {
  font-weight: 500;
  font-size: 36px;
  line-height: 140%;
  margin: 0;
}
.section-head h2 + p {
  margin-top: 10px;
}
.section-info {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 22px 72px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #2E83E4;
  border-radius: 29px;
  text-align: left;
  width: 1130px;
}
.section-info__icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2E82E3;
  border-radius: 50%;
  flex: none;
}
.section-info p {
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
  color: var(--color-text);
  margin: 0;
}
.section-info p b {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .section-margin {
    margin: 100px 0;
  }
  .section-padding {
    padding: 100px 0;
  }
  .section-head {
    margin-bottom: 44px;
  }
  .section-head h2 {
    font-size: 30px;
  }
  .section-head p {
    font-size: 22px;
  }
  .section-info {
    gap: 30px;
    padding: 20px 36px;
    width: auto;
    max-width: 1130px;
  }
  .section-info p {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .section-info {
    border-radius: 12px;
    gap: 15px;
    padding: 13px 20px;
  }
  .section-info__icon {
    width: 52px;
    height: 52px;
  }
  .section-info__icon img {
    width: 100%;
    height: auto;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .section-info__icon svg {
    max-width: 75%;
    max-height: 75%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .section-info p {
    font-size: 16px;
  }
  .section-info p b {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .section-margin {
    margin: 80px 0;
  }
  .section-padding {
    padding: 80px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .section-head h2 {
    font-size: 24px;
    line-height: 130%;
  }
  .section-head h2 br {
    display: none;
  }
  .section-head p {
    font-size: 18px;
  }
}

.pagePrice-main {
  padding: 85px 0 225px;
  background-image: url(../images/bg-price.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pagePrice-tariff {
  margin-bottom: 65px;
}
.pagePrice-tariff__list {
  display: flex;
  gap: 65px;
  width: 100%;
}
.pagePrice-tariff__item {
  flex: 1;
  padding: 45px 35px 60px;
  border-radius: 20px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  box-shadow: 2px 6px 20px 0px rgba(45, 62, 77, 0.2);
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.pagePrice-tariff__item-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagePrice-tariff__item-title span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-transform: none;
  color: var(--color-text);
  border: 2px solid var(--color-text);
  border-radius: 40px;
  padding: 8px 22px;
  display: inline-block;
}
.pagePrice-tariff__item-price {
  color: var(--color-text);
}
.pagePrice-tariff__item-price b {
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
}
.pagePrice-tariff__item-price small {
  font-weight: 500;
  font-size: 28px;
  line-height: 160%;
}
.pagePrice-tariff__item-price--month {
  margin-bottom: 5px;
}
.pagePrice-tariff__item-line {
  display: block;
  width: calc(100% + 26px);
  height: 1px;
  background: var(--item-color);
  opacity: 0.75;
  margin: 20px -13px 30px;
}
.pagePrice-tariff__item-list {
  min-height: 172px;
}
.pagePrice-tariff__item-list ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pagePrice-tariff__item-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
}
.pagePrice-tariff__item-list ul li svg {
  flex: none;
}
.pagePrice-tariff__item-list ul li svg path {
  fill: var(--item-color);
}
.pagePrice-tariff__item-button {
  font-weight: 600;
  font-size: 28px;
  line-height: 160%;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 52px;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  background: var(--color-gradient);
  text-decoration: none;
  display: block;
  text-align: center;
}
.pagePrice-tariff__item-button:hover {
  background: var(--color-text);
}
.pagePrice-tariff__item--center {
  width: 380px;
  padding: 30px 26px;
  background-color: #F2F9FF;
  border: 2px solid var(--item-color);
}
.pagePrice-tariff__item--center .pagePrice-tariff__item-list {
  min-height: 245px;
}
.pagePrice-tariff__item--center .pagePrice-tariff__item-list ul {
  gap: 26px;
}
.pagePrice-tariff__sale {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.pagePrice-tariff__sale-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: var(--color-text);
  text-align: center;
}
.pagePrice-tariff__sale-label {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 120px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent-light);
  padding: 12px 48px 16px 121px;
  margin-left: -10%;
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/price-label.svg);
}
.pagePrice-advantages__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.pagePrice-advantages__item {
  flex: none;
  border: 1px solid #93D3FF;
  border-radius: 14px;
  background: white;
  box-shadow: 4px 4px 15px 0px rgba(7, 20, 34, 0.1019607843), -2px -2px 15px 0px rgba(93, 148, 194, 0.1019607843);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
}
.pagePrice-advantages__item span {
  color: var(--color-text);
  font-weight: 500;
  font-size: 22px;
  line-height: 160%;
}
@media (max-width: 1919px) {
  .pagePrice-main {
    padding: 80px 0 160px;
  }
  .pagePrice-advantages__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagePrice-tariff__list {
    gap: 20px;
  }
  .pagePrice-tariff__item {
    padding: 36px;
  }
  .pagePrice-tariff__item-price b {
    font-size: 40px;
  }
  .pagePrice-tariff__item-price small {
    font-size: 24px;
  }
  .pagePrice-tariff__item-button {
    font-size: 24px;
  }
  .pagePrice-tariff__sale-title {
    font-size: 26px;
  }
  .pagePrice-tariff__sale-label {
    font-size: 90px;
    padding: 15px 33px 15px 96px;
    margin-left: -25px;
  }
}
@media (max-width: 1199px) {
  .pagePrice-main {
    padding: 60px 0 140px;
  }
  .pagePrice-tariff__list {
    flex-wrap: wrap;
    gap: 44px;
  }
  .pagePrice-tariff__item {
    flex: none;
    width: 100%;
    padding: 36px 25px 25px;
    gap: 16px;
  }
  .pagePrice-tariff__item-title {
    font-size: 26px;
  }
  .pagePrice-tariff__item-title span {
    font-size: 20px;
    padding: 8px 20px;
  }
  .pagePrice-tariff__item-price b {
    font-size: 40px;
  }
  .pagePrice-tariff__item-price small {
    font-size: 16px;
  }
  .pagePrice-tariff__item-line {
    width: 100%;
    margin: 5px 0 20px;
  }
  .pagePrice-tariff__item-list {
    min-height: 1px;
    margin-bottom: 26px;
  }
  .pagePrice-tariff__item-button {
    font-size: 18px;
    padding: 18px 0;
    margin-left: -10px;
    width: calc(100% + 20px);
  }
  .pagePrice-tariff__sale {
    flex: none;
    width: 100%;
  }
  .pagePrice-advantages__item {
    padding: 6px 16px;
    border-radius: 10px;
  }
  .pagePrice-advantages__item span {
    font-size: 16px;
  }
  .pagePrice-advantages__item svg {
    width: 20px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .pagePrice-main {
    padding: 50px 0 120px;
  }
  .pagePrice-tariff {
    margin-bottom: 24px;
  }
  .pagePrice-advantages__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.pageHome-hero {
  text-align: center;
  padding: 90px 0 0;
  background-image: url(../images/bg-home.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pageHome-hero__title {
  font-weight: 700;
  font-size: 55px;
  line-height: 140%;
  margin: 0 0 38px;
}
.pageHome-hero__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.pageHome-hero__list-item {
  flex: none;
  border: 1px solid #93D3FF;
  border-radius: 14px;
  background: white;
  box-shadow: 4px 4px 15px 0px rgba(7, 20, 34, 0.1019607843), -2px -2px 15px 0px rgba(93, 148, 194, 0.1019607843);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 15px 42px;
}
.pageHome-hero__list-item span {
  color: var(--color-text);
  font-weight: 500;
  font-size: 22px;
  line-height: 160%;
}
.pageHome-hero__info {
  margin-bottom: 40px;
}
.pageHome-hero__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pageHome-hero__image {
  flex: 0 0 34%;
  height: auto;
  display: block;
}
.pageHome-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}
.pageHome-hero__socials {
  flex: 0 0 34%;
  padding-left: 20px;
  padding-bottom: 44px;
  display: flex;
}
.pageHome-hero__socials ul {
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.pageHome-hero__socials ul li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
  line-height: 1;
}
.pageHome-hero__socials ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: white;
  padding: 18px 40px 18px 74px;
  border: none;
  background: var(--color-gradient);
  outline: none;
  border-radius: 52px;
  gap: 60px;
  text-decoration: none;
  transition: 0.3s all;
}
.pageHome-hero__socials ul li a svg {
  width: 24px;
  height: 24px;
  flex: none;
  -o-object-fit: contain;
     object-fit: contain;
}
.pageHome-hero__socials ul li a:hover {
  background: var(--color-text);
}
.pageHome-hero__socials ul li.pageHome-hero__socials-video a {
  border: 1px solid #3284E2;
  background: transparent;
  color: #3284E2;
}
.pageHome-hero__socials ul li.pageHome-hero__socials-video a:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}
.pageHome-hero__socials ul li.pageHome-hero__socials-video a:hover svg path {
  fill: var(--color-text);
}
.pageHome-hero__socials ul li.pageHome-hero__socials-video a:hover svg circle {
  stroke: var(--color-text);
}
.pageHome-compare {
  background-image: url(../images/bg-compare.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.pageHome-compare__wrapper {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-bottom: 66px;
}
.pageHome-compare__wrapper img {
  width: 172px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  flex: none;
}
.pageHome-compare__item {
  flex: 0 1 576px;
  box-shadow: 0px 6px 15px 0px rgba(170, 143, 160, 0.2);
  border-radius: 30px;
  padding: 26px 60px 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.pageHome-compare__item-title {
  flex: 0;
  width: auto;
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  padding: 7px 27px;
  border: 1px solid;
  border-radius: 60px;
}
.pageHome-compare__item-desc {
  flex: 1;
  width: 100%;
  text-align: left;
}
.pageHome-compare__item-desc ul {
  padding: 0;
  margin: 0;
}
.pageHome-compare__item-desc ul li {
  padding: 34px 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-weight: 600;
  font-size: 23px;
  line-height: 140%;
}
.pageHome-compare__item-desc ul li:not(:last-child) {
  border-bottom: 1px solid;
}
.pageHome-compare__item-desc ul li:before {
  content: "";
  display: block;
  flex: none;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pageHome-compare__item--1 {
  border: 1px solid #D7CECF;
  background: #FFFDFD;
}
.pageHome-compare__item--1 .pageHome-compare__item-title {
  border-color: #DBAFB5;
  background: #FFF8F9;
  color: #D46B78;
}
.pageHome-compare__item--1 .pageHome-compare__item-desc ul li {
  border-color: #F0E2E4;
}
.pageHome-compare__item--1 .pageHome-compare__item-desc ul li::before {
  background-image: url(../images/compare-minus.svg);
}
.pageHome-compare__item--2 {
  border: 1px solid #A8C0ED;
  background: #F9FCFF;
}
.pageHome-compare__item--2 .pageHome-compare__item-title {
  border-color: #2E83E4;
  background: #EFF6FE;
  color: #2E83E4;
}
.pageHome-compare__item--2 .pageHome-compare__item-desc ul li {
  border-color: #D1DFFA;
}
.pageHome-compare__item--2 .pageHome-compare__item-desc ul li::before {
  background-image: url(../images/compare-plus.svg);
}
.pageHome-phone {
  background-image: url(../images/bg-phone.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.pageHome-phone__info {
  max-width: 1110px;
}
.pageHome-phone__info .section-info__icon {
  background-color: transparent;
}
.pageHome-phone__wrapper {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
.pageHome-phone__main {
  width: 32%;
  max-width: 540px;
  height: auto;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.pageHome-phone__list {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pageHome-phone__list-item {
  text-align: left;
  position: absolute;
}
.pageHome-phone__list-item svg {
  width: 76px;
  height: auto;
  margin-bottom: 20px;
}
.pageHome-phone__list-item span {
  display: block;
  font-weight: 600;
  font-size: 26px;
  line-height: 140%;
}
.pageHome-phone__list-item::before {
  content: "";
  position: absolute;
  display: block;
  width: 191px;
  height: 66px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/phone-before.svg);
}
.pageHome-phone__list-item:after {
  content: "";
  position: absolute;
  width: 210px;
  height: 50px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/phone-after.svg);
}
.pageHome-phone__list-item:nth-child(1) {
  top: 14.5%;
  left: 12.5%;
}
.pageHome-phone__list-item:nth-child(1)::before {
  display: none;
}
.pageHome-phone__list-item:nth-child(1)::after {
  top: 112%;
  left: 92%;
}
.pageHome-phone__list-item:nth-child(2) {
  top: 23.5%;
  right: 10.5%;
}
.pageHome-phone__list-item:nth-child(2)::after {
  display: none;
}
.pageHome-phone__list-item:nth-child(2)::before {
  bottom: 78%;
  right: 110%;
}
.pageHome-phone__list-item:nth-child(3) {
  bottom: 30.5%;
  left: 12.5%;
}
.pageHome-phone__list-item:nth-child(3)::before {
  display: none;
}
.pageHome-phone__list-item:nth-child(3)::after {
  top: 109%;
  left: 68%;
}
.pageHome-phone__list-item:nth-child(4) {
  bottom: 14.5%;
  right: 1.5%;
}
.pageHome-phone__list-item:nth-child(4)::after {
  display: none;
}
.pageHome-phone__list-item:nth-child(4)::before {
  bottom: 76%;
  right: 108%;
}
.pageHome-step {
  text-align: center;
  background-image: url(../images/bg-step.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 150px;
}
.pageHome-step__socials {
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pageHome-step__socials li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pageHome-step__socials li a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  transition: 0.3s all;
  text-decoration: none;
  border-radius: 50%;
}
.pageHome-step__socials li a:hover {
  background: var(--color-text);
}
.pageHome-step__content {
  width: 100%;
  overflow: auto;
}
.pageHome-step__wrapper {
  display: flex;
  gap: 44px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 68px;
}
.pageHome-step__arrow {
  flex: none;
  width: 95px;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 130px;
}
.pageHome-step__item {
  flex: 1;
  max-width: 350px;
  box-shadow: 0px 6px 15px 0px rgba(63, 99, 125, 0.2509803922);
  background: white;
  position: relative;
  border-radius: 30px;
  padding: 105px 10px 0;
  display: flex;
  flex-direction: column;
}
.pageHome-step__item-icon {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #B2D5FF;
  box-shadow: 0px 4px 4px 0px rgba(63, 99, 125, 0.2509803922);
}
.pageHome-step__item-image {
  width: 100%;
  height: auto;
  flex: none;
}
.pageHome-step__item-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 30px 30px 0;
}
.pageHome-step__item-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 140%;
  margin-bottom: 20px;
  flex: none;
}
.pageHome-step__item-desc {
  flex: 1;
  font-weight: 400;
  font-size: 22px;
  line-height: 140%;
  margin-bottom: 26px;
}
.pageHome-reviews {
  text-align: center;
  background-image: url(../images/bg-reviews.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pageHome-reviews__list {
  display: flex;
  gap: 66px;
  justify-content: center;
}
.pageHome-reviews__item {
  flex: 1;
  max-width: 434px;
  border: 1px solid #D0E5FF;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(95, 104, 131, 0.2509803922);
  background: white;
  padding: 23px 23px 35px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pageHome-reviews__item-head {
  flex: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pageHome-reviews__item-star {
  padding-top: 10px;
}
.pageHome-reviews__item-autor {
  display: flex;
  gap: 15px;
  align-items: center;
  text-align: left;
}
.pageHome-reviews__item-autor img {
  width: 58px;
  height: 58px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.pageHome-reviews__item-autor p {
  margin: 0;
}
.pageHome-reviews__item-autor p b {
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  display: block;
}
.pageHome-reviews__item-autor p span {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  color: #70808F;
  display: block;
}
.pageHome-reviews__item-desc {
  text-align: left;
  position: relative;
  flex: 1;
  padding-left: 75px;
}
.pageHome-reviews__item-desc p {
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  margin: 0;
}
.pageHome-reviews__item-desc:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 38px;
  display: block;
  width: 25px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/quote.svg);
}
.pageHome-reviews__text {
  margin: 34px 0 40px;
}
.pageHome-reviews__text p {
  margin: 0;
  font-weight: 600;
  font-size: 28px;
  line-height: 140%;
}
.pageHome-reviews__button {
  font-weight: 600;
  font-size: 32px;
  line-height: 160%;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 52px;
  width: auto;
  width: 520px;
  margin: 0 auto;
  padding: 14px;
  background: var(--color-gradient);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.pageHome-reviews__button:hover {
  background: var(--color-text);
}
@media (max-width: 1399px) {
  .pageHome-hero__title {
    font-size: 38px;
  }
  .pageHome-hero__socials ul li a {
    gap: 20px;
    padding: 16px 30px;
  }
  .pageHome-hero__list {
    flex-wrap: wrap;
  }
  .pageHome-compare__wrapper {
    gap: 15px;
  }
  .pageHome-compare__wrapper img {
    width: 100px;
  }
  .pageHome-compare__item {
    padding: 25px 30px 30px;
    gap: 0;
  }
  .pageHome-compare__item-title {
    font-size: 26px;
  }
  .pageHome-phone__list-item span {
    font-size: 20px;
  }
  .pageHome-phone__list-item:nth-child(1) {
    left: 9%;
  }
  .pageHome-phone__list-item:nth-child(2) {
    right: 8%;
  }
  .pageHome-phone__list-item:nth-child(3) {
    left: 9%;
  }
  .pageHome-phone__list-item:nth-child(4) {
    right: 3%;
  }
  .pageHome-step__wrapper {
    gap: 10px;
  }
  .pageHome-step__item {
    padding-top: 80px;
  }
  .pageHome-step__item-icon {
    width: 100px;
    height: 65px;
  }
  .pageHome-step__item-icon svg {
    max-width: 65%;
    max-height: 65%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pageHome-step__item-title {
    font-size: 24px;
  }
  .pageHome-step__item-desc {
    font-size: 18px;
  }
  .pageHome-step__arrow {
    width: 70px;
  }
  .pageHome-reviews__list {
    gap: 30px;
  }
  .pageHome-reviews__item {
    gap: 10px;
  }
  .pageHome-reviews__item-desc {
    padding-left: 45px;
  }
  .pageHome-reviews__item-desc:before {
    left: 10px;
  }
  .pageHome-reviews__text p {
    font-size: 24px;
  }
  .pageHome-reviews__button {
    font-size: 26px;
    width: 420px;
    padding: 10px;
  }
}
@media (max-width: 1199px) {
  .pageHome-hero__list {
    gap: 20px;
  }
  .pageHome-hero__list-item {
    gap: 8px;
    padding: 7px 21px;
    border-radius: 10px;
  }
  .pageHome-hero__list-item svg {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pageHome-hero__list-item span {
    font-size: 16px;
  }
  .pageHome-hero__info {
    margin-bottom: 15px;
  }
  .pageHome-hero__socials {
    padding-bottom: 0;
  }
  .pageHome-hero__socials ul {
    gap: 23px;
  }
  .pageHome-hero__socials ul li a {
    font-size: 18px;
    gap: 16px;
    padding: 13px 41px;
  }
  .pageHome-compare__wrapper {
    margin-bottom: 48px;
  }
  .pageHome-compare__wrapper img {
    width: 60px;
  }
  .pageHome-compare__item {
    flex: 1;
  }
  .pageHome-compare__item-title {
    font-size: 18px;
  }
  .pageHome-compare__item-desc ul li {
    font-size: 14px;
    gap: 15px;
    padding: 15px 0;
  }
  .pageHome-compare__item-desc ul li::before {
    width: 20px;
    height: 20px;
  }
  .pageHome-phone__list {
    position: relative;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .pageHome-phone__list-item {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  .pageHome-phone__list-item svg {
    width: 42px;
    height: auto;
    margin-bottom: 0;
    flex: none;
  }
  .pageHome-phone__list-item span {
    font-size: 16px;
  }
  .pageHome-phone__list-item span br {
    display: none;
  }
  .pageHome-phone__list-item::before, .pageHome-phone__list-item::after {
    display: none;
  }
  .pageHome-step__socials li a {
    width: 40px;
    height: 40px;
  }
  .pageHome-step__socials li a svg {
    max-width: 65%;
    max-height: 65%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .pageHome-step__content {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 30px;
  }
  .pageHome-step__wrapper {
    justify-content: flex-start;
    gap: 0;
    min-width: 980px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
  .pageHome-step__arrow {
    margin-top: 0;
    width: 44px;
    -o-object-position: center;
       object-position: center;
  }
  .pageHome-step__item {
    flex: 0 0 290px;
    padding: 72px 30px 0;
  }
  .pageHome-step__item-icon {
    width: 90px;
    height: 66px;
    top: -12px;
  }
  .pageHome-step__item-title {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .pageHome-step__item-desc {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .pageHome-reviews__list {
    flex-wrap: wrap;
    gap: 22px;
  }
  .pageHome-reviews__text p {
    font-size: 18px;
  }
  .pageHome-reviews__button {
    font-size: 20px;
    width: 100%;
    max-width: 350px;
    padding: 9px;
  }
  .pageHome-reviews__item {
    gap: 15px;
    padding: 23px 20px 30px;
  }
  .pageHome-reviews__item-star {
    padding-top: 0;
  }
  .pageHome-reviews__item-star svg {
    width: 70px;
  }
  .pageHome-reviews__item-autor {
    gap: 14px;
  }
  .pageHome-reviews__item-autor img {
    width: 36px;
    height: 36px;
  }
  .pageHome-reviews__item-autor p b {
    font-size: 16px;
  }
  .pageHome-reviews__item-autor p span {
    font-size: 12px;
  }
  .pageHome-reviews__item-desc {
    padding-left: 47px;
  }
  .pageHome-reviews__item-desc:before {
    width: 15px;
    height: 13px;
    left: 26px;
  }
  .pageHome-reviews__item-desc p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .pageHome-hero {
    padding-top: 50px;
    background-size: 290%;
    background-position: bottom;
  }
  .pageHome-hero__title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  .pageHome-hero__list {
    gap: 12px;
    margin-bottom: 22px;
  }
  .pageHome-hero__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 34px;
  }
  .pageHome-hero__image {
    flex: none;
    width: 220px;
  }
  .pageHome-hero__socials {
    flex: none;
    width: 100%;
    justify-content: center;
    padding: 0;
  }
  .pageHome-compare {
    background-size: 290%;
    background-position: bottom;
  }
  .pageHome-compare__wrapper {
    gap: 0;
    margin-bottom: 22px;
  }
  .pageHome-compare__wrapper img {
    width: 16px;
  }
  .pageHome-compare__item {
    border-radius: 20px;
    padding: 0px 10px 10px;
  }
  .pageHome-compare__item-title {
    font-size: 14px;
    border-radius: 49px;
    margin-top: -18px;
  }
  .pageHome-compare__item-desc {
    padding-top: 4px;
  }
  .pageHome-compare__item-desc ul li {
    font-size: 12px;
    gap: 10px;
    padding: 10px 0;
  }
  .pageHome-compare__item-desc ul li::before {
    width: 10px;
    height: 10px;
    margin-top: 2px;
  }
  .pageHome-phone {
    background-size: 290%;
  }
  .pageHome-phone__info .section-info__icon svg {
    max-width: 100%;
    max-height: 100%;
  }
  .pageHome-phone__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .pageHome-phone__main {
    max-width: 240px;
    width: 100%;
  }
  .pageHome-step {
    background-size: 320%;
    background-position: bottom;
  }
  .pageHome-step__socials li a {
    width: 30px;
    height: 30px;
  }
  .pageHome-step__content {
    margin-bottom: 20px;
  }
  .pageHome-reviews {
    background-size: 320%;
  }
  .pageHome-reviews__text {
    margin: 32px 0 22px;
  }
}/*# sourceMappingURL=style.css.map */