
section {
    width: 100%;
    overflow: hidden;
}

.products-slider-big-wrapper img {

    height: 260px;
    width: 100%;
    object-fit: cover;

    @media(min-width: 991.9px) {
        height: 460px;
    }
}


.product-row {
    padding-block: 70px;
    border-bottom: 1px solid rgba(0,0,0,.10);
    position: relative;
    align-items: center;


    &::before {
        content: '';
        position: absolute;
        display: block;
        bottom:0;
        left: -100%;
        height: 1px;
        background-color: rgba(0,0,0,.1);
        width: 100%;
     }

     &::after {
          content: '';
          position: absolute;
          display: block;
          bottom:0;
          right: -100%;
          height: 1px;
          background-color: rgba(0,0,0,.1);
          width: 100%;
      }
}

.product-img {
    position: relative;
    height: 390px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

.arrow-slider {
    background-color: rgba(22,35,46,.9);
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index:1;

    &.left {
     left: 10px;

    & span {
        rotate: 180deg;
     }
 }

     &.right {
    right: 10px;
      }

    span {
        width: 24px;
        height: 23px;
        display: inline-flex;
        -webkit-mask: url('/wp-content/uploads/2024/09/products-arrow.svg');
        -webkit-mask-repeat: no-repeat;
        background-color: #fff;


    }
}

    .product-details p {
        width: 495px;
        max-width: 100%;
    }

    .product-list-wrapper {
        display: flex;

        .product-list {
            width: 50%;
            flex-basis: 50%;
            margin: 0;
            padding: 0;
            list-style-type: none;
            list-style-position: outside;
            margin-top: 20px;



            li {
                position: relative;
                padding-left: 30px;
                font-size: 18px;
                line-height: 28px;
                color: #16232e;
                font-weight: 700;
                margin-bottom: 20px;

                &::before {
                    content: '';
                    display:block;
                    position: absolute;
                    width: 17px;
                    height: 12px;
                    background-image: url("/wp-content/uploads/2024/09/checkmark-2.svg");
                    background-repeat: no-repeat;
                    left: 0;
                    top: 9px;
                 }
            }
        }
    }


#contact-banner {
    background-image: url("/wp-content/uploads/2024/09/Rectangle-59.png");
    background-size: cover;
    background-position: center center;
    border: 0px solid #181718;
    padding-block: 40px;
    color: #fff;
    position: relative;
    overflow: visible;
    z-index: 3;
    &::after {
         width: 141px;
         background-size: contain;
         background-repeat: no-repeat;
         content: "";
         display: block;
         position: absolute;
         bottom: -23px;
         right: 0;
        background-image: url("/wp-content/uploads/2024/09/contact-banner-red-line-mobile.svg");
         height: 24px;
         z-index: 2;

     }

@media(min-width:768px) {
    &::after {
    background-image: url("/wp-content/uploads/2024/09/contact-banner-before.svg");
    background-size: contain;
    width: 70%;
}
}

@media(min-width:768px) {
&::after {
    background-image: url("/wp-content/uploads/2024/09/contact-banner-before.svg");
    background-size: cover;
    width: 672px;
}
}


    p {
        font-weight: 600;
        font-size: 26px;
        letter-spacing: -1px;
        line-height: 30px;
    }

    p a {
        text-decoration: underline;
        color: #fff;
    }
}

@media(max-width: 991.9px) {
    .product-details {
        text-align: center;

        p {
            margin-inline: auto;
        }

        .product-list-wrapper {
            display: block;
            margin-block: 30px;
        }

        .product-list {
            margin-inline: auto;
            width: 35%;
            text-align: left;
        }
    }

.product-row {
    padding: 40px 0 0;
}

.swiper-product-pagination {
    margin-block: 30px;
    text-align: center;

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 4px;
    }

    .swiper-pagination-bullet-active {
        background-color: #f42341;
    }


}

.arrow-slider {
    display: none;
}

}

@media(max-width: 768.9px) {
   .product-details .product-list {
        width: 60%;
    }

    .product-img {
        height: 240px;
    }
}

@media (max-width: 575px) {
    .product-details .product-list {
        width: 75%;
    }

    #contact-banner p {
        font-size: 22px;
        line-height: 30px;
        width: 275px;
        margin-inline: auto;
    }
}

@media(min-width: 991.9px) {
    .swiper-product-pagination {
        display: none;
    }
}