.banner-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/banner-img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}


.banner-section:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--clr-primary);
    z-index: -1;
    opacity: 20%;
}



.instagram-link {
    position: absolute;
    left: 30px;
    z-index: 1;
}


.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 30px;
}

.banner-text .animation-heading h1 {
    font-family: Poppins;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    color: var(--clr-white);
    height: 85px;
    display: flex;
    align-items: center;
}

.animation-heading {
    position: relative;
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-container {
    background: linear-gradient(to right, #44DBE8, #90DA9A);
    color: white;
    clip-path: circle(8% at 93% 50%);
    animation: circleMove 20s ease-in-out infinite;
    position: absolute;
    top: 49%;
    left: 0;
    transform: translateY(-50%);
    -webkit-text-fill-color: currentColor;
}

@keyframes circleMove {

    0%,
    100% {
       clip-path: circle(10% at 92% 50%);
    }
 
    50% {
       clip-path: circle(10% at 8% 50%);
    }
 }

/* .banner-text h1::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background: #008e77;
    border-radius: 100%;
    top: -10px;
    left: 120px;
    z-index: -1;
} */

.banner-text h3 {
    font-family: Poppins;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-top: -20px;
    color: var(--clr-white);
}

.logo-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-box img {
    width: 260px;
}

.benefit-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F5F5F5;
    box-shadow: 0px 5px 20px -5px #00000026;
}

.benefit-box .img-box {
    width: 100%;
    max-width: 54px;
}

.benefit-box .text-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-box .text-box h6 {
    font-size: 16px;
    font-weight: 600;
}

.benefit-box .text-box p {
    font-size: 14px;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-main-img img {
    width: 100%;
    max-width: 330px;
}

.product-main-img {
    display: flex;
    justify-content: center;
}

.products-section{
    background-color: #F5F5F5;
}

.product-box {
    background: #DBE9E7;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 360px;
    max-width: 100%;
    margin: auto;
    box-shadow: 0px 5px 25px -15px #00000080;
}


.product-box img {
    width: 100%;
    max-width: 210px;
    padding: 20px;
    transform: scale(1);
    transition: all 0.2s ease-in-out;
}

.product-box:hover img{
    transform: scale(1.10);
}

.product-text {
    padding: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    background: #fff;
    box-shadow: 0px -5px 5px 0px #00000005;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    background: #fff;
    height: 35px !important;
    width: 35px !important;
    box-shadow: 0px 5px 15px 0px #0000001A;
}

.swiper-button-next{
    right: -20px !important;
}

.swiper-button-prev{
    left: -20px !important;
}

.swiper-button-disabled{
    display: none !important;
}


.product-slider{
    position: relative;
}


