@keyframes scale-jump {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1) translateY(-20px);
    }
    25% {
        transform: scale(1);
    }
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/SegoeUI.ttf");
}

@font-face {
    font-family: "SegoeUI";
    src: url("../fonts/segoeuib.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "SegoeUI";
    src: url("../fonts/SegoeUI-Light.ttf");
    font-weight: 200;
}

* {
    box-sizing: border-box;
    font-family: "SegoeUI", Arial, sans-serif;
}

.block-content {
    padding: 1px;
}

body {
    font-family: "SegoeUI", Arial, sans-serif;
    font-size: 16px;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

body h1 {
    font-weight: bold;
    font-size: 3em;
}

@media (max-width: 767px) {
    body h1 {
        font-size: 2.5em;
    }
}

body h2,
body .h2 {
    font-size: 2.2em;
    line-height: 120%;
    font-weight: 400;
    display: block;
}

body h3 {
    margin-bottom: 0;
}

.hidden {
    display: none;
    visibility: hidden;
    width: 0;
    height: 0;
    margin: 0;
    opacity: 0;
}

.container {
    max-width: 960px;
    padding-left: 0;
    padding-right: 0;
}

.modal-content {
    background: transparent;
    border: none;
}

.modal-content .btn-close {
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(90deg, #FF4D26, #EC694B) !important;
    color: #fefefe;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 10px;
}

.modal-content .btn-close:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
}

.modal-content .btn-hidden-modul.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.modal-content .btn-hidden-modul.active {
    display: block;
    margin: 10px;
    border: 2px solid;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    background-color: #fefefe3b;
    transition: 0.5s;
    font-size: 14px;
    opacity: 1;
}

.modal-content .btn-hidden-modul.active.active:hover {
    transform: scale(1.1);
    background-color: rgba(254, 254, 254, 0.6);
}

.modal-content .btn-back {
    padding: 4px 10px;
}

.modal-content .form__content {
    padding-top: 10px;
}

.modal-content .description {
    text-align: center;
}

@media (max-width: 767px) {
    .modal-content .btn_arrow-25 {
        padding-left: 5px;
        padding-right: 30px;
    }
}

header {
    box-shadow: 0px -3px 10px 0 #333333;
    background-color: #F1F1F1;
}

header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 3px 0;
}

header>.container .block-logo {
    display: flex;
    align-items: center;
    justify-content: left;
}

header>.container .block-logo .logo {
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 56px;
    height: 63px;
    margin: 5px 10px 5px;
}

header>.container .block-logo .logo-title {
    font-size: 2em;
    color: #264796;
}

@media (max-width: 1023px) {
    header>.container .block-logo .logo-title {
        font-size: 1.75em;
    }
}

header>.container .block-logo .logo-description {
    line-height: 1;
}

@media (max-width: 767px) {
    header>.container .block-logo .logo-description {
        font-size: 0.8em;
    }
}

header>.container .block-sticker {
    margin: 5px 10px;
}

header>.container .block-phone-adress {
    top: 6px;
    right: 0;
    text-align: left;
}

header>.container .block-phone-adress .block-phone {
    font-size: 21px;
    padding-left: 35px;
    position: relative;
}

header>.container .block-phone-adress .block-phone a {
    color: #333333;
    display: block;
    font-weight: bold;
}

header>.container .block-phone-adress .block-phone::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 3px;
    background-image: url("../img/icon-client-p.png");
    background-position: 0 50%;
    background-repeat: no-repeat;
    width: 27px;
    height: 26px;
}

header>.container .block-phone-adress .block-adress {
    position: relative;
    padding-left: 35px;
}

header>.container .block-phone-adress .block-adress::before {
    position: absolute;
    content: "";
    top: 0;
    left: 3px;
    background-image: url("../img/icon-client-map.png");
    background-position: 0 50%;
    background-repeat: no-repeat;
    width: 27px;
    height: 26px;
}

header>.container a {
    text-decoration: none;
    color: initial;
}

header nav {
    background-color: #fefefe;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding-left: 0;
}

header nav ul li a {
    display: block;
    padding: 3px 15px 5px;
    color: #333333;
    position: relative;
    margin-right: 1px;
    background-image: linear-gradient(90deg, transparent, transparent 50%, #01BEFF 50%, #0186FF 100%);
    background-size: 200% 100%;
    background-position: 0 0;
    transition: 0.5s;
}

header nav ul li a::before {
    position: absolute;
    content: "";
    display: block;
    right: -1px;
    top: 4px;
    width: 1px;
    height: calc(100% - 8px);
    background-color: #333333;
}

header nav ul li a:hover,
header nav ul li a:focus {
    background-position: 100% 0;
    color: #fefefe;
    text-decoration: none;
}

header nav ul li:nth-last-of-type(1) {
    margin-right: 0;
}

header nav ul li:nth-last-of-type(1) a::before {
    content: none;
}

header.scroll-nav {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    transform: translateY(-120px);
    z-index: 998;
}

.block-content {
    overflow: hidden;
}

.scroll-nav-anima {
    transform: translateY(0) !important;
    transition: 1s ease-out;
}

.nav-margin-scroll {
    height: 0;
}

.nav-margin-scroll.scroll-nav {
    height: 100px;
}

.navigation-mobile {
    visibility: hidden;
    height: 0;
    display: none;
}

.two-columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.title-h2 {
    display: block;
    font-weight: bold;
    font-size: 2.2em;
}

.title-h2 b {
    color: #264796;
    font-weight: bold;
}

@media (max-width: 1023px) {
    .title-h2 {
        font-size: 2em;
    }
}

@media (max-width: 767px) {
    .title-h2 {
        font-size: 1.5em;
    }
}

.btn {
    display: block;
    cursor: pointer;
    border-radius: 7px;
    box-shadow: 0 0 3px 0 #333333;
    transition: 0.5s;
    padding: 8px 20px;
    font-weight: bold;
    border: none;
}

.btn_orange {
    color: #fefefe !important;
    background: linear-gradient(270deg, #FF6B01, #FF8801);
}

.btn_orange:hover,
.btn_orange:focus {
    box-shadow: 0 0 8px 0 #333333;
    color: #fefefe;
}

.btn_white {
    color: #333333;
    box-shadow: 0 0 3px 0 #333333, inset 0 0 0 2px #FF6B01;
}

.btn_white:hover,
.btn_white:focus {
    color: #333333;
    box-shadow: 0 0 8px 0 #333333, inset 0 0 0 2px #FF6B01;
}

.btn_arrow-25 {
    position: relative;
    padding-left: 40px;
    padding-right: 70px;
}

@media (max-width: 767px) {
    .btn_arrow-25 {
        padding-left: 20px;
        padding-right: 50px;
    }
}

.btn_arrow-25::after {
    display: block;
    content: "";
    position: absolute;
    background-image: url("../img/btn-icon-arrow-25.png");
    width: 26px;
    height: 26px;
    right: 30px;
    top: calc(50% - 13px);
}

@media (max-width: 767px) {
    .btn_arrow-25::after {
        right: 15px;
    }
}

.btn_arrow-20 {
    position: relative;
    padding: 7px 40px 7px 10px;
}

.btn_arrow-20::after {
    display: block;
    content: "";
    position: absolute;
    background-image: url("../img/btn-icon-arrow-20.png");
    width: 22px;
    height: 21px;
    right: 10px;
    top: calc(50% - 10px);
}

.btn_glass {
    position: relative;
    padding-left: 30px;
    padding-right: 60px;
}

@media (max-width: 767px) {
    .btn_glass {
        padding-left: 10px;
        padding-right: 50px;
    }
}

.btn_glass::after {
    display: block;
    content: "";
    position: absolute;
    background-image: url("../img/btn-icon-glass.png");
    width: 31px;
    height: 21px;
    right: 15px;
    top: calc(50% - 10px);
}

.btn_rulet {
    position: relative;
    padding-left: 30px;
    padding-right: 80px;
}

.btn_rulet::after {
    display: block;
    content: "";
    position: absolute;
    background-image: url("../img/btn-icon-rulet.png");
    width: 55px;
    height: 29px;
    right: 15px;
    top: calc(50% - 15px);
}

.btn-back {
    margin-right: 10px;
    opacity: 0.7;
}

.btn.btn-back {
    padding: 4px 10px;
}

.slick-slider .slick-arrow {
    background-image: url("../img/arrow-slider.png");
    background-size: 105%;
    background-position: 50% 50%;
    width: 41px;
    height: 41px;
    top: calc(50% - 20px);
    opacity: 0.8;
    border-radius: 7px;
    transform: none;
}

.slick-slider .slick-arrow.slick-next {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .slick-slider .slick-arrow.slick-next {
        right: 5px;
    }
}

@media (max-width: 767px) {
    .slick-slider .slick-arrow.slick-prev {
        left: 5px;
    }
}

.slick-slider .slick-arrow:hover,
.slick-slider .slick-arrow:focus {
    opacity: 1;
    box-shadow: 0 0 3px 0 #333333;
}

.slick-slider .slick-arrow::before {
    content: none;
}

.slick-slider .slick-slide {
    display: flex !important;
    justify-content: center;
}

.form {
    background: linear-gradient(90deg, #0186FF, #01BEFF);
    border-radius: 8px;
    padding: 7px;
}

.form input[type=text],
.form input[type=tel],
.form input[type=date],
.form select,
.form textarea {
    border: 1px solid #B2B3B3;
    border-radius: 5px;
    text-align: center;
    margin: 3px;
    width: 175px;
}

.form__title {
    display: block;
    width: 100%;
    color: #fefefe;
    text-align: center;
    padding: 7px 0 12px;
    font-size: 1.5em;
    font-weight: bold;
}

.form__content {
    background-color: #fefefe;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    padding: 3px;
}

.form__content label input[type=checkbox],
.form__content label input[type=radio] {
    visibility: hidden;
    height: 0;
    display: none;
}

.form__content label input[type=checkbox]+.input-view,
.form__content label input[type=radio]+.input-view {
    padding: 3px 7px;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: 0.5s;
    box-shadow: 0 0 3px 0 #333333;
    margin: 2px 4px 0;
    min-width: 60px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    .form__content label input[type=checkbox]+.input-view,
    .form__content label input[type=radio]+.input-view {
        min-width: 80px;
    }
}

.form__content label input[type=checkbox]+.input-view_m,
.form__content label input[type=radio]+.input-view_m {
    padding: 3px 1px;
}

.form__content label input[type=checkbox]+.input-view:hover,
.form__content label input[type=checkbox]+.input-view:focus,
.form__content label input[type=radio]+.input-view:hover,
.form__content label input[type=radio]+.input-view:focus {
    border-color: #01BEFF;
    box-shadow: 0 0 6px 0 #333333;
}

.form__content label input[type=checkbox]:checked+.input-view,
.form__content label input[type=radio]:checked+.input-view {
    border-color: #01BEFF;
    box-shadow: 0 0 6px 0 #333333;
}

.form__content select {
    padding-top: 3px;
}

.form__content .w-43 {
    width: 43%;
    text-align: center;
}

.form__content .w-43 input[type=text] {
    width: 80px;
}

.form__content .btn {
    margin: 10px 3px 15px;
    font-size: 16px;
}

.form__section_feedback label input[type=checkbox]+.input-view,
.form__section_feedback label input[type=radio]+.input-view {
    min-width: 64px;
    padding: 4px 0;
}

.form__section_feedback label input[type=checkbox]+.input-view span,
.form__section_feedback label input[type=radio]+.input-view span {
    font-size: 14px;
    line-height: 14px;
}

.form__section {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .form__section {
        flex-wrap: wrap;
    }
}

.form__sectiontitle {
    text-align: center;
    margin: 0 7px;
    font-size: 14px;
}

.form__comment-title {
    font-weight: bold;
    font-size: 1.1em;
    text-align: left;
    margin: 10px 5px 5px 5px;
}

.form__comment-content {
    margin: 0 5px 10px 5px;
}

#ModalPresent .form {
    width: 380px;
}

@media (max-width: 767px) {
    #ModalPresent .form {
        width: 320px;
    }
}

#ModalComment2 .form {
    width: 450px;
}

@media (max-width: 767px) {
    #ModalComment2 .form {
        width: 100%;
    }
}

#ModalComment2 .form__section {
    width: 100%;
}

#ModalComment2 .form textarea {
    width: 80%;
    min-width: 280px;
}

.prime {
    background-image: url("../img/bg-prime.png");
    background-position: 50% 50%;
    background-size: cover;
    padding: 50px 0 120px;
    min-height: 100%;
}

.prime .title-h1 {
    border-radius: 5px;
    overflow: hidden;
    max-width: 60%;
}

@media (max-width: 1023px) {
    .prime .title-h1 {
        max-width: 85%;
    }
}

@media (max-width: 767px) {
    .prime .title-h1 {
        max-width: 100%;
    }
}

.prime .title-h1__title {
    margin-bottom: 0;
    padding: 10px;
    width: 100%;
    color: #fefefe;
    display: block;
    background: linear-gradient(90deg, #0186FF, #01BEFF);
    opacity: 0.85;
    text-align: center;
}

.prime .title-h1__subtitle {
    display: block;
    background-color: #fefefe;
    width: 100%;
    color: #333333;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
}

.prime .title-h1__manufactors {
    background-color: #fefefe;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prime .title-h1__manufactors img {
    margin: 5px 15px;
}

@media (max-width: 767px) {
    .prime .title-h1__manufactors img {
        margin: 5px 0;
    }
}

.prime form {
    max-width: 470px;
    width: 50%;
    margin: 50px 0 50px;
}

@media (max-width: 767px) {
    .prime form {
        width: 100%;
        margin-bottom: 50px;
    }
}

.prime .ceil-price {
    max-width: 60%;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 1023px) {
    .prime .ceil-price {
        max-width: 85%;
    }
}

@media (max-width: 767px) {
    .prime .ceil-price {
        max-width: 100%;
    }
}

.prime .ceil-price__items {
    border: 2px solid #01BEFF;
    background-color: rgba(254, 254, 254, 0.8);
    border-radius: 8px;
    padding: 10px 20px;
    margin: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1023px) {
    .prime .ceil-price__items {
        flex-direction: column;
        justify-content: center;
    }
}

.prime .ceil-price__img {
    height: 100px;
}

.prime .ceil-price__img img {
    max-height: 100%;
}

.prime .ceil-price__content {
    font-size: 1.2em;
    margin: 10px;
}

.prime .ceil-price__price {
    font-size: 1.6em;
    color: #264796;
}

.prime .ceil-price .btn {
    font-size: 1.4em;
    margin: 30px 30px 0 30px;
}

.work-us .features__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 220px;
    margin: 0 50px 60px 50px;
}

@media (max-width: 767px) {
    .work-us .features__items {
        margin-bottom: 30px;
    }
}

@media (max-width: 1023px) {
    .work-us .features__items {
        width: 220px;
    }
}

.work-us .features__items span {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 1.1em;
}

.work-us .features__items:nth-last-of-type(1) {
    margin-right: 170px;
}

@media (max-width: 1023px) {
    .work-us .features__items:nth-last-of-type(1) {
        margin-right: 50px;
    }
}

.work-us .features__items:nth-last-of-type(2) {
    margin-left: 170px;
}

@media (max-width: 1023px) {
    .work-us .features__items:nth-last-of-type(2) {
        margin-left: 50px;
    }
}

.work-us__title-h2 {
    text-align: center;
    display: block;
    margin: 50px 0 60px;
}

.work-us__features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.work-us__buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    font-size: 1.15em;
}

@media (max-width: 767px) {
    .work-us__buttons {
        flex-direction: column;
        align-items: center;
    }
}

.work-us__buttons .btn {
    margin: 0 10px;
}

@media (max-width: 767px) {
    .work-us__buttons .btn {
        font-size: 0.9rem;
        margin: 10px 10px;
    }
}

.profile {
    background-image: url("../img/bg-profile.png");
    background-position: 50% 50%;
    background-size: auto 100%;
    padding-bottom: 60px;
}

.profile__title-h2 {
    margin: 40px 0 5px;
    text-align: center;
}

.profile__subtitle {
    display: block;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

@media (max-width: 1023px) {
    .profile__subtitle {
        font-size: 1.3em;
    }
}

.profile__subtitle b {
    color: #264796;
}

.profile .wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
}

.profile__slider {
    width: 460px;
}

@media (max-width: 767px) {
    .profile__slider {
        width: 320px;
        margin: 20px 0 30px;
    }
}

.profile__slider .slick-arrow {
    top: initial;
    bottom: -30px;
}

.profile__slider .slick-arrow.slick-next {
    right: calc(50% - 60px);
}

.profile__slider .slick-arrow.slick-prev {
    left: calc(50% - 60px);
}

.profile .slider-card {
    background-color: #0186FF;
    border-radius: 7px;
    max-width: 400px;
    width: 100%;
    position: relative;
    padding: 4px;
    margin: 18px 0 30px 40px;
}

@media (max-width: 767px) {
    .profile .slider-card {
        width: 320px;
        margin: 45px 0 60px 0;
    }
}

.profile .slider-card__manufactory {
    position: absolute;
    right: 4px;
    top: 4px;
    background-color: #0186FF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 30px;
}

.profile .slider-card__profile {
    position: absolute;
    left: -45px;
    top: -12px;
}

@media (max-width: 767px) {
    .profile .slider-card__profile {
        top: 9px;
        left: -60px;
    }
}

.profile .slider-card__sticker {
    position: absolute;
    background-image: url("../img/sticker-red.png");
    top: -18px;
    left: -46px;
    height: 70px;
    width: 82px;
    color: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.85em;
    line-height: 110%;
    text-align: center;
    z-index: 1;
}

@media (max-width: 767px) {
    .profile .slider-card__sticker {
        left: 0;
        top: -45px;
    }
}

.profile .slider-card__sticker * {
    transform: rotate(-30deg);
}

.profile .slider-card__content {
    width: 100%;
    height: 100%;
    background-color: #fefefe;
    border-radius: 3px;
    padding: 30px 20px 20px 120px;
    min-height: 147px;
}

.profile .slider-card__content span {
    display: block;
    font-size: 0.8em;
}

.profile .slider-card__button .btn {
    position: absolute;
    bottom: 9px;
    right: 9px;
    font-size: 0.8em;
}

.profile form input[type=tel] {
    width: 175px;
}

input::placeholder,
select {
    font-size: 14px;
}

input {
    font-size: 14px;
}

.clients {
    background-image: url("../img/bg-clients.png");
    background-position: 3% 50%;
    background-repeat: no-repeat;
}

.clients__title-h2 {
    text-align: center;
    margin: 30px 0 40px 0;
}

.clients__slider {
    margin-bottom: 40px;
}

.clients__slider .slide {
    max-width: 205px;
}

.clients__slider .slide__img-container {
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 196px;
    height: 233px;
    margin-bottom: 7px;
}

.clients__slider .slide__punkt {
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 3px 8px;
    font-size: 0.9em;
}

.clients__slider .slide__punkt span {
    display: block;
    margin-left: 5px;
}

.price {
    background-image: url("../img/bg-price.png");
    background-position: 50% 50%;
    background-size: auto 100%;
}

.price__form {
    margin: 140px 0 110px auto;
    width: 50%;
    position: relative;
}

@media (max-width: 1023px) {
    .price__form {
        width: 55%;
    }
}

@media (max-width: 767px) {
    .price__form {
        width: 100%;
        max-width: 340px;
        margin: 70px auto 70px auto;
    }
}

.price__form::after {
    position: absolute;
    content: "";
    background-image: url("../img/img-lady.png");
    width: 616px;
    height: 410px;
    left: -450px;
    top: -97px;
}

@media (max-width: 767px) {
    .price__form::after {
        content: none;
    }
}

.certificate__title-h2 {
    margin: 30px 0 40px;
    text-align: center;
}

.certificate__slider {
    margin-bottom: 50px;
}

.certificate__slider a {
    justify-content: center;
}

.certificate__slider a img {
    margin: 0 auto;
}

.present {
    background-image: url("../img/bg-present.png");
    background-position: 50% 50%;
    background-size: auto 100%;
}

.present__title-h2 {
    color: #fefefe;
    text-align: center;
    position: relative;
    margin: 30px 0 5px;
}

.present__title-h2 img {
    margin-right: 15px;
}

.present__time {
    color: #fefefe;
    text-align: center;
    display: block;
    font-size: 1.7em;
    font-weight: bold;
    margin-bottom: 50px;
}

@media (max-width: 1023px) {
    .present__time {
        font-size: 1.5em;
    }
}

@media (max-width: 767px) {
    .present__time {
        font-size: 1.3rem;
    }
}

.present__time b {
    padding: 7px 2px;
    border-radius: 5px;
    border: 1px solid #fefefe;
    font-size: 1.1em;
}

.present .stocks {
    margin: 30px 0 40px;
    display: flex;
    justify-content: space-around;
}

@media (max-width: 767px) {
    .present .stocks {
        flex-direction: column;
    }
}

.present .stocks__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
}

@media (max-width: 1023px) {
    .present .stocks__item__img {
        height: 175px;
    }
}

@media (max-width: 767px) {
    .present .stocks__item {
        margin-bottom: 40px;
    }
    .present .stocks__item__img {
        height: auto;
    }
}

.present .stocks__item__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    padding: 7px;
    background-color: #fefefe;
    border-radius: 5px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 8px 0 #333333;
    max-width: 304px;
}

@media (max-width: 1023px) {
    .present .stocks__item__card {
        max-width: 215px;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .present .stocks__item__card {
        max-width: 304px;
        justify-content: flex-start;
    }
}

.present .stocks__item__title {
    display: block;
    text-align: center;
    font-weight: bold;
}

.present .stocks__item__title b {
    color: #264796;
}

.present .stocks__item__sticker {
    position: absolute;
    top: -10px;
    left: -15px;
    background-image: url("../img/sticker-red.png");
    height: 70px;
    width: 82px;
    color: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.85em;
    line-height: 110%;
}

.present .stocks__item__sticker * {
    transform: rotate(-30deg);
}

.present .stocks__item__arrow {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .present .stocks__item__arrow {
        margin: 15px 0;
    }
}

.present .stocks__item__button {
    width: 80%;
}

.contacts {
    margin-bottom: 30px;
}

.contacts__title-h2 {
    text-align: center;
    margin: 30px 0 40px;
}

.contacts .two-columns {
    align-items: stretch;
    justify-content: space-around;
}

@media (max-width: 1023px) {
    .contacts .two-columns {
        flex-direction: column;
        align-items: center;
    }
}

.contacts .map {
    width: 45%;
}

@media (max-width: 1023px) {
    .contacts .map {
        width: 90%;
    }
}

.contacts .map iframe {
    width: 100%;
    height: 100%;
}

.contacts .info {
    width: 45%;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media (max-width: 1023px) {
    .contacts .info {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .contacts .info {
        width: 90%;
        max-width: 320px;
        margin-left: 0;
    }
}

.contacts .info__block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
}

@media (max-width: 1023px) {
    .contacts .info__block {
        margin: 20px 0;
    }
}

.contacts .info__text {
    margin-left: 20px;
}

footer {
    background-color: #F1F1F1;
    padding: 10px 0;
}

footer>.container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}

footer>.container .block-logo {
    display: flex;
    align-items: center;
    justify-content: left;
}

footer>.container .block-logo .logo {
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 56px;
    height: 63px;
    margin: 5px 10px 5px;
}

footer>.container .block-logo .logo-title {
    font-size: 2em;
    color: #264796;
}

@media (max-width: 1023px) {
    footer>.container .block-logo .logo-title {
        font-size: 1.75em;
    }
}

footer>.container .block-logo .logo-description {
    line-height: 1;
}

@media (max-width: 767px) {
    footer>.container .block-logo .logo-description {
        font-size: 0.8em;
    }
}

footer>.container .block-sticker {
    margin: 5px 10px;
}

footer>.container .block-phone-adress {
    top: 6px;
    right: 0;
    text-align: left;
}

footer>.container .block-phone-adress .block-phone {
    font-size: 21px;
    padding-left: 35px;
    position: relative;
}

footer>.container .block-phone-adress .block-phone a {
    color: #333333;
    display: block;
    font-weight: bold;
}

footer>.container .block-phone-adress .block-phone::before {
    position: absolute;
    content: "";
    top: 5px;
    left: 3px;
    background-image: url("../img/icon-client-p.png");
    background-position: 0 50%;
    background-repeat: no-repeat;
    width: 27px;
    height: 26px;
}

footer>.container .block-phone-adress .block-adress {
    position: relative;
    padding-left: 35px;
}

footer>.container .block-phone-adress .block-adress::before {
    position: absolute;
    content: "";
    top: 0;
    left: 3px;
    background-image: url("../img/icon-client-map.png");
    background-position: 0 50%;
    background-repeat: no-repeat;
    width: 27px;
    height: 26px;
}

footer>.container .coco-logo a {
    text-align: center;
    display: block;
    color: black;
}

footer>.container .coco-logo a img {
    width: 67px;
    height: 50px;
    transition: 0.5s;
    z-index: 1000;
    transform-origin: top;
    transform: translateY(14px);
}

footer>.container .coco-logo a span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: transparent;
    transform: translateY(-20px);
    transition: 0.5s;
    text-align: center;
}

footer>.container .coco-logo a:hover img,
footer>.container .coco-logo afocus img {
    transform: scale(1.8) translateY(-20px);
    opacity: 0.5;
    filter: blur(3px);
}

footer>.container .coco-logo a:hover span,
footer>.container .coco-logo afocus span {
    color: #85432e;
    transform: translateY(-30px);
}

.anchor.to-top {
    position: relative;
}

.anchor.to-top a {
    position: absolute;
    top: -97px;
}

form .windows-open-wrap input[type=text] {
    width: 215px;
}

form input[type=tel] {
    background: url("../img/phone-icon.png") no-repeat 3px center;
}

.fly-button {
    position: fixed;
    bottom: 60px;
    right: 0px;
    z-index: 1000;
    transition: 0.5s;
    transform: translateY(300px);
    width: 280px;
    height: 72px;
    display: block;
    background: url("../img/form-btn.png") no-repeat;
    background-size: contain;
    padding: 22px 10px 15px 15px;
    animation: scale-jump 2s infinite;
}

.fly-button.hidden {
    display: none;
    visibility: hidden;
}

.fly-button div {
    max-width: 195px;
}

.fly-button span {
    color: #fff;
    text-align: center;
    display: block;
    font-weight: bold;
}

.fly-button span {
    font-size: 16px;
    line-height: 20px;
}

.fly-button:hover {
    cursor: pointer;
}

#ModalInstallment .modal-content {
    max-width: 465px;
}

#ModalInstallment noindex {
    width: 100%;
}

#ModalInstallment .calc-content-wrap {
    max-width: 465px;
    width: 100%;
    background: linear-gradient(90deg, #E31E24, #FF7501);
    border-radius: 8px;
    padding: 7px;
}

#ModalInstallment .content {
    background: url("../img/form-bg.png") no-repeat;
    background-color: #fff;
}

#ModalInstallment form {
    background: transparent;
    padding: 0px;
}

#ModalInstallment form .form__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 400px;
    margin: 0 auto;
}

#ModalInstallment form .block-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

#ModalInstallment form .block-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

#ModalInstallment form input,
#ModalInstallment form select {
    width: 175px;
}

#ModalInstallment form .type {
    width: 180px;
}

#ModalInstallment form .size {
    width: 175px;
}

#ModalInstallment form .size input {
    width: 80px;
}

#ModalInstallment form .name,
#ModalInstallment form .time,
#ModalInstallment form .type,
#ModalInstallment form .size {
    text-align: center;
}

#ModalInstallment form .btn {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 10px 3px 10px;
}

#ModalInstallment form .form__sectiontitle {
    margin: 0px;
}

#ModalInstallment .info {
    display: flex;
    justify-content: space-around;
    padding: 12px 5px;
}

#ModalInstallment .info div {
    max-width: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#ModalInstallment .info div span {
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    display: block;
}

#ModalInstallment .form-title {
    background: linear-gradient(90deg, #E31E24, #FF7501);
    text-align: center;
    padding: 5px;
}

#ModalInstallment .form-title span {
    color: #fff;
    font-size: 21px;
    font-weight: bold;
}

#ModalInstallment .form__content {
    background: transparent;
}

#ModalDiscount .modal-content {
    max-width: 600px;
}

#ModalDiscount .modal-dialog {
    max-width: 600px;
}

#ModalDiscount .modal-discount-container {
    width: 100%;
    background: url("../img/form-bg-1.png") no-repeat;
    background-size: cover;
    padding: 10px 10px 10px 0;
    min-height: 300px;
    position: relative;
}

#ModalDiscount form {
    background: transparent;
}

#ModalDiscount .form-title:before {
    content: "";
    width: 49px;
    height: 75px;
    display: block;
    position: absolute;
    top: 5px;
    right: 30px;
    background: url("../img/form-img.png") no-repeat;
    background-size: contain;
}

#ModalDiscount .form-title:after {
    content: "";
    width: 98px;
    height: 75px;
    display: block;
    position: absolute;
    top: 30px;
    right: -60px;
    background: url("../img/form-arrow.png") no-repeat;
    background-size: contain;
    z-index: -1;
}

#ModalDiscount .form-title {
    background: url("../img/form-title-bg.png") no-repeat;
    text-align: center;
    max-width: 420px;
    background-size: contain;
    height: 165px;
    padding-right: 30px;
    padding-top: 12px;
    position: relative;
    z-index: 10;
}

#ModalDiscount .form-title span {
    font-size: 32px;
    color: #E31E24;
    font-weight: bold;
    line-height: 34px;
}

#ModalDiscount .form-title p {
    font-size: 21px;
    font-weight: bold;
    line-height: 24px;
    margin-top: 4px;
    margin-bottom: 0;
}

#ModalDiscount .disc-wrap {
    position: absolute;
    bottom: 30px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    max-width: 565px;
    width: 100%;
    align-items: center;
    z-index: 99;
}

#ModalDiscount form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
}

#ModalDiscount form span {
    color: #fff;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    line-height: 20px;
}

#ModalDiscount form input[type=tel] {
    background-color: #fff;
    margin-top: 12px;
}

#ModalDiscount form .btn_arrow-25 {
    margin-top: 12px;
    padding-left: 30px;
    padding-right: 55px;
}

#ModalDiscount form .btn_arrow-25::after {
    right: 15px;
}

@media screen and (max-width: 1023px) {
    .fly-button {
        width: 250px;
        height: 65px;
        padding: 22px 10px 14px 10px;
    }
    .fly-button div {
        max-width: 180px;
    }
    .fly-button div span {
        font-size: 14px;
        line-height: 16px;
    }
    .container {
        max-width: 700px;
    }
    header {
        display: none;
        height: 0;
    }
    .navigation-mobile {
        visibility: visible;
        background-color: #0186FF;
        height: 65px;
        display: block;
    }
    .navigation-mobile .block-logo {
        display: flex;
        align-items: center;
        justify-content: left;
    }
    .navigation-mobile .block-logo .logo {
        background-image: url("../img/logo.png");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        width: 56px;
        height: 63px;
        margin: 5px 10px 5px;
    }
    .navigation-mobile .block-logo .logo-title {
        font-size: 2em;
        color: #264796;
    }
}

@media screen and (max-width: 1023px) and (max-width: 1023px) {
    .navigation-mobile .block-logo .logo-title {
        font-size: 1.75em;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile .block-logo .logo-description {
        line-height: 1;
    }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
    .navigation-mobile .block-logo .logo-description {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile .block-sticker {
        margin: 5px 10px;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile .block-phone-adress {
        top: 6px;
        right: 0;
        text-align: left;
    }
    .navigation-mobile .block-phone-adress .block-phone {
        position: relative;
    }
    .navigation-mobile .block-phone-adress .block-phone a {
        font-size: 1.3em;
        color: #333333;
        display: block;
        font-weight: bold;
    }
    .navigation-mobile .block-phone-adress .block-adress {
        position: relative;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile a {
        font-size: 1.4em;
        color: #0186FF;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile a:hover {
        opacity: 0.5;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile ul {
        padding: 0;
        list-style-type: none;
    }
    .navigation-mobile ul.no-menu {
        display: flex;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile #menuToggle {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 25px;
        left: 25px;
        width: calc(100% - 25px);
        z-index: 20;
        -webkit-user-select: none;
        user-select: none;
    }
    .navigation-mobile #menuToggle .nav-menu-phone {
        display: block;
        position: absolute;
        right: 10%;
        top: -9px;
    }
    .navigation-mobile #menuToggle .nav-menu-phone a {
        color: #fefefe;
    }
    .navigation-mobile #menuToggle .nav-menu-phone a:hover,
    .navigation-mobile #menuToggle .nav-menu-phone a:focus {
        color: #fefefe;
    }
    .navigation-mobile #menuToggle input {
        display: flex;
        width: 40px;
        height: 32px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
    }
    .navigation-mobile #menuToggle input:checked~span {
        opacity: 1;
        transform: rotate(45deg) translate(-3px, -1px);
        background: #0186FF;
    }
    .navigation-mobile #menuToggle input:checked~span:nth-last-child(4) {
        transform: rotate(-45deg) translate(-4px, 1px);
    }
    .navigation-mobile #menuToggle input:checked~span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }
    .navigation-mobile #menuToggle input:checked~ul {
        transform: none;
    }
    .navigation-mobile #menuToggle>span {
        display: flex;
        width: 29px;
        height: 2px;
        margin-bottom: 5px;
        position: relative;
        background: #ffffff;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 5px 0;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    }
    .navigation-mobile #menuToggle>span:first-child {
        transform-origin: 0 0;
    }
    .navigation-mobile #menuToggle>span:nth-last-child(2) {
        transform-origin: 0 100%;
    }
}

@media screen and (max-width: 1023px) {
    .navigation-mobile #menu {
        position: absolute;
        width: 100vw;
        height: auto;
        left: 25px;
        top: 25px;
        box-shadow: 0 0 10px #85888C;
        margin: -50px 0 0 -50px;
        padding: 30px;
        padding-top: 75px;
        background-color: #F5F6FA;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0 0;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }
    .navigation-mobile #menu li {
        padding: 10px 0;
        transition-delay: 2s;
    }
}

@media screen and (max-width: 1023px) {
    .block-input-radio {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1023px) {
    .anchor.to-top {
        position: relative;
    }
    .anchor.to-top a {
        position: absolute;
        top: 0;
    }
}

@media screen and (max-width: 1023px) {
    .profile .container {
        max-width: 748px;
    }
    .profile .profile__slider {
        width: 412px;
        margin-right: 10px;
    }
    .profile .slider-card {
        max-width: 360px;
    }
}

@media screen and (max-width: 1023px) {
    .form__section {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1023px) {
    .two-columns {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 1023px) {
    .form__content .w-43 {
        width: 100%;
    }
}

@media screen and (max-width: 1023px) {
    .form__title {
        font-size: 17px;
    }
}

@media screen and (max-width: 1023px) {
    .btn_arrow-25 {
        position: relative;
        padding-left: 30px;
        padding-right: 55px;
    }
}

@media screen and (max-width: 1023px) {
    .btn_arrow-25::after {
        right: 12px;
    }
}

@media screen and (max-width: 767px) {
    .block-content {
        overflow: hidden;
    }
    .container {
        max-width: 350px;
    }
    body h2,
    body .h2 {
        font-size: 19px;
    }
    .profile .container {
        max-width: 350px;
    }
    .profile .profile__slider {
        margin-right: 0px;
    }
    .profile .wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    .profile form {
        margin-top: 45px;
    }
    .profile .slider-card__content {
        min-height: 165px;
        padding: 40px 20px 54px 120px;
    }
    #ModalInstallment .btn_arrow-25 {
        padding-left: 25px;
        padding-right: 50px;
    }
}

@media screen and (max-width: 640px) {
    .fly-button {
        width: 205px;
        height: 55px;
        bottom: 50px;
        padding: 17px 10px 12px 7px;
    }
    .fly-button div {
        max-width: 150px;
    }
    .fly-button div span {
        font-size: 11px;
        line-height: 14px;
    }
    #ModalDiscount .modal-discount-container {
        min-height: 320px;
    }
    #ModalDiscount .modal-content {
        max-width: 96%;
        margin: 0 auto;
    }
    #ModalDiscount img {
        width: calc(100% - 300px);
    }
    #ModalDiscount .disc-wrap {
        max-width: 96%;
        left: 2%;
    }
}

@media screen and (max-width: 560px) {
    #ModalDiscount .modal-discount-container {
        min-height: 330px;
    }
}

@media screen and (max-width: 480px) {
    .fly-button {
        width: 185px;
        height: 48px;
        padding: 15px 10px 0px 10px;
    }
    .fly-button div {
        max-width: 128px;
    }
    .fly-button div span {
        font-size: 10px;
        line-height: 12px;
    }
    #ModalDiscount .modal-discount-container {
        min-height: 330px;
    }
    #ModalDiscount img {
        display: none;
    }
    #ModalDiscount .form-title {
        background: url("../img/form-title-bg.png") no-repeat;
        text-align: center;
        max-width: 420px;
        background-size: contain;
        height: 165px;
        padding-right: 30px;
        padding-top: 12px;
        position: relative;
        z-index: 10;
    }
    #ModalDiscount .form-title span {
        font-size: 28px;
        color: #E31E24;
        font-weight: bold;
        line-height: 32px;
    }
    #ModalDiscount .form-title p {
        font-size: 18px;
        font-weight: bold;
        line-height: 20px;
        max-width: 325px;
        margin: 8px auto 0;
        display: block;
    }
    #ModalDiscount .disc-wrap {
        justify-content: center;
        bottom: 20px;
    }
    #ModalDiscount .form-title:after {
        top: 80px;
        right: -10px;
    }
}

@media screen and (max-width: 410px) {
    .btn_arrow-25 {
        position: relative;
        padding-left: 15px;
        padding-right: 40px;
    }
    #ModalInstallment form .block-1 {
        justify-content: center;
    }
    #ModalInstallment form .block-2 {
        justify-content: center;
    }
    #ModalInstallment form .info div {
        max-width: 102px;
    }
    #ModalInstallment form .info div span {
        font-size: 13px;
    }
    #ModalInstallment form .form-title span {
        font-size: 21px;
    }
    #ModalDiscount .modal-discount-container {
        padding: 10px 0px;
    }
    #ModalDiscount .form-title span {
        font-size: 24px;
        line-height: 28px;
    }
    #ModalDiscount .form-title p {
        font-size: 16px;
        line-height: 18px;
    }
    #ModalDiscount .form-title:after {
        top: 95px;
        right: 0px;
    }
}

@media screen and (max-width: 359px) {
    .container {
        max-width: 300px;
    }
    .profile .container {
        max-width: 300px;
    }
    .profile .profile__slider {
        width: 100%;
    }
    .profile .slider-card {
        max-width: 300px;
    }
    .profile .form__title {
        font-size: 16px;
    }
    .profile .btn_arrow-25 {
        position: relative;
        padding-left: 20px;
        padding-right: 40px;
    }
    #ModalInstallment form .info div {
        max-width: 100px;
    }
    #ModalInstallment form .info div span {
        font-size: 13px;
    }
    #ModalDiscount .form-title:before,
    #ModalDiscount .form-title:after {
        display: none;
    }
    #ModalDiscount .form-title p {
        font-size: 14px;
        line-height: 15px;
        margin: 3px auto 0;
    }
    #ModalDiscount .modal-discount-container {
        min-height: 300px;
    }
}