@import url('variables.css');
@import url('animation.css');
@import url('fonts.css');



/* Setting ---------------------------------------------
--------------------------------------------------------
-------------------------------------------------------- */
.preload {
    position: fixed;
    /* background-image: url('../img/video-img-1.webp'); */
    background-color: var(--dark-color);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 9999;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.preload::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url('../img/about-desk-figure.webp');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 530px;
    height: 100%;
    top: 0;
    right: -25px;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Gilroy";
}

/* Base container */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--width);
    min-width: var(--width);
    margin: 0 auto;
    height: 100%;
    position: relative;
    padding: var(--container-padding);
}

.flex {
    display: flex;
}

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

.flex-bettwen {
    justify-content: space-between;
}

.flex-evenly {
    justify-content: space-evenly;
}

.flex-around {
    justify-content: space-around;
}

.flex-ac {
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.no-wrap {
    flex-wrap: nowrap;
}

.flex-wrap {
    flex-wrap: wrap;
}

.no-transform {
    transform: rotate(0);
    transition: 0;
}

.btn-h-yellow a:hover {
    color: var(--dark-color);
    transition: 0.4s;
}

body {
    font-size: var(--font-25);
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    font-size: var(--font-25);
    color: var(--dark-color);
    text-decoration: none;
    transition: 0.4s;
    cursor: pointer;
}

a:hover {
    transition: 0.4s;
}



.preload-hover {
    animation: var(--animation-preload);
    z-index: -1;
    opacity: 0;
}

.loading-spinner {
    border: 8px solid rgb(255, 255, 255, 0.8);
    border-top-color: var(--yellow-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: var(--animation-spin);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.preload-img {
    margin-bottom: auto;
    margin-bottom: 200px;
    position: relative;
    z-index: 1;
}

.preload-img img {
    width: 100%;
    height: auto;
}

.preload-text {
    font-size: 40px;
    color: white;
    margin-top: 120px;
    position: relative;
    z-index: 1;
}

.preload .video-slider__overlay {
    z-index: -1;
}

.st-btn {
    width: var(--btn-width);
    height: var(--btn-height);
    border-radius: var(--btn-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
}

.st-btn a {
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hidden-sm {
    display: none;
}

/* -------------------------------------------------------------------------
----------------------------------------------------------------------------
---------------------------------------------------------------------------- */

/* Header section ---------------------------
---------------------------------------------
--------------------------------------------- */
header {
    height: 133px;
    background-color: #ffffff;
    position: fixed;
    z-index: 9998;
    width: 100%;
    top: 0;
}

.header-rgb {
    background-color: rgb(255, 255, 255, 0.8);
    transition: 0.4s;
}

/* Language ----- */
.header-language {
    position: relative;
}

.language-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    background-color: var(--dark-color);
    padding: 14px 20px;
    border-radius: 30px;
    position: absolute;
    top: 30px;
    transform: scale(0);
    opacity: 0;
    z-index: -1;
}

.language-list a {
    color: var(--white-color);
}

.language-list a:hover {
    color: var(--yellow-color);
}

.language-active {
    color: var(--yellow-color);
    font-weight: bold;
}

.header-list__open {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
    transform-origin: center center;
}

.header-list__open::before,
.header-list__open::after {
    width: 12px;
    height: 2px;
    background-color: var(--yellow-color);
    content: '';
    display: block;
    position: absolute;
    bottom: 6px;
    transition: 0.2s;
    transform-origin: center center;
}

.header-list__open::before {
    transform: rotate(45deg);
    left: 3px;
}

.header-list__open::after {
    transform: rotate(-45deg);
    right: 3px;

}

.header-list__open:hover::before,
.header-list__open:hover::after {
    background-color: var(--dark-color);
    transition: 0.4s;
}

.header-list__open-transform {
    transform: rotate(180deg);
    transform-origin: center center;
    bottom: -10px;
}

.language-list-opened {
    transform: scale(1);
    z-index: 9999;
    opacity: 1;
    animation: var(--animation-language);
}

/* Header logotype --- */
.header-logotype {
    margin-top: -22px;
    margin: 0 5%;
}

/* Header title --- */
.header-title {
    font-size: var(--font-16);
    font-weight: bold;
}


/* Header search, phone, menu  ---- */

.header-action div:nth-child(1),
.header-action div:nth-child(2) {
    margin-right: 15px;
}

.header-menu {
    position: relative;
    min-width: 40px;
    cursor: pointer;
    transition: 0.4s;
}

.header-menu span {
    width: 12px;
    height: 12px;
    background-color: var(--yellow-color);
    border-radius: 50%;
}

.header-menu span:nth-child(2) {
    display: flex;
    margin: 0 2px;
}

.header-menu:hover span:nth-child(2) {
    margin-bottom: -10px;
    background-color: var(--dark-color);
    transition: 0.4s;
}

.header-menu__list {
    position: absolute;
    background-color: var(--dark-color);
    border: 30px;
    padding-top: 35px;
    padding-right: 16px;
    min-width: 200px;
    justify-content: flex-end;
    border-radius: 30px;
    top: 95px;
    right: 0;
    transform: scale(0);
    opacity: 0;
    z-index: -1;
    transition: 0.6s;
    min-height: 200px;
    min-width: 220px;
    height: auto;
}

.header-menu__list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: right;
}

.header-menu__list ul li a {
    color: var(--white-color);
    transition: 0.2s;
}

.header-menu__list ul li a:hover {
    color: var(--yellow-color);
    font-weight: 600;
    transition: 0.2s;
}

.header-menu__active {
    transform: scale(1);
    opacity: 1;
    z-index: 9999;
    transition: 0.6s;
}

.header-menu__no-active {
    z-index: -1;
    transform: scale(0);
    transition: 0.6s;
}

/* Main page slider */

.slider-video__wrapper {
    margin-top: 133px;
}

.slider-video__wrapper .slider-item img {
    display: block;
    width: 100%;
    height: auto;
}

.slider-video__wrapper .slider-item {
    max-height: calc(var(--width) - 200px);
    margin: -15px 0;
    position: relative;
}

.slider-video__wrapper {
    position: relative;
}

.slider-video__wrapper video {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    margin: 0 auto;
    display: block;
}

.video-item {
    flex-direction: column;
}

.video-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgb(170, 170, 170, 0.3);
    z-index: 1;
}

.slider-video__wrapper .slider-caption {
    position: absolute;
    top: 0;
    z-index: 10;
    display: flex;
    width: 100%;
}

.video-wrapper__title {
    font-size: var(--font-100);
    font-weight: 900;
    color: var(--white-color);
    max-width: 50%;
    margin-top: 169px;
    text-transform: uppercase;
}

.video-wrapper__title h1 {
    margin: 0;
    font-size: var(--font-100);
    font-weight: 900;
    max-width: 50%;
}

.video-wrapper__subtitle {
    margin-top: 33px;
    color: var(--white-color);
    max-width: 68%;
    overflow-y: hidden;
    max-height: 180px;
    height: 180px;

}

.video-wrapper__button {
    background-color: var(--dark-color);
    box-sizing: border-box;
    border: 1px solid transparent;
}

.video-wrapper__button a {
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: -4px;

}

.video-wrapper__button:hover a {
    color: var(--yellow-color);
}

.video-slide__yellow-figure {
    display: flex;
    position: absolute;
    background-color: rgb(250, 188, 21, 0.95);
    width: 40%;
    min-height: 569px;
    max-height: 569px;
    top: 103px;
    border-radius: 0 270px 270px 0;
    z-index: 2;
    justify-content: flex-end;
    align-items: center;
    padding-right: 25px;
}

.video-slide__yellow-figure img {
    width: 529px !important;
    height: 529px;
}

.slider-video__text {
    position: absolute;
    bottom: -213px;
    left: calc((100% - var(--width)) / 4);
    z-index: -1;
}

.slider-video__text-big {
    font-size: 170px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--yellow-color);
    line-height: 1;
    text-shadow: 0 0.1px 0px rgb(105, 105, 105);
}

.slider-video__text_small {
    font-size: var(--font-45);
    color: var(--white-color);
    opacity: 0.6;
    padding-left: 10px;
}

.slider-video__wrapper .owl-dots {
    position: absolute;
    top: 50%;
    right: calc((100% - var(--width)) / 2);
}

.owl-dots button {
    background-color: var(--yellow-color) !important;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
}

.owl-dots .active {
    background-color: transparent !important;
    border: 2px solid var(--yellow-color) !important;
}

/* About page ----------------------------------------------------- */

.about-desc {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.about-desc::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url('../img/about-desk-figure.webp');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 530px;
    height: 100%;
    top: 0;
    right: -25px;
}

.about-desc__item {
    position: relative;
    width: 50%;
    padding-right: 80px;
    box-sizing: border-box;
}

.about-desc {
    padding: 274px 0 130px 0;
}

.about-desc_img-mob {
    display: none;
}

.about-desc__title {
    border-bottom: 2px solid var(--white-color);
    width: 100%;
    display: flex;
}

.about-desc__title h1 {
    font-size: var(--font-45);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.about-desc_text {
    margin-top: 10px;
}

.about-desc_text p {
    font-size: 16px;
    color: white;
}


/* Category page -------------------------------------------------- */
.item-slider {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.category .item-slider {
    min-height: 1000px;
}

.top-slider__item {
    padding-top: 362px;
    max-width: 60%;
    box-sizing: border-box;
    max-height: 1230px;
}

.top-slider__item-subtitle {
    color: var(--white-color);

}

.top-slider__item-title {
    color: var(--yellow-color);
    font-size: var(--font-45);
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 2px solid var(--yellow-color);
}

.top-slider__item-text {
    margin-top: 25px;
    max-height: 127px;
    overflow: hidden;
}

.top-slider__item-text p {
    color: var(--white-color);
    font-size: 16px;
}

.top-slider__item-btn {
    margin-top: 60px;
}

.top-slider__item-btn a {
    background-color: var(--dark-color);
    color: var(--white-color);
    border: 1px solid var(--yellow-color);
    cursor: pointer;
}

.top-slider__item-btn a:hover {
    background-color: var(--yellow-color);
    color: var(--dark-color);
}

.top-slider .owl-dots {
    position: absolute;
    z-index: 3;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

/* Product page -------------------------------------------------- */
.product-page {
    margin-top: 133px;
}

.top-product {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.top-product h1 {
    margin-top: 235px;
    margin-bottom: 0;
    color: var(--yellow-color);
    font-size: var(--font-45);
    font-weight: 900;
    text-transform: uppercase;
}

.top-product h2 {
    margin-bottom: 219px;
    margin-top: 0;
    color: var(--white-color);
    font-size: var(--font-33);
    font-weight: bold;
}

.top-product .spec-page__title {
    margin-top: 235px;
    margin-bottom: 0;
    color: var(--yellow-color);
    font-size: var(--font-45);
    font-weight: 900;
    text-transform: uppercase;
}

.top-product .spec-page__subtitle {
    margin-bottom: 219px;
    margin-top: 0;
    color: var(--white-color);
    font-size: var(--font-33);
    font-weight: bold;
}

.product-overlay {
    position: absolute;
    z-index: 1;
    background-color: rgb(0, 0, 0, 0.4);
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.top-product__text {
    position: relative;
    z-index: 2;
}

/* Contact page -------------------------------------------------  */
.contact-top {
    padding-top: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 85px;
}

.contact-top__title h1 {
    font-size: var(--font-45);
    color: var(--yellow-color);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 0;

}

.item-office__title {
    margin-top: 35px;
    color: var(--yellow-color);
    border-bottom: 2px solid var(--yellow-color);
    padding-bottom: 10px;
    display: inline-flex;
    font-weight: 500;
}

.item-office__desc {
    margin-top: 15px;
}

.item-office__desc p {
    color: var(--white-color);
    padding: 0;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.contact-top__item {
    width: 60%;
}

.contact-top__item:nth-child(2) {
    width: 40%;
}

.item-office__desc h2 {
    color: var(--white-color);
    font-size: var(--font-45);
    margin: 0;
}

.item-office__wrapper {
    margin-top: 25px;
}

.item-office__wrapper img {
    margin-right: 31px;
}

.item-office__item a {
    color: var(--white-color);
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
}

.item-office__item a:last-child {
    font-weight: normal;
    text-decoration: underline;
}

.contact-top_item-office {
    margin-left: 90px;
}

.contact-top__form-title {
    font-size: var(--font-45);
    color: var(--yellow-color);
    font-weight: bold;
    text-transform: uppercase;
}

.contact-top__form-subtitle {
    color: var(--white-color);
    margin-top: 10px;
}

.contact-top__form-inputs {
    margin-top: 25px;

}

.contact-top__form-inputs input,
.contact-top__form-inputs textarea {
    background-color: white !important;
    color: var(--dark-color) !important;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-top__form {
    margin-top: 35px;
}

.contact-top__form-text {
    margin-top: 25px;
    color: var(--white-color);
    font-size: 16px;
    max-width: 80%;
}

.contact-top__form .main-from__item {
    width: 100%;
}

.contact-top__form-btn {
    margin-top: 98px;
    flex-direction: column;
}

.contact-top__form-btn input {
    margin: 0 auto;
    width: 328px !important;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--dark-color);
    background-color: var(--yellow-color);
    border-radius: 30px !important;
    font-size: var(--font-25);
    border: 0;
    cursor: pointer;
    transition: 0.4s;
}

.contact-top__form-btn input:hover {
    box-shadow: 0 0 8px var(--yellow-color);
    transition: 0.4s;
}

/* Search page --------------------------------- */
.search-page {
    margin-top: 100px;
}

.search-top {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 107px;
}

.search-title {
    font-size: 108px;
    font-weight: 900;
    color: var(--white-color);
    max-width: 60%;
    margin-top: 78px;
    text-transform: uppercase;
}

.search-text {
    margin-top: 45px;
    background-color: var(--yellow-color);

}

.search-text__item {
    font-size: var(--font-33);
    font-weight: bold;
    padding: 40px 0 23px 0;
}

/* News Category ----------------------------------- */
.news-category__top {
    margin-top: 133px;
    padding: 236px 0 220px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-category__top h1 {
    margin: 0;
    text-transform: uppercase;
    color: var(--yellow-color);
    font-size: var(--font-45);
    font-weight: 900;
}

.news-category__top h2 {
    font-size: var(--font-33);
    font-weight: bold;
    color: var(--white-color);
    margin: 0;
}

/* News page --------------------------------------------  */
.news-top {
    margin-top: 133px;
    padding: 236px 0 220px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-top h1 {
    margin: 0;
    text-transform: uppercase;
    color: var(--yellow-color);
    font-size: var(--font-45);
    font-weight: 900;
    width: 100%;
}

.news-top h2 {
    font-size: var(--font-33);
    font-weight: bold;
    color: var(--white-color);
    margin: 0;
}

/* 404 Page -----------------------------------------------  */

.error-page__yellow {
    background-color: var(--yellow-color);
    padding-top: 65px;
    margin-top: 133px;
}

.error-page__title {
    font-size: 450px;
    font-weight: 900;
    color: var(--white-color);
}

.error-page_subtitle {
    font-size: 130px;
    font-weight: 900;
    color: var(--white-color);
    text-transform: uppercase;
    margin-top: -160px;
}

.error-page__action {
    padding: 36px 0 220px 0;
}

.error-page__text {
    font-size: var(--font-33);
    font-weight: bold;
    text-align: center;
}

.error-page__btn {
    margin-top: 53px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.error-page__btn a {
    width: 361px;
    height: 69px;
    background-color: var(--dark-color);
    color: white;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-weight: bold;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.error-page__btn a:nth-child(1) {
    margin-left: auto;
}

.error-page__btn a:nth-child(2) {
    background-color: var(--yellow-color);
}

.error-page__btn a:hover {
    box-shadow: 1px 1px 10px #333333;
}

@media screen and (min-width: 1921px) {
    .slider-video__wrapper video {
        width: 100%;
        height: 100%;
        position: relative;
    }
}

@media screen and (max-width: 1439.98px) {
    .slider-video__wrapper .slider-item {
        max-height: 960px;
        min-height: calc(var(--width));
    }
    .main-video__slider-tumbnails {
        height: 100%;
        width: auto !important;
    }
    .video-slide__yellow-figure {
        width: 55%;
    }

    .header-title {
        display: none;
    }
}

@media screen and (max-width: 1024.98px) {
    .header-title {
        display: none;
    }

    .header-email {
        display: none;
    }
    .main-video__slider-tumbnails {
        min-height: 800px;
        width: auto !important;
    }
    .main-video__slider .slider-item {
        min-width: 960px;
        max-height: calc(var(--width));
    }

    .slider-video__text-big {
        font-size: 90px;
    }

    .slider-video__wrapper .owl-dots {
        right: 80px;
    }

    .language-active {
        font-size: 30px;
        text-transform: uppercase;
    }

    .header-menu__list ul li a {
        font-size: 30px;
    }

    .about-desc__item {
        width: 65%;
    }

    .about-desc__item:nth-child(2) {
        width: 35%;
    }

    .about-desc {
        background-position: 45% 50%;
    }

    .about-desc::after {
        width: 360px;
        height: 100%;
        background-repeat: no-repeat;
    }

    .top-slider .item-slider {
        background-position: 65% 50%;
    }

    .error-page__title {
        font-size: 340px;
    }

    .error-page_subtitle {
        font-size: 100px;
        margin-top: -100px;
    }

    .error-page__btn {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .error-page__btn a:nth-child(1) {
        margin-left: 0;
    }

    .news-text img {
        width: 100%;
        height: auto;
    }


}

@media screen and (max-width: 767.98px) {
    .hidden-xs {
        display: none;
    }

    .header-title {
        order: 4;
        display: block;
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .mob-logo {
        display: flex;
    }

    .header-logotype {
        margin-right: auto;
    }

    .slider-video__text {
        display: none;
    }

    .video-slide__yellow-figure {
        min-width: 85%;
        min-height: 78.5%;
        width: 65%;
    }

    .video-slide__yellow-figure img {
        width: auto !important;
        height: 290px !important;
    }

    .video-wrapper__subtitle {
        max-width: 80%;
        margin-top: 0;
        height: auto;
    }

    .main-video__slider .slider-item {
        min-width: auto;
        min-height: 480px;
        margin-bottom: 80px;
    }

    .main-video__slider .slider-item video {
        height: 600px;
        position: relative;
    }

    .video-wrapper__title {
        font-size: 45px;
    }

    .video-wrapper__button {
        margin-top: 18px;
    }

    .main-video__slider .owl-dots {
        bottom: 20px;
        top: auto;
        right: calc(100% / 2 - 36px);
        margin: 0 auto;
    }

    .main-video__slider-tumbnails {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: 0 auto;
        width: 100% !important;
        height: 100% !important;
    }

    .video-item {
        position: static;
    }

    .video-wrapper__button {
        position: absolute;
        top: 515px;
    }

    .about-desc {
        background-image: unset !important;
        background-color: var(--yellow-color);
        padding: 0 0 20px 0;
    }

    .about-desc__item:nth-child(1) {
        width: 100%;
        padding-right: 0;
        order: 2;
    }

    .about-desc__item:nth-child(2) {
        order: 1;
        width: 100%;
        padding: 0;
    }

    .about-desc::after {
        display: none;
    }

    .about-desc_img-mob {
        display: block;
        margin: 0 calc((100% - 100%) - 20px);
        width: calc(100% + 40px);
        height: auto;
        padding: 0
    }

    .about-desc__title {
        margin-top: 54px;
    }

    .error-page__title {
        font-size: 180px;
    }

    .error-page_subtitle {
        font-size: 59px;
        margin-top: -67px;
    }

    .error-page__btn a {
        width: 320px;
    }

    .error-page__action {
        padding-bottom: 80px;
    }

    .news-category__top {
        padding: 113px 0 113px 0;
    }

    .top-product .spec-page__title {
        margin-top: 128px;
    }

    .top-product .spec-page__subtitle {
        margin-bottom: 100px;
    }

    .news-top {
        padding: 125px 0 100px 0;
    }

    .news-top h1 {
        font-size: 34px;
    }

    .spec-text__title h1 {
        font-size: 40px;
        color: var(--yellow-color);
        margin-bottom: 0;
    }

    .item-office__item {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
    }

    .category .item-slider {
        min-height: 700px;
    }
}

@media  screen and (max-width: 600px) {
  .main-video__slider-tumbnails {
    max-height: 600px;
    min-height: 600px;
    height: 600px;
    position: static;
  }
}