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

.small-container {
    width: 100%;
    max-width: 1011px;
    margin: 0 auto;

    @media (max-width: 1199px) {
        padding: 0 20px;
    }
}

.custom-slider-wrapper {
    padding: 60px 20px;
    background-color: #fff;

    .custom-slide {
        @media (max-width: 767px) {
            flex-direction: column;
        }
    }
}

.custom-slide {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.custom-slide-text {
    flex: 1 1 50%;
    background: #efefef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 29px;

    a {
        color: #000000;
        font-size: 20px;
        font-weight: 700;
        line-height: 26px;
        text-decoration: underline;

        &:hover {
            text-decoration: none;
        }
    }
}

.custom-slide-image {
    flex: 1 1 45%;
    position: relative;
}

.custom-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    .woocommerce-page & {
        height: 100%;
    }
}

.custom-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
}

.custom-subtitle {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 400;
}

.custom-content {
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .custom-content {
        max-height: 100%;
        overflow: unset;
    }
}

.custom-slick-prev,
.custom-slick-next {
    background: transparent;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    color: #333;
}


.custom-arrow {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid #D9D9D9;
    color: #D9D9D9;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-arrow.prev {
    right: 100px;
}

.custom-arrow.next {
    right: 40px;
}

.custom-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.custom_dots li.slick-active {
    background: #756D6D;
    width: 20px;
    height: 20px;
}

.custom_dots {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 36px;
    left: 29px;
    list-style: none;
    margin: 0;
    cursor: pointer;

    @media (max-width: 1199px) and (min-width: 768px) {
        bottom: 4px;
    }

    @media (max-width: 767px) {
        bottom: -47px;
        right: 20px;
        text-align: center;
    }

    li {
        background: #BABABA;
        display: inline-block;
        text-indent: -9999px;
        width: 15px;
        height: 15px;
        margin-right: 10px;
        border-radius: 50%;
        margin-bottom: 0;

        @media (max-width: 1199px) {
            margin-right: 24px;
        }

        @media (max-width: 767px) {
            width: 10px;
            height: 10px;
        }
    }
}

.custom_dots li:last-of-type {
    margin-right: 0;
}

.table-section {
    background: #efefef;
    margin: 30px 0;
}

.table-section_title {
    background: #efefef;
    text-align: center;
    padding: 30px;
}

.table-section_title h2 {
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.table-section_content {
    color: #000000;
}

.video-iframe {
    margin: 87px 0;

    iframe {
        @media (max-width: 1199px) {
            height: auto !important;
        }
    }
}

.info-section {
    margin-bottom: 250px;
    width: 100%;
    height: 461px;
    position: relative;

    .container {
        position: relative;
        z-index: 2;
    }

    .info-section__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
}

.info-section-box {
    position: relative;
    height: 461px;
}

.info-section-content {
    background: #EFEFEF;
    padding: 87px 32px 87px 68px;
    width: 1011px;
    margin: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -150px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .info-section-content {
        width: 100%;
        padding: 20px;
        flex-direction: column;
    }
}

.info-section-content h2 {
    font-size: 32px;
    margin-right: 34px;
}

.info-section-content p {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 24px;
}

.product-section {
    margin-bottom: 120px;


}

.product-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 52px;
}

.product-section-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;

    .product-section--full & {
        @media (min-width: 768px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media (max-width: 1199px) {
    .product-section-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-section-box_block {
    width: 100%;
    height: 322px;
    padding: 45px 20px 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;

    .product-section--full & {
        justify-content: end;

        @media (min-width: 768px) {
            min-height: 480px;
        }

        &:first-child {
            @media (min-width: 768px) {
                grid-column: span 2;
            }
        }
    }
}

.product-section-box_block h3 {
    font-size: 23px;
    color: #ffffff;
    text-align: center;

    .product-section--full & {
        text-align: left;

        @media (min-width: 768px) {
            font-size: 32px;
            line-height: 40px;
            margin-bottom: 24px;
        }
    }
}

.product-section-box_block-sub-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
    font-family: futura-pt, sans-serif;
    text-align: center;
    color: #ffffff;

    .product-section--full & {
        text-align: left;
    }
}

.product-section-box_block a {
    width: fit-content;
    margin: 0 auto;

    .product-section--full & {
        margin: 0;
    }
}

.faq-section h2 {
    text-align: center;
}

.content-with-background {
    margin-top: 120px;
    padding: 94px 0 124px;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
}

.content-with-background h2 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 37px;
    color: #ffffff;
}

@media (max-width: 1199px) {
    .content-with-background {
        margin: 30px 0;
        padding: 40px 0;
    }
}

@media (max-width: 48.0625em) {
    .table-section_content {
        overflow: scroll;
    }

    .table-section_content table {
        min-width: 100%;
        width: 548px;

    }
}

.ubermenu-bound-inner ul.ubermenu-nav {
    position: static;
}

.um-main-item>.ubermenu-target {
    font-size: 1.8rem !important;
    font-weight: 500 !important;
}

.ubermenu-nav .ubermenu-item .ubermenu-submenu-drop {
    padding: 30px 20px !important;
}

.ubermenu-nav .ubermenu-item .ubermenu-submenu-drop:before {
    background: #F0F0F0;
    height: 1px;
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    right: 40px;
}

.ubermenu .ubermenu-submenu .ubermenu-target-with-image {
    position: relative;
}

.ubermenu .ubermenu-target-with-image .ubermenu-image {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0 !important;
}

.ubermenu .ubermenu-target-with-image span.ubermenu-target-title {
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: #00000066;
}

.um-column-1 .ubermenu-submenu,
.um-column-2 .ubermenu-submenu,
.um-column-3 .ubermenu-submenu {
    padding: 0 !important;
}

.um-column-1>.ubermenu-target,
.um-column-2>.ubermenu-target,
.um-column-3 .ubermenu-target {
    color: #000000 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    padding: 0 10px 0 30px !important;
}

.um-column-1 .ubermenu-submenu .ubermenu-target,
.um-column-2 .ubermenu-submenu .ubermenu-target {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    padding: 6px 10px 6px 30px !important;
}

.um-column-1 .ubermenu-submenu .ubermenu-target:hover,
.um-column-2 .ubermenu-submenu .ubermenu-target:hover {
    background: #F0F0F0 !important;
}

@media only screen and (min-width: 69em) {
    .home .um-main-item>.ubermenu-target {
        color: #fff !important;
    }

    .home.fixed-header .um-main-item>.ubermenu-target {
        color: #000 !important;
    }

    .um-column-2,
    .um-column-3 {
        border-left: 1px solid #F0F0F0 !important;
    }

}

@media only screen and (max-width: 68.75em) {
    #mobilenavwrap {
        display: none !important;
    }

    .header .header__left {
        display: flex;
    }

    .header .header__searchform {
        display: none;
    }

    .ubermenu.ubermenu-responsive .ubermenu-column.um-column-4 {
        margin-bottom: 16px !important;
    }

    .um-column-2,
    .um-column-3 {
        margin-top: 20px !important;
    }

    .header .ubermenu-skin-minimal.ubermenu-responsive-toggle {
        font-size: 24px;
        padding: 0;
    }
}




.custom-category-fields {
    padding-top: 40px;

    .content-with-background {
        margin-top: 60px;
    }

    .info-section {
        h2 {
            min-width: 220px;
        }
    }

    .product-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .faq-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .custom-slider-wrapper {
        padding: 0 0;
        margin-top: 60px;
        margin-bottom: 60px;
    }
}


.content-with-image {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
    display: grid;

    h2 {
        font-weight: bold;
        font-size: 32px;
        margin-bottom: 37px;
    }

    p {
        font-size: 24px;
        font-weight: 400;
    }

    .content-with-image__content {
        background: #EFEFEF;
        padding: 60px 0;
    }

    .content-with-image__image {
        margin: 0 auto 0;
    }
}


.testimonials-section {
    margin-top: 60px;
    margin-bottom: 60px;

    .testimonials-section__title {
        margin-bottom: 42px;
    }

    .testimonials-section__arrow-prev,
    .testimonials-section__arrow-next {
        position: static;
    }

    .testimonials-section__arrows {
        margin-top: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .testimonials-section__slide {
        display: flex !important;
        align-items: start;
        gap: 20px;
        flex-direction: column;

        @media (min-width: 1362px) {
            flex-direction: row;
        }
    }

    .testimonials-section__image {
        min-width: 94px;
        height: 94px;
        width: 94px;
        object-fit: cover;
        border-radius: 50%;
    }

    .testimonials-section__slide-name {
        font-size: 18px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 20px;

        &:after {
            content: '\2605 \2605 \2605 \2605 \2605';
            display: block;
            width: 100%;
            font-size: 20px;
            letter-spacing: 3px;
            color: #000000;
            margin-top: 10px;
        }
    }

    .testimonials-section__slide-text {
        font-size: 14px;
        font-weight: 500;
    }

    .slick-slide {
        margin-left: 16px;
        margin-right: 16px;
        background: #EFEFEF;
        border-bottom: 30px solid #000000;
        padding: 40px 40px;
    }

    .slick-list {
        margin-left: -16px;
        margin-right: -16px;
        height: inherit !important;
    }

    .slick-track {
        display: flex !important;
    }

}


/* Task 16664 start */
.blog-page {
    .header__intro--no-image .header__intro__title h1 {
        font-size: 32px;
        font-weight: 600;
    }
}

.blog-post-list {
    display: flex;
    flex-direction: column;
    gap: 32px;

    @media (min-width: 768px) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .navigation {
        grid-column: span 2;
    }

    .section-wrap.include-padding {
        padding: 0;
    }

    .blog-listing__image {
        width: 100%;


        @media (min-width: 768px) {
            aspect-ratio: 16/9;
            object-fit: cover;
        }
    }

    .blog-listing__image-link {
        display: block;
        margin-bottom: 24px;

        @media (min-width: 768px) {
            margin-bottom: 32px;
        }
    }

    .blog-listing__title {
        font-weight: 600;
        margin-bottom: 12px;
        padding-right: 20px;
        background: url(../assets/images/arr-45deg.svg) no-repeat right top;

        @media (min-width: 768px) {
            font-size: 24px;
            line-height: 32px;
        }
    }

    .blog-listing__title-link {
        text-decoration: none;
    }

    .blog-listing__meta-data {
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        color: #14A4CB;
        margin-bottom: 12px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .blog-listing__author {
        text-transform: capitalize;
    }

    .blog-listing__excerpt {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
    }

    .blog-listing__categories {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .blog-listing__category {
        text-decoration: none;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        padding: 2px 10px;
        border-radius: 4px;

        &:nth-child(odd) {
            background-color: #BDBDBD66;
            color: #00000066;
        }

        &:nth-child(even) {
            background-color: #EEF4FF;
            color: #14A4CB;
        }
    }



    .navi-ul {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        li.active {

            &:first-child {
                margin-left: auto;
            }

            &:last-child {
                margin-right: auto;
            }

            a {
                background-color: #BDBDBD66;
                color: #000000;
            }
        }

        .navi-li {
            a {
                width: 40px;
                height: 40px;
                border-radius: 2px;
                font-weight: 500;
                font-size: 14px;
                line-height: 20px;
            }
        }

        .navi-li-prev,
        .navi-li-next {

            @media (max-width: 767px) {
                display: none;
            }

            a {
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 8px;
                min-width: 90px;
                font-weight: 500;
                font-size: 14px;
                line-height: 20px;
                height: 100%;
            }
        }

        .navi-li-next {
            margin-left: auto;

            a {
                justify-content: end;
            }
        }

        .navi-li-prev {
            margin-right: auto;
        }
    }
}

/* Task 16664 end */

/* Task 17714 end */

section+.image-block--zero {
    margin-top: 0;
}

section:has(+ .image-block--zero) {
    margin-bottom: 0 !important;
}

.image-block {
    margin-top: 40px;

    @media (min-width: 768px) {
        margin-top: 80px;
    }

    &.image-block--full {
        display: grid;
    }

    .image-block__image {
        width: 100%;
        height: auto;
    }

    &.image-block--zero {
        &+section {
            margin-top: 0;
        }
    }

    &.image-block--spaces {
        margin-top: 40px;
        margin-bottom: 40px;

        @media (min-width: 768px) {
            margin-top: 60px;
            margin-bottom: 60px;
        }
    }
}

.category-hero-slider+.primary_content_wrap {
    margin-top: 0 !important;

    .section-wrap.include-padding.section-shop-loop,
    .section-wrap.include-padding.section-single-product {
        padding-top: 20px;
    }
}


.container.container--large {
    @media (min-width: 1200px) {
        max-width: 1600px;
        width: 100%;
    }
}

.cascade-gallery__images {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;

    @media (min-width: 768px) {
        gap: 28px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 60px;
        margin-bottom: 60px;
        row-gap: 90px;
    }

    @media (min-width: 992px) {
        grid-template-columns: repeat(4, 1fr);
        padding: 84px 0;
    }

    .cascade-gallery__image {
        width: 100%;
        height: auto;

        @media (min-width: 768px) {
            aspect-ratio: 3/4;
            object-fit: cover;
        }


        &:nth-child(2) {
            @media (min-width: 768px) {
                transform: translateY(84px);
            }
        }

        &:nth-child(3) {
            @media (min-width: 768px) {
                transform: translateY(-64px);
            }

            @media (min-width: 992px) {
                transform: translateY(-84px);
            }
        }

        &:nth-child(4) {
            @media (min-width: 768px) {
                transform: translateY(24px);
            }

            @media (min-width: 992px) {
                transform: translateY(84px);
            }
        }
    }
}

/* Task 17714 end */


/* Task 18078 start */
.new-hero-block {
    position: relative;
    height: 63vw;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;

    @media (min-width: 768px) {
        padding: 60px 0;
        margin-bottom: 60px;
    }

    .container {
        position: relative;
        z-index: 2;
    }

    .new-hero-block__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;

        &::before {
            content: "";
            position: absolute;
            z-index: 1;
            top: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .55)
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .hero-block__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
}


/* Task 18078 end */