.meter__container {
    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-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.meter__line {
    width: calc((1vw + 1vh) * 1.5);
    height: 2px;
    background-color: #777;
    -webkit-transition: width 1s, background-color 1s;
    -o-transition: width 1s, background-color 1s;
    transition: width 1s, background-color 1s;
    right: 0;
    cursor: pointer;
}
.meter__line:not(:last-child) {
    margin-bottom: calc((1vw + 1vh) * 1);
}
@media screen and (max-width: 580px) {
    .meter__line:not(:last-child) {
        margin-bottom: calc((1vw + 1vh) * 0.5);
    }
}
.meter__line_current {
    width: calc((1vw + 1vh) * 3);
}
@media screen and (max-width: 580px) {
    .meter__line {
        width: calc((1vw + 1vh) * 1);
    }
}
@media screen and (max-width: 580px) {
    .meter__line.meter__line_current {
        width: calc((1vw + 1vh) * 2);
    }
}
.about__head {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.about__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    z-index: 101;
}
.gear {
    position: absolute;
}
.gear > img {
    width: 100%;
}
.gear-up {
    left: 5.7291666667vw;
    top: 10.7407407407vh;
    -webkit-animation: rotator 80s infinite linear;
    animation: rotator 80s infinite linear;
    width: 251px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .gear-up {
        width: 150px;
    }
}
@media screen and (max-width: 320px) {
    .gear-up {
        width: 150px;
    }
}
.gear-middle {
    width: 133px;
    height: auto;
    left: -50.5px;
    top: calc(42.4575424575% - 66.5px);
    animation: rotator 60s infinite linear reverse;
}
@media screen and (max-width: 768px) {
    .gear-middle {
        width: 90px;
        left: -32px;
    }
}
@media screen and (max-width: 320px) {
    .gear-middle {
        width: 90px;
        left: -32px;
    }
}
.gear-down {
    bottom: 34px;
    width: 420px;
    height: auto;
    left: -96px;
    -webkit-animation: rotator 160s infinite linear;
    animation: rotator 160s infinite linear;
}
@media screen and (max-width: 768px) {
    .gear-down {
        width: 250px;
    }
}
@media screen and (max-width: 320px) {
    .gear-down {
        width: 250px;
    }
}
@-webkit-keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotator {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
input:not([type="submit"]):invalid {
    border: 1px solid red;
}
input:not([type="submit"]):valid {
    border: 1px solid green;
}
input:not([type="submit"])[untouched] {
    border: none;
}
.application {
    background: #6e9ec1;
    color: #fff;
    position: relative;
}
.application__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 425px) {
    .application__form {
        width: 70%;
    }
}
@media screen and (max-width: 320px) {
    .application__form {
        width: 90%;
    }
}
.application__input {
    border: none;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 5px;
    font-size: calc((1vw + 1vh) * 1);
    width: 28.0729166667vw;
    margin: 0 auto;
    -webkit-transition: border-color 0.5s, outline-color 0.5s, -webkit-box-shadow 0.5s;
    transition: border-color 0.5s, outline-color 0.5s, -webkit-box-shadow 0.5s;
    -o-transition: border-color 0.5s, outline-color 0.5s, box-shadow 0.5s;
    transition: border-color 0.5s, outline-color 0.5s, box-shadow 0.5s;
    transition: border-color 0.5s, outline-color 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
.application__input:not(:last-child) {
    margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
    .application__input {
        width: 70%;
    }
}
.application__submit.button {
    color: #fff;
}
.application__decoration {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}
.application__head {
    font-size: calc((1vw + 1vh) * 2.25);
    font-weight: 500;
    text-align: center;
    width: 90%;
    margin-bottom: 6.7932067932%;
}
.application__button-container {
    margin: 0;
    width: 28.0729166667vw;
}
.application__button-container > .button {
    padding: 0;
}
@media screen and (max-width: 768px) {
    .application__button-container {
        width: 70%;
    }
}
.footer {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1em;
    border-top: 1px solid #013485;
}
.footer__copyright {
    margin-left: 150px;
}
.footer__developer {
    margin-right: 150px;
}
.footer__developer > a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .footer__copyright {
        margin-left: 70px;
    }
    .footer__developer {
        margin-right: 70px;
    }
}
@media screen and (max-width: 425px) {
    .footer {
        font-size: 12px;
        padding: 0.5em;
    }
    .footer__copyright {
        margin-left: 30px;
    }
    .footer__developer {
        margin-right: 30px;
    }
}
@media screen and (max-width: 320px) {
    .footer__copyright {
        margin-left: 10px;
    }
    .footer__developer {
        margin-right: 10px;
    }
}
.textblock__title {
    color: #013485;
    font-size: 30px;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .textblock__title {
        font-size: 20px;
    }
}
@media screen and (max-width: 425px) {
    .textblock__title {
        font-size: 16px;
        margin-bottom: 0;
    }
}
.textblock__body {
    font-size: 20px;
    font-weight: 200;
    width: 65%;
}
.textblock__body > ul {
    padding: 0;
    width: 50%;
}
@media screen and (max-width: 768px) {
    .textblock__body {
        font-size: 15px;
    }
}
@media screen and (max-width: 425px) {
    .textblock__body {
        font-size: 11px;
    }
}
.screen.contacts {
    background: #e9e7e8;
}
@media screen and (max-width: 320px) {
    .screen.contacts {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
@media screen and (max-width: 580px) {
    .contacts {
        overflow-y: auto;
    }
}
.contacts__container {
    margin: 150px 146px 0 184px;
    display: grid;
    grid-template-columns: 154px 637px 1fr 1fr;
    grid-template-rows: 147px 165px 147px 168px;
    grid-template-areas: "EMPTY legal accountant production" "social post sales supply" "social time sales empty" " social phone phone phone";
    -ms-flex-line-pack: start;
    align-content: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    place-content: start;
    grid-column-gap: 0em;
    -webkit-column-gap: 0em;
    -moz-column-gap: 0em;
    column-gap: 0em;
}
@media screen and (max-width: 1440px) {
    .contacts__container {
        grid-template-columns: 100px 470px 1fr 1fr;
    }
}
@media screen and (max-width: 1250px) {
    .contacts__container {
        grid-template-columns: 100px 330px 1fr 1fr;
        margin: 150px 90px 0 104px;
    }
}
@media screen and (max-width: 1024px) {
    .contacts__container {
        grid-template-columns: 100px 285px 1fr 1fr;
    }
}
.contacts__container * {
    padding-top: 0;
    margin-top: 0;
}
@media screen and (max-width: 425px) {
    .contacts__container * {
        margin: 0;
        padding: 0;
    }
}
@media screen and (max-width: 870px) {
    .contacts__container {
        grid-template-columns: 65px 200px 1fr 1fr;
        margin: 110px 48px 0 72px;
    }
}
@media screen and (max-width: 700px) {
    .contacts__container {
        grid-template-areas: "social legal accountant " "social post supply" "social time sales" "social production sales " " social phone phone";
        grid-template-rows: 110px 100px 140px 168px;
        margin: 110px auto 0 72px;
    }
}
@media screen and (max-width: 580px) {
    .contacts__container {
        margin: 27vw 80px;
        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: 1em;
    }
    .contacts__container h2[class^="textblock"] {
        margin: 0;
    }
}
.contacts__socials {
    grid-area: social;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 580px) {
    .contacts__socials {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.contacts__socials > *:not(:last-child) {
    margin-bottom: 1rem;
}
@media screen and (max-width: 580px) {
    .contacts__socials > *:not(:last-child) {
        margin-bottom: 0;
    }
}
.contacts__socials svg {
    fill: #013485;
}
.contacts__legal-address {
    grid-area: legal;
    font-size: 1.2em;
}
@media screen and (max-width: 1024px) {
    .contacts__legal-address {
        font-size: 1px;
    }
    .contacts__legal-address .textblock__title {
        font-size: 20px;
    }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
    .contacts__legal-address .textblock__title {
        font-size: 15px;
    }
}
@media screen and (max-width: 1024px) {
    .contacts__legal-address .textblock__body {
        font-size: 16px;
        width: 100%;
    }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
    .contacts__legal-address .textblock__body {
        font-size: 11px;
    }
}
.contacts__accountant {
    grid-area: accountant;
}
.contacts__accountant .textblock__title {
    font-size: 20px;
}
@media screen and (max-width: 580px) {
    .contacts__accountant .textblock__title {
        font-size: 15px;
    }
}
.contacts__accountant .textblock__body {
    font-size: 16px;
    width: 100%;
}
@media screen and (max-width: 580px) {
    .contacts__accountant .textblock__body {
        font-size: 11px;
    }
}
.contacts__production {
    grid-area: production;
}
.contacts__production .textblock__title {
    font-size: 20px;
}
@media screen and (max-width: 580px) {
    .contacts__production .textblock__title {
        font-size: 15px;
    }
}
.contacts__production .textblock__body {
    font-size: 16px;
    width: 100%;
}
@media screen and (max-width: 580px) {
    .contacts__production .textblock__body {
        font-size: 11px;
    }
}
.contacts__postal-address {
    grid-area: post;
}
@media screen and (max-width: 580px) {
    .contacts__postal-address .textblock__title {
        margin-top: 10px;
    }
}
@media screen and (max-width: 1024px) {
    .contacts__postal-address .textblock__title {
        font-size: 20px;
    }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
    .contacts__postal-address .textblock__title {
        font-size: 15px;
    }
}
@media screen and (max-width: 1024px) {
    .contacts__postal-address .textblock__body {
        font-size: 16px;
        width: 100%;
    }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
    .contacts__postal-address .textblock__body {
        font-size: 11px;
    }
}
.contacts__sales {
    grid-area: sales;
}
.contacts__sales .textblock__title {
    font-size: 20px;
}
@media screen and (max-width: 580px) {
    .contacts__sales .textblock__title {
        font-size: 15px;
    }
}
.contacts__sales .textblock__body {
    font-size: 16px;
    width: 100%;
}
@media screen and (max-width: 580px) {
    .contacts__sales .textblock__body {
        font-size: 11px;
    }
}
.contacts__sales ul {
    padding: 0;
}
@media screen and (max-width: 1720px) {
    .contacts__sales ul {
        width: 90%;
    }
}
@media screen and (max-width: 630px) {
    .contacts__sales ul {
        width: 100%;
    }
}
@media screen and (max-width: 580px) {
    .contacts__sales ul {
        width: 50%;
    }
}
@media screen and (max-width: 370px) {
    .contacts__sales ul {
        width: 100%;
    }
}
.contacts__jobtime {
    grid-area: time;
}
.contacts__jobtime .textblock__title {
    margin-top: 21px;
}
@media screen and (max-width: 580px) {
    .contacts__jobtime .textblock__title {
        margin-top: 10px;
    }
}
.contacts__jobtime .textblock__body > p {
    margin: 0;
}
@media screen and (max-width: 1024px) {
    .contacts__jobtime .textblock__title {
        font-size: 20px;
    }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
    .contacts__jobtime .textblock__title {
        font-size: 15px;
    }
}
@media screen and (max-width: 1024px) {
    .contacts__jobtime .textblock__body {
        font-size: 16px;
        width: 100%;
    }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
    .contacts__jobtime .textblock__body {
        font-size: 11px;
    }
}
.contacts__supply {
    grid-area: supply;
}
.contacts__supply .textblock__title {
    font-size: 20px;
}
@media screen and (max-width: 1520px) {
    .contacts__supply {
        margin-top: 30px;
    }
}
@media screen and (max-width: 580px) {
    .contacts__supply .textblock__title {
        font-size: 15px;
    }
}
.contacts__supply .textblock__body {
    font-size: 16px;
    width: 100%;
}
@media screen and (max-width: 580px) {
    .contacts__supply .textblock__body {
        font-size: 11px;
    }
}
.contacts__allday {
    grid-area: phone;
}
.contacts__contacts {
    grid-area: phone;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.contacts__phone {
    padding-top: 1em;
    color: #013485;
}
@media screen and (max-width: 320px) {
    .contacts__phone {
        padding-top: 0;
    }
}
.contacts__phone > a {
    text-decoration: none;
    color: #013485;
    font-size: 60px;
}
@media screen and (max-width: 768px) {
    .contacts__phone > a {
        font-size: 30px;
    }
}
@media screen and (max-width: 580px) {
    .contacts__phone > a {
        font-size: 25px;
    }
}
@media screen and (max-width: 320px) {
    .contacts__phone > a {
        font-size: 20px;
    }
}
.contacts__liner {
    height: 100%;
}
.contacts__vk {
    width: 34px;
}
.contacts a {
    color: currentColor;
    text-decoration: none;
}
.contacts__footer.footer {
    background: #e9e7e8;
}
.day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #000;
}
.day__name {
    margin-right: 1em;
}
.day__time_red {
    color: red;
}
.liner {
    height: 100%;
    width: 2px;
    margin: 0 1rem;
}
@media screen and (max-width: 580px) {
    .liner {
        margin: 0;
    }
}
.liner-up,
.liner-down {
    background: #000;
}
@media screen and (max-width: 580px) {
    .liner {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
}
.card-priority {
    position: relative;
    background: #fff;
    border-radius: 5px;
    width: 382px;
    padding: 1rem;
}
@media screen and (max-width: 1024px) {
    .card-priority {
        margin: 0;
        padding: 2rem 1rem;
        margin: 10px 0;
        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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .card-priority {
        width: 75%;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 630px) {
    .card-priority {
        padding: 1rem;
    }
}
.card-priority__title {
    text-align: center;
    margin-top: calc((1vw + 1vh) * 3);
    font-size: 25px;
    font-weight: 400;
}
@media screen and (max-width: 1024px) {
    .card-priority__title {
        margin: 0 0 1rem 50px;
        text-align: center;
    }
}
@media screen and (max-width: 425px) {
    .card-priority__title {
        font-size: 20px;
        margin: 0 0 0.5rem 30px;
    }
}
@media screen and (max-width: 320px) {
    .card-priority__title {
        font-size: 16px;
        margin: 0 0 0.5rem 13px;
    }
}
.card-priority__body {
    text-align: center;
    margin-bottom: calc((1vw + 1vh) * 3);
    font-size: 18px;
    font-weight: 200;
}
@media screen and (max-width: 1024px) {
    .card-priority__body {
        margin: 0 0 0 50px;
    }
}
@media screen and (max-width: 425px) {
    .card-priority__body {
        font-size: 15px;
        margin: 0 0 0 30px;
    }
}
@media screen and (max-width: 320px) {
    .card-priority__body {
        font-size: 11px;
        margin: 0 0 0 13px;
    }
}
.card-priority__svg {
    background: #013485;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #fff;
    width: 135px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .card-priority__svg {
        width: 30%;
        left: 0;
        top: 50%;
    }
}
@media screen and (max-width: 768px) {
    .card-priority__svg {
        width: 22%;
    }
}
@media screen and (max-width: 425px) {
    .card-priority__svg {
        width: 30%;
    }
}
.card-priority__svg > svg {
    width: 100%;
    height: auto;
}
.priority {
    background: #013485;
}
.priority__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    width: 65%;
    overflow: auto;
}
@media screen and (max-width: 1024px) {
    .priority__container {
        position: absolute;
        top: 90px;
        bottom: 1rem;
    }
}
.priority__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: 3.7vw;
    -moz-column-gap: 3.7vw;
    column-gap: 3.7vw;
}
@media screen and (max-width: 1024px) {
    .priority__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.priority__head {
    margin-bottom: 5vw;
    text-align: center;
    color: #fff;
    font-size: 50px;
}
@media screen and (max-width: 630px) {
    .priority__head {
        font-size: 40px;
    }
}
@media screen and (max-width: 425px) {
    .priority__head {
        width: 100%;
    }
}
.priority__title {
    margin: 0;
    padding: 0;
    font-size: 1em;
}
@media screen and (max-width: 425px) {
    .priority__title {
        font-size: 20px;
    }
}
.priority__slogan {
    font-size: calc((1vw + 1vh) * 0.8);
    margin-top: 0;
    font-size: 0.4em;
}
@media screen and (max-width: 425px) {
    .priority__slogan {
        font-size: 12px;
    }
}
.priority__backword {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    font-size: calc((1vw + 1vh) * 10);
    position: absolute;
}
.priority__backword_up {
    top: 0;
    left: 50%;
}
.priority__backword_down {
    bottom: 0;
    left: -50%;
}
.products-wrapper {
    position: relative;
    width: 65%;
    overflow: hidden;
    height: 80%;
}
.products {
    background: #c9c9ce url(../../assets/img/cf73bc1b079278a031c7.png) repeat-x;
    background-size: 50%;
    background-position: 50% 100%;
}
.container-products {
    width: 600px;
}
.products .carousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 55%;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
}
.products .carousel > * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.products .carousel .carousel-item__wrapper {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.products .carousel > .carousel-item > .carousel-item__wrapper {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .products .carousel > .carousel-item > .carousel-item__wrapper {
        width: 70%;
    }
}
@media screen and (max-width: 425px) {
    .products .carousel > .carousel-item > .carousel-item__wrapper {
        width: 50%;
    }
}
.products .carousel > .carousel-item > .carousel-item__wrapper > img {
    width: 100%;
}
.products .carousel > .carousel-item.active > .carousel-item__wrapper {
    width: 130%;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}
@media screen and (max-width: 768px) {
    .products .carousel > .carousel-item.active > .carousel-item__wrapper {
        width: 100%;
    }
}
@media screen and (max-width: 425px) {
    .products .carousel > .carousel-item.active > .carousel-item__wrapper {
        width: 50%;
    }
}
.products .carousel > .carousel-item.active > .carousel-item__wrapper > img {
    width: 100%;
}
@media screen and (max-width: 877px) {
    .products .carousel {
        margin: 0;
        padding: 0;
        margin-top: 10%;
        height: 44%;
    }
}
.products .carousel .carousel-item {
    width: 400px;
    height: 400px;
}
.products .carousel .carousel-item__point {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(1, 52, 133, 0.50196);
    color: #fff;
    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;
    font-size: 20px;
    position: absolute;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
}
@media screen and (max-width: 425px) {
    .products .carousel .carousel-item__point {
        width: 30px;
        height: 30px;
    }
}
.products .carousel .carousel-item__inner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(1, 52, 133, 0.50196);
    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;
}
@media screen and (max-width: 425px) {
    .products .carousel .carousel-item__inner {
        width: 22px;
        height: 22px;
    }
}
.products .carousel .carousel-item__point-data {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    color: #000;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    border-bottom: 1px solid #fff;
}
.products .carousel .carousel-item svg {
    z-index: 0;
    position: absolute;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.products .carousel .carousel-item__point-text {
    white-space: nowrap;
}
.products__controls {
    width: 100%;
    position: absolute;
    bottom: 4em;
    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;
}
.products__control {
    cursor: pointer;
    background: none;
    border: none;
}
.products__control_prev {
    margin-right: 29px;
}
.products__header {
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    opacity: 0;
}
.products__header.active {
    opacity: 1;
}
@media screen and (max-width: 1024px) {
    .products__header {
        top: 70px;
    }
}
@media screen and (max-width: 425px) {
    .products__header {
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding: 0 1em;
    }
}
.products__title {
    font-size: 50px;
    font-weight: 700;
    margin-top: 96px;
    line-height: 0.9;
}
@media screen and (max-width: 1024px) {
    .products__title {
        margin-top: 50px;
    }
}
@media screen and (max-width: 425px) {
    .products__title {
        font-size: 40px;
    }
}
.products__desc {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
    max-width: 554px;
}
.main-body {
    font-size: calc((1vw + 1vh) * 1.1);
    font-weight: bold;
    color: #fff;
    z-index: 2;
    padding: 0 1em;
}
.main-body__down,
.main-body__up {
    padding: 0;
    margin: 0;
}
.main-body__down {
    color: #000;
}
@media screen and (max-width: 425px) {
    .main-body__up {
        text-align: center;
    }
}
@media screen and (max-width: 425px) {
    .main-body {
        top: 210px;
        width: 100vw;
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        left: 0;
        font-size: 17px;
    }
}
@media screen and (max-width: 380px) {
    .main-body {
        top: 170px;
    }
}
.main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
}
.main-menu * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.main-menu.active ul {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.main-menu.active .main-menu__burger {
    opacity: 0;
}
.main-menu.active .main-menu__cross {
    opacity: 1;
}
.main-menu.active .main-menu__label {
    opacity: 0;
}
.main-menu.active .main-menu__wrapper {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
@media screen and (max-width: 768px) {
    .main-menu.active > .main-menu__wrapper {
        z-index: 100;
        background: rgba(1, 52, 133, 0.8);
        -webkit-box-shadow: 1em 1em 2em rgba(1, 52, 133, 0.50196);
        box-shadow: 1em 1em 2em rgba(1, 52, 133, 0.50196);
    }
}
.main-menu ul {
    margin: 0;
    padding: 0 1em 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 768px) {
    .main-menu ul {
        padding: 0;
    }
}
.main-menu ul > li {
    position: relative;
    list-style: none;
    padding: 0;
    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;
    -webkit-transition: border-bottom 0.5s;
    -o-transition: border-bottom 0.5s;
    transition: border-bottom 0.5s;
}
.main-menu ul > li:not(:first-child) {
    padding-left: 1em;
}
@media screen and (max-width: 768px) {
    .main-menu ul > li:not(:first-child) {
        padding-left: 0;
    }
}
.main-menu ul > li > a {
    font-weight: 200;
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: calc((1vw + 1vh) * 0.7);
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: border 0.6s;
    -o-transition: border 0.6s;
    transition: border 0.6s;
}
@media screen and (max-width: 768px) {
    .main-menu ul > li > a {
        font-size: 20px;
    }
}
.main-menu ul > li:hover > a {
    border-bottom: 1px solid currentColor;
}
.main-menu__blank {
    border: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    padding: 0;
    width: 24px;
}
.main-menu__blank > svg {
    fill: currentColor;
    stroke: currentColor;
}
.main-menu__icon {
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}
.main-menu__burger {
    opacity: 1;
}
.main-menu__cross {
    opacity: 0;
}
.main-menu__label {
    -webkit-transition: opacity 1s 0.1s;
    -o-transition: opacity 1s 0.1s;
    transition: opacity 1s 0.1s;
    padding: 0 1em;
    line-height: 1;
    font-size: 20px;
    text-transform: capitalize;
    margin: -3px 0;
}
.main-menu__wrapper {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    margin-left: 30px;
}
@media screen and (max-width: 768px) {
    .main-menu__wrapper {
        margin: 0;
        position: fixed;
        top: 120px;
        left: 0;
        padding: 2em 2em 4em 2em;
        background: rgba(0, 0, 0, 0);
        z-index: -1;
        border-radius: 0 5px 5px 0;
        -webkit-transition: background 0.5s, -webkit-box-shadow 0.5s, -webkit-transform 0.5s;
        transition: background 0.5s, -webkit-box-shadow 0.5s, -webkit-transform 0.5s;
        -o-transition: background 0.5s, box-shadow 0.5s, transform 0.5s;
        transition: background 0.5s, box-shadow 0.5s, transform 0.5s;
        transition: background 0.5s, box-shadow 0.5s, transform 0.5s, -webkit-box-shadow 0.5s,
            -webkit-transform 0.5s;
    }
    .main-menu__wrapper ul {
        -webkit-transform: translateX(-120%);
        -ms-transform: translateX(-120%);
        transform: translateX(-120%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        color: #fff;
    }
}
.main-menu__switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.main-menu__phone {
    color: #fff;
    display: none;
    font-size: 22px;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .main-menu__phone {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        display: block;
        position: absolute;
        margin-bottom: 1em;
        bottom: 0;
    }
}
.header {
    height: 96px;
}
.header__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
}
.header__main-head {
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    width: 100%;
    height: 130px;
    margin: 0 auto;
    padding: 0 8vw;
}
@media screen and (max-width: 380px) {
    .header__main-head {
        height: 88px;
    }
}
.header__phone {
    font-size: calc((1vw + 1vh) * 1.1);
    font-weight: 400;
    justify-self: end;
    color: #000;
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33%;
    flex: 1 1 33.33%;
    -webkit-transition: -webkit-box-flex 1s;
    transition: -webkit-box-flex 1s;
    -o-transition: flex 1s;
    transition: flex 1s;
    transition: flex 1s, -webkit-box-flex 1s, -ms-flex 1s;
}
@media screen and (max-width: 768px) {
    .header__phone {
        display: none;
    }
}
.header__phone-within {
    display: none;
}
.header__header,
.header__big-logo {
    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;
}
.header__header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}
@media screen and (max-width: 425px) {
    .header__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.header__logo {
    width: 78px;
    height: auto;
}
@media screen and (max-width: 1024px) {
    .header__logo {
        width: 37px;
    }
}
.header__logo > img {
    width: 100%;
}
.header__leftside {
    font-family: Montserrat, Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 1vw;
    text-align: center;
}
.header__title {
    font-size: 35px;
    font-weight: 600;
}
@media screen and (max-width: 1024px) {
    .header__title {
        font-size: 21px;
    }
}
.header__slogan {
    font-size: 14px;
    text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
    .header__slogan {
        font-size: 9px;
    }
}
a {
    text-decoration: none;
    color: inherit;
}
.button {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr min(6vh, 6vw);
    grid-template-rows: min(6vh, 6vw);
    cursor: pointer;
    background: inherit;
    border: none;
    height: min(6vh, 6vw);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 425px) {
    .button {
        height: 50px;
    }
}
.button__name {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    place-items: center;
    font-size: max(12px, min(1.3vw, 25px));
    color: currentColor;
    height: min(6vh, 6vw);
    text-transform: uppercase;
    font-weight: 200;
}
.button__name_blue {
    border: 1px solid #013485;
}
.button__name_blue > svg {
    fill: #013485;
    width: 50%;
}
.button__name_white {
    border: 1px solid #fff;
    border-right: none;
}
.button__name_white > svg {
    fill: #fff;
    width: 50%;
}
.button__name > span {
    margin: 0 1em;
}
.button__arrow {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
    background-size: contain;
    background-position: 50% 100%;
    height: min(6vh, 6vw);
    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-left: none;
}
.button__arrow_blue {
    border: 1px solid #fff;
}
.button__arrow_blue > svg {
    fill: #013485;
    width: 50%;
}
.button__arrow_white {
    border: 1px solid #fff;
}
.button__arrow_white > svg {
    fill: #fff;
    width: 50%;
}
.button:hover .button__arrow_blue {
    background: #013485;
}
.button:hover .button__arrow_blue > svg {
    fill: #fff;
}
.button:hover .button__arrow_white {
    background: #fff;
}
.button:hover .button__arrow_white > svg {
    fill: #013485;
}
.tiser {
    background: url(../../assets/img/29577ffc30fc1dbd383f.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.tiser .main-menu {
    background: #0d88bf;
}
.tiser .main-menu__blank {
    background: #0d88bf;
}
.tiser__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33%;
    flex: 1 0 33%;
}
.tiser__button {
    color: #fff;
}
.tiser__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 0 7.8vw;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    place-items: center;
}
@media screen and (max-width: 720px) {
    .tiser__main {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
}
.tiser__button-container {
    width: 55%;
    margin-top: max(1rem, min(3.9vh, 40px));
}
.control {
    position: fixed;
    top: 50%;
    z-index: 10;
    background: inherit;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 93px;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
    cursor: pointer;
    font-size: 20px;
    -webkit-transition: opacity 1s, color 1s;
    -o-transition: opacity 1s, color 1s;
    transition: opacity 1s, color 1s;
}
.control__up,
.control__down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1em;
    -moz-column-gap: 1em;
    column-gap: 1em;
    width: 110px;
    height: 36px;
}
.control__up > svg,
.control__down > svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.control__up > svg > path,
.control__down > svg > path {
    fill: currentColor;
}
.control__up {
    left: 2vw;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}
@media screen and (max-width: 768px) {
    .control__up {
        left: 0;
        font-size: 15px;
    }
}
@media screen and (max-width: 320px) {
    .control__up {
        font-size: 10px;
        left: -1em;
    }
}
.control__down {
    right: 7vw;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
    .control__down {
        font-size: 15px;
    }
}
@media screen and (max-width: 580px) {
    .control__down {
        right: 20px;
    }
}
@media screen and (max-width: 425px) {
    .control__down {
        right: 12px;
        -webkit-transform: translateY(63%) rotate(90deg);
        -ms-transform: translateY(63%) rotate(90deg);
        transform: translateY(63%) rotate(90deg);
    }
}
@media screen and (max-width: 320px) {
    .control__down {
        font-size: 10px;
        right: 0;
    }
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.container-tiser {
    width: 100%;
    z-index: 0;
}
.container-tiser .slider__item:nth-child(1) {
    background-position: center;
    background-size: contain;
}
.container-tiser .slider__item:nth-child(2) {
    background-position: center;
    background-size: contain;
}
.container-tiser .slider__item:nth-child(3) {
    background-position: center;
    background-size: contain;
}
.container-tiser .slider__item:nth-child(4) {
    background-position: center;
    background-size: contain;
}
.container-tiser .slider__item > img {
    width: 100%;
}
.container-tiser .slider__control {
    display: none;
}
@media screen and (max-width: 425px) {
    .container-tiser > .slider {
        position: absolute;
        width: 100%;
    }
}
@media screen and (max-width: 425px) {
    .container-tiser {
        left: 5%;
        width: 70%;
        top: 66%;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}
.slider.slider-products {
    overflow: visible;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}
.slider.slider-products .slider__wrapper {
    overflow: visible;
    position: relative;
}
.slider.slider-products .slider__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    opacity: 0.7;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
    transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.slider.slider-products .slider__item_active {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.container-products {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80%;
    left: 60%;
    z-index: 0;
}
.container-products .slider__item:nth-child(1) {
    background: transparent url(../../assets/img/cf5d878a74678b0aeb1b.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-products .slider__item:nth-child(2) {
    background: transparent url(../../assets/img/41a0b4464a60e9c66eab.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-products .slider__item:nth-child(3) {
    background: transparent url(../../assets/img/cf5d878a74678b0aeb1b.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-products .slider__item:nth-child(4) {
    background: transparent url(../../assets/img/41a0b4464a60e9c66eab.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-products .slider__item:nth-child(5) {
    background: transparent url(../../assets/img/cf5d878a74678b0aeb1b.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-products .slider__item:nth-child(6) {
    background: transparent url(../../assets/img/41a0b4464a60e9c66eab.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-products .slider__control {
    top: 100%;
}
.container-products .slider__control_prev {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.container-products .slider__control_next {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.slider {
    position: relative;
    overflow: hidden;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.slider__wrapper {
    position: relative;
    overflow: hidden;
}
.slider__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    height: min(50vw, 500px);
}
.transition-none {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.slider__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
}
.slider__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 70px;
    height: 50px;
    margin: 0 auto;
}
.slider__control {
    opacity: 0.1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 12px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAxMiAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoCiAgICAgICAgZD0iTTYuNzUgMUM2Ljc1IDAuNTg1Nzg2IDYuNDE0MjEgMC4yNSA2IDAuMjVDNS41ODU3OSAwLjI1IDUuMjUgMC41ODU3ODYgNS4yNSAxTDYuNzUgMVpNNS40Njk2NyAyMy41MzAzQzUuNzYyNTYgMjMuODIzMiA2LjIzNzQ0IDIzLjgyMzIgNi41MzAzMyAyMy41MzAzTDExLjMwMzMgMTguNzU3NEMxMS41OTYyIDE4LjQ2NDUgMTEuNTk2MiAxNy45ODk2IDExLjMwMzMgMTcuNjk2N0MxMS4wMTA0IDE3LjQwMzggMTAuNTM1NSAxNy40MDM4IDEwLjI0MjYgMTcuNjk2N0w2IDIxLjkzOTNMMS43NTczNiAxNy42OTY3QzEuNDY0NDcgMTcuNDAzOCAwLjk4OTU5MyAxNy40MDM4IDAuNjk2NyAxNy42OTY3QzAuNDAzODA2IDE3Ljk4OTYgMC40MDM4MDYgMTguNDY0NSAwLjY5NjcgMTguNzU3NEw1LjQ2OTY3IDIzLjUzMDNaTTUuMjUgMUw1LjI1IDIzTDYuNzUgMjNMNi43NSAxTDUuMjUgMVoiCiAgICAgICAgZmlsbD0iYmxhY2siIC8+Cjwvc3ZnPg==)
        no-repeat;
    background-size: contain;
}
.slider__control_show {
    opacity: 1;
}
.slider__control_prev {
    left: 0;
}
.slider__control_next {
    right: 0;
}
.slider__control::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
}
.slider__indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
    margin: 0 15%;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 50%;
    margin: 0 auto;
}
.slider__indicator {
    width: 45px;
    height: 45px;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: calc((1vw + 1vh) * 1.2);
    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;
}
.slider__indicator > .number {
    line-height: 1;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 200;
}
@media screen and (max-width: 666px) {
    .slider__indicator {
        width: 33px;
        height: 33px;
    }
}
.slider__indicator_active {
    border: 1px solid #000;
    color: #000;
}
.container-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%;
    left: 60%;
    z-index: 0;
}
.container-slider .slider__item:nth-child(1) {
    background: transparent url(../../assets/img/cf5d878a74678b0aeb1b.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-slider .slider__item:nth-child(2) {
    background: transparent url(../../assets/img/41a0b4464a60e9c66eab.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-slider .slider__item:nth-child(3) {
    background: transparent url(../../assets/img/cf5d878a74678b0aeb1b.png) no-repeat;
    background-position: center;
    background-size: contain;
}
.container-slider .slider__item:nth-child(4) {
    background: transparent url(../../assets/img/41a0b4464a60e9c66eab.png) no-repeat;
    background-position: center;
    background-size: contain;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 800;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
        format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
        format("woff2");
    unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/montserrat/v24/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.header {
    height: 96px;
}
.header__menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
}
.header__main-head {
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    width: 100%;
    height: 130px;
    margin: 0 auto;
    padding: 0 8vw;
}
@media screen and (max-width: 380px) {
    .header__main-head {
        height: 88px;
    }
}
.header__phone {
    font-size: calc((1vw + 1vh) * 1.1);
    font-weight: 400;
    justify-self: end;
    color: #000;
    text-align: right;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.33%;
    flex: 1 1 33.33%;
    -webkit-transition: -webkit-box-flex 1s;
    transition: -webkit-box-flex 1s;
    -o-transition: flex 1s;
    transition: flex 1s;
    transition: flex 1s, -webkit-box-flex 1s, -ms-flex 1s;
}
@media screen and (max-width: 768px) {
    .header__phone {
        display: none;
    }
}
.header__phone-within {
    display: none;
}
.header__header,
.header__big-logo {
    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;
}
.header__header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}
@media screen and (max-width: 425px) {
    .header__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.header__logo {
    width: 78px;
    height: auto;
}
@media screen and (max-width: 1024px) {
    .header__logo {
        width: 37px;
    }
}
.header__logo > img {
    width: 100%;
}
.header__leftside {
    font-family: Montserrat, Verdana, Geneva, Tahoma, sans-serif;
    margin-left: 1vw;
    text-align: center;
}
.header__title {
    font-size: 35px;
    font-weight: 600;
}
@media screen and (max-width: 1024px) {
    .header__title {
        font-size: 21px;
    }
}
.header__slogan {
    font-size: 14px;
    text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
    .header__slogan {
        font-size: 9px;
    }
}
a {
    text-decoration: none;
    color: inherit;
}
.footer {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1em;
    border-top: 1px solid #013485;
}
.footer__copyright {
    margin-left: 150px;
}
.footer__developer {
    margin-right: 150px;
}
.footer__developer > a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .footer__copyright {
        margin-left: 70px;
    }
    .footer__developer {
        margin-right: 70px;
    }
}
@media screen and (max-width: 425px) {
    .footer {
        font-size: 12px;
        padding: 0.5em;
    }
    .footer__copyright {
        margin-left: 30px;
    }
    .footer__developer {
        margin-right: 30px;
    }
}
@media screen and (max-width: 320px) {
    .footer__copyright {
        margin-left: 10px;
    }
    .footer__developer {
        margin-right: 10px;
    }
}
.main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
}
.main-menu * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.main-menu.active ul {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.main-menu.active .main-menu__burger {
    opacity: 0;
}
.main-menu.active .main-menu__cross {
    opacity: 1;
}
.main-menu.active .main-menu__label {
    opacity: 0;
}
.main-menu.active .main-menu__wrapper {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
@media screen and (max-width: 768px) {
    .main-menu.active > .main-menu__wrapper {
        z-index: 100;
        background: rgba(1, 52, 133, 0.8);
        -webkit-box-shadow: 1em 1em 2em rgba(1, 52, 133, 0.50196);
        box-shadow: 1em 1em 2em rgba(1, 52, 133, 0.50196);
    }
}
.main-menu ul {
    margin: 0;
    padding: 0 1em 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 768px) {
    .main-menu ul {
        padding: 0;
    }
}
.main-menu ul > li {
    position: relative;
    list-style: none;
    padding: 0;
    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;
    -webkit-transition: border-bottom 0.5s;
    -o-transition: border-bottom 0.5s;
    transition: border-bottom 0.5s;
}
.main-menu ul > li:not(:first-child) {
    padding-left: 1em;
}
@media screen and (max-width: 768px) {
    .main-menu ul > li:not(:first-child) {
        padding-left: 0;
    }
}
.main-menu ul > li > a {
    font-weight: 200;
    color: inherit;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: calc((1vw + 1vh) * 0.7);
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    -webkit-transition: border 0.6s;
    -o-transition: border 0.6s;
    transition: border 0.6s;
}
@media screen and (max-width: 768px) {
    .main-menu ul > li > a {
        font-size: 20px;
    }
}
.main-menu ul > li:hover > a {
    border-bottom: 1px solid currentColor;
}
.main-menu__blank {
    border: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    padding: 0;
    width: 24px;
}
.main-menu__blank > svg {
    fill: currentColor;
    stroke: currentColor;
}
.main-menu__icon {
    -webkit-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}
.main-menu__burger {
    opacity: 1;
}
.main-menu__cross {
    opacity: 0;
}
.main-menu__label {
    -webkit-transition: opacity 1s 0.1s;
    -o-transition: opacity 1s 0.1s;
    transition: opacity 1s 0.1s;
    padding: 0 1em;
    line-height: 1;
    font-size: 20px;
    text-transform: capitalize;
    margin: -3px 0;
}
.main-menu__wrapper {
    overflow: hidden;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-transform: translateX(-120%);
    -ms-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    margin-left: 30px;
}
@media screen and (max-width: 768px) {
    .main-menu__wrapper {
        margin: 0;
        position: fixed;
        top: 120px;
        left: 0;
        padding: 2em 2em 4em 2em;
        background: rgba(0, 0, 0, 0);
        z-index: -1;
        border-radius: 0 5px 5px 0;
        -webkit-transition: background 0.5s, -webkit-box-shadow 0.5s, -webkit-transform 0.5s;
        transition: background 0.5s, -webkit-box-shadow 0.5s, -webkit-transform 0.5s;
        -o-transition: background 0.5s, box-shadow 0.5s, transform 0.5s;
        transition: background 0.5s, box-shadow 0.5s, transform 0.5s;
        transition: background 0.5s, box-shadow 0.5s, transform 0.5s, -webkit-box-shadow 0.5s,
            -webkit-transform 0.5s;
    }
    .main-menu__wrapper ul {
        -webkit-transform: translateX(-120%);
        -ms-transform: translateX(-120%);
        transform: translateX(-120%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        color: #fff;
    }
}
.main-menu__switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.main-menu__phone {
    color: #fff;
    display: none;
    font-size: 22px;
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .main-menu__phone {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        display: block;
        position: absolute;
        margin-bottom: 1em;
        bottom: 0;
    }
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif;
    padding: 0;
    margin: 0;
}
.preload {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 300;
    background: #fff;
    -webkit-transition: opacity 0.5s, z-index 0.5s;
    -o-transition: opacity 0.5s, z-index 0.5s;
    transition: opacity 0.5s, z-index 0.5s;
    opacity: 1;
}
.preload.hidden {
    opacity: 0;
    z-index: -2;
}
.button {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr min(6vh, 6vw);
    grid-template-rows: min(6vh, 6vw);
    cursor: pointer;
    background: inherit;
    border: none;
    height: min(6vh, 6vw);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 425px) {
    .button {
        height: 50px;
    }
}
.button__name {
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-items: center;
    place-items: center;
    font-size: max(12px, min(1.3vw, 25px));
    color: currentColor;
    height: min(6vh, 6vw);
    text-transform: uppercase;
    font-weight: 200;
}
.button__name_blue {
    border: 1px solid #013485;
}
.button__name_blue > svg {
    fill: #013485;
    width: 50%;
}
.button__name_white {
    border: 1px solid #fff;
    border-right: none;
}
.button__name_white > svg {
    fill: #fff;
    width: 50%;
}
.button__name > span {
    margin: 0 1em;
}
.button__arrow {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
    background-size: contain;
    background-position: 50% 100%;
    height: min(6vh, 6vw);
    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-left: none;
}
.button__arrow_blue {
    border: 1px solid #fff;
}
.button__arrow_blue > svg {
    fill: #013485;
    width: 50%;
}
.button__arrow_white {
    border: 1px solid #fff;
}
.button__arrow_white > svg {
    fill: #fff;
    width: 50%;
}
.button:hover .button__arrow_blue {
    background: #013485;
}
.button:hover .button__arrow_blue > svg {
    fill: #fff;
}
.button:hover .button__arrow_white {
    background: #fff;
}
.button:hover .button__arrow_white > svg {
    fill: #013485;
}
.card {
    position: relative;
    background: #fff;
    border-radius: 5px;
    padding: 1rem;
    margin: 10px 35.5px;
    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;
}
@media screen and (max-width: 1334px) {
    .card {
        margin: 10px 25px;
    }
}
@media screen and (max-width: 768px) {
    .card {
        margin: 10px 0 0 38px;
    }
}
@media screen and (max-width: 477px) {
    .card {
        padding: 10px 0 10px 15px;
    }
}
@media screen and (max-width: 375px) {
    .card {
        margin: 10px 5.2vw;
    }
}
@media screen and (max-width: 320px) {
    .card {
        margin: 10px 7vw;
    }
}
.card__title {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    padding-left: 3.5416666667vw;
}
@media screen and (max-width: 1334px) {
    .card__title {
        font-size: 14.5px;
    }
}
@media screen and (max-width: 1024px) {
    .card__title {
        text-align: center;
        font-size: 16px;
    }
}
@media screen and (max-width: 477px) {
    .card__title {
        font-size: 13px;
    }
}
@media screen and (max-width: 320px) {
    .card__title {
        font-size: 16px;
    }
}
.card__svg {
    background: #013485;
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 3%;
    border: 1px solid #fff;
    width: 85px;
    height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.card__svg > img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1024px) {
    .card__svg {
        left: 0;
        top: 50%;
    }
}
@media screen and (max-width: 768px) {
    .card__svg {
        width: 70px;
        height: 70px;
    }
}
@media screen and (max-width: 425px) {
    .card__svg {
        width: 40px;
        height: 40px;
    }
}
.card-priority {
    position: relative;
    background: #fff;
    border-radius: 5px;
    width: 382px;
    padding: 1rem;
}
@media screen and (max-width: 1024px) {
    .card-priority {
        margin: 0;
        padding: 2rem 1rem;
        margin: 10px 0;
        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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .card-priority {
        width: 75%;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 630px) {
    .card-priority {
        padding: 1rem;
    }
}
.card-priority__title {
    text-align: center;
    margin-top: calc((1vw + 1vh) * 3);
    font-size: 25px;
    font-weight: 400;
}
@media screen and (max-width: 1024px) {
    .card-priority__title {
        margin: 0 0 1rem 50px;
        text-align: center;
    }
}
@media screen and (max-width: 425px) {
    .card-priority__title {
        font-size: 20px;
        margin: 0 0 0.5rem 30px;
    }
}
@media screen and (max-width: 320px) {
    .card-priority__title {
        font-size: 16px;
        margin: 0 0 0.5rem 13px;
    }
}
.card-priority__body {
    text-align: center;
    margin-bottom: calc((1vw + 1vh) * 3);
    font-size: 18px;
    font-weight: 200;
}
@media screen and (max-width: 1024px) {
    .card-priority__body {
        margin: 0 0 0 50px;
    }
}
@media screen and (max-width: 425px) {
    .card-priority__body {
        font-size: 15px;
        margin: 0 0 0 30px;
    }
}
@media screen and (max-width: 320px) {
    .card-priority__body {
        font-size: 11px;
        margin: 0 0 0 13px;
    }
}
.card-priority__svg {
    background: #013485;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #fff;
    width: 135px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 1024px) {
    .card-priority__svg {
        width: 30%;
        left: 0;
        top: 50%;
    }
}
@media screen and (max-width: 768px) {
    .card-priority__svg {
        width: 22%;
    }
}
@media screen and (max-width: 425px) {
    .card-priority__svg {
        width: 30%;
    }
}
.card-priority__svg > svg {
    width: 100%;
    height: auto;
}
.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}
.carousel .carousel-item {
    visibility: hidden;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
}
.carousel .indicators {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}
.carousel .indicators .indicator-item.active {
    background-color: #fff;
}
.carousel .indicators .indicator-item {
    display: inline-block;
    position: relative;
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 24px 4px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    border-radius: 50%;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow: hidden;
}
.preload {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 300;
    background: #fff;
}
.screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transition: 800ms ease-in-out;
    -o-transition: 800ms ease-in-out;
    transition: 800ms ease-in-out;
    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;
}
.screen.contacts {
    display: block;
}
.meter-indicator {
    position: fixed;
    z-index: 200;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 200px;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}
.meter-indicator__title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 1rem;
    text-align: center;
    -webkit-transition: color 1s, opacity 0.5s;
    -o-transition: color 1s, opacity 0.5s;
    transition: color 1s, opacity 0.5s;
    font-size: 25px;
}
@media screen and (max-width: 580px) {
    .meter-indicator__title {
        font-size: 20px;
        padding: 0 0.5em 0 0;
    }
}
@media screen and (max-width: 425px) {
    .meter-indicator {
        top: 52%;
    }
}
