/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #0909099d;
}

html::-webkit-scrollbar-thumb {
    background-color: #090909;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 16px;
    font-family: 'Futura Book';
    font-weight: 400;
    color: #151515;
}

a,
a:hover,
a:focus {
    color: #151515;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Kugile';
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 40px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    .title{
        font-size: 30px;
        font-family: 'Manrope SemiBold';
        margin-bottom: 15px;
        text-align: center;
    }
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #15222B;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: #ffffff;
    background-image: url(../img/banner-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.233);
        z-index: -1;
    }
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 50px;
    text-align: left;
    background: #05CDF5;
}
.title{
    font-size: 30px;
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}
p{
color: #202425;
font-family: 'Manrope Regular';
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%;
}
.dec {
    color: #2A2F30;
    font-family: 'Manrope Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.sub-title{
    color: #00BAE4;
    font-family: 'Manrope Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.section-title {
    color: #000;
    font-family: 'Manrope SemiBold';
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 96.667%;
}


.primary-btn {
    border-radius: 60px;
    background: #05CDF5;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.14);
    padding: 12px 36px;
    color: #FFF;
    font-family: 'Manrope Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    span{
        width: 20px;
        height: 1px;
        display: inline-block;
        background: #fff;
        margin-left: 5px;
        transform: translateY(-4px);
    }
}

.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #000000;
    z-index: -1;
    transition: all .35s;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    top: 0;
}

.primary-btn:hover {
    color: #ffffff;
}

.primary-btn:focus {
    color: #FFF;
}


.secondary-btn {
    background-color: #ffffff;
    border-color: #000;
    width: 190px;
    height: 48px;
    color: #000000;
    display: flex;
    align-items: center;

}

.secondary-btn:hover {
    background: #fff;
    box-shadow: 0px 4px 4px rgb(27 40 56 / 26%);
}

.call{
    color: #000;
    font-family: 'Manrope SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    .call-icon{
        width: 36px;
        height: 36px;
        border: 1px solid #05CDF5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        outline: 1px solid rgb(47 204 239 / 20%);
        outline-offset: 3px;
        transition: all .5s;
        img{
            transition: all .5s;
        }
    }
    &:hover{
        color: #05CDF5;
        .call-icon{
            background: #05CDF5;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7491%) hue-rotate(179deg) brightness(105%) contrast(102%);
            }
        }
    }
}


.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    outline: none;
    border: none;
}


form .btn-group {
    justify-content: center;
}

form .primary-btn {
    background: #000000;
    border: 1px solid #000000;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

form .primary-btn:hover {
    background: #94c12b00;
    color: #000000;
}

.form-group {
    margin-bottom: 15px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

.fixed-btn{
    position: fixed;
    right: 15px;
    bottom: 110px;
    z-index: 99;
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
header {
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
    .primary-btn{
        border-radius: 60px;
        background: #000;
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.14);
        &::before,&::after{
            background: #05CDF5;
        }
    }
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

header.sticky {
    background: rgb(255, 255, 255);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 0 17px 0 #0000003a;
    animation: slideDown 0.35s ease-out;
    .logo{
        padding-block: 10px;
        width: 140px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 999;
    transition: ease-in-out .4s;
    padding-inline: 105px;
}
.logo{
    width: 168px;
    text-align: center;
    height: 100%;
    padding-block: 14px;
    transition: all 0.5s;
}

.btn{
    padding-left: 34px;
    height: 100%;
    display: flex;
    align-items: center;
}

/************************************* Home Page **************************************/
.banner {
    position: relative;
}
.banner-slider{
    position: relative;
    overflow: clip;
    z-index: 1;
    .slick-dots{
        bottom: 120px;
        text-align: left;
        left: 15%;
    }
    .slick-dots{
        .slick-active{
            background: #05CDF5;
            opacity: 1;
        }
        li{
            width: 43px;
            height: 3px;
            border-radius: 10px;
            opacity: 0.3;
            background: #A9A9A9;
            margin-inline: 10px;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
    .slick-active{
        h1{
            animation-name: slideInDown;
            animation-duration: 0.6s;
            animation-delay: .4s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        ul{
            animation-name: slideInUp;
            animation-duration: 1s;
            animation-delay: 1s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .btn-group{
            animation-name: slideInDown;
            animation-duration: 1.2s;
            animation-delay: 1.2s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .banner-img{
            animation-name: slideInDown;
            animation-duration: 1.2s;
            animation-delay: 1.2s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.banner-item{
    position: relative;
    height: 884px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .banner-img{
        position: absolute;
        bottom: 0;
        left: 52%;
    }
    .banner-4-img{
        left: 28%;
    }
    .container{
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        z-index: 1;
    }
}
.banner-content{
    h1{
        color: #000;
        font-family: 'Manrope Bold';
        font-size: 61px;
        font-style: normal;
        font-weight: 700;
        line-height: 63px;
        margin-bottom: 14px;
    }
    p{
        color: #15262A;
        font-family: 'Manrope SemiBold';
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 29px;
        margin-bottom: 18px;
    }
    ul{
        margin-bottom: 8px;
        display: flex;
        flex-wrap: wrap;
        li{
            color: #144F5B;
            font-family: 'Manrope SemiBold';
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 24px;
            margin-bottom: 20px;
            position: relative;
            padding-left: 28px;
            width: 47%;
            padding-right: 10px;
            &::after{
                content: '';
                position: absolute;
                background-image: url(../img/check.webp);
                top: 2px;
                left: 0;
                width: 21px;
                height: 21px;
                background-repeat: no-repeat;
            }
        }
    }
}

.btn-group {
    display: flex;
    gap: 25px;
}
.guarantee-section{
    h3{
        color: #000;
        font-family: 'Manrope SemiBold';
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }
    .guarantee-item {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid #A6C9D0;
        height: 100%;
        padding: 9px 16px;
        transition: all .5s;
        &:hover{
            border: 1px solid #ffffff;
            box-shadow: 0 4px 17px 0 #0000001f;
            transform: translateY(-5px);
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
/* Best Selling Products Section */
.best-selling-products {
    padding: 80px 0;
    border-radius: 0px 0px 0px 30px;
    background: linear-gradient(180deg, #FFF 0%, #EAF6FF 100%);
    padding-left: 16%;
    padding-top: 20px;
    .col-lg-4{
        padding-right: 70px;
    }
}

.product-slider {
    margin: 0 -15px;
    .slick-arrow {
        width: 54px;
        height: 54px;
        z-index: 1;
        background: #FFF;
        filter: drop-shadow(0px 6px 4px rgba(0, 0, 0, 0.05));
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        border-radius: 50%;
    }
    
    .slick-arrow::before {
        content: '';
        width: 15px;
        height: 15px;
        border-top: 1px solid;
        border-left: 1px solid;
        display: inline-block;
        transform: rotate(135deg);
        margin-right: 5px;
        opacity: 1;
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        color: #CDCDCD;
    }
    
    .slick-arrow.slick-prev::before {
        transform: rotate(316deg);
        margin-left: 8px;
    }
    
    .slick-arrow:hover,
    .slick-arrow:focus {
        color: #000;
    }
    
    .slick-arrow:hover::before {
        color: #05CDF5;
    }
    .slick-next {
        right: auto;
        left: -25px;
    }
    .slick-prev {
        left: -25px;
        top: 40%;
    }
}

.product-slide {
    padding: 15px;
}

.product-card {
    background: #fff;
    border-radius: 27px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #f8f9fa;
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    object-fit: contain;
}

.product-content {
    padding: 20px;
}

.product-category {
    color: #00BAE4;
    font-family: 'Manrope Medium';
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.product-content h3 {
    color: #000;
font-family: 'Manrope SemiBold';
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: 20px;
margin-bottom: 8px;
}


.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


.contact-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-btns {
   .call{
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #46AA1B;
    transition: all 0.3s ease;
   }
}
/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.why-choose-img {
    position: relative;
    border-radius: 62px;
    overflow: hidden;
}

.why-choose-img img {
    width: 100%;
    height: 100%;
}

.why-choose-list {
    margin-top: 30px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #2FCCEF;
    gap: 10px;
    .content {
        width: 86%;
    }
}

.why-choose-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    img{
        transform: rotateY(180deg);

    }
}

.why-choose-item .icon {
    position: relative;
    width: 65px;
    height: 65px;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}


.why-choose-item .content h3 {
    color: #000;
font-family: 'Manrope SemiBold';
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: 20px;
margin-bottom: 8px;
}

.why-choose-item .content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .why-choose-content {
        padding-left: 0;
        margin-top: 40px;
    }
}
/* Top Brands Section */
.top-brands {
    padding: 80px 0;
    border-radius: 0px 0px 0px 30px;
    background: #F0F4F5;
    .section-title{
        margin-bottom: 55px;
    }
}

.brand-slider {
    margin: 0 -15px;
}

.brand-item {
    padding: 15px;
    text-align: center;
}

.brand-item img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(100%);
    opacity: 1;
}

/* Slick Slider Custom Styles for Brands */
.brand-slider .slick-track {
    display: flex;
    align-items: center;
}

.brand-slider .slick-slide {
    height: auto;
}

.brand-slider .slick-prev,
.brand-slider .slick-next {
    width: 40px;
    height: 40px;
    background: #ffffff00;
    border-radius: 50%;
    z-index: 1;
}


.brand-slider .slick-prev:before,
.brand-slider .slick-next:before {
    content: '';
        width: 15px;
        height: 15px;
        border-top: 1px solid;
        border-left: 1px solid;
        display: inline-block;
        transform: rotate(135deg);
        margin-right: 5px;
        opacity: 1;
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        color: #CDCDCD;
}
.brand-slider{
    .slick-arrow.slick-prev::before {
        transform: rotate(316deg);
        margin-left: 8px;
    }
    .slick-arrow:hover::before {
        color: #05CDF5;
    }
}
/* About Us Section */
.about-us {
    position: relative;
    overflow: hidden;
    .dec{
        color: #15262A;
font-family: 'Manrope SemiBold';
font-size: 23px;
font-style: normal;
font-weight: 600;
line-height: 139.13%;
    }
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content p {
    color: #2F3333;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 175%;
}

.about-content .mb-30 {
    margin-bottom: 30px;
}

.about-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}
/* Counter Section */
.counter-section {
    background: #ffffff;
    padding-top: 10px;
}

.counter-item {
    text-align: left;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #05cdf52d;
}

.counter-item h2 {
color: #05CDF5;
font-family: 'Manrope SemiBold';
font-size: 54px;
font-style: normal;
font-weight: 600;
line-height: 20px;
margin-bottom: 24px;
.counter{
    color: #000;
}
}

.counter-item p {
    color: #000;
font-family: 'Manrope SemiBold';
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 83.333% */
}
/* Our Process Section */
.our-process {
    position: relative;
    margin: 60px;
    background-image: url(../img/process-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 62px;
}
.step-number {
    color: rgb(255 255 255 / 20%);
    font-family: 'Manrope SemiBold';
    font-size: 84px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin-left: 10px;
    transition: all .5s;
}
.process-box {
    position: relative;
    transition: all 0.3s ease;
    padding: 5px;
}

.process-box:hover {
    transform: translateY(-5px);
    background-color: #ffffff2d;
    border-radius: 20px;
    .step-number{
        color: #ffffff;
    }
    img{
        transform: rotateY(180deg);
    }
    
}

.icon-box {
    position: relative;
    margin-bottom: 20px;
}

.icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.arrow {
    float: right;
    font-size: 40px;
    font-weight: 100;
    font-family: 'Manrope Regular';
}

.process-box h3 {
    color: #FFF;
font-family: 'Manrope Bold';
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 20px;
margin-bottom: 8px;
}

.process-box p {
    color: #FFF;
font-family: 'Manrope SemiBold';
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 27px;
}

@media (max-width: 991px) {
    .icon-box .arrow {
        display: none;
    }
}
.testimonials{
    border-radius: 0px 0px 29px 30px;
    background: #F5F8FA;
}
/*******************************
Faq 
*******************************/
.faq{
    position: relative;
    background: #ffffff;
    .section-title{
        margin-bottom: 30px;
        span{
            &::after{
                bottom: -43px;
            }
        }
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-bottom: 1px solid #2FCCEF;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 18px 0px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #000;
    font-family: 'Manrope SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__title::after {
    content: ' ';
    position: absolute;
    border-style: solid;
    border-color: #000000;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    background-repeat: no-repeat;
    width: 11px;
    height: 11px;
    right: 4px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(224deg);
}
.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    padding-left: 0;
    p{
        color: #202425;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.4px;
    }
}
.google-map{
    padding-top: 60px;
}
/************************
        Footer
************************/

footer{
    padding-top: 60px;
    background: #191B1B;
    p, a{
        color: #FFF;
font-family: 'Manrope Regular';
font-size: 17px;
font-style: normal;
font-weight: 400;
line-height: 40px; /* 235.294% */
    }
    a:hover{
        color: #05CDF5;
    }
    p{
        line-height:30px;
    }
    h4{
        color: #FFF;
font-family: 'Manrope SemiBold';
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 30px;
margin-bottom: 10px;
    }
    .col-lg-10{
        border-block: 1px solid #ffffff2a;
        padding-block: 20px;
        margin-block: 20px;
        .col-lg-4:nth-child(2){
            padding-left: 30px;
            border-inline: 1px solid #ffffff2a;
            .footer-content{
                margin-left: 20px;
            }
        }
    }
    .line{
        width: 100%;
        height: 1px;
        background: #ffffff2a;
        margin-block: 60px;
    }
}
.footer-social{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    img{
    	&:hover{
    		transform: scale(1.2);
            
    	}
    }
}
.footer-content{
    position: relative;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
}
.copyright{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    padding-block: 20px;
    border-top: 1px solid #ffffff2b;
    p{
        margin-bottom: 0;
    }
    a{
        color: #FF9346;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .best-selling-products {
        padding-left: 7%;
    }
    .banner-item{
        height: 810px;
        .banner-2-img{
            width: 15%;
        }
        .banner-3-img{
            width: 30%;
            left: 52%;
        }
        .banner-4-img {
            left: 28%;
            width: 70%;
        }
    }
    .banner-slider {
        .slick-dots {
            bottom: 85px;
            text-align: left;
            left: 8%;
        }
    }
    .best-selling-products {
        .col-lg-4 {
            padding-right: 50px;
        }
    }
    .right {
        padding: 40px;
    }
    p{
        font-size: 18px;
    }
    .logo{
        width: 138px;
    }
    nav{
        height: 102px;
        padding-inline: 85px;
    }
    .banner-content{
        h1{
            font-size: 56px;
        }
        h5{
            font-size: 36px;
        }
        p{
            font-size: 20px;
        }
    }
   
    .faq {
        .gallery-flower {
            left: 50px;
            top: 20px;
        }
        .story-left-flower {
            height: 253.457px;
        }
        .side-pics-flower {
            width: 111.137px;
            height: 258.457px;
        }
    }
 
    .footer-content {
        & p {
            span {
                width: 49px;
                height: 49px;
                left: 5px;
            }
        }
    }
    footer{
        h4 {
            font-size: 22px;
        }
        p, a{
            font-size: 18px;
        }
    }
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .fixed-arrow {
        width: 55px;
        height: 111px;
        padding-bottom: 3px;
    }
    .social-bar {
        width: 55px;
    }
    .banner::after {
        right: 55px;
    }
    .popup .popup__content {
        width: 55%;
    }
    .sub-title {
        font-size: 30px;
    }
    .section-title {
        font-size: 36px;
    }
    .primary-btn{
        font-size: 14px;
        padding: 12px 23px;
    }
    p {
        font-size: 16px;
    }
    .logo {
        width: 118px;
    }
    .fixed-btn {
        right: 0;
    }
    nav{
        height: 92px;
        padding-inline: 70px;
    }

    .banner-content{
        h1{
            font-size: 50px;
            line-height: 53px;
        }
        & ul {
            li {
                font-size: 16px;
                line-height: 22px;
            }
        }
        p{
            font-size: 18px;
        }
    }
    .banner-item {
        height: 720px;
        .banner-img {
            width: 36%;
        }
        .banner-2-img {
            width: 15%;
        }
        .banner-3-img {
            width: 31%;
            left: 53%;
        }
        .banner-4-img {
            left: 26%;
            width: 80%;
        }
    }
    .guarantee-section {
        .guarantee-item {
            padding: 3px 16px;
        }
        h3 {
            font-size: 16px;
            line-height: 22px;
        }
    }
    .dec {
        font-size: 18px;
        line-height: 150%;
    }
    .product-img {
        height: 325px;
    }
    .product-content h3 {
        font-size: 24px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .product-category {
        font-size: 15px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .why-choose-item .content p {
        font-size: 14px;
        line-height: 1.4;
    }
    .about-content p {
        font-size: 16px;
        line-height: 165%;
    }
    .counter-item h2 {
        font-size: 45px;
    }
    .counter-item p {
        font-size: 20px;
    }
    .counter-section {
        padding-top: 10px;
        padding-bottom: 0;
    }
    .process-box p {
        font-size: 15px;
        line-height: 22px;
    }
    .process-box h3 {
        font-size: 22px;
    }
    .accordion__item .accordion__content {
        p {
            font-size: 18px;
        }
    }
    .accordion__item .accordion__title{
        font-size: 21px;
        .accordion__content{
            p{
                font-size: 18px;
            }
        }
    }
    .faq {
        .gallery-flower {
            left: 30px;
            top: 20px;
        }
        .story-left-flower {
            height: 210.457px;
        }
        .side-pics-flower {
            width: 111.137px;
            height: 236.457px;
        }
    }
    
    footer {
        h4 {
            font-size: 20px;
        }
        p, a {
            font-size: 16px;
        }
    }
    .footer-content {
        & p {
            span {
                width: 39px;
                height: 39px;
                padding: 11px;
                left: 12px;
            }
        }
    }
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
    .popup .popup__content {
        width: 80%;
    }
    nav{
        padding-inline: 70px
    }
    .primary-btn {
        font-size: 12px;
        padding: 8px 14px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .sub-title{
        font-size: 24px;
    }
    .best-selling-products {
        padding-left: 4%;
    }
    .banner-item{
        height: 660px;
    }
    .guarantee-section {
        .guarantee-item {
            padding: 3px 7px;
            h3 {
                font-size: 14px;
                line-height: 20px;
            }
            img{
                width: 60px;

            }
        }
    }
    .banner-slider {
        .slick-dots {
            bottom: 30px;
            padding-right: 95px;
        }
        .col-lg-6 {
            flex: 0 0 auto;
            width: 60%; 
        }
        .banner-img {
            left: 54%;
        }
        .banner-3-img {
            left: 58%;
        }
        .banner-4-img {
            left: 30%;
            width: 70%;
        }
    }
    .banner-content {
        & ul {
            li {
                padding-right: 20px;
            }
        }
    }
    .why-choose-item .content h3 {
        font-size: 22px;
    }
    .why-choose-item {
        margin-bottom: 16px;
        padding: 10px;
        transition: all 0.3s ease;
        border-bottom: 1px solid #2FCCEF;
        gap: 10px;
    }
    .about-us {
        .dec {
            font-size: 18px;
            line-height: 126.13%;
        }
    }
    .counter-item p {
        font-size: 16px;
    }
    .our-process {
        margin: 20px;
        border-radius: 30px;
    }
    .process-box h3 {
        font-size: 18px;
    }
    .process-box p {
        font-size: 14px;
        line-height: 19px;
    }
    
    .banner-content {
        h1 {
            font-size: 30px;
            line-height: normal;
        }
    }
    
    .faq {
        .gallery-flower {
            left: 15px;
            top: 15px;
        }
        .story-left-flower {
            height: 109.457px;
            width: 82.137px;
        }
        .side-pics-flower {
            width: 79.137px;
            height: 124.457px;
        }
    }
    .accordion__item {
        .accordion__content {
            p {
                font-size: 17px;
            }
        }
        .accordion__title {
            font-size: 19px;
        }
    }
    
    footer {
        p, a {
            font-size: 14px;
        }
        h4 {
            font-size: 18px;
        }
    }
    .footer-content {
        & p {
            span {
                left: 10px;
            }
        }

    }
}

@media (max-width: 991.98px) {
    .popup .popup__content {
        width: 60%;
    }
    .left {
        background: #1A1A1A;
        display: flex;
        justify-content: center;
    }
    .title {
        text-align: center;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .banner-slider {
        .col-lg-6 {
            width: 70%;
        }
        .banner-img {
            left: 64%;
        }
        .banner-4-img {
            left: 33%;
            width: 68%;
        }
    }
    .banner-content {
        h5 {
            font-size: 22px;
        }
        h1 {
            font-size: 28px;
        }
    }
    .product-slider {
        .slick-arrow {
            width: 54px;
            height: 54px;
            top: 105%;
            left: 50%;
        }
        .slick-prev {
            left: 40%;
        }
    }
    .about-us{
        .row .col-lg-6:last-child{
            order: -1;
            margin-bottom: 20px;
        }
    }
    .primary-btn {
        font-size: 14px;
        padding: 8px 25px;
    }
    .best-selling-products{
        padding-inline: 20px;
        padding-bottom: 80px;
    }
    .our-story-item{
        .col-lg-5{
            order: -1;
        }
    }
    
    footer {
        & .col-lg-10 {
            .col-lg-4:nth-child(2) {
                padding-left: 30px;
                border-right: none;
            }
        }
    }
    .left {
        &::after {
            background: #FFF;
        }
    }
}

@media (max-width: 575.98px) {
    header.sticky {
        .logo {
            padding-block: 8px;
            width: 100px;
        }
    }
    .banner-slider {
        .col-lg-6 {
            width: 100%;
        }
    }
    .call{
        .number{
            display: none;
        }
    }
    .banner-content {
        h1 {
            font-size: 23px;
            text-align: center;
        }
        p {
            font-size: 16px;
            line-height: normal;
            text-align: center;
        }
        & ul {
            li {
                font-size: 14px;
                line-height: 16px;
                padding-right: 10px;
            }
        }
    }
    .banner-item {
        height: 550px;
        .banner-img {
            width: 46%;
            left: unset;
            right: 0;
        }
        .banner-2-img{
            width: 22%;
            right: 15px;
        }
        .banner-3-img{
            width: 36%;
            right: 15px;
        }
        .banner-4-img{
            width: 80%;
            right: -15px;
        }
    }
    .banner-slider {
        & .slick-dots {
            li {
                width: 18px;
                height: 2px;
                margin-inline: 6px;
            }
        }
    }
    .guarantee-section {
        & .guarantee-item {
            gap: 5px;
            padding-block: 4px;
            h3 {
                line-height: 18px;
            }
            img {
                width: 45px;
            }
        }
    }
   
    .dec {
        font-size: 15px;
        line-height: 150%;
    }
    p{
        font-size: 15px;
    }
    .popup .popup__content{
        width: 90%;
    }
    .right {
        padding: 10px;
    }
    .title {
        font-size: 24px;
    }
    .form-control{
        padding-block: 9px;
        &::placeholder {
            font-size: 13px;
        }
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .best-selling-products {
        padding-bottom: 100px;
        .col-lg-4 {
            padding-right: 20px;
            padding-left: 20px;
            text-align: center;
        }
    }
    .product-slider {
        padding-inline: 20px;
    }
    .product-slider {
        .slick-prev {
            left: 34%;
        }
    }
    .product-img img {
        width: 100%;
        object-fit: contain;
        height: 100%;
        transition: all 0.3s ease;
    }
    .product-img {
        height: 210px;
    }
    .product-content h3 {
        font-size: 18px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .product-category {
        font-size: 12px;
        line-height: 10px;
        margin-bottom: 8px;
    }
    .why-choose-img {
        border-radius: 20px;
    }
    .about-us {
        .dec {
            font-size: 16px;
            line-height: 126.13%;
        }
    }
    .about-content p {
        font-size: 14px;
        line-height: 150%;
    }
    .counter-item h2 {
        font-size: 35px;
        margin-bottom: 14px;
    }
    .why-choose-item .content h3 {
        font-size: 18px;
    }
    .brand-item img {
        max-width: 130px;
    }
    .top-brands {
        .section-title {
            margin-bottom: 25px;
        }
    }
    .about-img {
        border-radius: 20px;
    }
    nav{
        padding-inline: 10px;
        height: 75px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 6px 20px;
    }
    .logo {
        width: 95px;
    }
    .btn{
        padding-left: 0;
    }
   
    .fixed-btn{
        right: 0px;
        bottom: 40px;
        img{
            width: 45px;
            height: auto;
        }
    }
    .banner::after {
        right: 30px;
    }
    .sub-title {
        font-size: 20px;
    }
    .section-title {
        font-size: 22px;
    }
    .our-process {
        margin: 10px;
        border-radius: 10px;
        background-position: center;
    }
    .icon-box img {
        width: 50px;
        height: 50px;
    }
    .step-number{
        font-size: 74px;
    }
    .process-box,
    .process-box:hover{
        padding: 15px;
        background: #0000003d;
    }
    .counter-item {
        padding: 10px 5px;
    }    
    .faq {
        .section-title {
            margin-bottom: 10px;
        }
        .gallery-flower {
            display: none;
        }
    }
    .accordion__item {
        margin: 10px auto;
        .accordion__title {
            font-size: 15px;
            padding-left: 5px;
            padding-right: 30px;
            padding-block: 10px;
        }
        & .accordion__content {
            padding: 6px;
            p {
                margin-bottom: 5px;
                font-size: 14px;
            }
        }
    }
    .accordion__title::after {
        width: 10px;
        height: 10px;
        right: 8px;
        top: 14px;
    }
    .google-map {
        padding-top: 10px;
    }
    
    footer {
        text-align: center;
        p{
            line-height: 22px;
        }
    }
    .footer-social {
        justify-content: center;
    }
    .copyright {
        justify-content: center;
        gap: 5px;
    }
}