*, ::after, ::before {
  box-sizing: border-box
}

ol, ul {
  margin: 0;
  padding: 0
}

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, p {
  margin: 0
}

1body, html {
  height: 100%
}

1body {
  position: relative;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  display: flex;
  flex-direction: column;
  color: #353E48;
  font-family: 'Montserrat', 'Arial', sans-serif;
}

ol[class], ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  border: none;
  outline: 0
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important
  }
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

body.overflow {
  overflow-y: hidden; position: relative; height: 100%; touch-action: none; -ms-touch-action: none;
}


.back-link {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;

  color: #2550A8;
}

.back-link svg {
  margin-right: 15px;
  height: 25px;
}

.main {
  //background: linear-gradient(180deg, #F4F8FF 4.32%, #B7C4E1 89.36%);
}

.main_thanks {
  height: 100%;
}

.main__btn-container {
  display: none;
}

.main__btn-container p {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}

.container {
  width: 100%;
  padding: 0 20px;
}

.header {
  position: relative;
  height: 100vh;
  padding-top: 30px;
  padding-bottom: 20px;

}

.header__container {
  height: 100%;
}

.header__flexbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


.info__text-lg {
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
}


.header__supheader {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 255px;
  height: 54px;
  padding: 0 20px;
  margin-bottom: 20px;
  background: #FDE3C3;
  border-radius: 8px;
  line-height: 20px;
}

.h1 {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: bold;
}

.h1 br {
  display: none;
}

.btn {
  width: 100%;
  max-width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #2550A8;
  border-radius: 10px;

  font-size: 14px;
  line-height: 25px;
  text-transform: uppercase;
  color: #ffffff;

  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover, .btn:focus {
  background: #1f438e; /* 15 */
}

.btn:active {
  background: #193775; /* 30 */
}

.info {
  padding-top: 45px;
  padding-bottom: 50px;
}


.info__item {
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.info__text-xlg {
  font-weight: bold;
  font-size: 35px;
  line-height: 40px;
}

.info__list {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 25px;
}

.info__list-item {
  margin-bottom: 18px;
}

.info__list-col:last-of-type .info__list-item:last-of-type {
  margin-bottom: 0;
}

.info__list_marked .info__list-item {
  display: flex;
}

.info__list_marked .info__list-item::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #393C59;
  border-radius: 50%;
  margin-top: 7px;
  margin-right: 10px;
  flex-shrink: 0;
}

.nowrap {
  white-space: nowrap;
}

.main__btn-container {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  min-height: 100vh;
  transform: translateX(-100%);
  z-index: 3;
  overflow-y: auto;

  color: #393C59;
  //background: linear-gradient(180deg, #F4F8FF 4.32%, #B7C4E1 89.36%);
  padding-bottom: 75px;

  transition: all 0.3s;
}

.modal.hidden {
  display: none;
}

.modal.open {
  transform: translateX(0);
}

.modal__title {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  font-weight: 300;
}

.modal__text {
  font-size: 14px;
  line-height: 25px;
  font-weight: 300;

  text-transform: uppercase;
  color: #393C59;
}

.modal__text_center {
  text-align: center;
  padding-bottom: 20px;
}

.modal__container {
  padding: 0 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal__header {
  display: flex;
  align-items: center;
  height: 53px;
}

.modal__close {
  width: 20px;
  height: 40px;
  cursor: pointer;
  background-color: transparent;
  background-image: url('img/Vector.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.modal__input {
  width: 100%;
  height: 60px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 300;
  padding: 0 22px;
  margin-bottom: 15px;
  color: #393C59;
  background: rgba(37, 80, 168, 0.08);
}

.modal__input::placeholder {
  color: #393C59;
}

.modal__inputs {
  margin-bottom: 35px;
}

.modal__radio-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.modal__text_radio {
  padding-bottom: 15px;
}

.modal__radio-label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 1px solid #2550A8;
  border-radius: 10px;
  cursor: pointer;
  color: #393C59;
  transition: all 0.3s;
}

.modal__radio-label.active {
  color: #ffffff;
  background: #2550A8;
  border-color: transparent;
}

.agreement {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  cursor: pointer;
}

.agreement p {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.agreement svg {
  opacity: 0;
  transition: all 0.3s;
}

.agreement-checkbox:checked ~ .agreement svg {
  opacity: 1;
}

.agreement__box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  border: 1px solid rgba(253, 227, 195, 0.3);
  border-radius: 5px;
  flex-shrink: 0;
  background: #fff;
}

.box_thanks-page {
  padding-top: 80px;
  height: 100%;
  text-align: center;
}

.h1_thanks-title {
  padding-bottom: 35px;
}

.box_thanks-page .header {
  height: 100%;
}

.box_thanks-page .header__flexbox {
  justify-content: flex-start;
}

.header__text {
  position: relative;
  font-size: 30px;
  line-height: 35px;
  font-weight: 200;
}

.header__sub {
  color: #2550A8;
  font-weight: normal;
  margin-top: 10px;
}

.info__header {
  display: flex;
  align-items: baseline;
  line-height: 24px;
  font-weight: bold;
  color: #FDE3C3;
  margin-bottom: 10px;
}

.info__header img {
  margin-left: 10px;
}


.info__text {
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.info__bold {
  margin-left: auto;
  flex-basis: 70%;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
}

.info__item img {
  display: block;
  height: 84px;
  margin-right: 20px;
}

.header__sup {
  margin-bottom: 25px;
}

.info__text_mt-20 {
  margin-top: 20px;
  color: #8F95AC;
}



.info__row {
  align-items: baseline;
}


.agreement a {
  color: #2550A8;
  font-weight: bold;
}

.installment {
  position: relative;
  padding: 35px 0 20px;
  max-width: 100%;
  border-top: 1px solid rgba(164, 205, 255, 0.3);
}

.installment__header {
  margin-bottom: 10px;
}

.installment__row {
  display: flex;
  justify-content: space-between;
}

.installment__col {
  margin-bottom: 20px;
}

.installment__col_flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.installment__col img {
  margin-right: 15px;
}


.installment__lg {
  display: block;
  margin-bottom: 5px;
  color: #2550A8;
  font-size: 24px;
  font-weight: bold;
}

.installment__text {
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
}

.installment__row {
  flex-wrap: wrap;
}

.info__bg-text {
  background: #2550A8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14px;
}

.info__other-title {
  margin-top: 30px;
  margin-bottom: 15px;
}

.box::-webkit-scrollbar {
  display: none;
}

.box {
  color: #393C59;
  padding-bottom: 60px;
  overflow: auto;

  -ms-overflow-style: none;
  scrollbar-width: none;
}


.fixed_block {
  background: #FFF;
  width: 100%;
  padding: 15px;
  position: fixed;
  bottom: 0;
  text-align: center;

}


.header__btn {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.tel_modal {
  bottom: 100px;
  text-align: center;
  font-size: 18px;
  color: #353E48;
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
}

@media (min-width: 768px) {

  .modal {
    padding-bottom: 25px;
  }


  .modal__container {
    padding: 0 82px;
  }

  .info {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .info__list {
    padding-left: 0;
  }

  .info__item {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .info__item img {
    margin-bottom: 8px;
    height: auto;
  }

  .info__item:first-of-type {
    padding-right: 40px;
  }

  .installment__col {
    flex: 1 1;
    padding-right: 15px;
    padding-left: 0;
  }

  .installment__col:last-child {
    padding-right: 0;
  }

  .installment__row {
    flex-direction: row;
  }

  .back-link {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .container {
    padding: 0 82px;
  }

  .header {
    height: 835px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .header__supheader {
    width: auto;
    height: 42px;
  }

  .box_thanks-page {
    padding-top: 0;
  }

  .box_thanks-page {
    padding-top: 40px;
  }

  .h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .btn {
    width: 356px;
    margin: 0 auto;

    font-size: 18px;
    line-height: 25px;
  }

  .header__btn {
    margin-top: -80px;
    position: relative;
    transform: none;
    left: 0;
  }

  .info {
    padding-top: 20px;
  }

  .info__main {
    display: flex;
    flex-direction: column;
  }

  .info__row {
    display: flex;
  }

  .info__text-lg {
    font-size: 18px;
    line-height: 25px;
  }

  .info__text-xlg {
    font-size: 35px;
    line-height: 40px;
  }

  .info__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;

    font-size: 14px;
    line-height: 22px;
  }

  .info__list-col {
    flex-basis: 48%;
    padding-right: 15px;
    margin-bottom: 18px;
  }


  .modal__title {
    padding-top: 35px;
    padding-bottom: 50px;

    font-size: 40px;
    line-height: 45px;
  }

  .modal__header {
    border-bottom: 0;
  }

  .modal__close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    background-image: url('img/close-2.svg');
    background-color: rgba(37, 80, 168, 0.3);
    transition: all 0.3s;
  }

  .modal__close:hover, .modal__close:focus {
    background-color: rgba(37, 80, 168, 0.2);
  }

  .modal__close:active {
    background-color: rgba(37, 80, 168, 0.3);
  }

  .modal__inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .modal__input {
    height: 70px;
    flex-basis: 49%;
    font-size: 16px;
  }

  .modal__radio-label {
    width: 140px;
    height: 60px;
  }

  .modal__radio-list {
    display: flex;
    flex-wrap: wrap;
  }

  .modal__text {
    padding-bottom: 30px;
    font-size: 18px;
    line-height: 25px;
  }

  .agreement {
    margin-bottom: 55px;
  }

  .modal__submit {
    width: 390px;
    max-width: 100%;
    height: 70px;
  }

  .modal__radio-list {
    margin-bottom: 40px;
  }

  .box {
    padding-bottom: 0;
  }

}

@media (min-width: 1280px) {

  .back-link {
    position: absolute;
    top: 60px;
    left: 60px;
  }

  .main {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 940px;
    //background: linear-gradient(180deg, #F4F8FF 4.32%, #B7C4E1 89.36%);

  }

  .container {
    padding: 0;
    width: 615px;
  }

  .header {
    height: auto;
    padding: 0;
    background-image: none;
  }

  .h1 {
    position: relative;
    font-size: 35px;
    line-height: 40px;
  }

  .info__item {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .info__item img {s
    height: 80px;
  }

  .main__btn-container {
    position: absolute;
    right: auto;
    bottom: 25%;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: fit-content;
    padding: 0 10px;
  }

  .main__tel-container {
    position: absolute;
    right: auto;
    top: 90px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: fit-content;
    padding: 0 10px;
  }


  .main__tel-container a{
    text-decoration: none;
    color: #393C59;
    font-size: 21px;
    font-weight: bold;
  }
  
  .main__btn {
    width: 348px;
    height: 80px;
  }

  .info {
    position: relative;
    padding-top: 15px;
    padding-bottom: 50px;
  }

  .info__row {
    /* justify-content: space-between; */
    align-items: baseline;
  }

  .info__item {
    flex-basis: 50%;
    flex-grow: 0;
    margin-top: 0;
    margin-bottom: 0;
  }


  .info__item:first-of-type {
    padding-right: 20px;
  }


  .info__list {
    border-top: 1px solid rgba(164, 205, 255, 0.3);
    padding-top: 35px;
    margin-bottom: 0;
  }

  .info__list-col {
    flex-basis: 48%;
    padding-right: 0;
  }


  .info__list-item:first-child {
    max-width: 100%;
  }

  .info__cut-text {
    width: 85%;
  }

  .box {
    width: 650px;
    position: relative;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .header__btn {
    display: none;
  }

  .main__btn-container {
    display: flex;
    flex-direction: column;
  }


  .main__btn {
    display: inline-flex;
  }

  .modal__title {
    padding-top: 12px;
    padding-bottom: 30px;
    width: 980px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 50px;
    line-height: 55px;
  }

  .modal__text {
    padding-bottom: 12px;
  }

  .modal {
    right: 0;
  }

  .modal__form {
    width: 590px;
    margin: 0 auto;
  }

  .box_thanks-page .header {
    width: 100%;
  }

  .box_thanks-page {
    margin: 15% auto;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .box_thanks-page .header__flexbox {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .box_thanks-page .header__container {
    width: 100%;
    background-position: center top;
  }

  .h1_thanks-title {
    max-width: 100%;
  }

  .info .installment {
    margin-top: 20px;
  }

  .installment {
    margin-top: 30px;
  }

}

@media (min-width: 1600px) {

  .info__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .info__item img {
    height: auto;
  }

  .info__item:first-of-type {
    padding-right: 40px;
  }

  .main {
    position: relative;
   // background: linear-gradient(180deg, #F4F8FF 4.32%, #B7C4E1 89.36%);
  }

  .container {
    width: 100%;
  }

  .h1 {
    max-width: 560px;
    font-size: 45px;
    line-height: 45px;
  }

  .h1_thanks-title {
    max-width: 100%;
  }

  .h1 br {
    display: inline;
  }

  .main__btn-container {
    right: auto;
    bottom: 2%;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .main__tel-container {
    right: auto;
    bottom: 2%;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .header__supheader {
    padding: 0 28px;
    height: 58px;
  }

  .info__item {
    flex-basis: 38%;
    margin-top: 0;
  }

  .info__item:first-of-type {
    flex-basis: 34%;
  }

  .info__list {
    width: 590px;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .info__list-col {
    margin-bottom: 0;
    flex-basis: 50%;
  }

  .info__list-col:first-child {
    flex-basis: 45%;
  }

  .box {
    width: 650px;
  }

  .info__cut-text {
    width: 100%;
  }

  .modal__text {
    padding-bottom: 20px;
  }

  .modal__form {
    width: 720px;
  }

  .modal__radio-label {
    width: 172px;
  }

  .modal__close {
    top: 30px;
    right: 40px;
  }

  .header__sub {
    position: relative;
    font-size: 20px;
    line-height: 28px;
    max-width: 560px;
  }

  .header__sup {
    display: none;
  }

  .installment {
    width: 590px;
  }

  .info__text {
    font-size: 16px;
  }

  .info__bg-text {
    font-size: 14px;
  }

  .installment__lg {
    font-size: 26px;
  }
}


@media (min-width: 1280px) and (max-width: 1599px) {
  .info__other-title {
    margin-top: 0;
  }
}


.footer {
  background: #1B2230;
  color: #B2B7CD;
  font-size: 13px;
  line-height: 18px;
}

.wrapper {
  position: relative;
  width: 1310px;
  max-width: 100%;
  margin: 0 auto;
}

.wrapper-left {
  width: calc(100% - ((100% - 1310px) / 2));
  display: flex;
  margin-left: auto;
  margin-right: 0;
  height: 100%;
}

.footer__container {
  display: flex;
}

.footer__block {
  display: flex;
  align-items: center;
  margin-right: 72px;
  padding: 15px 0;
}

.footer__block:last-of-type {
  margin-right: 0;
}

.footer__logo {
  margin-right: 20px;
}


.slider {
  position: relative;
  width: 1px;
  flex-grow: 1;
  height: 840px;
  height: 100%;
}

.slider img {
  display: block;
  margin: 0 auto;
  height: calc(100vh - 66px);
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-container, .swiper-wrapper {
  height: 100%;
}

.slider__nav div {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider__prev {
  left: 22px;
}

.slider__next {
  right: 22px;
}


.slider__nav img {
  width: 44px;
  height: 44px;
}

.service {

}

.h2 {
  font-size: 28px;
  line-height: 26px;
}

.service b {
  display: block;
}

.service .info__list {
  border: none;
  padding-top: 45px;
}

.service .info__list-item {
  margin-bottom: 25px;
}

@media (max-width: 1599px) {
  .wrapper {
    padding: 0 25px;
  }
  .wrapper-left {
    padding-left: 25px;
    padding-right: 0;
  }
}

@media (max-width: 1279px) {
  .slider {
    position: absolute;
    top: 230px;
    left: 0;
    height: auto;
    width: 100%;
    flex-grow: 0;
    height: 600px;
  }

  .slider img {
    object-position: unset;
  }

  .wrapper-left {
    padding: 0;
  }

  .footer__block {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__block b {
    display: block;
    margin-bottom: 8px;
  }

  .footer__logo {
    margin-bottom: 5px;
  }
}


@media (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    padding-bottom: 100px;
  }

  .main__tel-container{
    display: none;
  }

  .slider {
    height: 375px;
  }

  .info {
    padding-top: 0;
  }

  .service {
    padding-bottom: 0;
  }
  
  .header__sub {
    margin-bottom: 15px;
  }
}

.scroll {
  position: absolute;
  top: 70%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 73px;
  height: 73px;
  background: #303846;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1279px) {
  .scroll {
    display: none;
  }
}

.progress .h1 {
  text-align: center;
}

.progress .back-link {}

.progress .header__text {
  font-size: 14px;
  line-height: 20px;
  color: #393C59;
  font-weight: normal;
  margin-bottom: 20px;
}

.progress__container {
  width: 1260px;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 120px;
}


.progress__slider, .progress__slider .swiper-slide img {
  width: 970px;
  height: 640px;
  max-width: 100%;
  flex-grow: 0;
}

.progress__slider .swiper-container {
  border-radius: 12px;
}

.progress__section {
  display: flex;
}

.progress__aside {
  margin-left: 30px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tab__link {
  display: flex;
  height: 34px;
  height: 18px;

  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin: 2px 0;
  font: inherit;
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s;
  border-radius: 8px;
}

.tab__link.active {
  color: #fff;
  background: #2550A8;
}

.tab__link[disabled] {
  cursor: default;
  color: #C3CDE3;
}

.custom-select {
  width: 220px;
  margin-bottom: 20px;
  position: relative;
  font-family: inherit;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #d9e0f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  
  border-radius: 10px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  content: "";
  display: flex;
  width: 8px;
  height: 8px;
  border: 2px solid #2C2E3E;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  transition: all 0.3s;
}

.select-selected.select-arrow-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}


/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  transform: rotate(135deg);
  margin-top: 8px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #2C2E3E;

  font-weight: bold;
  font-size: 14px;
  padding: 18px 28px;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #d9e0f2;
  border-top: 1px solid rgba(53, 62, 72, 0.08);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, div.same-as-selected {
  background-color: #2550A8;
  color: #fff;
}

.progress__container .header {
  height: auto;
}

.slider.progress__slider {
  position: relative;
  top: 0;
}

.info__progress {
  display: inline-flex;
  margin-top: 20px;
  height: 50px;
  padding: 0 18px;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #2550A8;
  background: rgba(37, 80, 168, 0.1);
  border-radius: 10px;
}

.info__progress img {
  margin-right: 10px;
}

.info__keys {
  margin-top: 30px;
}

.tabs-content {
  display: none;
}

.tabs-content.active {
  display: block;
}


@media (max-width: 1279px) {
  .progress__container {
    width: 1070px;
  }
  .progress__slider, .progress__slider .swiper-slide img {
    width: 790px;
    height: 520px;
  }
  .tab__link {
    margin: 2px 0;
  }
  .custom-select {
    margin-bottom: 5px;
  }

}

@media (max-width: 1023px) {
  .progress__section {
    flex-direction: column;
  }
  .progress__aside {
    order: -1;
    margin-left: 0;
  }
  .custom-select {
    width: 295px;
  }
  .tab {
    flex-direction: row;
    overflow: scroll;
    padding: 20px 0;
  }
  .tab__link {
    margin: 0 5px;
  }

  .select-selected {
    background-color: #d1daee;
  }
  
}

@media (max-width: 767px) {
  .progress__slider, .progress__slider .swiper-slide img {
    width: 100%;
    height: 245px;
  }

  .custom-select {
    width: 100%;
  }

  .select-selected {
    height: 50px;
  }

  .tab__link[disabled] {
    color: rgba(16, 16, 16, 0.3);
  }

  .main_thanks.progress {
    height: auto;
    padding-bottom: 50px;
  }

  .select-selected {
    background-color: #b8c7e7;
  }

  .info__keys {
    margin-top: 0;
  }

  .info__progress {
    margin-top: 0;
  }
  
}