html {
    box-sizing: border-box;
}*,
*::before,
*::after {
    box-sizing: inherit;
}* {
    max-height: 1000000px;
    outline: none
}input {
    border: none;
    outline: none;
}h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: 400;
    margin: 0
}img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    border-style: none
}a {
    display: inline-block;
    text-decoration: none;
    outline: none;
    color: inherit
}.footer a[href^="tel"] {
    pointer-events: none;
    color: inherit;
    text-decoration: inherit;
}body {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    font-family:IBM Plex Sans;
    font-weight: 400;
    background:#F2F4F7;
    direction: ltr;
    text-align: center;
}.wrapper {
    max-width: 1080px;
    margin: auto;
}.header {
    background-image: url("../img/bg_blue.png");
    background-position: 0 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 7vh 0;
}.logo {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}.container {
    min-height: calc(100vh - 86px);
    min-height: calc(var(--vh, 100vh) - 86px);
}.content {
    padding: 0 4.5em;
}.btn {
    background-color:#2B2F36;   /*Q2MFnI*/
    color:#F5F7FA;
    border-radius: 10px;
    padding: 14px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}.btn:hover {
    background-color:#171A1F;
    color:#FFFFFF;
    transform: translateY(-2px) scale(1.05);
    
}.btn:togle {
    padding: 18px;
    color:#FFFFFF;
    background-color:#171A1F;
}.orange {
    color:#2B2F36;
    font-size: 2.2em;
    text-align: center;
    margin: 1em 0;
    line-height: 1.4em;
}.form__input {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    padding: 15px 20px;

    font-size: 18px;
    text-align: center;
    line-height: 1;
    font-weight: 500;
    color: #5f5f5f;

    border: 1px solid #5f5f5f;
    
    border-radius: 10px;
    background: #FFFCF6;
}.form__input::placeholder {
    color: #5f5f5f;
}/*--------------------Error message--------------------*/.attention {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    color: #ff3d3d;
    opacity: 0;
}.attention--show {
    -webkit-animation: blink 1s ease-in-out both;
    animation: blink 1s ease-in-out both;
}@-webkit-keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; } 
}.bottom {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
}.hide {
    display: none;
}.footer {
    background: none;
}.footer__text {
    color: #717171;
    padding: 0 5px;
    font-size: 12px;
    line-height: 12px;
}.footer__link {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 5px;
    font-size: 12px;
    line-height: 14px;
    color: #717171;
    text-decoration: none;
}.price {
    text-align: center;
    font-size: 12px;
    color:#2B2F36;
    margin-top: 10px;
}.loader {
    /*oREHRXK*/
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
}.loader__inner {
    display: inline-block;
    width: 30vmin;
    height: 30vmin;
    border: 3vmin solid rgba(255, 255, 255, .3);
    border-radius: 65%;
    border-top-color: #00e2ff;
    border-bottom-color: #ffbb00;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    animation: spin 1s ease-in-out infinite alternate;
    -webkit-animation: spin 1s ease-in-out infinite alternate;
}@keyframes spin {
    to {
        transform: rotate(360deg);
        border-radius: 20%;
    }
}@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        border-radius: 20%;
    }
}/*--------------------Message--------------------*/.messageBox {
    /*vPBjtNyX*/
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4.5px);
    background: rgba(0, 0, 0, .85);
    flex-direction: column;
}.message__content {
    width: 90%;
    max-width: 350px;
    padding: 25px 20px;
    margin-top: calc( var(--vh,100vh) * -0.2);
    color: #000;
    background-color: #fff;
    border-radius: 15px;
    will-change: transform;
    place-self: center;
    animation-name: fadeInDown;
    animation-duration: 0.8s;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}.message__title {
    margin: 10px 0 5px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #222222;
}.message__close {
    position: absolute;
    width: 21px;
    height: 21px;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    padding: 12px;
    top: 0px;
    right: 0px;
    background: #ffffff;
    border: #fff 2px solid;
}.message__close::before,
.message__close::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #393D3F;
    transform: translateX(-50%) rotate(-45deg);
}.message__close::after {
    transform: translateX(-50%) rotate(45deg);
}@keyframes fadeInDown {
    from { opacity: 0; transform: translate3d(0, -100%, 0); }
    50% { opacity: 1; }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}/*--------------------loader--------------------*/.loader {
    /*ffcoBW*/
    display: none;
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
}.loader__inner {
    display: inline-block;
    width: 30vmin;
    height: 30vmin;
    border: 3vmin solid rgba(255, 255, 255, .3);
    border-radius: 65%;
    border-top-color: #00e2ff;
    border-bottom-color: #ffbb00;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    animation: spin 1s ease-in-out infinite alternate;
    -webkit-animation: spin 1s ease-in-out infinite alternate;
}@keyframes spin {
    to { transform: rotate(360deg); border-radius: 20%; }
}@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); border-radius: 20%; }
}@media screen and (min-width: 1025px) and (max-height: 700px) {
    /*pjCbR6Y*/
    .logo {
        max-width: 150px;
    }
}@media screen and (max-width: 500px) {
    .container {
        min-height: calc(100vh - 50px);
        min-height: calc(var(--vh,100vh) - 50px);
    }
    .content {
        padding: 0 1em;
    }
    .header {
        padding: 4vh 0;
    }
    .logo {
        max-width: 220px;
    }
    .btn {
        font-size: 7vmin;
        padding: 1.3vh;
        width: 90%;
    }
    .orange {
        font-size: 5.7vmin;
    }
}@media screen and (max-width: 320px) {
    .logo {
        max-width: 170px;
    }
}@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 1024px) and (max-height: 800px) {
    /*Opktj9HmB*/
    .logo {
        max-width: 150px;
    }
  }@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 950px) and (max-height: 500px) {
    .container {
        min-height: calc(100vh - 71px);
        min-height: calc(var(--vh,100vh) - 71px);
    }
    .header {
        padding: 6px 0;
    }   
    .logo {
        max-width: 12%;
    }
    .orange {
        font-size: 5.4vmin;
        margin: 2vh 0;
    }
    .bottom {
        position: relative;
    }
    .btn {
        font-size: 6vmin;
        padding: 10px;
    }
}@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 950px) and (max-height: 280px) {
    .logo {
        max-width: 9%;
    }
}@media screen and (orientation: landscape) and (min-width: 480px) and (max-width: 568px) and (max-height: 236px) {
    .logo {
        max-width: 10%;
    }

    .orange {
        font-size: 15px;
    }
    .btn {
        padding: 6px;
    }
}