@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
}
@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
}
@font-face {
  font-weight: bold;
  font-style: normal;
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
}
.button {
  border-radius: 15px;
  padding: 20px 40px;
}

body {
  width: 100vw;
  height: 100%;
  font-family: Montserrat-Regular;
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  z-index: 10;
  position: fixed;
  max-width: 100vw;
  top: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
}
header .desktop-header {
  width: 100%;
  height: 82px;
  background: #FFFFFF;
  padding: 0 9vw;
  display: flex;
  flex-direction: row;
  flex-grow: inherit;
  z-index: 8;
}
header .desktop-header .hamburger {
  display: none;
  margin-right: 0;
  max-width: 30px;
  width: 100%;
  transition: 0.5s all ease-in-out;
}
header .desktop-header img {
  margin-right: 75px;
  max-width: 120px;
  width: 100%;
}
header .desktop-header .menu-list {
  width: auto;
  height: 82px;
  background: #FFFFFF;
  display: flex;
  flex: none;
  justify-items: center;
  align-items: center;
}
header .desktop-header .grey-text {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  margin-left: auto;
}
header .desktop-header .grey-text .phone-number {
  width: 100%;
}
header .desktop-header .grey-text .login-icon {
  display: flex;
  justify-items: center;
  align-items: center;
  margin: 0;
}
header .desktop-header .grey-text .login-icon img {
  padding-left: 20px;
}
header .mob-header {
  width: 100%;
  height: 82px;
  background: #FFFFFF;
  padding: 0 9vw;
  flex-direction: row;
  flex-grow: inherit;
  display: none;
}
header .menu-item {
  font-family: Montserrat-Bold;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  color: #191919;
  margin-right: 25px;
  transition: 0.2s color ease-in-out;
  cursor: pointer;
}
header .menu-item:hover, header .menu-item.active {
  color: #2252BC;
}

.main {
  min-height: calc(100vh - 82px);
  height: 100%;
  margin-top: 82px;
  display: flex;
  width: 100vw;
  background: url("../img/bg.png") center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main .left .title, .main .left .subtitle {
  width: 50vw;
  float: right;
}
.main .left .title {
  padding-top: 111px;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  line-height: 73px;
  color: #FFFFFF;
}
.main .left .subtitle {
  padding-bottom: 111px;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: #FFFFFF;
}
.main .right {
  min-width: 37.8vw;
}
.main .right .calculator {
  background: #FFFFFF;
  border-radius: 30px;
  margin: 55px;
  min-height: 200px;
  height: auto;
  padding: 43px 28px;
}
.main .right .calculator .title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #2252BC;
}
.main .right .calculator .values {
  margin: 5px 0 0 !important;
}
.main .right .calculator .row {
  display: flex;
  margin: 15px 0 0;
}
.main .right .calculator .row input {
  width: 100%;
}
.main .right .calculator .row .left-part {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.main .right .calculator .row .right-part {
  background: #FFF;
  border: 1px solid #DEE0E3;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  width: 30%;
  text-align: center;
  margin: 0 0 0 auto;
}
.main .right .calculator .row .min-value {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #424E5A;
  margin: 0 auto 0 0;
}
.main .right .calculator .row .middle-value {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #424E5A;
}
.main .right .calculator .row .max-value {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #424E5A;
  margin: 0 0 0 auto;
}
.main .right .calculator .button {
  text-align: center;
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 30px 0;
}
.main .right .calculator .final-result {
  display: flex;
  flex-flow: wrap;
}
.main .right .calculator .final-result .result-block {
  width: 50%;
  margin: 0 0 30px 0;
}
.main .right .calculator .final-result .result-block .final-title {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #191919;
}
.main .right .calculator .final-result .result-block .final-val {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #191919;
}

.button-white {
  background: #FFFFFF;
  color: #2252BC;
  transition: 0.3s ease-in-out all;
  border: 1px solid #2252BC;
}
.button-white:hover {
  background: #2252BC;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.button-blue {
  background: #2252BC;
  color: #FFFFFF;
  transition: 0.3s ease-in-out all;
  border: 1px solid #FFFFFF;
}
.button-blue:hover {
  background: #FFFFFF;
  color: #2252BC;
  border: 1px solid #2252BC;
}

.steps .title {
  font-family: Montserrat-Bold;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  width: 90vw;
  margin: 60px auto 50px;
  text-align: center;
  color: #2252BC;
}
.steps .container {
  width: 100%;
  margin: 0 auto 65px;
  display: flex;
  justify-content: center;
}
.steps .container .block {
  background: #FFFFFF;
  box-shadow: -5px -5px 10px rgba(222, 222, 222, 0.3), 5px 5px 10px rgba(211, 211, 211, 0.3);
  border-radius: 16px;
  padding: 20px;
  max-width: 405px;
  margin: 0 13px;
  display: flex;
}
.steps .container .block .left {
  margin: 0 20px 0 0;
}
.steps .container .block .right .header {
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  color: #2252BC;
  padding: 10px 0 20px;
}
.steps .container .block .right .description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #191919;
  padding: 0 0 15px 0;
}

.tariffs {
  background: #2252BC;
  display: flex;
  width: 100vw;
  flex-direction: column;
}
.tariffs .title {
  font-family: Montserrat-Bold;
  width: 90vw;
  margin: 50px auto 20px;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
  text-align: center;
  justify-self: center;
}
.tariffs .subtitle {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0 auto 50px;
  width: 90vw;
  text-align: center;
  justify-self: center;
}
.tariffs .container {
  display: flex;
  width: 100%;
  max-width: 925px;
  margin: 0 auto;
  justify-content: center;
}
.tariffs .container .tariff {
  margin: 0 15px;
  justify-content: center;
  align-content: center;
}
.tariffs .container .tariff .icon {
  margin: 0 0 10px 0;
}
.tariffs .container .tariff .icon img {
  margin: 0 auto;
  display: flex;
}
.tariffs .container .tariff .name {
  text-align: center;
  color: #FFFFFF;
  font-family: Montserrat-Bold;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
}
.tariffs .container .tariff .divider {
  border-top: 1px dashed #FFFFFF;
  margin: 10px 0;
}
.tariffs .container .tariff .price {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
}
.tariffs .button {
  max-width: 360px;
  width: 90vw;
  margin: 50px auto 70px;
  font-family: Montserrat-Bold;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.feedback {
  width: 100vw;
  display: flex;
  flex-direction: column;
  background: #F8FAFD;
}
.feedback .title-big {
  font-family: Montserrat-Bold;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  width: 95vw;
  margin: 60px auto 50px;
  color: #2252BC;
}
.feedback .container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: row;
}
.feedback .container .card {
  margin: 15px 15px;
  box-shadow: -5px -5px 10px rgba(222, 222, 222, 0.3), 5px 5px 10px rgba(211, 211, 211, 0.3);
  border-radius: 16px;
  padding: 20px 30px;
  flex: 1;
  min-height: 500px;
}
.feedback .container .card .avatar {
  border-radius: 1000px;
  border: 5px solid #2252BC;
  width: fit-content;
  margin: 0 auto 20px;
  box-shadow: -5px -5px 10px rgba(222, 222, 222, 0.3), 5px 5px 10px rgba(211, 211, 211, 0.3);
}
.feedback .container .card .avatar img {
  margin: 0 auto;
  display: flex;
}
.feedback .container .card .title {
  font-family: Montserrat-Regular;
  text-align: center;
  width: 100%;
  margin: 0 auto 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  color: #191919;
}
.feedback .container .card .row {
  width: 100%;
  min-height: 22.5px;
  display: flex;
  align-items: center;
}
.feedback .container .card .row .date {
  width: 50%;
  float: left;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #424E5A;
}
.feedback .container .card .row .rank {
  margin: 0 0 0 auto;
  display: flex;
}
.feedback .container .card .row .rank .star-blue {
  width: 24.5px;
  height: 22.5px;
  background: url("../img/feedback-star.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 1px;
}
.feedback .container .card .row .rank .star-grey {
  width: 24.5px;
  height: 22.5px;
  background: url("../img/feedback-star-trans.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 1px;
}
.feedback .container .card .divider {
  width: 100%;
  min-height: 1px;
  background: url("../img/feedback-border.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 10px 0px;
}
.feedback .container .card .review {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: #191919;
}

.faq {
  width: 100vw;
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #2B32B2 0%, #1488CC 99.57%);
}
.faq .title {
  font-family: Montserrat-Bold;
  width: 90vw;
  margin: 50px auto;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  color: #FFFFFF;
  text-align: center;
  justify-self: center;
}
.faq .row-wrap {
  max-width: 1180px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: row;
}
.faq .row-wrap .questions {
  margin: 0 13px 0 0;
}
.faq .row-wrap .callback-form {
  margin: 0 0 0 13px;
  background: #FFFFFF;
  max-width: 485px;
  width: 100%;
  border-radius: 16px;
  padding: 30px 35px;
  height: fit-content;
}
.faq .row-wrap .callback-form .title-form {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #2252BC;
}
.faq .row-wrap .callback-form #name {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 28px 25px;
  margin: 35px auto 10px;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #000000;
}
.faq .row-wrap .callback-form #name::placeholder {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #A0A0A0;
}
.faq .row-wrap .callback-form #phone {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 28px 25px;
  margin: 10px auto 35px;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #000000;
}
.faq .row-wrap .callback-form #phone::placeholder {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  color: #A0A0A0;
}
.faq .row-wrap .callback-form .button {
  background: #007BEF !important;
  border-radius: 8px;
  text-align: center;
}
.faq .row-wrap .callback-form .description {
  margin-top: 15px;
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 20px;
  color: #A0A0A0;
}
.faq .row-wrap .lnk {
  color: #2252BC;
  width: max-content;
}
.faq .row-wrap .lnk:after {
  content: "";
  display: block;
  height: 2px;
  background: #2252BC;
  width: 0;
  transition: 0.6s width ease-in-out;
}
.faq .row-wrap .lnk:hover:after {
  width: 100%;
}

.alt-main {
  background: #F8FAFD !important;
  margin-top: 82px;
}
.alt-main .title {
  color: #2252BC !important;
}
.alt-main .row-wrap .questions .container .row .subtitle {
  color: #2252BC;
  margin: 40px 10px 30px;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
}
.alt-main .row-wrap .questions .container .row .card {
  background: #FFFFFF;
  border-radius: 16px;
}
.alt-main .row-wrap .questions .container .row .card .question {
  color: #2252BC;
}
.alt-main .row-wrap .promos {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
}
.alt-main .row-wrap .promos .button {
  max-width: 320px;
  width: 100%;
  text-align: center;
}
.alt-main .row-wrap .promos .promocard {
  background: #FFFFFF;
  box-shadow: -5px -5px 10px rgba(222, 222, 222, 0.3), 5px 5px 10px rgba(211, 211, 211, 0.3);
  border-radius: 16px;
  max-width: 400px;
  margin: 10px;
}
.alt-main .row-wrap .promos .promocard .image {
  width: 100%;
}
.alt-main .row-wrap .promos .promocard .image img {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.alt-main .row-wrap .promos .promocard .text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 50px);
  padding: 20px 25px;
}
.alt-main .row-wrap .promos .promocard .text .title {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  width: 100%;
  text-align: left;
  margin: 0;
}
.alt-main .row-wrap .promos .promocard .text .description {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  color: #2252BC;
  margin-top: 20px;
}
.alt-main .row-wrap .promos .promocard .text .show-more {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #5B9AD5;
  margin-top: 20px;
}
.alt-main .container {
  display: flex;
  flex-direction: row;
  flex: 1;
  width: 100vw;
}
.alt-main .container .left-part {
  max-width: 42vw;
  width: 100%;
  margin: 0 4vw;
}
.alt-main .container .left-part .blocks .title {
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  color: #2252BC;
  width: 100%;
}
.alt-main .container .left-part .blocks .block-phone {
  background: #ECECEC;
  border-radius: 16px;
  padding: 8px 12px;
  margin: 10px 0;
  width: fit-content;
}
.alt-main .container .left-part .blocks .block-phone .title {
  font-family: Montserrat-Bold;
  color: black;
  text-align: left;
}
.alt-main .container .left-part .blocks .block-phone .description {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: gray;
}
.alt-main .container .right-part {
  max-width: 50vw;
  width: 100%;
  min-height: 70vh;
}

.alt-main-2 {
  background: url("../img/about-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.alt-main-2 .left {
  display: flex;
  flex-direction: column;
  padding-left: 9vw;
}
.alt-main-2 .left .subtitle {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  max-width: 500px;
}

.alt-steps .subtitle {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #2252BC;
  width: 90%;
  margin: 0 auto 50px;
}
.alt-steps .container {
  display: flex;
  justify-items: center;
  align-items: flex-start;
}
.alt-steps .container .item {
  max-width: 250px;
  width: 100%;
  margin: 0 10px;
}
.alt-steps .container .item .icon {
  width: 40px;
  margin: 0 auto;
}
.alt-steps .container .item .main-text {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 16px;
  min-height: 40px;
  padding-top: 15px;
  text-align: center;
  color: #2252BC;
}
.alt-steps .container .item .sub-text {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px dashed #2252BC;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #191919;
}
.alt-steps .button {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: block;
}

footer {
  padding: 4vw 9vw;
  display: flex;
  flex-direction: row;
  flex: 1;
}
footer .column {
  padding: 15px;
  flex: 1;
}
footer .column .info {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #191919;
  padding: 10px 0;
}
footer .column .info .link {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: #2252BC;
  display: block;
}
footer .column .info .link:not(.last) {
  margin-bottom: 4px;
}
footer .column .block {
  padding: 8px 12px;
}
footer .column .block .title {
  font-family: Montserrat-Bold;
}
footer .column .block .description {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: gray;
}
footer .column .block-phone {
  background: #ECECEC;
  border-radius: 16px;
  padding: 8px 12px;
}
footer .column .block-phone .title {
  font-family: Montserrat-Bold;
}
footer .column .block-phone .description {
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 16px;
  color: gray;
}

/* Accordion */
.questions > .container {
  align-self: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
.questions > .container > .row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.questions > .container > .row > .card {
  padding: 1rem;
  min-height: 6rem;
  width: 100%;
  background: #F3F3F3;
  border-radius: 0.8rem;
  margin: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  vertical-align: bottom;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.questions > .container > .row > .card .question {
  justify-content: space-between;
  color: #242629;
  position: relative;
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
}
.questions > .container > .row > .card .question .icon {
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/arrow.svg) no-repeat center center;
  transition: 300ms ease-in-out;
  transform: rotate(270deg);
  position: absolute;
  right: 0;
  top: calc(50% - 0.55rem);
}
.questions > .container > .row > .card .answer {
  overflow: hidden;
  transition: height 300ms ease-in-out;
  height: 0;
  font-family: Montserrat-Regular;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}
.questions > .container > .row > .card .answer span {
  display: block;
  padding-top: 1rem;
}
.questions > .container > .row > .card.open .question .icon {
  transform: rotate(90deg);
}

/* Adaptive */
@media screen and (max-width: 1180px) {
  header img {
    margin-right: 30px;
  }
  .main .right {
    min-width: 46vw;
  }
}
@media screen and (max-width: 1081px) {
  header {
    flex-direction: column;
    height: 100px;
  }
  header .desktop-header {
    padding: 20px 9vw;
    z-index: 8;
  }
  header .desktop-header .hamburger {
    display: block;
  }
  header .desktop-header .menu-list {
    display: none;
  }
  header .desktop-header .grey-text .login-icon img {
    padding-left: 0;
    margin-left: 10px;
  }
  header .desktop-header img {
    margin-left: 9vw;
  }
  header .mob-header {
    display: flex;
    height: auto;
    border-bottom: 1px solid grey;
    transition: 0.5s ease-in-out;
    position: relative;
    top: -50vh;
    z-index: 5;
  }
  header .mob-header .menu-list {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
  }
  header .mob-header .menu-list .menu-item {
    width: 100vw;
    text-align: center;
    border-top: 1px solid grey;
    padding: 5px 0;
  }
  header .grey-text {
    display: none !important;
  }
  .main {
    flex-direction: column;
    background: #8ec9e0;
  }
  .main .left {
    margin: 0 9vw;
    flex-direction: column;
    display: flex;
  }
  .tariffs .container {
    flex-wrap: wrap;
  }
  .tariffs .container .tariff {
    margin: 0 15px 30px;
  }
  .alt-main-2 {
    background: #64d3d4 !important;
  }
  .faq .row-wrap {
    max-width: 900px;
  }
  .alt-steps .container {
    flex-direction: column;
  }
  .alt-steps .container .item {
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .main .left .title {
    font-size: 39px;
    line-height: 39px;
    width: 70vw;
  }
  .main .right .calculator {
    margin: 20px;
  }
  .steps .container {
    flex-wrap: wrap;
  }
  .steps .container .block {
    margin: 10px 13px;
  }
  .tariffs .button {
    max-width: 100%;
    width: 200px;
  }
  .faq .row-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .faq .row-wrap .questions, .faq .row-wrap .callback-form {
    margin: 10px 13px;
  }
  footer {
    flex-direction: column;
  }
  .alt-main .row-wrap .promos {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
  }
  .alt-main .container {
    flex-direction: column;
  }
  .alt-main .container .left-part {
    max-width: 92vw;
  }
  .alt-main .container .right-part {
    max-width: 100vw;
  }
  .alt-main-2 .left {
    margin: 0px 0vw;
    padding: 0 9vw;
  }
  .alt-main-2 .left .title {
    margin-bottom: 25px;
  }
  .alt-main-2 .left .subtitle {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
