:root {
  --color-bg: #FAF5FC;
  --color-bg-2: #EBF2FE;
  --color-text: #0A2E50;
  --color-accent: #3284E2;
  --color-grey: #6C7A87;
  --color-border: #82BACE;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  box-sizing: border-box;
  background-color: var(--color-bg);
  background-image: url(../images/bg-home.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
body * {
  box-sizing: border-box;
}

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

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

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

.header {
  padding-top: 40px;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__wrapper-left, .header__wrapper-right {
  flex: 1;
}
.header__wrapper-center {
  flex: none;
}
.header__wrapper-right {
  display: flex;
  justify-content: flex-end;
}
.header-menu {
  flex: none;
}
.header-logo {
  display: block;
  line-height: 1;
  text-decoration: none;
}
.header-logo img {
  width: 252px;
  height: auto;
  display: block;
}
.header-menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 55px;
}
.header-menu li {
  padding: 0;
  margin: 0;
  display: block;
  line-height: 1;
}
.header-menu li a {
  font-weight: 600;
  font-size: 20px;
  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: none;
  width: 34px;
  height: 34px;
  border: none;
  background-color: transparent;
  border-radius: 5px;
  position: relative;
  transition: 0.3s all;
  overflow: hidden;
}
.header-burger:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/burger.svg);
}
.header-burger:hover {
  background: var(--color-text);
}
.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: 230px;
  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;
}
@media (max-width: 1199px) {
  .header-logo img {
    width: 200px;
  }
  .header-menu {
    gap: 20px;
  }
}
@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: 123px;
  }
  .header-button--desc {
    display: none;
  }
  .header-button--mob {
    display: flex;
  }
  .header-burger {
    display: block;
  }
  .header-menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
  }
}

.footer {
  background: var(--color-bg-2);
  width: 100%;
  padding: 35px 0 70px;
}
.footer__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-logo img {
  width: 252px;
  height: auto;
  display: block;
}
.footer-cop {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  margin-left: 20px;
}
.footer-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.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: 16px;
  line-height: 160%;
  transition: 0.3s all;
}
.footer-mail:hover {
  color: var(--color-accent);
}
.footer-tg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: white;
  padding: 12px 25px;
  border: 1px solid var(--color-text);
  background: var(--color-text);
  outline: none;
  border-radius: 60px;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.footer-tg:after {
  content: "";
  width: 22px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/tg.svg);
  transition: 0.3s all;
}
.footer-tg:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.footer-tg:hover::after {
  filter: brightness(0) invert(1);
}
.footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: white;
  padding: 12px 25px;
  border: 1px solid var(--color-accent);
  background: var(--color-accent);
  outline: none;
  border-radius: 60px;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s all;
}
.footer-linkedin:hover {
  background: var(--color-text);
  border-color: var(--color-text);
}
@media (max-width: 1199px) {
  .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: 767px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 45px;
  }
  .footer-logo img {
    width: 150px;
  }
  .footer-cop {
    font-size: 14px;
  }
  .footer-title {
    margin-bottom: 10px;
  }
  .footer-address {
    margin-bottom: 35px;
  }
}

.block-back {
  margin-bottom: 60px;
}
.block-back__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s all;
}
.block-back__link:before {
  content: "";
  display: block;
  width: 8px;
  height: 16px;
  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: 767px) {
  .block-back {
    margin-bottom: 40px;
  }
}

.pageHome {
  width: 100%;
  min-height: 100vh;
}
.pageHome .header-logo {
  width: 0;
  overflow: hidden;
  opacity: 0;
}
.pageHome-main {
  padding-top: 120px;
  padding-bottom: 175px;
}
.pageHome-hero {
  text-align: center;
  margin-bottom: 172px;
}
.pageHome-hero__image {
  margin: 0 auto 20px;
  display: inline-block;
  width: 100%;
  max-width: 785px;
}
.pageHome-hero__image img {
  width: 100%;
  height: auto;
}
.pageHome-hero__title {
  margin-bottom: 15px;
}
.pageHome-hero__title h1 {
  margin: 0;
  font-weight: 700;
  font-size: 52px;
  line-height: 140%;
}
.pageHome-hero__desc {
  margin: 0 auto 45px;
  max-width: 785px;
}
.pageHome-hero__desc p {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
}
.pageHome-hero__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pageHome-hero__list li {
  display: block;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
}
.pageHome-hero__list li span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
}
.pageHome-offer__wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pageHome-offer__wrapper-left {
  flex: 1 1 60%;
}
.pageHome-offer__wrapper-right {
  flex: none;
}
.pageHome-offer__image {
  width: 437px;
  height: auto;
  margin-right: 23px;
}
.pageHome-offer__line {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin: 40px 0;
}
.pageHome-offer__bottom {
  margin-bottom: 35px;
}
.pageHome-offer__bottom p {
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
  margin: 0;
}
.pageHome-offer__title {
  margin-bottom: 20px;
}
.pageHome-offer__title h2 {
  margin: 0;
  font-weight: 600;
  font-size: 46px;
  line-height: 140%;
}
.pageHome-offer__desc {
  margin-bottom: 60px;
}
.pageHome-offer__desc p {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 140%;
}
.pageHome-offer__list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.pageHome-offer__list ul li {
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  color: var(--color-grey);
}
.pageHome-offer__list ul li:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/checked.svg);
}
.pageHome-offer__button {
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  color: white;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 19px 140px;
  border: none;
  text-decoration: none;
  outline: none;
  display: inline-block;
  transition: 0.3s all;
  text-align: center;
}
.pageHome-offer__button:hover {
  background: var(--color-text);
}
@media (max-width: 1199px) {
  .pageHome-main {
    padding: 100px 0 140px;
  }
  .pageHome-hero__image {
    width: 485px;
  }
  .pageHome-hero__title h1 {
    font-size: 42px;
  }
  .pageHome-hero__desc {
    margin-bottom: 30px;
  }
  .pageHome-hero__desc p {
    font-size: 27px;
  }
  .pageHome-hero__list {
    gap: 18px;
  }
  .pageHome-hero__list li {
    font-size: 21px;
  }
  .pageHome-offer__wrapper {
    gap: 10px;
  }
  .pageHome-offer__title {
    margin-bottom: 10px;
  }
  .pageHome-offer__title h2 {
    font-size: 37px;
  }
  .pageHome-offer__desc {
    margin-bottom: 30px;
  }
  .pageHome-offer__desc p {
    font-size: 23px;
  }
  .pageHome-offer__list ul li {
    font-size: 19px;
    margin-bottom: 15px;
  }
  .pageHome-offer__list ul li:before {
    width: 31px;
    height: 31px;
  }
  .pageHome-offer__line {
    margin: 25px 0;
  }
  .pageHome-offer__bottom p {
    font-size: 25px;
  }
  .pageHome-offer__button {
    font-size: 29px;
    padding: 14px 110px;
  }
  .pageHome-offer__image {
    width: 300px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .pageHome-main {
    padding: 40px 0 100px;
  }
  .pageHome-hero {
    margin-bottom: 75px;
  }
  .pageHome-hero__image {
    width: 265px;
    margin: 0 auto 30px;
  }
  .pageHome-hero__title {
    text-align: left;
    margin-bottom: 20px;
  }
  .pageHome-hero__title h1 {
    font-size: 32px;
  }
  .pageHome-hero__desc {
    text-align: left;
    margin-bottom: 25px;
  }
  .pageHome-hero__desc p {
    font-size: 22px;
  }
  .pageHome-hero__list {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .pageHome-hero__list li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pageHome-hero__list li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
  }
  .pageHome-hero__list li:nth-child(2), .pageHome-hero__list li:nth-child(4) {
    display: none;
  }
  .pageHome-offer__wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .pageHome-offer__wrapper-left {
    width: 100%;
    flex: none;
  }
  .pageHome-offer__wrapper-right {
    width: 100%;
    flex: none;
    text-align: center;
  }
  .pageHome-offer__title h2 {
    font-size: 28px;
  }
  .pageHome-offer__desc p {
    font-size: 20px;
  }
  .pageHome-offer__list ul li {
    font-size: 16px;
    margin-bottom: 26px;
  }
  .pageHome-offer__list ul li:before {
    width: 26px;
    height: 26px;
  }
  .pageHome-offer__bottom {
    margin-bottom: 25px;
  }
  .pageHome-offer__bottom p {
    font-size: 22px;
  }
  .pageHome-offer__button {
    font-size: 26px;
    padding: 18px 90px;
    width: 100%;
    max-width: 350px;
  }
  .pageHome-offer__image {
    width: 285px;
  }
  .pageHome-offer__line {
    margin: 30px 0;
  }
}

.pagePrice-main {
  padding: 80px 0 175px;
}
.pagePrice-tariff__list {
  display: flex;
  align-items: flex-start;
  gap: 55px;
}
.pagePrice-tariff__item {
  width: 310px;
  padding: 20px 26px;
  border-radius: 20px;
  background: white;
  box-shadow: 2px 6px 20px 0px rgba(36, 20, 20, 0.2);
}
.pagePrice-tariff__item-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 160%;
  text-transform: uppercase;
  color: var(--item-color);
  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(--item-color);
  border: 2px solid var(--item-color);
  border-radius: 40px;
  padding: 8px 22px;
  display: inline-block;
}
.pagePrice-tariff__item-price {
  font-weight: 900;
  font-size: 36px;
  line-height: 160%;
  color: var(--color-text);
}
.pagePrice-tariff__item-price b {
  font-size: 50px;
}
.pagePrice-tariff__item-price span {
  font-weight: 500;
  font-size: 32px;
  text-transform: none;
}
.pagePrice-tariff__item-price small {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  text-transform: none;
}
.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: 800;
  font-size: 24px;
  line-height: 160%;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 8px;
  width: calc(100% + 10px);
  margin: 0 -5px;
  padding: 3px;
  background: var(--item-color);
  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;
}
@media (max-width: 1199px) {
  .pagePrice-main {
    padding: 60px 0 140px;
  }
  .pagePrice-tariff__list {
    flex-wrap: wrap;
  }
  .pagePrice-tariff__item {
    flex: 1 1 40%;
    padding: 20px 36px 30px;
  }
  .pagePrice-tariff__item-title {
    font-size: 32px;
  }
  .pagePrice-tariff__item-title span {
    font-size: 20px;
    padding: 8px 20px;
  }
  .pagePrice-tariff__item-price {
    font-size: 32px;
  }
  .pagePrice-tariff__item-price b {
    font-size: 36px;
  }
  .pagePrice-tariff__item-price span {
    font-size: 22px;
  }
  .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 {
    width: 100%;
    margin: 0;
  }
  .pagePrice-tariff__item--center {
    padding: 30px 36px;
    order: 3;
    flex: none;
    width: 100%;
  }
  .pagePrice-tariff__item--center .pagePrice-tariff__item-list {
    min-height: 1px;
  }
  .pagePrice-tariff__item--center .pagePrice-tariff__item-list ul {
    gap: 20px;
  }
  .pagePrice-tariff__item:nth-child(1) {
    order: 1;
  }
  .pagePrice-tariff__item:nth-child(3) {
    order: 2;
  }
}
@media (max-width: 767px) {
  .pagePrice-main {
    padding: 40px 0 100px;
  }
  .pagePrice-tariff__list {
    flex-direction: column;
    gap: 33px;
  }
  .pagePrice-tariff__item {
    flex: none;
    width: 100%;
  }
  .pagePrice-tariff__item--center {
    order: 2;
  }
  .pagePrice-tariff__item:nth-child(3) {
    order: 3;
  }
}/*# sourceMappingURL=style.css.map */