:root {
    --link-color: #000;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat';
    color: #000;
    background: #fff;
    padding: 0px;
    margin: 0px;
    font-size: 16px;
    line-height: 1.5;
}

p {
    margin: 0px 0px 10px 0px;
}

a:not([class]) {
    outline: none !important;
    text-decoration: none;
    color: var(--link-color);
    position: relative;
    display: inline-block;
}

a:not([class])::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.4s ease;
}

a:not([class]):hover::after {
    width: 100%;
}

.footerSocial a:after {
    display: none;
}

.container {
    max-width: 1436px;
    margin: 0px auto;
}

h1 {
    font-size: 60px;
    padding: 0px 0px 40px 0px;
    margin: 0px;
}

h2 {
    font-size: 30px;
    margin: 0px 0px 40px 0px;
    padding: 0px;
}

a.btn {
    padding: 5px 14px;
    outline: none !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

a.btnWhite {
    color: #fff;
}


a.btnBlack {
    color: #000;
}

a.btn.btnWhite:before,
a.btn.btnWhite:after {
    background: #fff;
}

a.btn.btnBlack:before,
a.btn.btnBlack:after {
    background: #000;
}

a.btn:before {
    bottom: 0;
    content: "";
    height: 1px;
    left: 0px;
    position: absolute;
    width: 100%;
    transform: translate(-100%);
}

a.btn:after {
    bottom: 0;
    content: "";
    height: 1px;
    left: 0px;
    position: absolute;
    width: 100%;
}

a.btn:hover:before {
    animation-direction: normal;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.5, 0, 0, 1);
    animation-name: btn_in;
}

a.btn:hover:after {
    animation-direction: normal;
    animation-duration: .8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.5, 0, 0, 1);
    animation-name: btn_out;
}

@keyframes btn_out {
    55% {
        transform: translate(101%)
    }

    to {
        transform: translate(101%)
    }
}

@keyframes btn_in {
    45% {
        transform: translate(-101%)
    }

    to {
        transform: translate(0)
    }
}

.headerHamb {
    display: none;
    /* position: absolute; */
    top: 50%;
    /* margin-top: -10px; */
    right: 20px;
    width: 28px;
    height: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    cursor: pointer;
    z-index: 9999;
}

.headerHamb span {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    height: 1px;
    background-color: #000000;
}

.headerHamb span:nth-child(1) {
    top: 0;
}

.headerHamb span:nth-child(2) {
    top: 8px;
}

.headerHamb span:nth-child(3) {
    top: 16px;
}

.headerHamb span:nth-child(4) {
    display: none;
}


.openMenu .headerHamb span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.openMenu .headerHamb span:nth-child(2) {
    opacity: 0;
}

.openMenu .headerHamb span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}



.marque {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    background-color: #ed1c24;
    color: #fff;
}

.marqueItem {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    white-space: nowrap;
}

.marqueItem .item {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.1s ease-in-out;
    padding: 0px 40px;
    font-size: 14px;
    line-height: 30px;
}

.marqueItem {
    animation: marque 200s linear infinite;
}

@keyframes marque {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.homePage {
    background: #000;
}

body.homePage:not(.fixHeader) .header {
    color: #fff;
}

body.homePage:not(.fixHeader):not(.openMenu) .header a {
    color: #fff;
}

body.homePage:not(.fixHeader) .header a:hover {
    color: #fff;
}

body.homePage:not(.fixHeader):not(.openMenu) .headerLogo img {
    filter: invert(1);
}

.header {
    color: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 99;
}

.headerTop {
    padding: 39px 81px 44px 49px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.headerBottom {
    padding: 0px 49px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.headerLogo img {
    height: 59px;
    display: block;
}

.headerAddress {
    padding-left: 14%;
}

.headerPhones {
    padding-left: 12%;
}

.headerCallback {
    margin-left: auto;
}

.footer {
    background: #e5e5e5;
    margin-top: 50px;
}


.footerFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 106px 4% 90px 4%;
    margin: 0px 2%;
    flex-wrap: wrap;
}

.footerLogo img {
    display: block;
    margin: 0px auto;
    height: 50px;
}

.footerCopyright {
    background: #ffffff;
    padding: 6px 51px;
    font-size: 13px;
}

.homePage .footer {
    background: #000;
    color: #fff;
    margin: 0px;
}

.homePage .footer a {
    color: #fff;
}

.homePage .footerLogo img {
    filter: invert(1);
}

.homePage .footerFlex {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #1a1a1a;
}

.homePage .footerCopyright {
    background: #000;
    color: #8a8989;
}

.homePage .footerCopyright a {
    color: #8a8989;
}

.footerSocial {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerSocial a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin: 0px 8px;
    border-radius: 50%;
    background: #6b6666;
    -webkit-transition: all ease-in-out .8s;
    -moz-transition: all ease-in-out .8s;
    -o-transition: all ease-in-out .8s;
    transition: all ease-in-out .8s;
}


.footerSocial a:hover {
    background: #7a7f7f;
}


.homePage .footerSocial a {
    background: #7a7f7f;
}

.homePage .footerSocial a img {
    filter: invert(1);
}

.homePage .footerSocial a:hover {
    background: #6b6666;
}

a.logo_menu {
    margin-right: 40px;
    display: none;
}

.logo_menu img {
    height: 40px;
    display: block;
}

.homePage .logo_menu {
    display: none;
}

.homePage .logo_menu img {
    /* filter: invert(1); */
}

.fixHeader .logo_menu {
    display: inline-block;
}

.menu {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu>li {
    margin: 0px 6px;
}

.menu li>a {
    padding: 4px 15px;
    display: block;
    font-size: 23px;
    color: #000;
}

.menu li.active>a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: width 0.4s ease;
}

.menu li ul {}

.slider {}

.slider .splide__slide {}

.slideInfo {
    width: 90%;
    max-width: 1090px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 44%, rgba(0, 0, 0, 0) 69%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    padding: 51px 62px;
    position: relative;
    z-index: 3;
}

.slideTitle {
    font-size: 41px;
    font-weight: 600;
    letter-spacing: 2.3px;
    padding-bottom: 64px;
}

.slideText {
    padding: 0px 0px 0px 45px;
    letter-spacing: 0.9px;
    font-size: 18px;
    line-height: 24px;
}

.slideText p {
    margin: 0px;
}

.slideText ul {
    padding: 0px 0px 0px 0px;
    margin: 0px;
    list-style: none;
}

.slideText ul li {
    position: relative;
    padding: 0px 0px 0px 28px;
}

.slideText ul li:before {
    content: '';
    width: 11px;
    height: 11px;
    background: #fff;
    display: block;
    position: absolute;
    left: 4px;
    top: 7px;
}

.slideBtn {
    padding: 66px 0px 0px 0px;
    letter-spacing: 0px;
}

.slideBtn a {
    font-size: 16px;
}

.homeSlider {
    position: relative;
}

.homePage .header:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 270px;
    width: 100%;
    display: block;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) calc(5% + 30px), rgba(0, 0, 0, 0) 83%, rgba(255, 255, 255, 0) 100%);
}

.homeSlider .splide__slide:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    background: rgba(0, 0, 0, 0.52);
}

.slider.homeSlider .splide__slide {
    padding: 313px 0px 0px 161px;
}

.slider .splide__pagination {
    bottom: 68px;
}

.slider .splide__pagination__page {
    width: 30px;
    height: 30px;
    border-radius: 0px;
    transform: none;
    opacity: 0.5;
}

.slider .splide__pagination li {
    margin: 0px 11px;
}

.splide__pagination__page.is-active {
    opacity: 1;
}

.slider .splide__pagination__page:after {
    content: '';
    width: 22px;
    height: 2px;
    position: absolute;
    bottom: 2px;
    left: 4px;
    display: inline-block;
    background: #000;
}

.sectionTitle {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 3px;
    margin-bottom: 72px;
}

.homePage .sectionTitle {
    color: #fff;
}

.sectionCategories {
    padding: 144px 0px 50px 0px;
}

.categoriesBlock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #000;
    margin: 0 auto;
}

.categoryItem {
    overflow: hidden;
    background: #000;
    position: relative;
}

.categoryItem img {
    display: block;
    transition: transform .8s cubic-bezier(.5, 0, 0, 1) 0s;
    width: 100%;
}

a.categoryItem:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 83%, rgba(255, 255, 255, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 83%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

a.categoryItem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50% !important;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 83%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.5;
    z-index: 1;
}

.categoryTitle {
    position: absolute;
    top: 31px;
    left: 49px;
    right: 7%;
    z-index: 2;
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    line-height: 38px;
}

.categoryItem:hover img {
    transform: scale(1.1);
}

.fixHeader .headerBottom {
    background: #fff;
    padding: 15px 49px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
}

.menu li.active>a:after,
.menu li>a:after {
    background-color: #000;
}

.homePage:not(.fixHeader) .menu li>a:after {
    background-color: #fff;
}



.headerBottom {
    /*transition: all 0.3s ease;*/
}

.content {
    padding-top: 197px;
    padding-left: 15px;
    padding-right: 15px;
}

.content>.container {
    padding-top: 25px;
}

.isMarque .content {
    padding-top: 227px;
}

.splide__slide {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.slide-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-video {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slideInfo {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}