/* Fonts */
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url("../fonts/BebasNeuePro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue Pro';
  src: url("../fonts/BebasNeuePro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN 2014';
  src: url("../fonts/DIN2014-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN 2014';
  src: url("../fonts/DIN2014-DemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
li {
  margin: 0;
}

label {
  margin: 0;
}

/* Validation */
label.error {
    font-size: 14px;
    color: red;
}

.alert-success {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    
    color: #fff;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 1300px) {
  .container {
    padding: 0 3rem;
  }
}
@media (max-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
}

/* section */
section {
    padding: 100px 0 0;   
}
@media screen and (max-width: 1200px) {
    section {
        padding: 80px 0 0;   
    } 
}
@media screen and (max-width: 992px) {
    section {
        padding: 60px 0 0;   
    } 
}
@media screen and (max-width: 768px) {
    section {
        padding: 40px 0 0;   
    } 
}

/* title */
.title {
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 60px;
    line-height: 69px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    
    color: #FFFFFF;   
}
.subtitle {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    
    color: #E4E4E4;   
}
.section-title {
    position: relative;
    
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    
    color: #151515;   
}
.section-title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 42px;
    height: 3px;
    background: #92000A;
}
.section-title_white {
    position: relative;
    
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    
    color: #FFFFFF;   
}
.section-title_white:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 42px;
    height: 3px;
    background: #FFFFFF;
}
@media screen and (max-width: 1200px) {
    .section-title, .section-title_white {
        font-size: 38px;
        line-height: 40px;
    }
}
@media screen and (max-width: 768px) {
    .section-title, .section-title_white {
        font-size: 32px;
        line-height: 34px;
    }
}

.button {
    background: #92000A;
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    outline: none !important;
    border: 1px solid #92000A;
    
    padding: 16px 21px;
    text-transform: uppercase;
    cursor: pointer;
    
    /* ff */
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.075em;
    
    color: #FFFFFF;
    
    -webkit-transition: 0.5s all;
    
    -o-transition: 0.5s all;
    
    transition: 0.5s all;
}
.button:hover {
    background: #FFFFFF;
    color: #92000A;
}
.button_white {
    background: #FFFFFF;
    color: #92000A;
}
.button_white:hover {
    color: #FFFFFF;
    background: #92000A;
}

/* lAYOUT */
.layout {
    position: relative;
}
.layout__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    height: 100%;
    -webkit-filter: brightness(60%);
            filter: brightness(60%); 
}
.layout__wrapper {
    max-height: 100vh;
    height: 768px;
    padding: 100px 0 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
}
.layout__content {
    position: relative;
    max-width: 624px;   
}
.layout_cir {
    position: absolute;
    left: -54px;
    top: -42px;
}
@media screen and (max-width: 1300px) {
    .layout_cir {
        position: absolute;
        left: -34px;
        top: -28px;
    }
    .layout_cir svg {
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width: 992px) {
    .layout_cir {
        display: none;
    }
}
.layout__subtitle {
    margin-top: 4px;
}
.layout__button {
    margin-top: 26px;   
}
.layout__whatsapp {
    position: absolute;
    right: 14px;
    bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 49px;
    height: 49px;
    background: #4cc85b;
}

/* Menu */
.menu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    background: #ffffff;
    border-bottom: 1px solid gray;
}
.menu__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1220px;
    padding: 20px;
    margin: 0 auto;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -moz-column-gap: 40px;
       -webkit-column-gap: 40px;
          column-gap: 40px;
}
.menu__list li {
  list-style: none;
}
.menu__item {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;

    text-transform: uppercase;
    
    color: #151515;
}
.menu__item:hover {
    color: #92000A;
}
.menu__phone a {
    outline: none !important;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    /* identical to box height */
    
    letter-spacing: 0.04em;
    text-transform: uppercase;
    
    color: #151515;
}
.menu__phone a:hover {
    text-decoration: none;
    color: #92000A;
}
.menu__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
}
.menu__mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;   
}
.menu__logo img {
    height: 60px;   
}
.menu__phone svg {
    width: 20px;   
}

/* Burger */
.burger {
    display: none;
    height: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    z-index: 10;
    cursor: pointer;   
}
.burger span {
    display: block;
    width: 30px;
    height: 4px;
    background: #92000A;
    border-radius: 10px;
}
.burger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 30%);
            box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 100;
}

.burger-menu.active {
  right: 0;
}

.burger-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100vh;
    list-style: none;
    padding: 20px;
}

.burger-menu ul li {
  margin-bottom: 10px;
}
.burger-menu__item {
    font-family: 'Bebas Neue Pro';
    font-weight: 700;
    font-size: 32px;
    line-height: 30px;

    letter-spacing: 0.02em;
    text-transform: uppercase;
    
    color: #151515;    
}
.burger-menu__item:hover {
    color: #92000A;
    text-decoration: none;
}
.burger-menu__close {
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;   
}
@media screen and (max-width: 1200px) {
    /* Menu */
    .menu__content {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;   
    }
    .menu__list {
        -moz-column-gap: 20px;
        -webkit-column-gap: 20px;
        column-gap: 20px;   
    }
    .menu__phone a {
        font-size: 16px;
        line-height: 16px;
    }
    
    /* layout */
    .layout__content  {
        max-width: 524px;   
    }
    .layout__title {
        font-size: 50px;
        line-height: 56px;   
    }
    .layout__subtitle {
        margin-top: 14px;
        font-size: 17px;
        line-height: 21px;
    }
    .menu__item {
        font-size: 16px;   
    }
    .menu__mob {
        font-size: 14px;   
    }
    .menu__phone svg {
        width: 18px;   
    }
}

@media screen and (max-width: 992px) {   
    /* Menu */
    .menu__list {
        display: none;   
    }
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
    .menu__content {
        padding: 14px 10px;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px; 
    }
    .menu__logo img {
        height: 50px;
    }
    .menu__list {
        -moz-column-gap: 14px;
        -webkit-column-gap: 14px;
        column-gap: 14px;
    }
    .menu__item {
        font-size: 15px;
        line-height: 16px;
    }
    .menu__phone {
        -webkit-column-gap: 6px;
           -moz-column-gap: 6px;
                column-gap: 6px;   
    }
    .menu__phone svg {
           width: 18px;
           height: 18px;
    }
    .menu__phone a {
        font-size: 15px;
        line-height: 16px;
    }
    
    /* layout */
    .layout__wrapper {
        padding: 78px 0 20px;   
    }
    .layout__city {
        font-size: 22px;
        line-height: 38px;   
    }
    
    /* title */
    .title {
        line-height: 52px;   
    }
}
@media screen and (max-width: 768px) {
    .menu__content {
        padding: 10px;   
    }
    
    /* layout */
    .layout__content {
        max-width: 400px;   
    }
    .layout__subtitle {
        font-size: 14px;
        line-height: 18px;
    }
    .layout__city {
        margin-top: 10px;
        font-size: 20px;
        line-height: 24px;
    }
    .layout__button {
        padding: 12px 20px;
    }
    .layout__whatsapp {
        width: 40px;
        height: 40px;
    }
    .layout__whatsapp svg {
        width: 22px;
        height: 22px;
    }
    
    /* title */
    .title {
        font-size: 40px;
        line-height: 42px;
    }
}

@media screen and (max-width: 576px) {
    /* Menu */
    .burger-menu {
        width: 100%;
    }
    
    /* layout */
    
    .layout__wrapper {
        padding: 60px 0 20px;
        max-height: 80vh;   
    }
    .layout__content {
        max-width: 360px;
    }
    .layout__link {
        bottom: 36px;   
    }
    .layout__link a {
        font-size: 13px;
        line-height: 16px;
    }
    
    /* menu */
    .menu__logo img {
        height: 40px;
    }
    .menu__mob {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;   
    }
    .menu__phone {
        -webkit-column-gap: 6px;
           -moz-column-gap: 6px;
                column-gap: 6px;   
    }
    .menu__phone a {
        font-size: 13px;
        line-height: 15px;
    }
    .menu__mob {
        font-size: 12px;
    }
    .menu__phone svg {
        width: 14px;
    }
    
    .menu__phone span {
        display: none;   
    }
    
    /* title */
    .title {
        font-size: 32px;
        line-height: 34px;
    }
    .subtitle {
        font-size: 13px;
        line-height: 16px;
    }
}

/* about */
.about__wrapper {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: minmax(400px, 510px) 106px minmax(460px, 1fr);
        grid-template: auto / minmax(400px, 510px) minmax(460px, 1fr);
    grid-auto-rows: auto;
    -webkit-column-gap: 86px;
       -moz-column-gap: 86px;
            column-gap: 86px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.about_cir {
    position: absolute;
    left: -50px;
    top: -50px;
}
@media screen and (max-width: 1200px) {
    .about_cir {
        position: absolute;
        left: -30px;
        top: -30px;
    }
    .about_cir svg {
        width: 60px;
        height: 60px;
    }   
}
@media screen and (max-width: 992px) {
    .about_cir {
        display: none;
        opacity: none;
        visibility: hidden;
    }
}
.about__img img {
    max-width: 510px;
    max-height: 494px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.about__text {
    margin-top: 46px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */
    
    color: #666666;
}
@media screen and (max-width: 1200px) {
    .about__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(380px, 460px) 70px minmax(440px, 1fr);
            grid-template: auto / minmax(380px, 460px) minmax(440px, 1fr);
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
    .about__img img {
        max-height: 404px;
    }
    .about__title {
        font-size: 36px;
        line-height: 100%;   
    }
    .about__content {
        margin-top: 40px;
    }
    .about__text {
        margin-top: 36px;
        font-size: 15px;
        line-height: 19px;   
    }
}
@media screen and (max-width: 992px) {
    .about__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(300px, 360px) 40px minmax(340px, 1fr);
            grid-template: auto / minmax(300px, 360px) minmax(340px, 1fr);
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .about__content {
        margin-top: 30px;
    }
    .about__title {
        font-size: 30px;
        line-height: 100%;
    }
    .about__text {
        margin-top: 36px;
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 768px) {
    .about__content {
        margin-top: 10px;
    }
    .about__title {
        font-size: 26px;
        line-height: 100%;
    }
    .about__wrapper { 
         -ms-grid-rows: auto; 
         -ms-grid-columns: 260px 30px 1fr; 
             grid-template: auto / 260px 1fr;
         -webkit-column-gap: 30px;
            -moz-column-gap: 30px;
                 column-gap: 30px;
    }  
}
@media screen and (max-width: 636px) {
    .about__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
        row-gap: 20px;
    }
    .about__img {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;   
    }
    .about__content {
        margin-top: 0;   
    }
    .about__title {
        font-size: 32px;
        line-height: 100%;
    }
    .about__img img {
        max-width: none;
        max-height: 300px;   
    }
}

/* advantsges */
.advantages__content {
    position: relative;
    margin-top: 52px;
    
    display: -ms-grid;
    
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-rows: auto;
    gap: 32px;
}
.advantages__cir {
    position: absolute;
    right: -50px;
    bottom: -50px;
}
@media screen and (max-width: 1300px) {
    .advantages__cir {
        position: absolute;
        right: -40px;
        bottom: -40px;
    }
    .advantages__cir svg {
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .advantages__cir {
        position: absolute;
        right: -30px;
        bottom: -30px;
    }
    .advantages__cir svg {
        width: 60px;
        height: 60px;
    }   
}
@media screen and (max-width: 992px) {
    .advantages__cir {
        display: none;
    }
}
.advantages__card {
    padding: 35px 20px;
    background: #F4F4F4;
}
.advantages__card-img img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
}
.advantages__card-title {
    margin-top: 30px;
    
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    /* identical to box height, or 133% */
    
    letter-spacing: 0.05em;
    
    color: #151515;
    
    color: #151515;   
}
.advantages__card-text {
    margin-top: 12px;
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */
    
    
    color: #777777;
}
@media screen and (max-width: 1200px) {
    .advantages__card-title {
        margin-top: 30px;   
    }
    .advantages__card {
        padding: 20px;   
    }
    .advantages__card-title {
        font-size: 16px;   
        line-height: 20px;
    }
    .advantages__card-text {
        font-size: 13px;
        line-height: 16px;   
    }
}
@media screen and (max-width: 1200px) {
    .advantages__content {
        gap: 20px;   
    }
}
@media screen and (max-width: 768px) {
    .advantages__card-img img {
        width: 50px;
        height: 50px;
    }   
}
@media screen and (max-width: 576px) {
    .advantages__content {
        grid-template: auto / repeat(auto-fit, minmax(145px, 1fr));
        margin-top: 40px;
        gap: 10px;
    }
    .advantages__card {
        padding: 10px;
    }
    .advantages__card-title {
        margin-top: 20px;
        font-size: 14px;
        line-height: 13px;
    }
    .advantages__card-text {
        margin-top: 10px;
        font-size: 10px;
        line-height: 13px;
    }
}

/* direction */
.direction__content {
    position: relative;
    margin-top: 52px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: 340px;
    -ms-grid-columns: 1fr 32px 1fr;
        grid-template: 340px / repeat(2, 1fr);
    grid-auto-rows: 340px;
    gap: 32px;
}
.direction__cir {
    position: absolute;
    left: -50px;
    bottom: -50px;
}
@media screen and (max-width: 1300px) {
    .direction__cir {
        position: absolute;
        left: -40px;
        bottom: -40px;
    }
    .direction__cir svg {
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .direction__cir {
        position: absolute;
        left: -30px;
        bottom: -30px;
    }
    .direction__cir svg {
        width: 60px;
        height: 60px;
    }   
}
@media screen and (max-width: 992px) {
    .direction__cir {
        display: none;
    }
}
.direction__card {
    padding: 25px 25px 0;
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 25px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.direction__card-img img {
    max-width: 592px;
    max-height: 341px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.direction__card-text {
    max-width: calc(100% - 60px);
    
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.3s ease, max-height 0.9s ease;
    -o-transition: opacity 0.3s ease, max-height 0.9s ease;
    transition: opacity 0.3s ease, max-height 0.9s ease;
    
    /* ff */
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 135.5%;
    /* or 24px */
    
    color: #EFEFEF;
}
.direction__card-text.show {
    opacity: 1;
    max-height: 1000px;
    -webkit-transition: opacity 0.6s ease, max-height 2.8s ease;
    -o-transition: opacity 0.6s ease, max-height 2.8s ease;
    transition: opacity 0.6s ease, max-height 2.8s ease;   
}
.direction__card-title {
    position: relative;
    
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 24px;
    /* identical to box height, or 96% */
    
    letter-spacing: 0.05em;
    text-transform: uppercase;
    
    color: #FFFFFF;   
}
.direction__card-title:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 37px;
    height: 2px;
    background: #ffffff;
}
.direction__card-link {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 49px;
    height: 49px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    background: #92000A;
    cursor: pointer;
}
.direction-text-for-modal {
    display: none;   
}
@media screen and (max-width: 1200px) {
    .direction__content {
        margin-top: 48px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 280px;
        -ms-grid-columns: 1fr 24px 1fr;
            grid-template: 280px / repeat(2, 1fr);
        grid-auto-rows: 280px;
        gap: 24px;
    }   
}
@media screen and (max-width: 992px) {
    .direction__content {
        margin-top: 40px;
        gap: 16px;
        -ms-grid-rows: 240px;
        -ms-grid-columns: 1fr 16px 1fr;
            grid-template: 240px / repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .direction__card {
        padding: 20px 20px 0;
        row-gap: 20px;
    }
    .direction__card-text {
        font-size: 14px;
        line-height: 111.5%;
    }
}
@media screen and (max-width: 768px) {
    .direction__content {
        gap: 10px;
        -ms-grid-rows: 200px;
        -ms-grid-columns: 1fr 10px 1fr;
            grid-template: 200px / repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .direction__card-title {
        font-size: 20px;
        line-height: 18px;   
    }
    .direction__card-title:before {
        bottom: -10px;   
    }
    .direction__card-link {
        width: 40px;
        height: 40px;
    }
    .direction__card-text {
        font-size: 13px;
        line-height: 100%;
    }
}
@media screen and (max-width: 576px) {
    .direction__content {
        -ms-grid-rows: 200px;
        -ms-grid-columns: 1fr;
            grid-template: 200px / 1fr;
        grid-auto-rows: 200px;
    }
    .direction__title2 {
        font-size: 28px;
        line-height: 26px;
    }
}

/* scheme */
.scheme {
    margin-top: 100px;
    padding: 63px 0 0;
    min-height: 324px;
    background: #364662;
    
    position: relative;
}
.scheme__content {
    position: relative;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    display: -ms-grid;
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: auto;
    gap: 32px;
}
.scheme__cir {
    position: absolute;
    right: -50px;
    top: -50px;
}
@media screen and (max-width: 1300px) {
    .scheme__cir {
        position: absolute;
        right: -40px;
        top: -40px;
    }
    .scheme__cir svg {
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .scheme__cir {
        position: absolute;
        right: -30px;
        top: -30px;
    }
    .scheme__cir svg {
        width: 60px;
        height: 60px;
    }   
}
@media screen and (max-width: 992px) {
    .scheme__cir {
        display: none;
    }
}
.scheme__card {
    padding: 36px 20px;
    background: #F4F4F4;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 24px;
}
.scheme__card-img img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
}
.scheme__card-count {
    margin-top: 30px;
    
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    
    letter-spacing: 0.05em;
    
    color: #92000A;   
}
.scheme__card-title {
    font-family: 'Bebas Neue Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    
    letter-spacing: 0.05em;
    
    color: #151515; 
}
.scheme__card-text {
    margin-top: 12px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    
    color: #777777;   
}
@media screen and (max-width: 1200px) {
    .scheme {
        margin-top: 80px;   
    }
    .scheme__content {
        gap: 20px;   
    }
    .scheme__card {
        padding: 20px;
        row-gap: 16px;
    }
    .scheme__card-count {
        margin-top: 10px;   
    }
    .scheme__card-text {
        font-size: 14px;
        line-height: 120%;   
    }
}
@media screen and (max-width: 992px) {
    .scheme {
        margin-top: 60px;   
    }
    .scheme__content  {
        webkit-transform: translateY(60px);
        -ms-transform: translateY(60px);
        -webkit-transform: translateY(60px);
                transform: translateY(60px);
        gap: 10px;   
    }
    .scheme__card-title {
        font-size: 17px;
        line-height: 16px;   
    }
    .scheme__card-text {
        margin-top: 10px;
        font-size: 12px;
        line-height: 100%;   
    }
}
@media screen and (max-width: 768px) {
    .scheme {
        margin-top: 40px;
        padding: 40px 0 0;
    }
    .scheme__card {
        padding: 10px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .scheme__card-img img {
        width: 50px;
        height: 50px;
    }
}

/* partners */
.partners {
    margin-top: 100px;   
}
.partners__text {
    max-width: 870px;
    
    margin-top: 42px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    
    color: #666666;   
}
.partners__content {
    margin-top: 34px;
    position: relative;
}
.partners__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    width: 223px;
    height: 106px;
    
    background: #FFFFFF;
    border: 0.882812px solid #DBDBDB;
    border-radius: 2px;   
}
.partners__card img {
    max-width: 223px;
    max-height: 106px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 992px) {
    .partners {
        margin-top: 60px;
    }
    .partners__text {
        margin-top: 36px;
        font-size: 16px;
        line-height: 135%;   
    }
}
@media screen and (max-width: 768px) {
    .partners {
        margin-top: 60px;
    }
}
@media screen and (max-width: 576px) {
    .partners__text {
        margin-top: 32px;
        font-size: 14px;
        line-height: 130%;
    }
}

/* Slick */
.slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;   
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-column-gap: 25px;
    -webkit-column-gap: 25px;
    column-gap: 25px;
}
.slider-prev, .slider-next {
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    width: 35px;
    height: 35px;
    border: 1px solid #C8C8C8;
    background: #ffffff;
}
.slider-prev:focus, .slider-next:focus {
    outline: none;
}
.slick-arrow:hover svg path {
    stroke: #92000A;
}
.slick-arrow:hover {
    border: 1px solid #92000A;
}
.slider-prev {
    position: absolute;
    left: -54px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.slider-next {
    position: absolute;
    right: -54px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 1300px) {
   .slider-prev {
      right: -50px;  
   }
   .slider-prev {
      left: -44px;  
   }
   .slider-next {
      right: -44px;  
   }
   .slider-prev, .slider-next {
        width: 30px;
        height: 30px;
    }   
}
@media screen and (max-width: 1200px) {
    .slider-prev {
      left: -34px;  
    }
    .slider-next {
      right: -34px;  
    }
}
@media screen and (max-width: 992px) {
    .slider-prev {
        left: -12px;  
    }
    .slider-next {
        right: -24px;  
    }
    .slider-prev, .slider-next {
        width: 24px;
        height: 24px;
    }
}
@media screen and (max-width: 576px) {
    .slick-track {
        -webkit-column-gap: 8px;
           -moz-column-gap: 8px;
                column-gap: 8px;
    }
}
.slick-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 8px;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slick-dots li button {
    border: none;
  
    width: 4px;
    height: 4px;
    left: 698px;
    top: 6459px;
    
    background: #BDBDBD;
    border-radius: 7px;
  
    font-size: 0;
}
.slick-dots li.slick-active button {
    -webkit-transition: .8s ease-in-out;
    -o-transition: .8s ease-in-out;
    transition: .8s ease-in-out;
    width: 32px;
    height: 3px;
    background: #364662;
    outline: none;
    border: none;
}
/* call */
.call {
    padding: 0;
    margin-top: 100px;
    min-height: 596px;
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.call__wrapper {
    position: relative;
    max-width: 612px;   
}
.call__cir {
    position: absolute;
    left: -50px;
    top: -42px;
}
@media screen and (max-width: 1300px) {
    .call__cir {
        position: absolute;
        left: -40px;
        top: -40px;
    }
    .call__cir svg {
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .call__cir {
        position: absolute;
        left: -30px;
        top: -30px;
    }
    .call__cir svg {
        width: 60px;
        height: 60px;
    }   
}
@media screen and (max-width: 992px) {
    .call__cir {
        display: none;;
    }
}
.call__description {
    max-width: 446px;
    margin-top: 49px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 135.5%;
    color: #EFEFEF; 
}
/* Call form */
.form__call {
    margin-top: 21px;   
}
.form__call-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 16px 1px 16px 1fr 16px auto;
        grid-template: auto / 1fr 1px 1fr auto;
    grid-auto-rows: auto;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    padding: 10px;
    background: rgb(58, 58, 58, 0.7);
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    border-radius: 5px;
}
.form__call-divider {
    height: 38px;
    width: 1px;
    background: #A7A7A7;
}
.form__call-input {
    background: none;
    width: 170px;
    border: none;
    outline: none;
    
    font-family: 'DIN 2014';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
}
.form__call-input::-webkit-input-placeholder {
    font-family: 'DIN 2014';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;  
}
.form__call-input::-moz-placeholder {
    font-family: 'DIN 2014';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;  
}
.form__call-input:-ms-input-placeholder {
    font-family: 'DIN 2014';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;  
}
.form__call-input::-ms-input-placeholder {
    font-family: 'DIN 2014';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;  
}
.form__call-input::placeholder {
    font-family: 'DIN 2014';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;  
}
@media screen and (max-width: 992px) {
    .call {
        margin-top: 80px;   
    }
}
@media screen and (max-width: 768px) {
    .call {
        margin-top: 60px;
        min-height: 496px;
    }
    .call__description {
        margin-top: 20px;
        font-size: 18px;
        line-height: 26px;
    }
    .form__call {
        margin-top: 24px;
    }
    .form__call-input {
        width: 150px;   
    }
    .form__call-button {
        font-size: 15px;
        padding: 14px;   
    }
}
@media screen and (max-width: 576px) {
    .form__call-content {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .form__call-divider {
        display: none;
    }
    .form__call-input {
        width: 100%;  
        height: 40px;
        border-bottom: 1px solid gray;
    }
    .section-title_white {
        font-size: 32px;
        line-height: 100%;
    }
    .call__description {
        font-size: 15px;
        line-height: 18px;
    }
}

/* Collab */
.collab__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: minmax(400px, 510px) 106px minmax(460px, 1fr);
        grid-template: auto / minmax(400px, 510px) minmax(460px, 1fr);
    grid-auto-rows: auto;
    -webkit-column-gap: 86px;
       -moz-column-gap: 86px;
            column-gap: 86px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.collab__img img {
    max-width: 510px;
    max-height: 494px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.collab__text {
    margin-top: 46px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    /* or 27px */
    
    color: #666666;
}
.collab__button {
    margin-top: 25px;
    max-width: 160px;   
}
@media screen and (max-width: 1200px) {
    .collab__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(380px, 460px) 70px minmax(440px, 1fr);
            grid-template: auto / minmax(380px, 460px) minmax(440px, 1fr);
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }
    .collab__img img {
        max-height: 404px;
    }
    .collab__title {
        font-size: 36px;
        line-height: 100%;   
    }
    .collab__content {
        margin-top: 40px;
    }
    .collab__text {
        margin-top: 36px;
        font-size: 15px;
        line-height: 19px;   
    }
}
@media screen and (max-width: 992px) {
    .collab__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(300px, 360px) 40px minmax(340px, 1fr);
            grid-template: auto / minmax(300px, 360px) minmax(340px, 1fr);
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .collab__content {
        margin-top: 30px;
    }
    .collab__title {
        font-size: 30px;
        line-height: 100%;
    }
    .collab__text {
        margin-top: 36px;
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 768px) {
    .collab__content {
        margin-top: 10px;
    }
    .collab__title {
        font-size: 26px;
        line-height: 100%;
    }
    .collab__wrapper { 
         -ms-grid-rows: auto; 
         -ms-grid-columns: 260px 30px 1fr; 
             grid-template: auto / 260px 1fr;
         -webkit-column-gap: 30px;
            -moz-column-gap: 30px;
                 column-gap: 30px;
    }
    .collab__button {
        margin-top: 20px;
        padding: 10px 16px;   
    }
}
@media screen and (max-width: 636px) {
    .collab__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
        row-gap: 20px;
    }
    .collab__img {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;   
    }
    .collab__content {
        margin-top: 0;   
    }
    .collab__title {
        font-size: 32px;
        line-height: 100%;
    }
    .collab__img img {
        max-width: none;
        max-height: 300px;   
    }
}

/* address */
.address__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: minmax(320px, 400px) 26px minmax(410px, 1fr);
        grid-template: auto / minmax(320px, 400px) minmax(410px, 1fr);
    gap: 26px;
}
.address__info {
    padding: 59px 36px 36px;
    background: #F4F4F4;
}
.address__info-flex {
    margin-top: 51px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    row-gap: 32px;
}
.address__value {
    position: relative;   
}
.address__value:nth-child(-n+3):before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 100%;
    height: 1px;
    background: #CCCCCC;
}
.address__value a:hover {
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    text-decoration: none;
    color: #92000A;
}
.address__value-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
}
.address__value-head span {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    
    color: #898989;
}
.address__value-body {
    display: block;
    margin-top: 7px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;

    color: #151515;
}
@media screen and (max-width: 1200px) {
    .address__map iframe {
        height: 532px;
    }
}
@media screen and (max-width: 992px) {
    .address__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(300px, 400px) 20px minmax(380px, 1fr);
            grid-template: auto / minmax(300px, 400px) minmax(380px, 1fr);
        gap: 20px;
    }
    .address__info-flex {
        margin-top: 40px;   
    }
    .address__info {
        padding: 30px;   
    }
    .address__value-body {
        font-size: 15px;
        line-height: 20px;  
    }
    .address__map iframe {
       max-height: 460px;
    }
}
@media screen and (max-width: 768px) {
    .address__wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .address__info {
        padding: 14px;   
    }
    .address__info-flex {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
            grid-template: auto / 1fr 1fr;
        gap: 20px;
    }
    .address__value:nth-child(-n+3):before {
        content: none;   
    }
    .address__value-head svg {
        width: 18px;
        height: 18px;
    }
    .address__value-head span {
        font-size: 16px;
        line-height: 15px;   
    }
}
@media screen and (max-width: 576px) {
    .address__info-flex {
        grid-template: auto / repeat(auto-fit, minmax(160px, 1fr));
        gap: 14px;
    } 
}

/* footer */
.footer {
    margin-top: 100px;
    padding: 30px 0;
    background: #EFEFEF;
}
.footer__content-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;   
}
.footer__logo img {
    height: 72px;   
}
.footer__content {
    position: relative;
    margin-top: 56px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 30px;
}
.footer__content:before {
    content: "";
    position: absolute;
    left: 0;
    top: -28px;
    width: 100%;
    height: 1px;
    background: #D8D8D8;
}
.footer__content-block {
    max-width: 354px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.footer__content-head {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    
    color: #797979;
}
.footer__content-value {
    display: block;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    /* or 22px */
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    
    color: #151515;
}
.footer__content-body a:hover {
    text-decoration: none;
    color: #92000A;
}
.footer__social a:hover {
    text-decoration: none;   
}
.footer__under {
    position: relative;
    margin-top: 62px;
}
.footer__under:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CBCBCB;  
}
.footer__abc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
    
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    
    text-transform: uppercase;

    color: #444444;
}
.footer__abc svg {
    width: 25px;
    height: 24px;   
}
.footer__abc a svg path {
    fill: #444444;  
}
.footer__abc a:hover {
    text-decoration: none;   
}
@media screen and (max-width: 1300px) {
    .footer__content-menu {
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;   
    }
    .footer__list {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;   
    }
}
@media screen and (max-width: 1200px) {
    .footer {
        margin-top: 80px;   
    }
    .footer__content-menu {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .footer__list {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;   
    }
    .footer__list .menu__item {
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 992px) {
    .footer {
        margin-top: 60px;   
    }
    .footer__list {
        display: none;   
    }
}
@media screen and (max-width: 992px) {
    .footer {
        margin-top: 40px;   
    }
}
@media screen and (max-width: 576px) {
    .footer__button {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 18px;   
    }
}

/* connect */
.connect {
    display: none;  
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 200;        
}
.connect__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
}
.connect__modal {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    background: #f2f2f2;
    z-index: 500;
    
    width: 920px;
    height: 500px;
      
    display: -ms-grid;
      
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 445px 30px 445px;
        grid-template: auto / repeat(2, 445px);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.connect-p {
    padding-right: 38px;   
}
.connect-p .form__call-content {
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;   
}
.connect-p .form__call-divider {
    display: none;
}
.connect-p .form__call-button {
    max-width: 160px; 
    max-width: 160px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 16px; 
}
.connect-p .form__call-input {
    height: 40px;   
}
.connect-p .form__call-content div {
    border-bottom: 1px solid white;   
}
.connect__modal-close {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #151515;
    width: 2rem;
    height: 2rem;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 100%;
    
    color: #fff;
    font-size: 14px;
    line-height: 8px;
    cursor: pointer;
}
.connect__modal-title {
    font-family: "DIN 2014";
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #0d0d0d;
}
.connect__modal-text {
    margin-top: 6px;
    
    font-family: "DIN 2014";
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: gray;   
}
.connect__modal-img img {
    max-width: 607px;
    min-height: 500px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media screen and (max-width: 992px) {
    .connect__modal {
        width: 720px;
        height: 400px;
        -ms-grid-rows: auto;
        -ms-grid-columns: (345px)[2];
            grid-template: auto / repeat(2, 345px);
    }
    .connect__modal-img img {
        min-height: 400px;   
    }
}
@media screen and (max-width: 768px) {
    .connect__modal {
        width: 520px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 250px 20px 250px;
            grid-template: auto / repeat(2, 250px);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .connect-p {
        padding-right: 10px;
    }
    .connect__modal-text {
        font-size: 16px;
        line-height: 18px;   
    }
}
@media screen and (max-width: 576px) {
    .connect__modal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;   
        
        width: 280px;
        height: auto;
        padding: 14px;
        row-gap: 20px;
        
        -ms-grid-rows: auto;
        
        -ms-grid-columns: 1fr;
        
            grid-template: auto / 1fr;
    }
    .connect-p {
        padding-right: 0;
    }
    .connect__modal-text {
        font-size: 14px;
        line-height: 19px;   
    }
    .connect__modal-img {
        display: none;   
    }
}



/* Application */
.application {
    display: none;  
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 200;        
}
.application__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
}
.application__modal {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
    background: #f2f2f2;
    z-index: 500;
    
    width: 920px;
    height: 500px;
      
    display: -ms-grid;
      
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 445px 40px 1fr;
        grid-template: auto / 445px 1fr;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.app-p {
    padding-right: 20px;   
}
.application__modal-close {
    z-index: 100;
    position: absolute;
    right: 16px;
    top: 16px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}
.application__modal-close svg {
    width: 18px;
    height: 18px;
}
.application__modal-text {
    margin-top: 36px;
    
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;

    color: #666666; 
}
.application__button {
    margin-top: 24px;
}
.application__modal-img img {
    max-width: 607px;
    min-height: 500px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.application__modal-title {
    font-size: 38px;
    line-height: 38px;
    letter-spacing: normal;   
}
@media screen and (max-width: 992px) {
    .application__modal {
        width: 720px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 345px 1fr;
            grid-template: auto / 345px 1fr;
    }
    .application__modal-text {
        line-height: 130%;   
    }
    .application__modal-title {
        font-size: 28px;
        line-height: 24px;
    }
}
@media screen and (max-width: 768px) {
    .application__modal {
        width: 540px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 250px 20px 1fr;
            grid-template: auto / 250px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
        height: 400px;
    }
    .app-p {
        padding-right: 10px;   
    }
    .application__modal-text {
        font-size: 13px;
        line-height: 16px;  
    }
    .application__modal-img img {
        min-height: 400px;
    }
    .application__button {
        padding: 10px 14px;
        font-size: 15px;   
    }
    .application__modal-close {
        top: 12px;
        right: 12px;
    }
}
@media screen and (max-width: 576px) {
    .application__modal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;   
        
        width: 280px;
        height: auto;
        padding: 14px;
        row-gap: 20px;
        
        -ms-grid-rows: auto;
        
        -ms-grid-columns: 1fr;
        
            grid-template: auto / 1fr;
    }
    .application__modal-title {
        margin-top: 20px;
        font-size: 26px;
        line-height: 26px; 
    }
    .application__modal-close {
        top: 10px;
        right: 10px;
    }
    .application__modal-img {
        display: none;   
    }
    .app-p {
        padding-right: 0;   
    }
    .application__modal-text {
        margin-top: 26px;
    }
}

.phones-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4px;
}