@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/Montserrat-Medium.woff') format('woff'),
    url('../fonts/Montserrat-Medium.otf') format('otf'),
    url('../fonts/Montserrat-Medium.ttf') format('ttf');
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserrat-SemiBold.woff') format('woff'),
    url('../fonts/Montserrat-SemiBold.otf') format('otf'),
    url('../fonts/Montserrat-SemiBold.ttf') format('ttf');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.otf') format('otf'),
    url('../fonts/Montserrat-Bold.ttf') format('ttf');
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.otf') format('otf'),
    url('../fonts/Montserrat-Regular.ttf') format('ttf');
}

@font-face {
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserrat-Light.woff') format('woff'),
    url('../fonts/Montserrat-Light.otf') format('otf'),
    url('../fonts/Montserrat-Light.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-ExtraLight';
    src: url('../fonts/Geologica-ExtraLight.woff') format('woff'),
    url('../fonts/Geologica-ExtraLight.otf') format('otf'),
    url('../fonts/Geologica-ExtraLight.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-Light';
    src: url('../fonts/Geologica-Light.woff') format('woff'),
    url('../fonts/Geologica-Light.otf') format('otf'),
    url('../fonts/Geologica-Light.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-Regular';
    src: url('../fonts/Geologica-Regular.woff') format('woff'),
    url('../fonts/Geologica-Regular.otf') format('otf'),
    url('../fonts/Geologica-Regular.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-Medium';
    src: url('../fonts/Geologica-Medium.woff') format('woff'),
    url('../fonts/Geologica-Medium.otf') format('otf'),
    url('../fonts/Geologica-Medium.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-Bold';
    src: url('../fonts/Geologica-Bold.woff') format('woff'),
    url('../fonts/Geologica-Bold.otf') format('otf'),
    url('../fonts/Geologica-Bold.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-ExtraBold';
    src: url('../fonts/Geologica-ExtraBold.woff') format('woff'),
    url('../fonts/Geologica-ExtraBold.otf') format('otf'),
    url('../fonts/Geologica-ExtraBold.ttf') format('ttf');
}

@font-face {
    font-family: 'Geologica-Black';
    src: url('../fonts/Geologica-Black.woff') format('woff'),
    url('../fonts/Geologica-Black.otf') format('otf'),
    url('../fonts/Geologica-Black.ttf') format('ttf');
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

.third-container::-webkit-scrollbar-thumb {
    background-color: #109490 !important; /* цвет плашки */
    border-radius: 10px; /* закругления плашки */
    border: 1px solid #109490; /* padding вокруг плашки */
}

.third-container::-webkit-scrollbar {
    width: 5px; /* ширина scrollbar */
}

.third-container::-webkit-scrollbar-track {
    background: #F5F5F5; /* цвет дорожки */
}


section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 1350px;
}

.container.heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

img.logotip {
    width: 83px;
    height: 95px;
}

.header__menu {
    display: flex;
    gap: 25px;
}

.header__menu li a {
    color: #1F1B20;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    line-height: 16px;
    font-family: 'Geologica-Regular';
}

.heading .left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

.heading .right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

ul {
    list-style-type: none;
}


/** BUTTON */


.btn-main {
    padding: 20px 20px;
    outline: 1px solid #109490;
    outline-offset: 10px;
    display: inline-block;
    position: relative;
    background: #109490;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat-Bold';
}

.btn-main:before, .btn-main:after {
    height: 25px;
    width: 25px;
    background: white;
    position: absolute;
    content: '';
}

.btn-main:before {
    top: 0;
    right: -26px;
    transform: rotate(49deg) translate(-71%);
}

.btn-main:after {
    bottom: 0;
    left: -26px;

    transform: rotate(49deg) translate(71%);
}

.btn-design {
    display: inline-block;
    background: transparent;
    background: #109490;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat-SemiBold';
    position: relative;
    width: 201px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 94% 0%, 100% 27%, 100% 100%, 6% 100%, 0% 73%);
    outline: 1px solid #109490;
    outline-offset: 10px;
    transition: 0.4s;
    border: none;
}


.btn-design:hover {
    transition: 0.4s;
    background: #313131;
}

.top-border_button {
    border-top: 2px solid #313131;
    border-left: 2px solid #313131;
    width: 7px;
    height: 7px;
    background: transparent;
    position: absolute;
    top: -1px;
    left: -1px;
    transition: 0.4s;
}

.left-border_button {
    border-bottom: 2px solid #313131;
    border-left: 2px solid #313131;
    width: 8px;
    height: 5px;
    z-index: 10;
    background: transparent;
    position: absolute;
    transform: skew(42deg, 0deg);
    bottom: -1px;
    left: 13px;
}

.right-border_button {
    border-top: 2px solid #313131;
    border-right: 2px solid #313131;
    width: 8px;
    height: 5px;
    z-index: 10;
    background: transparent;
    position: absolute;
    transform: skew(42deg, 0deg);
    top: -1px;
    right: 13px;
}

.bottom-border_button {
    border-bottom: 2px solid #313131;
    border-right: 2px solid #313131;
    width: 7px;
    height: 7px;
    z-index: 10;
    background: transparent;
    position: absolute;

    bottom: -1px;
    right: -1px;
}


.white-top-border_button {
    border-top: 2px solid #109490;
    border-left: 2px solid #109490;
    width: 7px;
    height: 7px;
    background: transparent;
    position: absolute;
    top: -1px;
    left: -1px;
    transition: 0.4s;
}

.white-left-border_button {
    border-bottom: 2px solid #109490;
    border-left: 2px solid #109490;
    width: 8px;
    height: 5px;
    z-index: 10;
    background: transparent;
    position: absolute;
    transform: skew(42deg, 0deg);
    bottom: -1px;
    left: 13px;
}

.white-right-border_button {
    border-top: 2px solid #109490;
    border-right: 2px solid #109490;
    width: 8px;
    height: 5px;
    z-index: 10;
    background: transparent;
    position: absolute;
    transform: skew(42deg, 0deg);
    top: -1px;
    right: 13px;
}

.white-bottom-border_button {
    border-bottom: 2px solid #109490;
    border-right: 2px solid #109490;
    width: 7px;
    height: 7px;
    z-index: 10;
    background: transparent;
    position: absolute;

    bottom: -1px;
    right: -1px;
}

.design-border {
    border: 1px solid #109490;
    position: relative;
    padding: 8px 7px;
    transition: 0.4s;
    clip-path: polygon(0 0, 92% 0%, 100% 29%, 100% 102%, 8% 101%, 0% 72%);
}

.design-border.white-border {
    clip-path: polygon(0 0, 92% 0%, 100% 29%, 100% 101%, 8% 101%, 0% 71%);
}

.active-border {
    border: 1px solid #313131;
    transition: 0.4s;
    padding: 0px;
    margin: 8px 7px;
}


.design-border:before, .design-border:after {
    height: 24px;
    width: 24px;
    background: transparent;
    position: absolute;
    content: '';
}

.btn-design:hover > .design-border:before {
    border-top: 1px solid transparent;
}

.btn-design:hover > .design-border:after {
    border-left: 1px solid transparent;
}

.design-border:before {
    top: 20px;
    right: -11px;
    border-top: 1px solid #109490;
    transform: rotate(45deg) translate(-83%);
}

.design-border:after {
    bottom: 20px;
    left: 15px;
    border-left: 1px solid #109490;
    transform: rotate(-45deg) translate(-73%);
}

.white-btn {
    color: #109490;
    background: #fff;
}

.white-btn:hover {
    color: #fff !important;
    background: #109490 !important;
}

.white-border {
    border: 1px solid #fff;
}

.white-border.design-border:before {

    border-top: 1px solid #fff;

}

.white-border.design-border:after {

    border-left: 1px solid #fff;

}


/* FOOTER*/


footer.disclaimer {
    display: flex;
    justify-content: center;
}

img.footer-image {
    width: 290px;
}

.container.footer-container {
    display: flex;
    gap: 50px;
}

.contacts-block {
    background-color: #1F1B20;
    border-radius: 30px;
    padding: 80px 100px 40px 100px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

h2 {
    font-size: 45px;
    text-transform: uppercase;
    font-family: 'Geologica-Black';
    color: #ffffff;
}

.top-block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.middle-block, .bottom-block {
    display: flex;
    justify-content: space-between;
}

.middle-block .right, .middle-block .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

}

.contacts-block span, .contacts-block a {
    font-size: 14px;
    line-height: 34px;
    font-family: 'Geologica-Regular';
    color: #fff;
}

.tel, .privacy {
    text-decoration: none;
}

.tel {
    font-family: 'Geologica-Bold' !important;
}

.decription, .privacy {
    font-size: 12px;
}


#hiddenMenu .container-mobile {
    padding: 30px 15px 30px 15px;
    position: relative;
    width: auto;
    border: 0;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    gap: 50px;
    height: 100%;
}

.mobile_menu {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
}

.container-mobile .social-group {
    display: flex;
    gap: 10px;
}

.black_theme_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    overflow: scroll;
    -webkit-transition: none;
    -o-transition: none;
    /* transition: all 0.4s; */
}

.mobile_menu li a {
    color: #1F1B20;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Geologica-Regular';
}

.box {
    width: 100%;
    max-width: 709px;
    height: 591px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background-size: cover;
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 41.25%, 36.98% 41.25%, 36.98% 0%);
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 41.25%, 36.98% 41.25%, 36.98% 0%);
}


.mobile-icon, .dots-screen, .mobile-btn, .mobile-image {
    display: none;
}

@media screen and (max-width: 1024px) {
    .box {
        clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 22.25%, 49.23% 22.25%, 49.23% 0%);
    }
}

@media screen and (max-width: 500px) {
    .box {
        clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 22.25%, 60.53% 22.25%, 60.53% 0%);

    }
}

@media screen and (max-width: 1366px) {
    .container {
        width: 100%;
        padding: 0px 15px;
    }

    .box {
        clip-path: polygon(100% 0%, 100% 100%, 0% 100%, 0% 41.25%, 49.23% 41.25%, 49.23% 0%);
    }

    .products-container .bottom {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    section {
        padding: 0px 15px;
    }
}

@media screen and (max-width: 1024px) {
    img.footer-image {
        display: none;
    }

    .fourth-container {
        flex-direction: column;
        gap: 30px !important;
    }

    .header__menu {
        display: none;

    }

    .container.second-container {
        display: flex;
        flex-direction: column-reverse !important;
        gap: 50px;
    }

    img.about-image {
        width: 100%;
        height: 251px;
        object-fit: cover;
        border-radius: 30px;
    }

    .about-video {
        display: none;
    }

    .first-container .bottom {
        margin-top: 50px !important;
        width: 100%;
        flex-direction: column-reverse;
        display: flex;
        align-items: flex-end;
        gap: 50px;
    }

    .box {
        width: 100%;
        max-width: 100vw;
        height: 442px;
        display: flex;
        align-items: end;
        overflow: hidden;
        background-size: cover;
        clip-path: none;
    }

    .container.second-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .container-icons {
        display: flex;
        flex-wrap: wrap;
    }

    h2 {
        font-size: 25px !important;
        line-height: 30px !important;
    }

    .first-title {
        font-size: 25px !important;
        line-height: 30px !important;
    }

    form.form-led_screen {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 30px;
    }

    .flex-title {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }

    .container.five-container {
        display: flex;
        gap: 50px;
        flex-direction: column;
    }

    .dileram-box {
        position: relative;
        z-index: 10;
        max-width: 695px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 50px;
        top: 0px !important;
        left: 0px !important;

    }

    img.image-dileram {
        width: 100% !important;
        height: 386px;
        object-fit: cover;
        border-radius: 30px;
    }
}


@media screen and (max-width: 767px) {
    .container.footer-container {
        width: auto;
    }

    footer.disclaimer {
        display: block !important;
        justify-content: center;
    }

    .desc-image {
        display: none;
    }

    .mobile-image {
        display: flex;
        content: '';
        width: 151px;
        height: 151px;
        border-radius: 50%;
        background: #fff;
        position: relative;
        z-index: 10;
        top: 109px;
        right: 0;
    }

    .five-container .right {
        position: relative;
        width: 100%;
        margin-top: -141px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    img.image-dileram {
        height: 214px !important;
    }

    .diler-dots {
        display: none;
    }

    .mobile-icon {
        display: flex;

    }

    .dots-screen {
        display: flex;
    }

    .dots-image {
        display: none;
    }

    .item-avantage {
        border-top: 1px solid #1F1B20;
        padding-top: 55px;
        display: flex;
        flex-direction: column;
        padding-right: 80px;
        margin-right: 0px !important;
    }

    .title-avantage {
        font-size: 14px !important;
        line-height: 17px !important;
    }

    span.number-avantage {
        font-size: 38px !important;
    }

    .form-title {
        text-align: center;
    }

    .flex-title p {
        text-align: center;
    }

    .form__form-block.form-block {
        display: flex;
        flex-direction: column;
        max-width: 100% !important;
        width: 100%;
    }

    form.form-led_screen {

        align-items: center;

    }

    .contacts-block {
        background-color: #1F1B20;
        border-radius: 30px;
        padding: 50px 20px !important;
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center !important;
        justify-content: space-between;
    }

    .first-form-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100% !important;
        width: 100%;
    }

    .text-avantage {
        color: #1F1B20;
        margin-top: 0px !important;
        font-size: 14px;
        width: 100% !important;
        margin-left: 0px !important;
        line-height: 28px !important;
        font-family: 'Geologica-Regular';
        padding-left: 70px;
    }

    .container.fourth-container .right .design-border {
        align-self: center !important;
    }

    .left-block {

        gap: 25px !important;
    }

    .item-avantage .left {
        width: 100% !important;
    }

    .first-container .top {
        display: flex;
        flex-direction: column;
        height: 342px;
        position: relative;
        z-index: 100;
        padding: 50px;
        justify-content: space-between;
        align-items: center;
    }

    .number-image {
        content: '';
        width: 151px;
        height: 151px;
        border-radius: 50%;
        background: #fff;
        position: relative !important;
        z-index: 10;
        top: 109px !important;
        right: 0 !important;
    }

    .first-image_block {
        position: relative;
        width: 100%;
        margin-top: -141px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    img.first-image {
        max-width: 100% !important;
        max-height: 214px !important;
        position: relative;
        object-fit: cover;
        width: 100%;
        border-radius: 30px;
    }

    .first-container {
        position: relative;
    }

    .parent {
        filter: url(#goo);
        z-index: 12;
        position: absolute;
        top: 0;
        left: 15px;
        right: 15px;
    }

    .first-title {
        color: #fff !important;
        text-align: center;
    }

    .heading .right {
        display: none;

    }

    .heading .left {
        width: 100%;
    }

    .mobile-btn {
        display: flex;
    }

    .about-text {
        text-align: center;

    }

    .container.second-container .right {
        align-items: center;
    }

    .container.products-container h2 {
        text-align: center;
    }

    .products-container .bottom {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .product-item {
        width: 100% !important;
        height: 136px !important;
        background-size: cover !important;
        border-radius: 30px;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center !important;
        position: relative;
        justify-content: center;
        overflow: hidden;
        padding: 0px !important;
    }

    h2.about-title {
        color: #1F1B20;
        text-align: center;
    }

    .title-flex {
        height: 20px !important;

    }

    .logo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .top-block {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 15px;
    }

    .container {
        margin-bottom: 60px !important;
    }

    .container.third-container {

        max-height: 493px !important;
    }

    .products-container {
        gap: 35px !important;
    }

    .social-group {
        display: flex;
        gap: 15px;
    }

    .new-form {
        gap: 25px !important;
    }

    .dileram-box h2 {
        text-align: center;
    }

    .dileram-box {

        align-items: center;
    }

    .five-container .left {
        height: 100%;
        max-height: 528px !important;

    }

    .five-container .left video {
        max-height: 528px !important;

    }

    .diler-certains-video {

        max-height: 528px !important;
        height: 100%;

    }

    .first-container .bottom {
        margin-top: -437px !important;
    }

    .dileram-text {
        text-align: center;
    }

    .parent {
        left: 0;
    }

    .middle-block .right {
        max-width: 200px;
    }

    .middle-block, .bottom-block {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
        margin-bottom: 25px;
        justify-content: space-between;
    }

    .decription, .privacy {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    img.about-image {
        width: 100% !important;

    }

    .bottom-block {
        gap: 10px !important;
        flex-direction: column-reverse !important;
    }

    .contacts-block .right {

        text-align: center;
        gap: 10px;

    }

    img.social-icon {
        height: 20px;
    }

    .middle-block {
        margin-bottom: 70px !important;
    }

    .bottom-block {
        margin: 0px !important;
    }

    .middle-block .right, .middle-block .left {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: space-between;
    }

    .contacts-block span, .contacts-block a {

        text-align: center;
    }

    .about-video-box_full {
        width: 100% !important;
    }
}

@media screen and (max-width: 500px) {
    .dileram-box h2 {
        max-width: 200px;
    }

    .dileram-box {
        gap: 20px !important;
    }

    .dileram-text {
        max-width: 231px;
        line-height: 28px !important;
    }

    .form__form-block-submit .btn-design {
        clip-path: polygon(0 0, 95% 0%, 100% 28%, 100% 100%, 6% 100%, 0% 69%) !important;
    }

}

.box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts-block .right {
    width: 100% !important;
}

.contacts-block .left {
    width: 100% !important;
}

.sub-title-cont {
    text-transform: uppercase;

}

.parent {
    filter: url('#goo');
    z-index: 12;
    -webkit-filter: url('#goo');
    position: relative;
}

img.first-image {
    max-width: 592px;
    max-height: 351px;
    position: relative;
    width: 100%;
}

.number-image {
    content: '';
    width: 151px;
    height: 151px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    z-index: 10;
    top: -63px;
    right: -38px;
}

.dots-image {
    position: absolute;
    bottom: 45px;
    right: 45px;
}

.first-image_block {
    position: relative;
}

.container.first-container {
    display: flex;
    flex-direction: column;

}

.first-container .bottom {
    margin-top: -170px;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.first-title {
    font-size: 45px;
    line-height: 56px;
    text-transform: uppercase;
    font-family: 'Geologica-Black';
    max-width: 820px;
}

img.about-image {
    width: 592px;
    height: 251px;
    object-fit: cover;
    border-radius: 30px;
}

.about-video {
    width: 224px;
    height: 127px;
    border-radius: 30px;
}

.about-video-box {
    width: 224px;
    height: 127px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.container.second-container .left {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 30px;
}

.container.second-container .right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.container.second-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

h2.about-title {
    color: #1F1B20;
}


.about-text {
    color: #1F1B20;
    font-size: 14px;
    line-height: 34px;
    font-family: 'Geologica-Regular';
}

.container {
    margin-bottom: 80px;
}

.item-avantage {
    border-top: 1px solid #1F1B20;
    padding-top: 55px;
    display: flex;
    margin-right: 50px;
}

.item-avantage .left {
    width: 50%;
    display: flex;
    align-items: start;

}

.left-block {
    margin-top: -25px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.title-avantage {
    color: #1F1B20;
    text-transform: uppercase;
    font-family: 'Geologica-Bold';
    font-size: 20px;
}

span.number-avantage {
    text-shadow: 1px 0 1px #1F1B20, 0 1px 1px #1F1B20, -1px 0 1px #1F1B20, 0 -1px 1px #1F1B20;
    font-size: 50px;
    line-height: 56px;
    color: #fff;
    font-family: 'Geologica-Bold';
}

.item-avantage .right {
    width: 50%;
}

.text-avantage {
    color: #1F1B20;
    margin-top: -14px;
    font-size: 14px;
    line-height: 34px;
    font-family: 'Geologica-Regular';
}

.container.third-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-height: 550px;
    overflow-x: hidden;
}


/**DILERAM */

.container.fourth-container {
    display: flex;
    gap: 100px;
}

.container.fourth-container .right .design-border {
    align-self: flex-start;
}

.container.fourth-container .right {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.container.container-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.app-ic {
    text-align: center;
    display: flex;
    width: 162px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Geologica-Regular';
}


/** FORM */


.form-title {
    color: #1F1B20;
}

.new-form {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.flex-title {
    display: flex;
    justify-content: space-between;
}

.flex-title p {
    font-size: 14px;
    line-height: 25px;
    color: #1F1B20;
    max-width: 775px;
}

form.form-led_screen {
    display: flex;
    justify-content: space-between;
}

.form-block__obligatory-field {
    border-bottom: 0px 0px 1px 0px solid #000000 !important;
    border-top: none;
    border-left: none;
    border-right: none;

}

.form__form-block.form-block {
    display: flex;
    flex-direction: column;
    max-width: 315px;
    width: 100%;
}

.form__form-block-submit {
    max-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__form-block-submit .btn-design {
    width: 244px;
    border: none;
}

.form__form-block-submit .design-border {
    clip-path: polygon(0 0, 93.5% 0%, 100% 28%, 100% 102%, 7% 102%, 0% 71%);
}

.form__form-block-submit .btn-design {
    clip-path: polygon(0 0, 94% 0%, 100% 33%, 100% 100%, 6.5% 100%, 0% 68%) !important;
}

.form__form-block label {
    font-size: 14px;
    line-height: 34px;
    font-family: 'Geologica-Regular';
    color: #1F1B20;
}

.form__form-select.privacy-field label {
    font-family: 'Geologica-Regular';
    font-size: 10px;
    line-height: 18px;
    display: block;
    width: 100%;
    max-width: 248px;
    text-align: center;
    color: #1F1B20;
}

.form-text {
    font-size: 14px;
    line-height: 25px;
    font-family: 'Geologica-Regular';
    color: #fff;
}

.privacy-field a {
    color: #1F1B20;
}

.form-led_screen .form__form-block.form-block:before {
    background: #109490;
    content: '';
    width: 72px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -1.4px;
}

.form-led_screen .form__form-block.form-block label {
    position: absolute;
    font-size: 14px;
    color: #1F1B20;
    z-index: 1;
    left: 0;
    padding: 0;
    line-height: 1.2;
    width: 100%;
    box-sizing: border-box;
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
    transition: .4s;
}

.radio-inline input[type="radio"]:checked {
    border: 1px solid #109490;
}

.radio-field {
    display: flex;
    gap: 20px;
}

.first-form-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 315px;
    width: 100%;
}

label.radio-inline {
    font-family: 'Geologica-Regular';
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-led_screen .form__form-block.form-block label.active {
    top: -5px;
    padding: 0;
}

.form-led_screen .form__form-block.form-block {
    position: relative;
    height: 50px;
    box-sizing: border-box;
}

.form-led_screen .form__form-block.form-block input, .form-led_screen .form__form-block.form-block textarea {
    width: 100% !important;
    height: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid #000000;
    color: #000;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0;
    font-size: 14px;
    padding-left: 0;
}

.radio-input {
    -webkit-appearance: none;
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}

/* Стилизация выбранного состояния радиокнопки */
.radio-input:checked {
    background-color: #f5f5f5;
    border-color: #dee2e6;
    background-image: url("/assets/templates/images/Ellipse 27.svg");
    background-size: 8px;
}


.contacts-block .right {
    width: 50%;
}

.contacts-block .left {
    width: 50%;
}


/** DILERAM */

.container.five-container {
    display: flex;
    gap: 50px;
}

.five-container .left {
    position: relative;
    max-width: 970px;
    width: 100%;
    max-height: 386px;
    display: block;
    border-radius: 30px
}

.five-container .left video {
    max-width: 970px;
    max-height: 386px;
    top: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.diler-certains-video {
    background: #0B6A68A6 !important;
    position: absolute;
    top: 0;
    max-width: 970px;
    border-radius: 30px;
    max-height: 386px;
    height: 100%;
    width: 100%;
    z-index: 10;
}

img.image-dileram {
    width: 328px;
}

.white-border {
    width: 201px;
}

.dileram-box {
    position: relative;
    z-index: 20;
    max-width: 695px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    top: 50px;
    left: 90px;
}

.dileram-text {
    font-size: 14px;
    line-height: 31px;
    font-family: 'Geologica-ExtraLight';
    margin-top: -10px;
    margin-bottom: 10px;
    color: #fff;
}

.five-container .right {
    position: relative;
}

.diler-dots {
    position: absolute;
    transform: rotate(180deg);
    width: 84.64px;
    bottom: 36px;
    right: 207px;
}

.product-item {
    width: 250px;
    height: 308px;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    text-decoration: none;
    align-items: end;
    position: relative;
    justify-content: center;
    overflow: hidden;
    padding: 0px 30px 50px 30px;
}

.products-container .bottom {
    display: flex;
    flex-wrap: wrap;
    grid-row-gap: 30px;
    gap: 36px;
    justify-content: center;
}

.container.products-container h2 {
    color: #1F1B20;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 70px;

}

h4.products-title {
    font-size: 20px;
    line-height: 20px;
    font-family: 'Geologica-Bold';
    text-align: center;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    z-index: 50;
    color: #fff;
}

.title-flex {
    height: 40px;
    display: flex;
    align-items: start;
}

.certains {
    display: block;
    position: absolute;
    background: transparent;
    top: 0;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.product-item:hover {
    cursor: pointer;
}

.product-item:hover .certains {
    background: #0B6A68A6 !important;
    transition: 0.3s;
    z-index: 10;
}

.certains-video {
    background: #0B6A68A6 !important;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.product-item:hover .hid-symbol {
    color: #fff;
    transition: 0.3s;
}

.hid-symbol {
    color: transparent;
    transition: 0.3s;
}

.product-dots {
    position: absolute;
    transform: rotate(180deg);
    width: 84.64px;
    top: -50px;
    z-index: 50;
    transition: 0.3s;
}

.product-item:hover .product-dots {
    top: 50px;
    transition: 0.3s;
}

.bolder-text {
    font-family: 'Geologica-Bold';
}


/** MODILE */


@media screen and (max-width: 480px) {
    footer.disclaimer {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .first-container .bottom {
        margin-top: -454px !important;
    }
}


.hide-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    overflow: auto;
    text-align: center;
}


.thanks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.thanks-content {
    background: white;
    padding: 50px;
    border-radius: 5px;
    max-width: 435px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thanks-content h3 {
    font-family: 'Geologica-Bold';
    font-size: 32px;
}

.thanks-content p {
    font-family: 'Geologica-Regular';
}

.thanks .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.error {
    color: red !important;
}

.radio-field.error {
    border: 1px solid red;
    padding: 5px;
    border-radius: 4px;
}


.about-video-box_full {
    width: 592px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

video.about-video_full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    border-radius: 20px; /* Ваши значения */
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #109490;
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 40px;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s;
}

.play-button:hover {
    opacity: 0.9;
}