:root {
    --logo-blue: #4c70ba;
    --logo-brown: #EE7D00;
    --vh: 0; /* переменную генерируем через JS, return текущую высоту viewport  */
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: Red !important;
    opacity: 1 !important; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: red !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: red !important;
}

html, body {
/ overflow-y: scroll;
    -webkit-backface-visibility: hidden;
    text-rendering: optimizeLegibility;
}

body {
/ display: flex;
/ flex-direction: column;
    font-family: 'Roboto', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    /* font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); */
    font-size: calc(14px + (15.5 - 14) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.4em + (1.8 - 1.4) * ((100vw - 360px) / (1600 - 360)));
    height: 100%;
}

a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #000;
    -webkit-text-decoration-skip: objects;
}

.ul_list ul li {
    margin-bottom: 2rem;
}

.no_margin_bottom {
    margin-bottom: 0 !important;
}


li {
    text-indent: 0;
    margin-left: 0;
    list-style-position: inside;
    list-style-type: square
}

a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: #000;
    -webkit-text-decoration-skip: objects;
}

.textLink {
    color: rgba(94, 130, 249, .7) !important;
    padding-bottom: 1px;
    transition: all .1s linear;
}

.textLink:link {
    border-bottom: 2px solid rgba(94, 130, 249, .7);
}

.textLink:visited {
    border-bottom: 2px solid rgba(94, 130, 249, .7);
}

.textLink:hover {
    color: var(--logo-blue) !important;
    border-bottom: 2px solid var(--logo-blue);
}

.dd-print-link {

}

#preloader {
    position: fixed;
    background: #EFF2E7;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#percentage_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    opacity: .1;
    overflow: hidden;
}

#percentage {
    position: relative;
    text-align: center;
    font-size: 68px;
    line-height: 68px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

.header {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.logo_wrapper {
    /* width: 135px;
     height: 100px;*/
    width: 149px;
    height: 110px;
    -webkit-transform: translate(0, 0) scale(1.5);
    transform: translate(0, 0) scale(1.8);
    opacity: 0;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    transition: all 1.2s cubic-bezier(.19, 1, .22, .95) .2s;
    -webkit-transition: all 1.2s cubic-bezier(.19, 1, .22, .95) .2s;
}

.footer_wrapper {
     width: 135px;
     height: 100px;
    /*width: 149px;
    height: 110px;*/
}

@media screen and (max-width: 1366px) {
    .logo_wrapper, .footer_wrapper {
        width: 135px;
        height: 100px;
    }

    .slide_text {
        font-size: 45px;
    }
}

@media screen and (max-width: 768px) {
    .logo_wrapper, .footer_wrapper {
        width: 120px;
        height: 88px;
    }

    .menu_item_link {
        font-size: 24px;
        line-height: 40px;
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
        padding: 8px 0;
        color: white !important;
        transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .slide_text {
        display: none !important;
    }

    .slick_previous, .slick_next {
        display: none !important;
    }

    .info {
        font-size: 13px !important;
    }

    .footer_info {
        font-size: 13px !important;
        text-align: right !important;
        color: white !important;
    }
}

@media screen and (max-width: 576px) {
    .info {
        display: none !important;
    }
}


.logo_wrapper.appear {
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}

.info_with_menu_button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.info {
    margin-right: 40px;
    opacity: 0;
    color: var(--logo-blue);
}

.info:after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    height: 150%;
    width: 1px;
    background: var(--logo-blue);
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.menu_wrapper {
    position: fixed;
    background: var(--logo-blue);
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    z-index: 2;
}

.menu_item {
    display: block;
    width: auto;
    order: 1;
    flex: 0 1 auto;
    align-self: auto;
    min-width: 0;
    min-height: auto;
    text-align: center;
}

.menu_item_link {
    font-size: 28px;
    line-height: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 8px 0;
    color: white !important;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu_item_link:hover {
    color: var(--logo-brown) !important;
    letter-spacing: 1.5px;
}

.disabled_link {
    pointer-events: none;
    color: #aeaeae !important;
}

.menu_open {
    position: relative;
    display: block;
    margin-left: 40px;
    width: 36px;
    height: 20px;
    opacity: 0;
}

.menu_open span {
    height: 1px;
    width: 100%;
    background: var(--logo-blue);
    position: absolute;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    /*transition: all .4s cubic-bezier(.19, 1, .22, .95);
    -webkit-transition: all .4s cubic-bezier(.19, 1, .22, .95);*/
}

.menu_open span:nth-child(1) {
    top: 0
}

.menu_open span:nth-child(2) {
    top: 50%;
}

.menu_open span:nth-child(3) {
    top: 100%;
}

.menu_open:hover span:nth-child(1) {
    top: 50%;
    background: var(--logo-brown);
}

.menu_open:hover span:nth-child(3) {
    top: 50%;
    background: var(--logo-brown);
}

.menu_open:hover span:nth-child(2) {
    transform: rotate(90deg);
    transition-delay: .1s;
    background: var(--logo-brown);
}

.menu_close {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 6%;
    margin-right: 6%;
    width: 40px;
    height: 40px;
}

.menu_close span {
    height: 1px;
    width: 100%;
    top: 50%;
    background: white;
    position: absolute;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
    -webkit-transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    /*transition: all .4s cubic-bezier(.19, 1, .22, .95);
    -webkit-transition: all .4s cubic-bezier(.19, 1, .22, .95);*/
}

.menu_close span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);

}

.menu_close span:nth-child(2) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.menu_close:hover span:nth-child(1) {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.menu_close:hover span:nth-child(2) {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.carousel_main_wrapper {
    position: relative;
    height: auto;
/ z-index: 1;
    opacity: 0;
/ padding: 0 !important;
}

.slide {
    position: relative;
}

.slide_text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    font-size: 65px;
    font-weight: bold;
    color: #e0a800;
    z-index: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
}

.slide_letters {
    display: inline-block;
    position: relative;
    opacity: 0;
/ text-shadow: 0 px 0 px 6 px #ffffff;
/ -webkit-text-stroke: 1 px #ffffff;
    color: var(--logo-brown);
    -webkit-text-stroke: 1px var(--logo-blue);
/ color: White;
    letter-spacing: 4px;
    text-shadow: -1px -1px 0 var(--logo-blue),
    1px -1px 0 var(--logo-blue),
    -1px 1px 0 var(--logo-blue),
    1px 1px 0 var(--logo-blue);
    /* transform: translateY(40px);
     -webkit-transform: translateY(40px);*/
}

.img_holder {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    outline: none !important;
    filter: grayscale(.7) contrast(120%) brightness(120%) invert(.1);
    -webkit-filter: grayscale(.7) contrast(120%) brightness(120%) invert(.1);
}

.arrow {
    width: 51px;
    height: 45px;
    /*width: 45px;
    height: 40px;*/
    fill: none;
    stroke: var(--logo-blue);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    transition: all .6s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-transition: all .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow:hover {
    stroke: var(--logo-brown);
}

.slick_previous, .slick_next {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -22px;
}

.slick_previous {
    left: 0;
    transform: translateX(-100%);
    padding-right: 25px;
}

.slick_next {
    right: 0;
    transform: translateX(100%);
    padding-left: 25px;
}

.cards_we_info {
    margin-top: 4px;
/ margin-top: - 30 px;
/ margin-top: 80 px;
/ margin-top: 7 rem;
/ margin-bottom: 7 rem;
    z-index: 1;
}

.cards_we_info_text {
    margin-top: 3rem;
    margin-bottom: 3rem;
    z-index: 1;
}

.cards_we_info_text .card {
    border: 1px dashed;
    border-color: var(--logo-blue);
    color: var(--logo-blue);
}

.card-group .card {
    position: relative;
    opacity: 0;
    transform: translateY(80px);
    -webkit-transform: translateY(80px);
}

.card_bg {
    background: var(--logo-blue);
}

.card-text:last-child {

}

.card-text {
    font-size: calc(20px + (22 - 20) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.2em + (1.3 - 1.2) * ((100vw - 360px) / (1600 - 360)));
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    text-align: center;
}

.custom_space {
    margin-right: 4px !important;
}

.card-group .custom_space:last-child {
    margin-right: 0 !important;
}

/* icons */

.we_icons {
    margin: 25px auto 0 auto;
    width: 50px;
    height: 50px;
    fill: white;
}

/* ------------------ utils --------------------- */

@media (min-width: 1600px) {
    .container {
        max-width: 1340px;
    }
}

.ored {
    outline: 1px solid Red;
}

.ogreen {
    outline: 1px solid green;
}

.element_hidden {
    display: none;
}

.no_text_selection {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

.section_tittle {
    font-size: calc(20px + (28 - 20) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 360px) / (1600 - 360)));
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    padding-bottom: 16px;
/ color: var(--logo-brown);
}

.section_tittle_small {
    font-size: calc(18px + (20 - 18) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 360px) / (1600 - 360)));
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    padding: 16px 0 0 0;
/ color: var(--logo-brown);
}


.card_wrapper {
    position: relative;
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    overflow: hidden;
}

[class*="card_item"] {
    margin-bottom: 20px;
    cursor: pointer;
}

.card_item:hover .card_wrapper {
    /*background: var(--logo-blue);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.28), 0 4px 15px 0 rgba(0, 0, 0, 0.25);*/
}

.card_wrapper img {
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    max-width: 100%;
}

.card_title {
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    font-size: calc(18px + (20 - 18) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.2em + (1.3 - 1.2) * ((100vw - 360px) / (1600 - 360)));
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    padding: 10px 0 10px 6px;
}

.card_item:hover .card_title {
    color: var(--logo-blue)
}

.card_item:hover img {
    filter: grayscale(.3) contrast(130%) brightness(130%) invert(.1);
    -webkit-filter: grayscale(.3) contrast(130%) brightness(130%) invert(.1);
    transform: scale(1);
    opacity: .8;
}

.card_top_select, .card_bottom_select {
    transition: all .6s cubic-bezier(.19, 1, .22, 1);
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: 1;
    opacity: .6;
    background: White;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.card_top_select span, .card_bottom_select span {
    font-size: calc(18px + (20 - 18) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.2em + (1.3 - 1.2) * ((100vw - 360px) / (1600 - 360)));
    font-family: 'Fira Sans', sans-serif;
    color: #d9d9d9;
}

.panorama_media {
/ height: 400 px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
/ border-top: 1 px solid var(--logo-blue);
}

.rubrika_media {
    background: var(--logo-blue);
    padding: 10px 0;
    font-size: calc(20px + (22 - 20) * ((100vw - 360px) / (1600 - 360)));
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 360px) / (1600 - 360)));
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    text-align: center;
}

#map_canvas {
/ position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 300px !important;
    background: rgb(255, 255, 255);
}


.card_top_select {
    top: -100%;
}

.card_bottom_select {
    top: 100%;
}

.card_item:hover .card_top_select {
    top: 0;
}

.card_item:hover .card_bottom_select {
    top: 50%;
}

.card_top_select:hover {
    opacity: 1;
}

.card_top_select:hover span {
    color: var(--logo-blue);
}


.card_bottom_select:hover {
    opacity: 1;
    color: var(--logo-blue) !important;
}

.card_bottom_select:hover span {
    color: var(--logo-blue);
}

.footer {
    background: var(--logo-blue);
    padding: 40px 0 !important;
    margin-top: 5rem !important;
}

/*.card-deck .card {
    margin-right: 0 !important;
    margin-left: 0 !important;
}*/

/* --------------- callback ---------------*/
.cback {
    width: 140px;
    height: 140px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;

}

.cback-circle {
    width: 100%;
    height: 100%;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #34a830;
    color: #34a830;
    -webkit-box-shadow: 4px 9px 30px 8px rgba(34, 60, 80, 0.32) !important;
    -moz-box-shadow: 4px 9px 30px 8px rgba(34, 60, 80, 0.32) !important;
    box-shadow: 4px 9px 30px 8px rgba(34, 60, 80, 0.32) !important;
}

.cback-circle--phone {
    position: relative;
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: background .7s ease-in-out;
}

.cback-circle.fn1 {
    -webkit-animation: pin 2.5s linear .4s infinite normal;
    animation: pin 2.5s linear .4s infinite normal; }

.cback-circle.fn2 {
    -webkit-animation: pin 2s linear 0s infinite normal;
    animation: pin 2s linear 0s infinite normal;
    background: none;
}

.cback:hover .cback-circle--phone {
    background: #288624;
    -webkit-animation: hvr-phone 1.5s linear infinite normal;
    animation: hvr-phone 1.5s linear infinite normal; }

.cback .phone-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: phone-fn 2s infinite ease-in-out;
    animation: phone-fn 2s infinite ease-in-out; }

@media screen and (max-width: 768px) {
    .cback {
        width: 100px;
        height: 100px;
        bottom: 5px;
        right: 5px;

    }
    .cback .phone-icon {
        width: 20px;
        height: 20px;
    }
}

@-webkit-keyframes phone-fn {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg); }
    10% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg); }
    20% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg); }
    30% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg); }
    40% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg); }
    100%, 50% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg); } }

@keyframes phone-fn {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg); }
    10% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg); }
    20% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg); }
    30% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg); }
    40% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg); }
    100%, 50% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg); } }

@-webkit-keyframes pin {
    0% {
        opacity: .6;
        -webkit-transform: scale(0.5);
        transform: scale(0.5); }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1); } }

@keyframes pin {
    0% {
        opacity: .6;
        -webkit-transform: scale(0.5);
        transform: scale(0.5); }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1); } }

@-webkit-keyframes hvr-phone {
    0%, 100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        box-shadow: inset 0 0 20px -14px rgba(0, 0, 0, 0.75); }
    80% {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: inset 0 0 20px -4px rgba(0, 0, 0, 0.75); } }

@keyframes hvr-phone {
    0%, 100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        box-shadow: inset 0 0 20px -14px rgba(0, 0, 0, 0.75); }
    80% {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: inset 0 0 20px -4px rgba(0, 0, 0, 0.75); } }

/* ------------------------------ callback --------------------------- */


.cback_button {
    /position: relative;
    display: block;
    width: 140px;
    height: 140px;
}

.callback_helper_hover:hover .callback_helper {
    opacity: 1;
    transition: opacity .4s linear;
}




.callback_helper {
    opacity: 0;
    position: absolute;
    left: -100%;
    /top: 10px;
    background: rgba(41, 41, 41, 0.95);
    color: #fff;
    font-size:14px !important;
    padding: 6px 10px;
    border-radius: 3px;
    /transform: translateY(-50%);
    white-space:nowrap;
    transition: opacity .2s linear;
}

.callback_helper:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 6px;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    border-left-color: rgba(41, 41, 41, 0.95);
}

.form_padding {
    background: #eaeaea;
    padding: 20px 6px !important;
    border-radius: 6px;
    -webkit-box-shadow: 4px 9px 30px 8px rgba(34, 60, 80, 0.22) !important;
    -moz-box-shadow: 4px 9px 30px 8px rgba(34, 60, 80, 0.22) !important;
    box-shadow: 4px 9px 30px 8px rgba(34, 60, 80, 0.22) !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: gray !important;
    opacity: 1; /* Firefox */
}

.callback_form_wrapper {
    position: fixed;
    display:none;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999999999999999999;
}

.callback_form {
    position: absolute;
    width: 25vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 10px;
    z-index: 1;
}
.status {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .callback_form {
        width: 90vw;
    }
}



