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





/* Setting selector */
.link-hover__black-yellow:hover {
    background-color: var(--dark-color);
    color: var(--yellow-color);
    transition: 0.4s;
}

.owl-next,
.owl-prev {
    background-color: var(--yellow-color) !important;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    position: relative;
    transition: 0.4s;
}

.owl-prev {
    margin-right: 30px;
}

.owl-next span,
.owl-prev span {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-next span::after,
.owl-next span::before,
.owl-prev span::after,
.owl-prev span::before {
    content: '';
    display: flex;
    width: 22px;
    height: 4px;
    position: absolute;
    background-color: white;

}

.owl-next span::after {
    top: 26px;
    left: 26px;
    transform: rotate(40deg);
}

.owl-next span::before {
    transform: rotate(-40deg);
    bottom: 26px;
    left: 26px
}

.owl-prev span::after {
    top: 26px;
    left: 20px;
    transform: rotate(-40deg);
}

.owl-prev span::before {
    transform: rotate(40deg);
    bottom: 26px;
    left: 20px
}

.breadcrumbs {
    margin-top: 30px;
}

.breadcrumbs span a {
    display: flex;
    margin-right: 10px;
}

.breadcrumbs span {
    display: flex;
}

.breadcrumb_last {
    margin-left: 10px;
}

.breadcrumbs span:last-child {
    color: var(--yellow-color);
    font-weight: bold;
}

.breadcrumbs span a:hover {
    color: var(--yellow-color);
}

.result__hidden {
    opacity: 0;
    position: absolute;
    z-index: -1;
    transform: translateX(-100%);
    transition: 0.8s;
}

.result__show {
    opacity: 1;
    position: relative;
    z-index: 1;
    transform: translateX(0);
    transition: 0.8s;
}

.btn-disable {
    pointer-events: none;
    background-color: var(--dark-grey-color) !important;
    color: var(--grey-color) !important;
}

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




/* Dark line whit button */
.dark-line {
    background-color: var(--dark-color);
    height: 110px;

}

.dark-line .flex-container {
    flex-wrap: nowrap;
}

.dark-line__text {
    color: var(--yellow-color);
    font-weight: bold;
}

.dark-line__button {
    background-color: var(--yellow-color);
    color: var(--white-color);
    font-weight: bold;
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: 0.4s;
}

.dark-line__button:hover {
    background-color: transparent;
    border: 2px solid var(--yellow-color);
    color: var(--yellow-color);
    transition: 0.4s;
}


/* Kubetol digits */
.kubetol-digits {
    position: relative;
    overflow: hidden;
}

.kubetol-digits__title {
    margin-left: auto;
    font-size: var(--font-45);
    color: white;
    margin-top: 93px;
    font-weight: bold;
    width: 100%;
    text-align: right;
}

.kubetol-digits__figure {
    height: 687px;
    background-color: var(--yellow-color);
    min-width: 345px;
    width: calc((100% - var(--width)) / 2 + 345px);
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

.kubetol-digits__text {
    margin-top: 57px;
}

.kubetol-digits__button {
    margin-top: 57px;
    background-color: var(--yellow-color);
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.4s;
}

.kubetol-digits-text__stroke {
    content: '';
    display: flex;
    position: absolute;
    -webkit-text-stroke: 2px var(--yellow-color);
    color: transparent;
    font-size: 50vh;
    left: calc((100% - var(--width)) / 4 - 165px);
    font-weight: bold;
    top: 100px;
    z-index: -1;
}

.kubetol-digits__wrapper {
    flex-wrap: wrap;
    margin-top: 127px;
    width: 100%;
}

.kubetol-digits__wrapper-item {
    width: 360px;
}

.kubetol-digits__item-figur {
    background-color: var(--dark-color);
    color: var(--yellow-color);
    border-radius: 54px;
    min-height: 110px;
    font-size: var(--font-45);
    font-weight: bold;
}

.kubetol-digits__item-text {
    text-align: center;
    margin-top: 20px;
}

/* Shipped slider main page --------------------------
------------------------------------------------------ */
.kubetol-shipped {
    margin-top: 120px;
}

.kubetol-shipped__title {
    font-size: var(--font-45);
    color: var(--yellow-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: -80px;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    width: 100%;
}

.kubetol-shipped__slider {
    position: relative;
    z-index: 1000;
}

.kubetol-shipped__slider .owl-stage {
    padding-top: 120px;
}

.slider-caption__text {
    margin-left: 15px;
    min-width: 120px;
}

.slider-caption__arrow {
    margin-right: 15px;
}

.slider-caption__item img {
    width: auto !important;
}

.kubetol-shipped__slider .owl-nav {
    position: absolute;
    top: 0;
}

.kubetol-shipped__slider .owl-next:hover,
.kubetol-shipped__slider .owl-prev:hover {
    background-color: var(--dark-color) !important;
    transition: 0.4s;
}

.slider-caption__date {
    position: absolute;
    top: -96px;
    font-weight: bold;
    left: 190px;
}

/* Bestseller main page */
.bestseller {
    margin-top: 100px;
    padding-top: 110px;
    padding-bottom: 110px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.bestseller-title {
    font-size: var(--font-45);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.bestseller__slider {
    margin-top: 55px;
}

.bestseller__slider .slider-caption {
    min-height: 730px;
    max-width: 95%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: flex-end;
    padding: 0 65px;
    box-sizing: border-box;
    position: relative;
    border-radius: 30px;
    cursor: pointer;
    margin: 0 auto;
}

.bestseller__slider-button {
    opacity: 0;
    transition: 0.4s;
    position: relative;
    bottom: 60px;
}

.bestseller__slider-button a {
    background-color: var(--yellow-color);
    color: white;
    width: 196px;
    height: 62px;
    border-radius: 30px;
    font-weight: bold;

}

.bestseller__slider-text {
    margin-bottom: auto;
    color: white;
    font-weight: normal;
    opacity: 0;
    transition: 0.4s;
}

.bestseller__slider-title {
    color: var(--yellow-color);
    font-size: var(--font-33);
    text-transform: uppercase;
    font-weight: bold;
}

.bestseller__slider-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background-color: rgb(0, 0, 0, 0.2);
    border-radius: 30px;
    transition: 0.4s;
}

.slider-caption__wrapper {
    position: relative;
    z-index: 2;
    min-height: 330px;
    max-height: 380px;
    justify-content: space-between;
}

.bestseller__slider .slider-caption:hover .bestseller__slider-overlay {
    background-color: rgb(0, 0, 0, 0.6);
    transition: 0.4s;
}

.bestseller__slider .slider-caption:hover .bestseller__slider-text,
.bestseller__slider .slider-caption:hover .bestseller__slider-button {
    opacity: 1;
    transition: 0.4s;
}

.bestseller__slider .owl-next,
.bestseller__slider .owl-prev {
    background-color: var(--dark-color) !important;
}

.bestseller__slider .owl-next span::after,
.bestseller__slider .owl-next span::before,
.bestseller__slider .owl-prev span::after,
.bestseller__slider .owl-prev span::before {
    background-color: var(--yellow-color);
}

.bestseller__slider .owl-nav {
    position: absolute;
    top: calc(50% - 34px);
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.bestseller__slider .owl-next:hover,
.bestseller__slider .owl-prev:hover {
    background-color: rgb(0, 0, 0, 0.3) !important;
    transition: 0.4s;
}

.bestseller-button a {
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--dark-color);
    color: var(--yellow-color);
    transition: 0.4s;
}

.bestseller-button a:hover {
    color: var(--dark-color);
    background-color: var(--yellow-color);
    transition: 0.4s;
    box-shadow: 0 0 12px 6px rgb(0, 0, 0, 0.3);
}

/* Why-as main page */
.why-as {
    background-color: var(--yellow-color);
}

.why-as__title {
    margin-top: 60px;
    font-size: var(--font-45);
    font-weight: 900;
    color: var(--white-color);
    text-transform: uppercase;
}

.why-as__wrapper {
    margin-top: 100px;
    padding-bottom: 60px;
}

.why-as__item {
    width: calc(100% / 3);
    padding-right: 35px;
    position: relative;
    z-index: 2;
    counter-increment: why-counter;
}

.why-as__item::before {
    content: '0'counter(why-counter);
    font-size: 200px;
    color: var(--white-color);
    display: block;
    position: absolute;
    font-weight: 900;
    z-index: -1;
    top: -85px;
    left: 0;
}

.why-as__item-title {
    font-weight: bold;
    text-transform: uppercase;
    font-weight: 900;
}

.why-as__item-text {
    margin-top: 40px;
}

/* Нам довіряють */
.trust-us {
    margin-top: 95px;
    font-size: var(--font-45);
    font-weight: 900;
    color: var(--yellow-color);
    padding-bottom: 145px;
}

.trust-us__wrapper {
    margin-top: 60px;
    flex-wrap: wrap;
    width: 100%;
}

.trust-us__wrapper img {
    margin-bottom: 15px;
}

/* Main form */
.main-from {
    background-color: var(--dark-color);
    padding: 86px 0;
}

.main-from__item {
    width: calc(100% / 2);
}

.main-from__item input {
    width: 100%;
    margin-bottom: 30px;
    height: 53px;
    border-radius: 26px !important;
    background-color: #333333;
    border: 0;
    padding-left: 30px;
    font-size: var(--font-25);
    box-sizing: border-box;
    font-family: "Gilroy";
    color: var(--white-color);
}

.main-from__item textarea {
    width: 100%;
    height: 180px;
    background-color: #333333;
    border-radius: 26px !important;
    padding-left: 30px;
    font-size: var(--font-25);
    padding-top: 18px;
    font-family: "Gilroy";
    box-sizing: border-box;
    color: var(--white-color);
    border: 0;
}

.main-from__item input.main-from__btn {
    margin-top: 60px;
    background-color: var(--yellow-color) !important;
    border: none;
    width: var(--btn-width) !important;
    height: 69px;
    font-size: var(--font-25);
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 34px;
    cursor: pointer;
    transition: 0.4s;
    padding-left: 0;
}

.main-from__title {
    color: var(--yellow-color);
    font-weight: bold;
    font-size: var(--font-45);
    text-transform: uppercase;
}

.main-from__subtitle {
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: bold;
}

.main-from__text {
    margin-top: 33px;
    color: var(--white-color);
    margin-top: 33px;
    max-width: 80%;
}

.main-from__btn:hover {
    box-shadow: 1px 1px 10px 2px var(--yellow-color);
    transition: 0.4s;
}

/* Reviews slider */
.reviews {
    padding-top: 100px;
    padding-bottom: 194px;
}

.reviews .slider-item {
    margin-top: 120px;
}

.reviews-img {
    width: 164px !important;
    position: relative;
    z-index: 2;
}

.reviews-img__quotes {
    display: block;
    position: absolute;
    z-index: -1;
    font-size: 400px;
    color: var(--yellow-color);
    top: -110px;
    left: -95px;
}

.reviews-img img {
    height: 164px;
    width: 164px !important;
}

.reviews-item {
    margin-left: 28px;
}

.revies-item__title {
    font-weight: bold;
    color: var(--yellow-color);
}

.reviews-item__text p {
    font-size: 20px;
    margin: 10px 0 0 0;
}

.reviews .owl-nav {
    position: absolute;
    right: calc((100% - var(--width)) / 2 + 15px)
}

.reviews .owl-next:hover,
.reviews .owl-prev:hover {
    filter: drop-shadow(1px 1px 12px var(--yellow-color));
    transition: 0.4s;
}

/* News Slider */
.news {
    background-color: var(--yellow-color);
    padding-bottom: 93px;
}

.news-title {
    margin: 55px 0;
    font-size: var(--font-45);
    font-weight: 900;
    color: var(--white-color);
    text-transform: uppercase;
}

.news-slide__title {
    margin-top: 15px;
}

.news-slide__title a {
    font-size: var(--font-33);
    font-weight: bold;
}

.news-slide__title a:hover {
    color: var(--white-color);
}

.news-slide__text {
    margin-top: 20px;
}

.news-slide__image {
    border-radius: 60px;
    min-height: 390px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.news-btn a {
    color: var(--white-color);
    margin-top: 68px;
    background-color: var(--dark-color);
}

.news-btn a:hover {
    box-shadow: 0 0px 8px 8px rgb(0, 0, 0, 0.4);
    color: var(--yellow-color);
}

footer {
    padding: 27px 0 111px 0;
    background-color: var(--dark-color);
    width: 100%;
}

.footer-logo {
    width: 100%;
}

.footer-item {
    width: 50%;

}

.footer-wrapper {
    margin-top: 52px;
    width: 100%;
}

.footer-item__link {
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-item__link li {
    width: calc(100% / 3);
    margin-bottom: 40px;
}

.footer-item__link li a {
    color: var(--white-color);
    transition: 0.2s;
}

.footer-item__link li a:hover {
    color: var(--yellow-color);
    font-weight: bold;
    transition: 0.2s;
}

.footer-item__social {
    margin-bottom: 100px;
}

.footer-item__social a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--yellow-color);
    margin-right: 30px;
    box-sizing: border-box;
    transition: 0.1s;
}

.footer-item__social a:hover {
    border: 4px solid var(--yellow-color);
    transition: 0.1s;
}

.footer-item_copyright {
    font-size: var(--font-33);
    color: var(--white-color);
    font-weight: bold;
}

.footer-item__phone a {
    font-size: var(--font-45);
    color: var(--yellow-color);
    font-weight: bold;
}

.footer-item__phone a:hover {
    color: var(--white-color);
}

.footer-item__mail a {
    color: var(--white-color);
    font-weight: bold;
    font-size: var(--font-33);
}

.footer-item__address {
    color: white;
    margin-top: 20px;
}

.footer-item__developer {
    color: white;
}





/* About Page ---------------------------------------------
-----------------------------------------------------------
----------------------------------------------------------- */

.about-locations {
    background-position: center center;
    background-color: var(--white-color);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 18px 0 126px 0;
}

.about-locations__mission {
    margin-top: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--yellow-color);
}

.locations__mission-item {
    width: 48%;
}

.mission-item__title {
    font-size: var(--font-45);
    font-weight: bold;
    color: var(--yellow-color);
    text-transform: uppercase;
}

.mission-item__text {
    margin-top: 10px;
    font-size: 16px;
}

.locations__mission-item:first-child {
    padding-right: 30px;
}

.locations__country-title {
    margin-top: 110px;
    font-size: var(--font-45);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
}

.locations__country-list {
    margin-top: 160px;
    padding-left: 50px;
}

.country-list__item {
    margin-bottom: 36px;
    position: relative;
}

.country-list__item-title {
    font-size: var(--font-45);
    font-weight: bold;
}

.country-list__item-text p {
    margin: 0;
}

.country-list__item-text a:hover {
    color: var(--yellow-color);
}

.country-list__item::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    left: -50px;
    top: 20px;
    border-radius: 11px;
    background-color: var(--yellow-color);
}

.about-locations .kubetol-digits__wrapper {
    margin-top: 287px;
}


/* Category page ---------------------------------
--------------------------------------------------
-------------------------------------------------- */
.category-list {
    margin-top: 87px;
}

.category-list__item__title {
    color: var(--yellow-color);
    font-weight: bold;
    font-size: var(--font-45);
    text-transform: uppercase;
}

.category-list__item {
    width: 49%;
}

.category-list__item ul {
    padding-left: 20px;
}

.category-list__item li {
    min-height: 70px;
    position: relative;
    transition: 0.8s;
}

.category-list__item li a {
    min-width: 165px;
    height: 52px;
    color: var(--dark-color);
    background-color: var(--yellow-color);
    font-size: 16px;
    border-radius: 26px;
    font-weight: bold;
    opacity: 0;
    transition: 0.6s;
    position: relative;
}

.category-list__item li:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: var(--yellow-color);
    left: -20px;
    position: absolute;
    opacity: 0;
    transition: 0.6s;
}

.category-list__item li:hover {
    font-weight: bold;
}

.category-list__item li:hover a {
    opacity: 1;
    transition: 0.6s;
}

.category-list__item li:hover a:hover {
    background-color: var(--dark-color);
    color: var(--yellow-color);
}

.category-list__item li:hover::before {
    opacity: 1;
    transition: 0.6s;
}

.category-page .trust-us {
    margin-top: 280px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    box-shadow: inset 0 140px 36px 0px rgba(255, 255, 255, 0.3);

}

.category-page .trust-us__title {
    color: var(--dark-color);
    margin-top: -80px;
}

.category-page .trust-us__wrapper {
    margin-top: 120px;
}

.category-page .trust-us__desc {
    margin-top: 152px;
    color: var(--dark-color);
    font-size: var(--font-25);
    font-weight: 400;
}

.category-page .main-from {
    background-color: var(--yellow-color);
}

.category-page .main-from__title,
.category-page .main-from__subtitle,
.category-page .main-from__text {
    color: var(--dark-color);
}

.category-page input.main-from__btn {
    background-color: var(--dark-color) !important;
    color: var(--yellow-color) !important;
}

.category-page input.main-from__btn:hover {
    box-shadow: 1px 1px 10px 2px var(--dark-color);
    transition: 0.4s;
}

.category-page .main-from__item input,
.category-page .main-from__item textarea {
    background-color: white;
    color: var(--dark-color);
}

/* Product page ----------------------------------------- 
---------------------------------------------------------
--------------------------------------------------------- */

.product-tab__head {
    margin-top: 40px;
    width: 100%;
}

.product-tab__head-item {
    width: 49%;
    height: 60px;
    border-radius: 30px;
    border: 1px solid var(--dark-color);
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.4s;
}

.product-tab__head-item span {
    margin-top: 8px;
}

.product-tab__head-active {
    border: 0;
    background-color: var(--yellow-color);
    cursor: no-drop;
    color: var(--white-color);
    box-sizing: border-box;
    font-weight: bold;
    transition: 0.4s;
}

.product-tab__body {
    margin-top: 83px;
    overflow: hidden;
    position: relative;
}

.product-tab__body-item {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 0;
    transform: translateX(100%);
    transition: 1s;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;

}

.product-tab__body-active {
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: 0.8s;
    transform: translateX(0);
    transition: 1s;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;

}

.product-body__caption-item {
    width: 49%;
}

.product-body__caption-mob {
    display: none;
}

.product-body__caption-item .product-img {
    width: 100%;
    height: 557px;
    border-radius: 30px;
}

.product-main__actions-article {
    font-size: 16px;
    font-weight: bold;
}

.product-main__actions-title {
    font-size: var(--font-45);
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid var(--yellow-color);
    color: var(--yellow-color);
    margin-top: 20px;
}

.product-main__actions-subtitle {
    font-weight: bold;
    margin-top: 20px;
}

.product-main__actions-text {
    margin-top: 16px;
}

.product-main__actions-btn {
    margin: auto 0;
}

.product-main__actions-btn div {
    width: 391px;
    height: 69px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.product-main__actions-btn div span {
    margin-top: 6px;
}

.product-btn__spec {
    background-color: var(--yellow-color);
    transition: 0.4s;
    cursor: pointer;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.product-btn__spec:hover {
    background-color: transparent;
    color: var(--dark-color);
    transition: 0.4s;
    border: 2px solid var(--yellow-color);
}

.product-btn_send {
    margin-top: 16px;
    background-color: var(--dark-color);
    color: var(--yellow-color);
    transition: 0.4s;
    cursor: pointer;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.product-btn_send:hover {
    background-color: transparent;
    color: var(--dark-color);
    transition: 0.4s;
    border: 2px solid var(--dark-color);
}


.product-main__actions-social img {
    margin-right: 15px;
}

.product-body__options {
    margin-top: 60px;
    position: relative;
}

.product-option__head {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow-color);
}

.option__head-item {
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
}

.product-option__body {
    position: relative;
}

.option__head-item:hover {
    color: var(--yellow-color);
    transition: 0.4s;
}

.option__head-active {
    color: var(--yellow-color);
}

.option__body-item {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 0;
    transition: 0.8s;
    padding: 38px 0 0 0;
    transform: translateX(100%);
    transition: 1s;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    overflow: hidden;
}

.option__body-item table {
    border: 0;
}

.option__body-active {
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: 0.8s;
    transform: translateX(0);
    transition: 1s;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    min-height: 600px;
    overflow: hidden;
}

.option__body-item__list {
    padding: 0;
    margin: 0;

}

.option__body-item__list li {
    list-style: none;
}

.option__body-item__list li span:nth-child(2) {
    min-width: 210px;
}

.option-item__element p {
    margin: 0;
}

.option-item__element ul {
    padding: 0;
    margin: 0;
}

.option-item__element ul li {
    list-style: none;
}

.option-item__element-title {
    margin-bottom: 20px;
    font-weight: bold;
}

.yellow-line {
    background-color: var(--yellow-color);
    height: 110px;
}

.yellow-line__text {
    color: var(--dark-color);
}

.yellow__text {
    font-weight: bold;
}

.yellow__button {
    background-color: var(--dark-color);
    width: 391px;
    height: 61px;
    border-radius: 30px;
    color: var(--white-color);
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s;
}

.yellow__button span {
    margin-top: 4px;
    transition: 0.4s;
}

.yellow__button:hover {
    box-shadow: 0 0 5px var(--dark-color);
    transition: 0.4s;
}

.yellow__button:hover span {
    color: var(--yellow-color);
    transition: 0.4s;
}

/* Specification page */
.spec-page {
    margin-top: 133px;
}

.spec-text {
    margin-top: 54px;
}

.spec-text img {
    float: left;
    margin-right: 45px;
}

.spec-sertification {
    margin-top: 40px;
}

.spec-img-container {
    width: 100%;
}

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

.spec-download {
    margin-top: 90px;
}

.spec-download a {
    background-color: var(--yellow-color);
    color: white;
    width: 557px;
    height: 60px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 auto;
    transition: 0.4s;
}

.spec-download a:hover {
    background-color: var(--dark-color);
    color: var(--yellow-color);
    transition: 0.4s;
}

.spec-bottom__img {
    min-height: 750px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Contact page -------------------------------------
-----------------------------------------------------
----------------------------------------------------- */
.contact-manager {
    background-color: var(--yellow-color);
    padding: 57px 0;
    margin-top: 28px;
}

.manager__item-subtitle {
    font-size: 16px;
}

.manager__item-title {
    color: var(--white-color);
    font-weight: bold;
    font-size: var(--font-33);
    margin-top: 8px;
}

.manager__item-phone {
    text-transform: uppercase;
    font-weight: bold;
}

.manager__item-mail {
    text-decoration: underline;
}

.manager__item-phone:hover,
.manager__item-mail:hover {
    color: var(--white-color);
}

.contact-map__title {
    color: var(--yellow-color);
    font-size: var(--font-45);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 50px;
}

.contact-map__wrapper {
    margin-top: 60px;
    border-bottom: 2px solid var(--yellow-color);
    margin-bottom: 50px;
}

.contact-map__item {
    width: 49%;
}

.map__item-title {
    font-weight: bold;
}

.map__item-desc {
    margin-top: 16px;
    margin-bottom: 35px;
}

.contact-map__img img {
    width: fit-content;
    height: auto;
}

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

.result-wrapper {
    width: 100%;
}

.result-item__img {
    margin-right: 30px;
    min-width: 166px;
    height: 166px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.result-item__text {
    font-size: var(--font-16);
    border-bottom: 2px solid var(--yellow-color);
    width: calc(var(--width) - 200px);
}

.result-item__title a {
    font-size: var(--font-16);
    font-weight: bold;
}

.result-item__text p {
    margin-top: 0;
}

.result-item__title a:hover {
    color: var(--yellow-color);
}

.result-item {
    margin-bottom: 30px;
}

.search-result__btn {
    margin-top: 95px;
    margin-bottom: 90px;
    width: 100%;
}

.search-result__btn button {
    background-color: var(--dark-color);
    border-radius: 34px;
    width: 361px;
    height: 69px;
    font-size: var(--font-25);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    cursor: pointer;
    border: 0;
    transition: 0.4s;
}

.search-result__btn button:hover {
    background-color: var(--yellow-color);
    color: var(--dark-color);
    transition: 0.4s;
}


/* News category --------------------------------------
-------------------------------------------------------
------------------------------------------------------- */
.news-category__wrapper {
    margin-top: 60px;
}

.grid-container__news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 30px;
    grid-auto-flow: dense;
    align-items: start;
}

.grid-item__news {
    width: fit-content;
}

.grid__item-img {
    width: 100%;
    height: 400px;
    background-position: cente center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.grid__item-title {
    font-size: var(--font-33);
    font-weight: bold;
    margin-top: 30px;
}

.grid__item-desc {
    margin-top: 30px;
}

.grid__item-link {
    margin-top: 30px;
}

.grid__item-link a:hover {
    color: var(--yellow-color);
}

.news-category__btn {
    width: 100%;
    margin-top: 75px;
    margin-bottom: 140px;
}

.news-category__btn button {
    width: 396px;
    height: 69px;
    border-radius: 34px;
    background-color: var(--yellow-color);
    color: var(--white-color);
    border: 0;
    text-transform: uppercase;
    font-size: var(--font-25);
    cursor: pointer;
    font-weight: bold;
    transition: 0.4s;
}

.news-category__btn button:hover {
    background-color: var(--dark-color);
    color: var(--yellow-color);
    transition: 0.4s;
}

/* News page */
.news-text {
    margin-top: 54px;
}

.news-text img {
    width: fit-content;
    height: auto;
}

.news-text blockquote {
    text-align: center;
    font-weight: bold;
    border-top: 1px dashed var(--grey-color);
    border-bottom: 1px dashed var(--grey-color);
    padding: 15px 0;
    position: relative;
    padding-left: 80px;
    font-size: 20px;
    margin: 15px 0;
}

.news-text blockquote:before {
    content: '';
    display: block;
    left: 0;
    top: calc(50% - 23px);
    position: absolute;
    background-image: url('../img/blockquote.webp');
    width: 62px;
    height: 47px;

}

.news-text h2 {
    font-size: var(--font-45);
    color: var(--yellow-color);
}

.news-text h3,
.news-text h4 {
    font-size: var(--font-25);
    color: var(--yellow-color);
}

.news-text h5,
.news-text h6 {
    font-size: var(--font-16);
    color: var(--yellow-color);
}

.news-text a {
    text-decoration: underline;
}

.news-text a:hover {
    color: var(--yellow-color);
}

.news-text hr {
    width: 100%;
    background-color: var(--grey-color);
    height: 2px;
    border: 0;
    margin: 10px 0;
}

.news-button {
    margin-top: 90px;
    margin-bottom: 130px;
}

.news-button a {
    background-color: var(--yellow-color);
    width: 557px;
    height: 60px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

.news-button a:hover {
    background-color: var(--dark-color);
    color: var(--yellow-color);
}

/* Site table */
table {
    width: 100%;
    border-top: 2px solid var(--yellow-color);
    padding-top: 20px;
    text-align: left;
    margin-bottom: 54px;
}

table thead {
    font-weight: bold;

}

table thead th {
    padding-bottom: 20px;
}

tbody tr td {
    border-bottom: 1px solid var(--grey-color);
    border-right: 1px solid var(--grey-color);
    padding: 6px;
    margin-left: -2px;
}

tbody tr:nth-child(1) td {
    border-top: 1px solid var(--grey-color);
}

.kubetol-search__form {
    opacity: 0;
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0, 0.7);
    transform: scale(0);
    transition: 0.6s;
}

.kubetol-search {
    width: calc(var(--width));
    height: 400px;
    position: absolute;
    top: calc(50% - 200px);
    background: var(--dark-color);
    border-radius: 30px;
    border: 1px solid var(--yellow-color);
}

.kubetol-search .asl_w_container {
    width: 60%;
    margin: 95px auto;
}

.search__close-figure {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-color);
    cursor: pointer;
    position: relative;
    margin: 25px 30px auto auto;
}

.kubetol-search__close span {
    width: 30px;
    height: 3px;
    background-color: var(--white-color);
    position: absolute;
}

.kubetol-search__close span:nth-child(1) {
    transform: rotate(45deg);
}

.kubetol-search__close span:nth-child(2) {
    transform: rotate(-45deg);
}

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

.kubetol-search input,
.kubetol-search .probox,
.kubetol-search .proclose {
    height: 53px !important;
}

.kubetol-search div.asl_m .probox .proloading {
    padding: 18px;
    height: 53px !important;
    width: 53px !important;
}

.kubetol-search div.asl_w .probox .promagnifier {
    margin: 9px !important;
    background-image: none !important;
    background-color: transparent !important;
}

div.asl_m .probox .promagnifier .innericon svg, div.asl_m .probox .prosettings .innericon svg, div.asl_m .probox .proloading svg {
    height: 34px !important;
    width: 34px !important;
    box-shadow: none !important;
}

.wpdreams_asl_results {

    padding: 14px !important;
}

div.asl_r.asl_w {
    border-radius: 10px !important;
}

div.asl_r p.showmore {
    background-color: var(--yellow-color) !important;

}

div.asl_r p.showmore span {
    font-weight: bold !important;
    color: var(--dark-color) !important;
    font-size: 18px;
    font-family: "Gilroy";
    color: var(--white-color) !important;
}


/* Popup Form */
.kubetol-popup__form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    opacity: 0;
    z-index: -1;
    transform: scale(0);
    transition: 0.6s;
}

.kubetol-popup__overlay {
    background-color: rgb(0, 0, 0, 0.6);
    height: 100vh;
    width: 100%;
}

.kubetol-popup__wrapper {
    max-width: 660px;
    max-height: 880px;
    padding: 76px 100px 86px 100px;
    background-color: var(--dark-color);
    border: 1px solid var(--yellow-color);
    border-radius: 34px;
    box-sizing: border-box;
    position: relative;
}

.kubetol-popup__wrapper .main-from__item {
    width: 100%;
    margin-top: 35px;
}

.kubetol-popup__title {
    font-size: var(--font-45);
    color: var(--yellow-color);
    font-weight: bold;
    text-transform: uppercase;
}

.kubetol-popup__subtitle {
    color: var(--white-color);
    font-weight: bold;
}

.kubetol-popup__text {
    color: var(--white-color);
    margin-top: 35px;
}

.kubetol-popup__btn {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
}

.kubetol-popup__btn input {
    width: 100%;
    min-height: 69px;
    background-color: var(--yellow-color);
    color: var(--dark-color);
    border-radius: 34px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--font-25);
    font-weight: bold;
    box-sizing: border-box;
    transition: 0.4s;
}

.kubetol-popup__btn input:hover {
    border: 2px solid var(--yellow-color);
    color: var(--yellow-color);
    background-color: transparent;
    transition: 0.4s;
}

.kubetol-popup__close {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--yellow-color);
    cursor: pointer;
    top: 22px;
    right: 30px;
}

.kubetol-popup__close div {
    width: 30px;
    height: 3px;
    background-color: var(--white-color);
    position: absolute;
}

.kubetol-popup__close div:nth-child(1) {
    transform: rotate(45deg);
}

.kubetol-popup__close div:nth-child(2) {
    transform: rotate(-45deg);
}

.kubetol-popup__form-active {
    opacity: 1;
    z-index: 9999;
    transform: scale(1);
    transition: 0.6s;
}

.hidden-input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
}

.wpcf7 form .wpcf7-response-output {
    color: white !important;
}

/* Media -------------------------- */

@media screen and (max-width: 1439.98px) {
    .kubetol-digits-text__stroke {
        font-size: 270px;
    }

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

    .kubetol-digits__wrapper {
        margin-top: 200px;
    }

    .kubetol-digits__wrapper-item {
        width: 320px;
    }

    .reviews-img__quotes {
        width: 200px;
        height: auto;
        left: 0;
    }

    .product-body__caption-item .product-img {
        width: 100%;
        height: auto;
        border-radius: 30px;
    }
}

@media screen and (max-width: 1024.98px) {


    .kubetol-digits__figure {
        min-width: 250px;
        width: calc((100% - var(--width)) / 2 + 250px)
    }

    .kubetol-digits__wrapper {
        align-items: flex-start;
        margin-top: 145px;

    }

    .kubetol-digits__wrapper-item {
        margin-bottom: 30px;
    }

    .kubetol-shipped__slider .slider-caption {
        flex-wrap: wrap;
    }

    .kubetol-shipped__slider .slider-caption__item {
        width: 50%;
        justify-content: center;
        margin-bottom: 30px;
    }

    .bestseller__slider .slider-caption {
        min-height: 600px;
        width: 450px;
        margin: 0 auto;
    }

    .bestseller__slider .owl-item {
        display: flex;
        justify-content: center;
    }

    .bestseller__slider-title {
        font-size: 35px;
    }

    .why-as__item::before {
        font-size: 175px;
    }

    .slider-caption__arrow {
        margin: 0 40px;
    }

    .contact-top__item {
        width: 50%;
    }

    .contact-top_item-office {
        margin-left: 0;
    }

    .contact-manager__item {
        margin-bottom: 30px;
    }

    .contact-manager .flex-container {
        justify-content: space-evenly;
    }

    .product-main__actions-btn div {
        width: 320px;
    }

    .product-main__actions-social {
        margin-top: 30px;
    }

    table {
        font-size: 18px;
    }

    .spec-text img {
        float: none;
        width: 100%;
        height: auto;
        margin: 0;
    }

    .search-title {
        font-size: 65px;
    }

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

    .kubetol-search .asl_w_container {
        width: 90%;
    }
}

@media screen and (max-width:767.98px) {
    .why-as__wrapper {
        flex-wrap: wrap;
        padding-bottom: 0;
    }

    .why-as__item {
        width: 100%;
        margin-bottom: 100px;
    }

    .why-as__item::before {
        font-size: 224px;
        top: -100px;
    }

    .trust-us__wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-item {
        width: 100%;
    }

    .footer-item__link {
        justify-content: space-between;
    }

    .footer-item__link li {
        margin-right: 25px;
    }

    .bestseller__slider .slider-caption {
        width: 45vh;
        padding: 0 40px;
    }

    .bestseller__slider-title {
        font-size: 26px;
    }

    .slider-caption__wrapper {
        min-width: 280px;
    }

    .main-from__item {
        width: 100%;
    }

    .dark-line .flex-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dark-line__text {
        text-align: center;
    }

    .dark-line {
        min-height: 190px;
        font-size: 20px;
    }

    .kubetol-digits__figure {
        display: none;
    }

    .kubetol-digits__title {
        background-color: var(--yellow-color);
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        font-size: 45px;
        margin-top: 0;
        padding: 35px 0;
    }

    .kubetol-digits__text {
        margin-top: 150px;
    }

    .kubetol-digits-text__stroke {
        font-size: 230px;
        left: -80%;
        bottom: 556px;
        top: auto;
    }

    .kubetol-digits__wrapper {
        margin-top: 90px;
    }

    .kubetol-shipped__slider {
        margin-top: 120px;
    }

    .kubetol-shipped__slider .slider-caption__item {
        width: 100%;
        justify-content: flex-start;
    }

    .kubetol-shipped__slider .owl-stage {
        padding-top: 0;
        padding-bottom: 85px;
    }

    .kubetol-shipped__slider .owl-nav {
        bottom: 0;
        top: auto;
    }

    .kubetol-shipped__title {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .kubetol-shipped {
        margin-top: 75px;
    }

    .slider-caption__arrow {
        display: none;
    }

    .slider-caption__date {
        top: auto;
        bottom: -66px
    }

    .kubetol-digits__button {
        margin-left: auto;
        margin-right: auto;
    }

    .kubetol-digits__wrapper {
        justify-content: center;
    }

    .main-from__btn {
        position: absolute;
        bottom: -45px;
        left: 50%;
        margin: 0 auto;
        transform: translate(-50%, 0);
    }

    .main-from__item {
        margin-bottom: 60px;
    }

    .reviews-slider .flex-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .reviews-img__quotes {
        left: calc(50% - 20px);
        transform: translate(-50%, 0);
    }

    .reviews-item {
        margin-top: 30px;
    }

    .revies-item__title {
        font-size: 25px;
    }

    .reviews .owl-nav {
        left: 50%;
        transform: translate(-50%, 0);
        bottom: -90px;
    }

    .reviews {
        padding-bottom: 120px;
    }

    .kubetol-digits__wrapper-item {
        margin: 0 10px 20px 10px;
    }

    .locations__mission-item:first-child {
        width: 100%;
        margin-bottom: 40px;
    }

    .locations__mission-item {
        width: 100%;
    }

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

    .locations__country-list {
        margin-top: 50px;
        padding-left: 30px;
    }

    .country-list__item-title {
        font-size: 35px;
    }

    .about-locations {
        background-position: center 65%;
        background-size: contain;
        padding: 18px 0 80px 0;
    }

    .about-locations .kubetol-digits__wrapper {
        margin-top: 155px;
    }

    .country-list__item::before {
        left: -30px;
        top: 10px;
    }

    .category-list__item {
        width: 100%;
    }

    .top-slider__item {
        padding-top: 200px;
        max-width: 100%;
    }

    .top-slider .owl-dots {
        bottom: 40px;
    }

    .top-slider .item-slider {
        background-position: left;
    }

    .category-list {
        margin-top: 0;
    }

    .category-list__item {
        margin-top: 60px;
    }

    .category-list__item ul li {
        flex-wrap: wrap;
        min-height: 60px;

    }

    .category-list__item ul li span {
        font-size: 25px;
        width: 100%;
        display: flex;
    }

    .category-list__item li:hover span {
        font-size: 33px;
    }

    .category-list__item li:hover {
        margin-bottom: 10px;
    }

    .category-list__item ul li a {
        margin: 20px auto 0 auto;
        height: 0;
    }

    .category-list__item ul li:hover a {
        height: 52px;
    }

    .category-list__item li:before {
        top: 14px;
    }

    .category-page .trust-us {
        margin-top: 180px;
        padding-bottom: 40px;
    }

    .category-page .trust-us__desc {
        margin-top: 20px;
    }

    .contact-top__item {
        width: 100%;
    }

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

    .item-office__wrapper img {
        display: none;
    }

    .contact-top {
        background-position: left;
    }

    .contact-map__item {
        width: 100%;
    }

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

    .contact-map__title {
        font-size: 37px;
    }

    .contact-map__img iframe {
        height: 420px;
    }

    .contact-top__form .main-from__item {
        box-sizing: border-box;
        padding: 0 10px;
    }

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

    .contact-top__form-text {
        max-width: 100%;
    }

    .grid-container__news {
        grid-template-columns: 1fr;
    }

    .grid__item-img {
        height: 294px;
    }

    .yellow-line .flex-container {
        flex-wrap: wrap;
    }

    .yellow-line {
        height: 182px;
    }

    .yellow__text {
        text-align: center;
    }

    .news-category__btn {
        margin-top: 50px;
        margin-bottom: 80px;
    }

    .breadcrumbs ul {
        flex-wrap: wrap;
    }

    .breadcrumbs ul li {
        margin-bottom: 10px;
    }

    .news-text blockquote {
        text-align: left;
    }

    .news-button {
        margin-top: 50px;
        margin-bottom: 80px;
    }

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

    .product-tab__head-item {
        width: 100%;
        margin: 10px 0;
    }

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

    .product-body__caption-item {
        width: 100%;
    }

    .product-body__caption-mob {
        display: block;
    }

    .product-tab__body {
        margin-top: 30px;
    }

    .product-img {
        margin: 20px 0;
    }

    .product-main__actions-btn {
        margin: 0 auto;
    }

    .product-main__actions-social {
        justify-content: center;
    }

    .product-main__actions-social {
        display: none;
    }

    .product-option__head {
        overflow: scroll;
    }

    .option__head-item {
        margin-right: 20px;
        white-space: nowrap;
    }

    table {
        font-size: 14px;
    }

    .option__body-item__list li {
        margin-bottom: 8px;
    }

    .option__body-item__list li span:nth-child(2) {
        min-width: 135px;
    }

    .search-title {
        font-size: 50px;
        max-width: 100%;
    }

    .search-text {
        margin-top: 20px;
    }

    .result-item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .result-item__img {
        margin: 0 0 20px 0;
    }

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

    .result-item__title a {
        font-size: 22px;
    }

    .result-item__desc {
        margin-top: 15px;
    }

    .search-result__btn {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .spec-text {
        margin-top: 0;
    }

    .spec-bottom__img {
        display: none;
    }

    .spec-img-container a {
        width: 50%;
    }

    .spec-download {
        margin: 40px 0 135px 0;
    }

    .category-page .trust-us__title {
        margin-top: -100px;
    }

    .category-hover a {
        height: 52px !important;
        opacity: 1 !important;
        transition: 0.6s !important;
    }

    .category-hover {
        margin-bottom: 10px;
        font-weight: bold;
    }

    .category-hover:before {
        opacity: 1 !important;
        transition: 0.6s !important;
        top: 14px !important;
    }

    .category-list__item li a {
        font-size: 18px;
    }

    .top-slider__item-btn a {
        margin: 0 auto;
    }

    .kubetol-search {
        width: calc(100% - 40px);
        top: calc(30% - 200px);
        height: 220px;
    }

    .kubetol-search .asl_w_container {
        margin: 30px auto;
    }

    div.asl_r .results .item .asl_content .asl_desc {
        word-break: break-all !important;
    }

    .search__close-figure {
        width: 40px;
        height: 40px;
    }

    .kubetol-search__close span {
        width: 20px;
    }

    .result-item__img {
        min-width: 100%;
        height: 300px;
    }

    .top-slider__item-text {
        max-height: 304px;
    }

    .top-slider__item-title {
        font-size: 30px;
    }

    .kubetol-popup__form .flex-container {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .kubetol-popup__wrapper {
        max-width: 100%;
        max-height: 100%;
        padding: 25px;
        height: 100vh;
        border-radius: 0;
        border: 0;
    }

    .preload::after {
        width: 300px;
    }
}