@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost.ttf') format('truetype');
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope.ttf') format('truetype');
}

@font-face {
    font-family: Arial;
    src: url('../fonts/ArialBold.ttf') format('truetype')
}

:root {
    --white: rgb(255, 255, 255);
    --black: rgb(0, 0, 0);
    --org: rgba(232, 176, 138, 1);
    --Jost: 'Jost';
    --Manrope: 'Manrope';
    --media: '(max-width: 992px)';
    --bg-footer: #1a1818;
    --Montserrat-ExtraBold: 'Jost', sans-serif;
    --ArialBold: 'Arial';
}


/* Общий стиль скроллбара */

::-webkit-scrollbar {
    width: 10px;
    /* Ширина вертикального скролла */
    height: 10px;
    /* Высота горизонтального скролла */
}


/* Стиль ползунка */

::-webkit-scrollbar-thumb {
    background: #555;
    /* Цвет ползунка */
    border-radius: 5px;
    /* Скругление */
}


/* Стиль фона скроллбара */

::-webkit-scrollbar-track {
    background: var(--bg-footer);
    /* Цвет дорожки */
}


/* При наведении */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html,
body {
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: var(--Jost), sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Высота хедера */
}

main {
    flex: 1 0 auto;
}

a:hover {
    cursor: pointer;
}

button {
    all: unset;
    cursor: pointer;
    display: inline-block;
    /* Нужно для корректного отображения */
}

input {
    all: unset;
    /* Сбрасывает все стили, включая шрифты, отступы и границы */
    -webkit-appearance: none;
    /* Убирает стили, специфичные для WebKit браузеров */
    -moz-appearance: none;
    /* Убирает стили для Firefox */
    appearance: none;
    /* Стандартный синтаксис */
    border: none;
    /* Убирает границу */
    outline: none;
    /* Убирает фокус */
    padding: 0;
    /* Убирает внутренние отступы */
    background: transparent;
    /* Убирает фон */
    color: inherit;
    /* Наследует цвет от родительского элемента */
    font: inherit;
    /* Наследует шрифт */
    box-sizing: border-box;
    /* Устанавливает box-model для элемента */
}

a {
    text-decoration: none;
    outline: none;
    list-style: none;
    color: var(--black);
    transition: all .2s ease-in-out;
    width: max-content;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}


/*          Бургер           */

body,
html {
    /* height: 100%; */
    padding: 0;
    margin: 0;
    /* position: relative; */
    transition: transform .7s ease-in-out;
    z-index: 7;
}

body.no-scrol {
    overflow: hidden;
}

footer {
    background: rgba(0, 0, 0, 1);
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    /* сбросим до размера шрифта родителя */
    font-weight: normal;
    /* уберём жирность по умолчанию */
    line-height: 1.2;
    /* зададим аккуратную высоту строки */
}

b {
    font-family: var(--Montserrat-ExtraBold);
}

.sidebar-desktop {
    display: block;
    position: relative;
}


/* @media (min-width: 992px) { */

.sidebar {
    height: 100vh;
    width: 800px;
    padding: 30px 50px;
    position: fixed;
    top: 0;
    z-index: 100;
    right: -800px;
    background: rgba(22, 22, 22, 1);
    transition: transform .7s ease-in-out;
    @media screen and (max-width: 992px) {
        width: 100%;
        right: -100%;
    }
}

.sidebar.active {
    transform: translateX(-800px);
    overflow: auto;
    @media screen and (max-width: 992px) {
        transform: translateX(-100%);
    }
}

.bar {
    display: block;
    height: 3px;
    width: 30px;
    background-color: var(--white);
    margin: 5px auto;
}

.button {
    cursor: pointer;
    display: inline-block;
    width: auto;
    /* margin: 0 auto; */
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.nav-right {
    position: absolute;
    /* position: relative; */
    /* right: 28px;
    top: 35px; */
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.hidden-xs {
    display: none;
}

.middle {
    margin: 0 auto;
}

.bar {
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.nav-right.visible-xs .active .bar {
    background-color: var(--white);
    -webkit-transition: all .7s ease;
    -moz-transition: all .7s ease;
    -ms-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}

.button.active .top {
    -webkit-transform: translateY(15px) rotateZ(45deg);
    -moz-transform: translateY(15px) rotateZ(45deg);
    -ms-transform: translateY(15px) rotateZ(45deg);
    -o-transform: translateY(15px) rotateZ(45deg);
    transform: translateY(15px) rotateZ(45deg);
}

.button.active .bottom {
    /* -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg); */
    transform: translateY(-2px) rotateZ(-45deg);
}

.button.active .middle {
    /* width: 0; */
    transform: translateY(6px) rotateZ(-45deg);
}

.move-to-left {
    -webkit-transform: translateX(-400px);
    -moz-transform: translateX(-400px);
    -ms-transform: translateX(-400px);
    -o-transform: translateX(-400px);
    transform: translateX(-400px);
}

.sidebar-list {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    /* margin-top: 20px; */
}

.sidebar-item {
    /* margin: 20px 0; */
    opacity: 1;
}

.sidebar-item {
    -webkit-transition: all .7s .2s ease-in-out;
    -moz-transition: all .7s .2s ease-in-out;
    -ms-transition: all .7s .2s ease-in-out;
    -o-transition: all .7s .2s ease-in-out;
    transition: all .7s .2s ease-in-out;
}

.sidebar-item.active {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.sidebar-anchor {
    position: relative;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-anchor::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    background-color: #fff;
    width: 0;
    transition: width 0.3s ease;
}

.sidebar-anchor:hover::after {
    width: 100%;
}


/* } */

header {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    margin: 0 auto;
}

header {
    z-index: 50;
    color: var(--white);
}

.ferst {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../images/background-f.webp') no-repeat center/cover;
    @media screen and (max-width: 992px){
        background: url('../images/background-f.webp') no-repeat center/cover;
    }
}

.ferst--home {
    --hero-header-offset: 78px;
    margin-top: var(--hero-header-offset);
    height: calc(100vh - var(--hero-header-offset));
    height: calc(100dvh - var(--hero-header-offset));
    min-height: calc(700px - var(--hero-header-offset));
    background: url('../images/background-f.webp') no-repeat center top/cover;
}

.ferst::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.ferst > * {
    position: relative;
    z-index: 1;
}

.ferst-title {
    color: rgba(241, 241, 242, 1);
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
    text-transform: uppercase;
    @media screen and (max-width: 992px) {
        font-size: 30px;
        line-height: 40px;
    }
}

.ferst-sub {
    color: rgba(241, 241, 242, 1);
    font-size: 27.4px;
    font-weight: 500;
    line-height: 38.45px;
    text-transform: uppercase;
}

.ferst-text {
    color: rgba(241, 241, 242, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

@media screen and (max-width: 992px) {
    .ferst--home {
        height: calc(100vh - var(--hero-header-offset));
        height: calc(100dvh - var(--hero-header-offset));
        min-height: calc(100dvh - var(--hero-header-offset));
        background: url('../images/background-f.webp') no-repeat center top/cover;
    }
}

.w-button {
    position: relative;
    /* width: 190px; */
    background: transparent;
    color: rgba(242, 235, 229, 1);
    border: 1px solid #fff;
    font-size: 16px;
    text-align: center;
    padding: 20px 75px 20px 20px;
    transition: all 0.5s ease;
    @media screen and (max-width: 992px) {
        padding: 20px 50px 20px 50px;
        /* width: 180px; */
        /* font-size: 14px; */
        /* padding: 10px 0; */
    }
}

.w-button::after {
    position: absolute;
    content: '';
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #fff;
    width: 40px;
    transition: all 0.5s ease;
    @media screen and (max-width: 992px) {
        width: 0;
    }
}

.w-button:hover:after {
    background: rgba(242, 235, 229, 1);
    transition: all 0.5s ease;
}

.w-button:hover {
    transition: all 0.5s ease;
    color: rgba(91, 91, 89, 1);
    background: rgba(242, 235, 229, 1);
}

.b-button {
    color: #4A4A4A;
    border-color: #4A4A4A;
}

.b-button::after {
    position: absolute;
    content: '';
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #4A4A4A;
    @media screen and (max-width: 992px) {
        width: 0;
    }
}

.b-button:hover:after {
    background: #F2F2F2;
    transition: all 0.5s ease;
}

.b-button:hover {
    transition: all 0.5s ease;
    color: rgba(91, 91, 89, 1);
    background: #F2F2F2;
}

.about-video {
    position: relative;
    display: block;
    z-index: 5;
}

.img-about-blcok {
    position: absolute;
    padding: 35px;
    color: rgba(255, 255, 255, 1);
    background-color: rgb(216 48 56);
    z-index: 2;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    @media screen and (max-width: 992px) {
        right: 0;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.img-about-title {
    font-size: 45px;
    line-height: 43px;
    font-weight: 700;
    @media screen and (max-width: 992px) {
        font-size: 35px;
    }
}

.img-about-text {
    font-size: 15px;
    font-weight: 400;
}

.about-title {
    font-size: 50px;
    font-weight: 500;
    color: rgba(74, 74, 74, 1);
    text-transform: uppercase;
}

.about-text {
    font-family: var(--Manrope);
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(140, 140, 140, 1);
    @media screen and (max-width: 992px) {
        font-size: 14px;
    }
}

.about-num {
    font-weight: 700;
    font-size: 38px;
    color: rgba(74, 74, 74, 1);
    @media screen and (max-width: 992px) {
        font-size: 30px;
    }
}

.about-num-text {
    font-weight: 500;
    font-size: 13px;
    color: rgba(140, 140, 140, 1);
    line-height: 17px;
    @media screen and (max-width: 992px) {
        font-size: 10px;
    }
}

.about-num-block {
    width: 200px;
}

h3 {
    color: rgba(74, 74, 74, 1);
    font-size: 50px;
    font-weight: 600;
    @media screen and (max-width: 992px) {
        font-size: 30px;
        text-align: center;
    }
}

.h3-text p {
    color: rgba(140, 140, 140, 1);
    font-size: 14px;
    font-weight: 500;
    line-height: 15px;
    @media screen and (max-width: 992px) {
        font-size: 14px;
        text-align: center;
    }
}

.arr-all {
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 1);
}

.arr-all svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.arr-left {
    border-right: none;
}

.arr-right {
    border-left: none;
}

.categories .splide__pagination__page {
    background: rgba(242, 234, 228, 1);
    border-radius: 0;
    width: 17px;
    height: 1px;
}

.categories .splide__pagination__page.is-active {
    background: rgba(235, 29, 39, 1);
}

.categories .splide__pagination {
    display: flex;
    gap: 10px;
    bottom: -1em;
    justify-content: left;
    padding: 0;
    @media screen and (max-width: 992px) {
        justify-content: center;
    }
}

.categories-inner {
    position: relative;
    z-index: 1;
    height: 400px;
}

.categories-blcok {
    padding: 60px 70px 70px 70px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.categories-block-title {
    color: rgba(255, 255, 255, 1);
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    @media screen and (max-width: 992px) {
        font-size: 25px;
    }
}

.categories-block-text {
    color: rgba(255, 255, 255, 0.57);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    @media screen and (max-width: 992px) {
        font-size: 20px;
    }
}

.categories-block-num {
    color: rgba(235, 29, 39, 1);
    font-size: 24px;
    font-weight: 700;
    line-height: 15px;
    @media screen and (max-width: 992px) {
        font-size: 20px;
    }
}

.categories-slide-button {
    padding: 20px 25px;
    background-color: rgba(235, 29, 39, 1);
    color: #fff;
    text-transform: uppercase;
    opacity: 1;
    transition: all 0.5s ease;
}

.categories-slide-button:hover {
    opacity: 0.5;
}

.categories-all {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    background: #fff;
}

.gallery .splide__track {
    overflow: visible;
    @media screen and (max-width: 992px) {
        overflow: hidden;
    }
}

.block-slide-reviews {
    padding: 50px 20px 15px 20px;
    background-color: #F2F2F2;
    position: relative;
    margin-top: 5px;
    color: #2C2C2C;
    /* z-index: 10; */
}

.block-slide-reviews::after {
    content: '';
    width: 90%;
    height: 20%;
    position: absolute;
    background-color: #EB1D27;
    top: -5px;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
}

.title-slide-reviews {
    color: #2C2C2C;
    font-weight: 500;
    font-size: 20.4px;
    text-transform: uppercase;
}

.title-slide-text {
    font-family: var(--Manrope);
    font-weight: 400;
    font-size: 12px;
    line-height: 16.39px;
}

.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out;
}

.clamp-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
    transition: all .3s ease-in-out;
}

.line-slide-title {
    background-color: rgba(224, 224, 224, 1);
    width: 100%;
    height: 1px;
}

.read-more-text {
    font-family: var(--Manrope);
    font-weight: 300;
    font-size: 12px;
    line-height: 16.39px;
    position: relative;
    padding: 0 55px 0 0;
}

.read-more-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background-color: #8C8C8C;
    width: 40px;
    transition: all 0.5s ease;
}

.contact-us {
    background-image: url("../images/contact-us.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form-contact-us {
    background-color: #fff;
    padding: 50px 70px 40px 30px;
    @media screen and (max-width: 992px) {
        padding: 20px 30px 20px 15px;
    }
}

.form-contact-us-title {
    font-weight: 600;
    font-size: 37.34px;
    line-height: 53.95px;
    text-transform: uppercase;
    @media screen and (max-width: 992px) {
        font-size: 30.34px;
    }
}

#rev-left-mob,
#rev-right-mob {
    width: 66px;
    height: 66px;
}

.feedback-container {
    max-width: 600px;
    padding: 40px;
    font-family: sans-serif;
}


/* Поля в виде линий */

.input-line {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #999;
    padding: 10px 0;
    margin-bottom: 50px;
    /* Большой отступ как на макете */
    font-size: 16px;
    outline: none;
}


/* Стилизация плейсхолдера (текста внутри) */

.input-line::placeholder {
    color: #000;
    font-weight: 500;
}


/* Поле сообщения с рамкой */

.input-box {
    display: block;
    width: 100%;
    height: 150px;
    border: 1px solid #999;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    box-sizing: border-box;
    resize: none;
    outline: none;
}

.input-box::placeholder {
    color: #000;
    font-weight: 500;
}


/* Чекбокс */

.agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #333;
    margin-bottom: 40px;
    cursor: pointer;
}


/* Кнопка с рамкой и линией внутри */

.submit-button {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 25px;
    border: 1px solid #999;
    background: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: lowercase;
}

.submit-button .line {
    width: 40px;
    height: 1px;
    background-color: #999;
}

.submit-button:hover {
    background-color: #f5f5f5;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    /* Центрирует текст и квадратик по вертикали */
    cursor: pointer;
    font-family: sans-serif;
    font-size: 12px;
    color: #333;
    user-select: none;
    @media screen and (max-width: 992px) {
        font-size: 10px;
    }
}


/* Прячем стандартный чекбокс */

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Рисуем наш кастомный квадратик */

.checkbox-box {
    height: 16px;
    width: 16px;
    border: 1px solid #999;
    /* Серый контур как на фото */
    margin-right: 12px;
    display: inline-block;
    position: relative;
    background-color: #fff;
    transition: all 0.2s;
}


/* Что происходит при наведении на всю область */

.custom-checkbox:hover .checkbox-box {
    border-color: #333;
}


/* Рисуем галочку (скрыта по умолчанию) */

.checkbox-box:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #333;
    /* Цвет галочки */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* Показываем галочку при клике */

.custom-checkbox input:checked~.checkbox-box:after {
    display: block;
}


/* Можно добавить легкий фон при клике */

.custom-checkbox input:checked~.checkbox-box {
    border-color: #333;
}

.contact-us-title {
    font-weight: 600;
    font-size: 48.64px;
    line-height: 63.3px;
    text-transform: uppercase;
    color: #fff;
    @media screen and (max-width: 992px) {
        font-size: 30.34px;
        line-height: 1.2;
        text-align: center;
    }
}

.contact-us-text {
    font-family: var(--Manrope);
    font-weight: 500;
    font-size: 20.5px;
    line-height: 26.36px;
    letter-spacing: 0.02px;
    color: #fff;
    @media screen and (max-width: 992px) {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 16.34px;
        line-height: 1.2;
        text-align: center;
    }
}

.map-sec {
    position: relative;
}

.map-sec-block {
    position: absolute;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.9);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 40px 40px 50px 40px;
    @media screen and (max-width: 992px) {
        position: relative;
        display: block;
        background-color: transparent;
        top: auto;
        transform: none;
    }
}

.map-sec p {
    @media screen and (max-width: 992px) {
        margin-top: 10px;
        font-size: 20px;
    }
}

.company {
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    font-weight: 300;
    @media (max-width: 992px) {
        font-size: 11.5px;
    }
}

/* Keep iOS auto-detected links (like number sequences) white in footer */
.company a,
.company a:visited,
.company a:hover,
.company a:active,
.company a[x-apple-data-detectors],
.company a[x-apple-data-detectors]:visited,
.company a[x-apple-data-detectors]:hover,
.company a[x-apple-data-detectors]:active {
    color: inherit !important;
    text-decoration: inherit !important;
}

.cookie-banner {
    position: fixed;
    left: clamp(16px, 3vw, 40px);
    bottom: clamp(16px, 3vw, 40px);
    z-index: 90;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: min(420px, calc(100vw - 32px));
    padding: 20px 22px;
    color: var(--white);
    background: rgba(22, 22, 22, 0.95);
    border-left: 4px solid rgba(235, 29, 39, 1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.cookie-banner[hidden],
.cookie-banner.is-hidden,
.cookie-banner-accepted .cookie-banner {
    display: none !important;
}

.cookie-banner__text {
    font-family: var(--Manrope), sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.86);
}

.cookie-banner__text a {
    display: inline;
    width: auto;
    color: var(--white);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(235, 29, 39, 1);
    text-underline-offset: 4px;
}

.cookie-banner__text a:hover {
    color: rgba(235, 29, 39, 1);
}

.cookie-banner__button {
    flex: 0 0 auto;
    padding: 12px 18px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.cookie-banner__button:hover {
    background-color: rgba(235, 29, 39, 1);
    border-color: rgba(235, 29, 39, 1);
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .cookie-banner__text {
        font-size: 13px;
        line-height: 18px;
    }

    .cookie-banner__button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

.bg-first {
    position: relative;
    height: 80vh;
    min-height: 700px;
}

.services-pg-f {
    background: url('../images/bg1.png') no-repeat center/cover;
}

.barriers-bg {
    background: url('../images/barriers/bg-1.png') no-repeat center/cover;
}

.garage-doors-bg {
    background: url('../images/garage-doors/bg-1.png') no-repeat center/cover;
}

.rolle-bg {
    background: url('../images/roller-shutter-system/bg-1.png') no-repeat center/cover;
}

.automatic-gate-openers {
    background: url('../images/automatic-gate-openers/bg-1.png') no-repeat center/cover;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    padding: 20px 0;
    margin: 0;
    font-family: Arial, sans-serif;
    /* Подставьте свой шрифт */
    font-size: 14px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    color: #333;
    /* Цвет активного пункта */
}


/* Стили для ссылок (неактивных пунктов) */

.breadcrumbs__link {
    text-decoration: none;
    color: #777;
    /* Серый цвет как на макете */
    transition: color 0.2s;
}

.breadcrumbs__link:hover {
    color: #000;
}


/* Рисуем разделитель между элементами */

.breadcrumbs__item:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #777;
    font-size: 12px;
    font-weight: normal;
}


/* Последний пункт делаем чуть жирнее или темнее, если нужно */

.breadcrumbs__item--active {
    font-weight: 400;
    color: #000;
}

.bg-gates {
    background: rgba(74, 74, 74, 1);
    color: rgba(255, 255, 255, 1);
    padding: 40px 20px;
    height: 100%;
}

.bg-gates-title {
    font-family: var(--Jost);
    font-weight: 600;
    font-size: 30px;
    line-height: 44.43px;
    text-align: center;
    text-transform: uppercase;
    color: #ffff;
}

.bg-gates-text {
    font-family: var(--Manrope);
    font-weight: 400;
    font-size: 14.89px;
    line-height: 18.61px;
    text-align: center;
    flex-grow: 1;
}

.gates-text {
    font-family: var(--Manrope);
    font-weight: 400;
    font-size: 14.89px;
    line-height: 18.61px;
    text-align: center;
}

.selection-guide-title {
    font-family: var(--Jost);
    font-weight: 600;
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    color: rgba(74, 74, 74, 1);
    @media (max-width: 992px) {
        font-size: 30px;
        line-height: 38px;
        text-align: center;
    }
}

.selection-guide-text {
    border-bottom: 1px solid rgba(157, 157, 157, 1);
    padding: 30px 0;
    font-family: var(--Manrope);
    font-weight: 400;
    font-size: 14.89px;
    line-height: 18.61px;
    color: rgba(74, 74, 74, 1);
}

.selection-guide-text-n {
    color: rgba(74, 74, 74, 1);
    padding: 30px 0;
    font-family: var(--Manrope);
    font-weight: 400;
    font-size: 14.89px;
    line-height: 18.61px;
}

.red-open {
    font-family: var(--Jost);
    font-weight: 600;
    font-size: 26.51px;
    line-height: 33.04px;
    top: 0;
    left: 0;
    color: #fff;
    position: absolute;
    text-transform: uppercase;
    padding: 30px 50px;
    background-color: rgba(235, 29, 39, 1);
    box-shadow: 0 0 10px rgba(235, 29, 39, 0.8), 0 0 30px rgba(235, 29, 39, 0.6), 0 0 60px rgba(235, 29, 39, 0.4), 0 0 90px rgba(235, 29, 39, 0.2);
    @media (max-width: 992px) {
        font-size: 11.5px;
        padding: 20px 40px;
    }
}

.red-swing {
    font-family: var(--Jost);
    font-weight: 600;
    font-size: 26.51px;
    line-height: 33.04px;
    top: 0;
    right: 0;
    color: #fff;
    position: absolute;
    text-transform: uppercase;
    padding: 30px 50px;
    background-color: rgba(235, 29, 39, 1);
    box-shadow: 0 0 10px rgba(235, 29, 39, 0.8), 0 0 30px rgba(235, 29, 39, 0.6), 0 0 60px rgba(235, 29, 39, 0.4), 0 0 90px rgba(235, 29, 39, 0.2);
    @media (max-width: 992px) {
        font-size: 11.5px;
        padding: 20px 40px;
    }
}

.red-open-item-1 {
    top: auto;
    bottom: 0;
}

.red-open-item-2 {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.input-group input,
textarea {
    border: none;
    /* убираем стандартные бордеры */
    border-bottom: 1px solid rgba(89, 89, 87, 1);
    /* серый бордер только сверху */
    /* padding: 18px 5px 25px 12px; */
    font-size: 16px;
    color: rgba(74, 74, 74, 1);
    width: 100%;
    outline: none;
    /* убираем синий контур при фокусе */
}

.input-group input::placeholder,
textarea::placeholder {
    color: rgba(74, 74, 74, 1);
}

.input-group textarea {
    border: 1px solid rgba(140, 140, 140, 1);
    /* серый бордер только сверху */
    padding: 10px 20px;
    font-size: 16px;
    color: rgba(74, 74, 74, 1);
    width: 100%;
    outline: none;
    /* убираем синий контур при фокусе */
}

.thanksReview-title {
    font-family: var(--Jost);
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
}

.thanksReview-text {
    font-size: 20px;
}

.modal-header {
    border: none;
}

#ThanksReview .modal-content {
    padding: 10px 20px;
}

.title-h2 {
    position: relative;
    font-family: var(--Jost);
    /* font-weight: 600; */
    font-size: 37.34px;
    line-height: 53.95px;
    text-transform: uppercase;
    @media (max-width: 992px) {
        font-size: 22px;
    }
}

.modal-content {
    padding: 50px 70px;
    @media (max-width: 992px) {
        padding: 20px;
    }
}

.cat-fav svg {
    width: 20px;
    height: 20px;
}

.categories .splide__slide {
    position: relative;
    width: 100%;
    /* aspect-ratio: 4 / 3;  */
    height: 400px;
    overflow: hidden;
}

.categories .splide__slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.gallery .splide__slide {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery .splide__slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.contact-font-arial{
    font-family: var(--ArialBold), sans-serif;
}


/* sharepulse */
@keyframes pulse{
  0%, 100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }
  
  50% {
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      transform: scale(1.3);
  }

}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
.share {
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

.share:before, .share:after {
  content: '';
  will-change: transform;
}
.share, .share:before, .share:after {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  position: fixed;
  cursor: pointer;
}
.share:after {
  background: #E62E31;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  z-index: 999;
  -webkit-transition: .39s;
  transition: .39s;
}
.share:hover:after{
  background: var(--white);
  -webkit-transition: .39s;
  transition: .39s;
}
.pulse::before {
  animation: pulse 2s infinite;
  box-shadow: 0px 0px 2px 2px #E62E31;
}
.share-svg{
  z-index: 10000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
}
.share:hover .share-svg svg{
  width: 25px;
  height: 25px;
  fill: #E62E31;
  animation: pulse 2s infinite;
  -webkit-transition: .39s;
  transition: .39s;

}

.share-svg svg{
  width: 25px;
  height: 25px;
  fill: white;
  animation: pulse 2s infinite;
  -webkit-transition: .39s;
  transition: .39s;
}
@media(max-width:992px){
  .share {
      bottom: 30px;
      right: 30px;
  }
 
}
