/**************************************
                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;
	font-weight:800;
	font-size:17px;
}

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: none;
  }
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);
}

.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: 5px;
    top: 5px;
    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: #800000;
    background-image: url(../img/g8.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: linear-gradient(90deg, #B99B2B 0%,#EACF6B 100%);
}
.title{
    font-size: 30px;
}
/**************************************
                Helper Class
**************************************/

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

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

.mb-20 {
    margin-bottom: 20px;
}

p {
color: #525252;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 135%;
letter-spacing: 0.4px;
}
.sub-title{
color: #E8BA11;
font-family: 'Romance Delighter';
font-size: 41px;
font-style: normal;
font-weight: 400;
line-height: 114.634%;
}

.section-title {
color: #191919;
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 148.077%;
}

.small-line {
    width: 79px;
    height: 2px;
    background: #000;
    display: inline-block;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.primary-btn {
    background: linear-gradient(90deg, #B99B2B 0%, #EACF6B 100%);
    padding: 15px 23px;
    color: #FFF;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: 450;
line-height: 17px;
text-transform: uppercase;
    border-radius: 0px;
    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: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    &:hover{
        color: #EACF6B;
        img{
            filter: brightness(0) saturate(100%) invert(97%) sepia(92%) saturate(919%) hue-rotate(326deg) brightness(97%) contrast(90%);
        }
    }
}


.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;
}

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

header.sticky {
    background: rgb(19, 19, 19);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    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 
**************************************/
.banner {
    position: relative;
}
.rotate-text{
    position: absolute;
    bottom: -142px;
    right: 327px;
    z-index: 9;
    &:hover{
        .textcircle{
            animation-play-state: running;
        }
    }
    span{
        width: 74px;
        height: 74px;
        /* background: #fff; */
        position: absolute;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.5s;
    }
}
.textcircle {
    position: relative;
    display: block;
    width: 349px;
    height: 349px;
    animation: rotate 10s linear infinite;
}
.textcircle text {
    font-size: 32px;
    text-transform: uppercase;
    fill: #E8BA11;
    transition: all 0.5s;
}
.textcircle textPath {
letter-spacing: 17px;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.banner::after{
    content: '';
    position: absolute;
    z-index: 1;
    right: 90px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.30);
}
.banner-slider{
    position: relative;
    overflow: clip;
    z-index: 1;
    .slick-dots{
        bottom: 50px;
        text-align: right;
        padding-right: 200px;
    }
    .slick-dots{
        .slick-active{
            outline: 1px solid #FFF;
            outline-offset: 7px;
        }
        li{
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #FFF;
            margin-inline: 10px;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
    .slick-active{
        h5{
            animation-name: slideInDown;
            animation-duration: 0.6s;
            animation-delay: .4s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        h1{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .banner-img{
            transform: scale(1)
        }
    }
}
.banner-img{
    transition: transform 5s ease; /* Smooth transition */
  transform: scale(1.2);
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.banner-item{
    position: relative;
    height: 100dvh;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 47.64%, rgba(0, 0, 0, 0.81) 100%);
        z-index: 0;
    }
    .banner-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: end;
        z-index: 1;
    }
}
.banner-content{
    width: 50%;
    margin-bottom: 114px;
    h5{
        color: #E8BA11;
        font-family: 'Romance Delighter';
        font-size: 41px;
        font-style: normal;
        font-weight: 400;
        line-height: 139.024%;
    }
    h1{
        color: #FFF;
        font-size: 58px;
        font-style: normal;
        font-weight: 400;
        line-height: 124.194% ;
    }
    p{
        color: #FFF;
        font-family: 'Futura Book';
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 127.273%;
        letter-spacing: 0.44px;
    }
}
.banner-item .primary-btn {
    color: #fff;
}

.btn-group {
    display: flex;
    gap: 25px;
}
.social-bar{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 90px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1;
    .social{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        img:hover{
            transform: scale(1.2);
        }
    }
    &::before,
    &::after{
        content: '';
        position: absolute;
        width: 1px;
        height: 18px;
        background: #fff;
        top: 0;
    }
    &::after{
        top: 85%;
    }
}
.fixed-arrow{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90px;
    height: 175px;
    background: #FFF;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    a{
        animation: bounce 4s infinite ease-in-out, wiggle 4s infinite ease-in-out;
    }
}
/************************************
    Our Story
************************************/
.our-story{
    position: relative;
    background: #FFF1E3;
}
.story-left-flower{
    position: absolute;
    left: 0;
    bottom: 100px;
    width: 133.137px;
    height: 307.457px;
}
.story-right-flower{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 156px;
    height: 333px;
}
.side-circle{
    position: absolute;
    right: -92px;
    top: 185px;
    width: 591px;
    height: 591px;
    object-fit: contain;
}
.our-story-content{
    padding: 60px;
}
.our-story-img{
    position: relative;
    padding: 60px;
    height: 700px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .back-circle{
        position: absolute;
        width: 691px;
        height: 691px;
        top: 50%;
        transform: translateY(-50%);
        left: -15px;
        object-fit: contain;
        z-index: -1;
    }
    .back-flower{
        position: absolute;
        width: 250px;
        height: auto;
        object-fit: contain;
        top: -14px;
        left: -98px;
        z-index: -1;
    }
}
.our-story-slider{
    .slick-active{
        .sub-title{
            animation-name: slideInDown;
            animation-duration: 0.5s;
            animation-delay:.5s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .section-title{
            animation-name: slideInUp;
            animation-duration: 0.8s;
            animation-delay:0.7s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay:0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .primary-btn{
            animation-name: slideInUp;
            animation-duration: 1.1s;
            animation-delay:1.1s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .our-story-img{
            animation-name: slideInLeft;
            animation-duration: 1.1s;
            animation-delay:0.8s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .back-flower{
            animation-name: zoomIn;
            animation-duration: 1.6s;
            animation-delay:0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.dotet-line{
    position: relative;
    border-bottom: 1px dashed #000;
    margin-block: 30px;
    .container{
        transform: translateY(17px);
    }
}
.number-box{
    align-items: baseline;
    justify-content: space-around;
    display: flex;
    .years:nth-child(2n){
        transform: translateY(13px);
    }
    .years{
        display: inline-block;
        text-align: center;
        transform: translateY(-8px);
        cursor: pointer;
    }
    span{
        display: inline-block;
        width: 7px;
        height: 7px;
        background: #000000;
        border-radius: 50%;
    }
    .active{
        color: #b99b2b;
        span{
            background: #b99b2b;
        }
    }
}
/************************************
    Key USP
************************************/
.key-usp{
    background: url(https://dppreview4client.com/wordpress/memories/wp-content/uploads/2025/06/MD1_5589-e1750911580734.webp);
    background-size: cover;
    background-repeat: no-repeat;
    .section-title{
        color: #FFF;
   }
   p{
    color: #FFF;
    margin-bottom: 24px;
   }
}
.key-usp-content{
    padding-left: 20px;
}
.key-usp-item{
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-block: 20px;
    p{
        font-size: 24px;
        font-weight: 400;
        line-height: 120.833% ;
        letter-spacing: 0.48px;
        margin: 0;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
    }
}
/************************************
    Types of Wedding
************************************/
.wedding-types{
    background: #FFF;
    position: relative;
}
.type-left-flower{
    position: absolute;
    left: 0;
    top: 50px;
    width: 156px;
    height: 333px;
}
.wedding-type-item {
    position: relative;
    overflow: hidden;
    .rotate-text{
        top: -10px;
        left: -10px;
        bottom: unset;
        right: unset;
        span{
            position: absolute;
            width: 44px;
            height: 44px;
            img{
                filter: brightness(0) saturate(100%) invert(81%) sepia(96%) saturate(5669%) hue-rotate(180deg) brightness(130%) contrast(105%);
            }
        }
    }
    .textcircle {
        width: 150px;
        height: 150px;
        text{
            font-size: 36px;
            fill: #fff;
        }
    }
}
.wedding-type-item::before {
    content: ' ';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.65) 100%);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.wedding-type-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -4px;
}

.wedding-type-item .card-title {
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0;
    color: #fff;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.41) 49.52%, rgba(0, 0, 0, 0.00) 100%);
    backdrop-filter: blur(3.5px);
    text-align: center;
    padding-block: 10px;
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; /* 135% */
    font-family:'Futura Book';
    letter-spacing: 0.4px;
    transition: all 0.5s ease;
}

.hover-content{
    position: absolute;
    width: 95%;
    height: 0;
    padding: 50px 20px;
    bottom: -50%;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(3.5px);
    h3{
        color: #FFF;
        font-family: 'Futura Medium';
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        margin-bottom: 10px;
    }
    p{
        font-family: 'Futura Book';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%;
        letter-spacing: 0.4px;
        margin: 0;
        color: #fff;
    }
}

.wedding-type-item:hover{
    .hover-content{
        height: auto;
        bottom: 5px;
        opacity: 1;
    }
    
    .card-title{
        display: none;
    }
}
/************************************
    Premium Pics  
************************************/
.premium-picks {
    background-color: #FFEAD8;
    position: relative;
    padding: 80px 0;
    position: relative;
}
.side-pics-flower{
    position: absolute;
    right: 0;
    bottom: -70px;
    width: 156px;
    height: 333px;
}
.premium-box {
    height: 100%;
    border-radius: 23px;
    background: #FFF;
    padding: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.premium-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.premium-img {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    overflow: hidden;
    height: 422px;
}

.premium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-box:hover .premium-img img {
    transform: scale(1.1);
}

.content-box {
    padding: 20px;
    h3 {
        color: #B99B2B;
        font-size: 22px;
        font-style: normal;
        font-weight: 450;
        line-height: 27px;
        font-family: 'Futura Book';
        text-transform: capitalize;
    }
    ul li {
        color: #303030;
        font-size: 18px;
        font-style: normal;
        font-weight: 450;
        line-height: 140.222%;
        letter-spacing: 0.36px;
        transition: all 0.3s ease;
        margin-top: 10px;
        position: relative;
        padding-left: 17px;
        &::before {
            content: '✓';
            position: absolute;
            left: 0;
        }
    }
    ul li:hover {
        color: #333;
        transform: translateX(5px);
    }
    ul{
        margin-bottom: 10px;
    }
}
/*************************
 Gallery 
 ************************/
.gallery {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
	h2{
        color: #191919;
        font-size: 122px;
        font-style: normal;
        font-weight: 400;
        line-height: 77px;
        margin-bottom: -70px;
        position: relative;
        z-index: 1;
    }
    .center-slider .slick-slide{
        background-color: #b32532;
        color: #FFF;
        height: auto;
        margin: 0 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.8);
        transition: all 0.4s ease-in-out;
        img{
            aspect-ratio: 1/1;
            object-fit: cover;
            object-position: top center;
            width: 100%;
            height: 100%
        }
      }
      .center-slider .slick-slide,
      .center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned) ~ .slick-cloned[aria-hidden="true"] {
        transform: scale(0.8, 0.8);
        transition: all 0.4s ease-in-out;
      }
      
      /* Active center slide (You can change anything here for cenetr slide)*/
      .center-slider .slick-center,
      .center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"]) + .slick-cloned[aria-hidden="true"] {
        transform: scale(1.1);
        background-color: #000000;
      }
      .center-slider .slick-current.slick-active{
        transform: scale(1.1);
        background-color: #000000;
      }
}
.gallery-flower{
    position: absolute;
    right: 380px;
    top: 0;
    width: 200px;
    height: auto;
    transform: rotateY(180deg);
}
/*********************************
    Testimonials
********************************/
.testimonial{
    position: relative;
    h3{
        color: #191919;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 146.875%;
    }
    .story-left-flower{
        bottom: 0;
        width: 133.137px;
        height: 307.457px;
    }
    .side-pics-flower{
        bottom: -30px;
        z-index: -1;
        width: 362px;
        height: 411px;
    }
}
.testimonial-slider{
    position: relative;
    &::before{
        content: '';
        position: absolute;
        width: 1125px;
        height: 100%;
        flex-shrink: 0;
        left: 0;
        top: 0;
        background: #FFEADB;
        z-index: -1;
    }
    .slick-active{
        .qut{
            animation-name: slideInDown;
            animation-duration: 0.5s;
            animation-delay:.7s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        h3{
            animation-name: slideInDown;
            animation-duration: 0.8s;
            animation-delay:0.7s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInDown;
            animation-duration: 0.9s;
            animation-delay:0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .profile-card-img{
            animation-name: slideInRight;
            animation-duration: 1.1s;
            animation-delay:1.1s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .profile-card-content{
            animation-name: slideInLeft;
            animation-duration: 1.1s;
            animation-delay:0.8s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .testimonial-img{
            animation-name: zoomIn;
            animation-duration: 0.6s;
            animation-delay:0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.testimonial-content{
    padding: 40px;
    .qut{
        margin-bottom: 10px;
    }
    h3{
        margin-bottom: 15px;
    }
    p{
        margin-bottom: 35px;
    }
}
.profile-card{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    h4{
        color: #1D1D1D;
        font-family: 'Futura Medium';
        font-size: 22px;
        font-style: normal;
        font-weight: 450;
    }
    p{
        color: #525252;
        font-size: 18px;
        line-height: 200%;
        letter-spacing: 0.36px;
        margin: 0;
    }
}
.profile-card-img{
    width: 97px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    outline: 1px solid #B99B2B;
    outline-offset: 6px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.testimonial-img{
    padding: 30px;
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.testimonial-slider{
    .slick-arrow{
        width: 41px;
        height: 41px;
        top: 90%;
        right: 45%;
        &::before{
            position: absolute;
            width: 100%;
            height: 100%;
            content: '';
            background: url(../img/right-arrow.webp);
            background-repeat: no-repeat;
            background-size: 100%;
            inset: 0;
            z-index: 2;
        }
    }
    .slick-prev{
        position: absolute;
        transform: rotateY(180deg);
        left: 47%;
        top: 86.8%;
        z-index: 1;
    }
}
/***********************************
    CTA
************************************/
.cta{
    position: relative;
    background-attachment: fixed;
    padding-block: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

    &::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0.82) 0%, rgba(37, 37, 37, 0.06) 115.25%);
    }
    .container{
        position: relative;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        .row{
            width: 100%;
            height: auto;
        }
    }
    .cta-content{
        width: 100%;
        padding-left: 16px;
        .section-title{
            color: #FFF;
        }
        p{
            color: #FFF;
        }
    }
}
/*******************************
Faq 
*******************************/
.faq{
    position: relative;
    background: #FFF1E3;
    .section-title{
        margin-bottom: 30px;
        span{
            &::after{
                bottom: -43px;
            }
        }
    }
    .story-left-flower {
        bottom: 0;
        width: 133.137px;
        height: 307.457px;
    }
    .side-pics-flower {
        bottom: 0;
        width: 133.137px;
        height: 307.457px;

    }
    .gallery-flower{
        left: 60px;
        top: 40px;
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-bottom: 1px solid #000;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 16px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #191919;
    font-family: "Futura Medium";
    font-size: 24px;
    font-style: normal;
    font-weight: 450;
    line-height: 112.5%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__title::after {
    content: ' ';
    position: absolute;
    background: url(../img/faq-down-arrow.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    right: 16px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
}
.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    p{
        color: #414141;
        font-family: "Futura Book";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.4px;
    }
}
/************************
        Booking Date
************************/
.date-booking{
    background: url(../img/book-date-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        background: rgba(0, 0, 0, 0.60);
        z-index: -1;
    }
    .section-title{
        color: #FFF;
    }
    p{
        color: #FFF;
        font-size: 22px;
        line-height: 131.818%;
        letter-spacing: 0.44px;
    }
    form{
        padding-inline: 40px;
    }
    .form-control{
        border: 1px solid rgba(255, 255, 255, 0.30);
        background: rgba(217, 217, 217, 0.10);
        backdrop-filter: blur(4px);
        border-radius: 0;
        padding: 15px 14px;
        color: #FFF;
        &::placeholder{
            color: #FFF;
            font-family: "Futura Book";
            font-size: 20px;
            font-style: normal;
            font-weight: 400;
            letter-spacing: 0.4px;
        }
    }
    .primary-btn{
        margin: 0;
        padding: 16px 50px;
        background: linear-gradient(90deg, #B99B2B 0%, #EACF6B 100%);
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 0.36px;
        &:hover{
            background: linear-gradient(90deg, #EACF6B 0%, #B99B2B 100%);
            color: #FFF;
        }
    }
    
}
/************************
        Follow Us 
************************/
.follow-us{
    padding-block: 30px;
    .section-title{
        color: #000;
        font-family: "Futura Book";
        font-size: 24px;
        font-style: normal;
        font-weight: 450;
        letter-spacing: 0.48px;
        text-transform: uppercase;
    }
    .follow-us-cards{
        position: relative;
        height: 365px;
        overflow: hidden;
        aspect-ratio: 1 / 1.2;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }
        .instagram{
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 1;
            width: 34.364px;
            height: 31.818px;
        }
        &:hover{
            img{
                transform: scale(1.1);
            }
            .instagram{
                transform: none;
            }
        }
    }
    .slick-list{
        margin: 0 -10px ;
    }
    .slick-slide{
        margin: 0 10px ;
    }
}
/************************
        Footer
************************/
footer{
    background: #1A1A1A;
    p, a{
        color: #D7D7D7;
        font-size: 20px;
        line-height: 145%;
        letter-spacing: 0.4px;
    }
    h4{
        color: #FFF;
        font-family: "Futura Medium";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
    }
    .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;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    img{
    	&:hover{
    		transform: scale(1.1);
            
    	}
    }
}
.footer-content{
    position: relative;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
    p{
        margin: 0;
        span{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 59px;
            height: 59px;
            position: absolute;
            left: -5px;
            top: 50%;
            transform: translateY(-50%);
            border: 1px solid rgba(255, 255, 255, 0.10);
            outline: 1px solid rgba(255, 255, 255, 0.10);
            outline-offset: 5px;
            border-radius: 50%;
        }
    }
    a:hover{
        color: #EACF6B;
    }
}
.copyright{
    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) {
    .fixed-arrow{
        width: 70px;
        height: 149px;
        padding-bottom: 15px;
    }
    .social-bar{
        width: 70px;
    }
    .right {
        padding: 40px;
    }
    .sub-title{
        font-size: 36px;
    }
    .section-title{
        font-size: 47px;
    }
    p{
        font-size: 18px;
    }
    .logo{
        width: 138px;
    }
    nav{
        height: 102px;
        padding-inline: 85px;
    }
    .banner {
        & .rotate-text {
            span {
                width: 54px;
                height: 54px;
            }
        }
        .textcircle {
            width: 249px;
            height: 249px;
        }
        .rotate-text {
            bottom: -104px;
            right: 313px;
        }
    }
    .banner::after {
        right: 70px;
    }
    .banner-content{
        h1{
            font-size: 56px;
        }
        h5{
            font-size: 36px;
        }
        p{
            font-size: 20px;
        }
    }
    .our-story-img {
        padding: 50px 70px;
        height: 600px;
        .back-flower {
            width: 200px;
            top: -8px;
            left: -57px;
        }
        .back-circle {
            width: 491px;
            height: 491px;
            left: 27px;
        }
    }
    .side-circle {
        right: -94px;
        top: 146px;
        width: 491px;
        height: 491px;
    }
    .side-pics-flower {
        width: 106px;
        height: 262px;
    }
    .key-usp-content{
        padding-left: 100px;
    }
    .key-usp-item{
        gap: 5px;
        img{
            width: 70px;
        }
        p{
            font-size: 22px;
        }
    }
    .wedding-type-item {
        .textcircle {
            width: 120px;
            height: 120px;
        }
        .rotate-text {
            span {
                width: 33px;
                height: 33px;
            }
        }
    }
    .testimonial {
        .side-pics-flower {
            bottom: -30px;
            z-index: -1;
            width: 212px;
            height: 270px;
        }
        .story-left-flower {
            bottom: 0;
            width: 111.137px;
            height: 207px;
        }
    }
    .testimonial-img {
        padding: 35px;
    }
    .gallery-flower {
        right: 214px;
    }
    .wedding-type-item .card-title{
        font-size: 26px;
    }
    .hover-content {
        h3 {
            font-size: 30px;
        }
        p{
            font-size: 18px;
        }
    }
    .faq {
        .gallery-flower {
            left: 50px;
            top: 20px;
        }
        .story-left-flower {
            height: 253.457px;
        }
        .side-pics-flower {
            width: 111.137px;
            height: 258.457px;
        }
    }
    .gallery {
        h2 {
            font-size: 102px;
        }
    }
    .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 {
        .textcircle {
            width: 200px;
            height: 200px;
            text{
                font-size: 34px;
            }
        }
        .rotate-text {
            bottom: -83px;
            span {
                width: 44px;
                height: 44px;
            }
        }
    }
    .banner-content{
        margin-bottom: 85px;
        h1{
            font-size: 50px;
        }
        h5{
            font-size: 30px;
        }
        p{
            font-size: 18px;
        }
    }
    .our-story-img{
        padding: 40px 60px;
        height: 500px;
        .back-flower {
            width: 170px;
            top: -8px;
            left: -48px;
        }
        .back-circle {
            width: 421px;
            height: 421px;
            left: 24px;
        }
    }
    .side-circle {
        right: -94px;
        top: 115px;
        width: 431px;
        height: 431px;
    }
    .story-left-flower{
        width: 111.137px;
        height: 207.457px;
    }
    .story-right-flower {
        width: 126px;
        height: 222px;
    }
    .key-usp-item {
        img {
            width: 60px;
        }
        p{
            font-size: 16px;
        }
    }
    .wedding-type-item .card-title {
        font-size: 22px;
        padding-block: 7px;
    }
    .hover-content {
        h3 {
            font-size: 26px;
        }
        p{
            font-size: 15px;
        }
    }
    .type-left-flower {
        top: 65px;
        width: 126px;
        height: 222px;
    }
    .content-box {
        padding: 16px;
        h3{
            font-size: 20px;
        }
        ul li{
            font-size: 15px;
        }
    }
    .premium-img {
        height: 357px;
    }
    .testimonial {
        h3 {
            font-size: 26px;
            margin-bottom: 5px;
        }
        .side-pics-flower {
            width: 186px;
            height: 246px;
        }
    }
    .profile-card-img {
        width: 67px;
        height: 98px;
    }
    .profile-card {
        h4 {
            font-size: 20px;
        }
        p{
            font-size: 16px;
        }
    }
    .testimonial-slider {
        .slick-prev {
            left: 46%;
            top: 86.2%;
        }
    }
    .testimonial-slider {
        &::before {
            content: '';
            width: 960px;
        }
    }
    .testimonial .profile-card-content{
        p{
            margin: 0;
        }
    }
    .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;
        }
    }
    .date-booking {
        .form-control {
            padding: 10px 12px;
        }
        .primary-btn {
            padding: 11px 35px;
            font-size: 14px;
        }
        p {
            font-size: 18px;
        }
    }
    .follow-us {
        .follow-us-cards {
            height: 265px;
            .instagram{
                width: 28.364px;
                height: 26.818px;
            }
        }
    }
    .gallery {
        h2 {
            font-size: 85px;
        }
    }
    .gallery-flower {
        width: 180px;
        top: 15px;
    }
    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;
    }
    .banner-item{
        height: 60dvh;
    }
    .banner {
        .rotate-text {
            right: 210px;
        }
    }
    .banner-slider {
        .slick-dots {
            bottom: 30px;
            padding-right: 95px;
        }
    }
    .banner-content{
        h1{
            font-size: 38px;
        }
        p{
            font-size: 16px;
        }
    }
    .social-bar{
        width: 60px;
    }
    .fixed-arrow{
        width: 60px;
        height: 130px;
        padding-bottom: 15px;
    }
    .banner::after {
        right: 60px;
    }
    .section-title {
        font-size: 28px;
    }
    .our-story-img {
        padding: 30px 20px;
        height: 490px;
        .back-flower {
            width: 140px;
            top: -12px;
            left: -70px;
        }
        .back-circle {
            left: 0px;
        }
    }
    .side-circle {
        right: -208px;
        top: 115px;
    }
    .story-left-flower {
        width: 90.137px;
        height: 157.457px;
    }
    .story-right-flower {
        width: 62px;
        height: 147px;
        bottom: 50px;
    }
    .wedding-type-item {
        .textcircle {
            width: 105px;
            height: 105px;
        }
        .rotate-text {
            span {
                width: 22px;
                height: 22px;
            }
        }
    }
    .key-usp{
        background-position: -170px;
        p{
            margin-bottom: 20px;
        }
    }
    .key-usp-content {
        padding-left: 10px;
    }
    .wedding-type-item .card-title{
        font-size: 20px;
        padding-block: 7px;
    }
    .hover-content {
        h3 {
            font-size: 22px;
        }
        P{
            font-size: 14PX;
        }
    }
    .premium-img {
        height: 288px;
    }
    .content-box {
        padding: 10px;
        h3 {
            font-size: 20px;
        }
        ul li {
            font-size: 14px;
        }
    }
    .gallery {
        h2 {
            font-size: 65px;
        }
    }
    .gallery-flower {
        width: 150px;
        top: 25px;
        right: 140px;
    }
    .testimonial-content{
        padding: 25px;
        .qut {
            margin-bottom: 0px;
        }
    }
    .testimonial {
        h3 {
            font-size: 24px;
        }
        p{
            font-size: 16px;
            margin-bottom: 20px;
        }
        .story-left-flower {
            width: 58.137px;
            height: 109px;
        }
        .side-pics-flower {
            width: 85px;
            height: 144px;
        }
    }
    .testimonial-slider {
        &::before {
            width: 790px;
        }
        .slick-prev{
            left: 44%;
            top: 85.2%;
        }
    }
    .testimonial-img {
        padding: 30px 20px;
    }
    .cta {
        background-attachment: unset;
    }
    .profile-card-img {
        width: 58px;
        height: 88px;
        outline-offset: 6px;
    }
    .profile-card{
        gap: 20px;
    }
    .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;
        }
    }
    .date-booking {
        .form-control {
            padding: 7px 10px;
            &::placeholder {
                font-size: 14px;
            }
        }
        .primary-btn {
            padding: 9px 27px;
            font-size: 12px;
        }
    }
    .follow-us {
        .follow-us-cards {
            height: 188px;
        }
        .follow-us-cards {
            .instagram {
                width: 22.364px;
                height: 20.818px;
            }
        }
    }
    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 {
        .rotate-text {
            bottom: -25px;
            right: 195px;
        }
    }
    .banner-content {
        h5 {
            font-size: 22px;
        }
        h1 {
            font-size: 34px;
        }
    }
    .our-story-item{
        .col-lg-5{
            order: -1;
        }
    }
    .our-story-img {
        padding: 0;
        height: auto;
        aspect-ratio: 1 / 1.2;
        margin: auto;
    }
    .our-story-content{
        padding: 27px 0px;
    }
    .sub-title {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .story-left-flower {
       display: none;
    }
    .key-usp {
        background-position: left;
    }
    .key-usp-content {
        padding: 10px;
    }
    .type-left-flower {
        display: none;
    }
    .premium-img {
        height: auto;
    }
    .content-box {
        padding: 30px;
    }
    .date-booking{
        .primary-btn {
            border: none;
        }
    }
    .gallery-flower {
        right: 112px;
        width: 100px;
        top: -2px;
    }
    .gallery {
        padding-top: 60px;
        padding-bottom: 2px;
        h2 {
            font-size: 50px;
        }
    }
    .testimonial-item{
        .col-lg-5{
            order: -1;
        }
    }
    .testimonial-slider {
        &::before {
            width: 694px;
        }
        .slick-arrow {
            top: 94%;
            right: 8%;
        }
        .slick-prev {
            left: 70%;
            top: 92.4%;
        }
    }
    .testimonial-img {
        padding: 20px;
    }
    .testimonial-content {
        padding: 25px;
        padding-top: 0;
    }
    .follow-us {
        .follow-us-cards {
            height: auto;
        }
    }
    .follow-us {
        .section-title{
            font-size: 22px;
        }
    }
    footer {
        & .col-lg-10 {
            .col-lg-4:nth-child(2) {
                padding-left: 30px;
                border-right: none;
            }
        }
    }
}

@media (max-width: 575.98px) {
    .social-bar{
        display: none;
    }
    .fixed-arrow{
        display: none;
    }
    .banner{
        &::after{
            display: none;
        }
        .rotate-text {
            bottom: -38px;
            right: -12px;
            span {
                width: 34px;
                height: 34px;
            }
        }
        .textcircle {
            width: 130px;
            height: 130px;
        }
    }
    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;
    }
    .call {
        width: 32px;
        height: 32px;
        padding: 10px;
        border-radius: 50%;
        background: linear-gradient(90deg, #B99B2B 0%, #EACF6B 100%);
        span{
            display: none;
        }
    }
    nav{
        padding-inline: 10px;
        height: 75px;
    }
    .primary-btn {
        font-size: 10px;
        padding: 6px 10px;
        span {
            width: 15px;
        }
    }
    .logo {
        width: 95px;
    }
    .btn{
        padding-left: 0;
    }
    .banner-item {
        height: 100dvh;
        .container{
            justify-content: center;
        }
        .banner-img {
            object-position: 75%;
        }
    }
    .banner-content {
        width: 80%;
        margin-bottom: 80px;
        text-align: center;
        h1 {
            font-size: 24px;
        }
        h5 {
            font-size: 18px;
        }
    }
    .banner-slider {
        .slick-dots {
            bottom: 10px;
            padding-right: 0;
            text-align: center;
            li{
                width: 4px;
                height: 4px;
            }
            .slick-active{
                outline-offset: 5px;
            }
        }
    }
    .social-bar {
        width: 30px;
    }
    .social{
        a{
            width: 20px;
        }
    }
    .fixed-arrow {
        width: 30px;
        height: 62px;
        padding-bottom: 5px;
        a{
            width: 20px;
        }
    }
    .fixed-btn{
        right: 0px;
        bottom: 40px;
    }
    .banner::after {
        right: 30px;
    }
    .sub-title {
        font-size: 20px;
    }
    .section-title {
        font-size: 22px;
    }
    .key-usp {
        background-position: center;
        position: relative;
        z-index: 1;
        &::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #000000 0%, rgb(255 255 255 / 0%) 100%);
            z-index: -1;
        }
    }
    .key-usp-content {
        padding: 0px;
    }
    .key-usp-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
        padding-block: 5px;
        img {
            width: 45px;
        }
        p {
            font-size: 14px;
            margin-bottom: 0;
        }
    }
    .hover-content {
        h3 {
            font-size: 20px;
        }
    }
    .wedding-type-item .card-title{
        font-size: 18px;
        padding-block: 5px;
    }
    .content-box {
        padding: 15px;
    }
    .side-pics-flower {
        width: 82px;
        height: 170px;
        bottom: -55px;
    }
    .testimonial-slider {
        &::before {
            width: 350px;
        }
        .slick-arrow{
            &::before {
                background-size: 70%;
            }
        }
        .slick-arrow {
            top: 97%;
            right: 3%;
        }
        .slick-prev {
            left: 68%;
            top: 94.3%;
        }
    }
    .testimonial {
        .side-pics-flower {
            display: none;
        }
        .story-left-flower {
            display: none;
        }
    }
    .testimonial-content {
        padding: 20px;
        .qut {
            width: 40px;
        }
    }
    .testimonial {
        h3 {
            font-size: 20px;
        }
    }
    .content-box {
        ul li {
            font-size: 15px;
        }
    }
    .cta{
        background-position: 20%;
        padding-block: 30px;
        .cta-content {
            padding-left: 10px;
            text-align: center;
        }
        .btn-group{
            justify-content: center;
        }
    }
    .profile-card-img{
        width: 38px;
        height: 59px;
        outline-offset: 4px;
    }
    .profile-card {
        h4 {
            font-size: 18px;
        }
    }
    .our-story-img {
        .back-circle {
            display: none;
        }
        .back-flower {
            display: none;
        }
    }
    .side-circle {
        display: none;
    }
    .story-right-flower {
        width: 66px;
        height: 126px;
        bottom: 33px;
    }
    .faq {
        .section-title {
            margin-bottom: -10px;
        }
        .gallery-flower {
            display: none;
        }
    }
    .accordion__item {
        .accordion__title {
            font-size: 16px;
            padding-left: 5px;
            padding-right: 30px;
        }
        & .accordion__content {
            padding: 6px;
            p {
                margin-bottom: 5PX;
            }
        }
    }
    .accordion__title::after{
        width: 17px;
        height: 15px;
        right: 8px;
        top: 7px;
    }
    .date-booking {
        .primary-btn {
            padding: 6px 20px;
            font-size: 10px;
        }
        p{
            margin-top: 5px;
        }
        form {
            padding-inline: 15px;
        }
    }
    .follow-us {
        .section-title {
            font-size: 18px;
        }
        .slick-list{
            margin: 0px -5px;
        }
        .slick-slide{
            margin: 0 5px ;
        }
    }
    .footer-social{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        img{
            width: 20px;
        }
    }
    footer {
        & .col-lg-10 {
            .col-lg-4:nth-child(2) {
                padding-left: 0px;
                .footer-content {
                    margin-left: 10px;
                }
            }
        }
        .col-lg-10 {
            padding-block: 8px;
            margin-block: 8px;
        }
    }
    .footer-content {
        padding-left: 60px;
        & p {
            span {
                width: 30px;
                height: 30px;
                padding: 8px;
                left: 12px;
                outline-offset: 2px;
            }
        }
    }
    .gallery-flower {
        right: 35px;
        width: 70px;
        top: 6px;
    }
   .gallery {
        .center-slider .slick-slide{
            margin-inline: 10px;
        }
        h2 {
            font-size: 45px;
            margin-bottom: -60px;
        }
    }
    .testimonial-img {
        padding: 10px;
    }
    .testimonial-content {
        padding: 10px;
    }
}
