/* GLOBALS START */
@font-face {
    font-family: "catchymager";
    src: url('/font/CatchyMager-Normal.ttf') format('truetype');
}

:root{
    --col-primary: #93252A;
    --col-primary-dark: #521417;
    --col-secondary: #eeb0c5;
    --col-text-prim: #F5B98C;
    --col-text-head: #e0e0e0;
    --font-prim: 'Alegreya SC', serif;
    --font-secondary: 'catchymager', serif;
    --swiper-pagination-bottom: 4rem;
    --nav-height: 6rem;
    --h2-size: clamp(1.5rem, 4vw, 4rem);
    --h3-size: clamp(2rem, 3.6vw, 4rem);
    --def-shadow: -1px 2px 4px #0000006e;
    --h4-size: clamp(1.2rem, 1.8vw, 1.8rem);
    --h5-size: clamp(1.2rem, 1.6vw, 2rem);
    --def-border: var(--col-primary) solid 14px;
    --full-page-text: max(1.8vw, 1.5rem);
    --col-black: rgb(24, 24, 24);
    --heading: clamp(1.8rem, 2.6vw, 2.6rem);
    --sub-heading: clamp(2rem, 2vw, 2rem);
    --desc: clamp(1.2rem, 1.2vw, 1.2rem);
}

html, body{
    position: relative;
    box-sizing: border-box;
    overflow-x: hidden;
    /* text-align: center; */
}

img,
svg,
video{
    max-width: 100%;
    display: block;
}

* {
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: inherit;
    position: relative;
}

.fullVH{
    height: calc(100vh - var(--nav-height));
    height: calc(100svh - var(--nav-height));
    overflow: hidden;
}

.fullVH-min{
    min-height: calc(100vh - var(--nav-height));
    min-height: calc(100svh - var(--nav-height));
    overflow: hidden;
}

.defPad{
    padding: 80px 20vw;
}

@media screen and (width < 1250px){
    .defPad{
        padding: 80px 10vw;
    }
}

@media screen and (width < 800px){
    .defPad{
        padding: 80px 5vw;
    }
}

h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    color: var(--col-text-prim);
    text-shadow: var(--def-shadow);
    font-family: var(--font-prim);
}

h2{
    font-size: var(--heading);
}

h3{
    font-size: var(--h3-size);
    padding: 1rem 0;
}

h4{
    font-size: var(--h4-size);
}

h5{
    font-size: var(--h5-size);
}

section {
    position: relative;
}

section *{
    position: relative;
    z-index: 2;
}

.overlayBg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: opacity(0.2);
    background-size: cover;
    z-index: 1;
}

.overlayBgFixed{
    background-attachment: fixed;
    filter: opacity(1);
}

.flex{
    display: flex;
    place-content: center;
    align-items: center;
}

.pageContent{
    padding-top: var(--nav-height);
}

.centerItem{
    display: flex;
    align-items: center;
}

.heading{
    font-size: var(--heading);
}

#loader{
    height: 100dvh;
    width: 100dvw;
    background-color: var(--col-primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1001;
    opacity: 1;
    transition: opacity 1s ease-out;
}

#loader img{
    border: 8px solid var(--col-primary);
    width: 15rem;
    height: 15rem;
    background-color: var(--col-text-prim);
    border-radius: 50%;
    box-shadow: var(--def-shadow);
}

@keyframes rotate360{
    from{
        transform: rotateY(0deg);
    }
    to{
        transform: rotateY(360deg);
    }
}
/* GLOBALS END */

/* NAV STARTS */
nav{
    display: flex;
    flex-direction: row;
    background-color: var(--col-primary);
    box-shadow: #0000004f 0px 7px 16px 0;
    text-align: center;
    height: var(--nav-height);
    width: 100%;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
}

#logo{
    --size: max(9vw, 6rem);
    z-index: 99;
    border: var(--col-primary) 0.5rem solid;
    border-radius: 50%;
    background-color: var(--col-text-prim);
    box-shadow: #0000003d 0px 7px 12px 0px;
    margin-left: 3vw;
    height: var(--size);
    flex-basis: var(--size);
    flex-shrink: 0;
    position: relative;
    top: calc(var(--nav-height) / 2);
}

#menu{
    font-family: var(--font-prim);
    color: var(--col-text-prim);
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
    margin-right: 4vw;
    height: 100%;
}

ul{
    list-style-type: none;
}

#menu > ul{
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    height: 100%;
    margin: 0;
    justify-items: center;
    padding: 0;
}

#menu > ul > li{
    padding: 1.5vw 1.5vw;
}

@media screen and (width < 1500px){
    :root{
        --nav-height: 4rem;
    }
}

#menu li{
    text-shadow: 2px 1px 2px #000000c7;
    max-height: 100%;
}

.active::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--col-text-prim);
    position: absolute;
    bottom: -2px;
    left: 0;
}

.subMenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 0 0 0 0;
    text-align: left;
    background-color: var(--col-primary);
    display: none;
    top: var(--nav-height);
}
.subMenu > * {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.548);
}

.subMenu > li:hover {
    background-color: var(--col-primary-dark);
}

.subMenuParent{
    cursor: pointer;
}

.subMenuParent span{
    width: 0.7rem;
}

.subMenuParent svg{
    fill: var(--col-text-prim);
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.63));
    padding-left: 0.3rem;
}

.subMenuParent .arrow-down{
    display: none;
}

.subMenuParent:hover .subMenu{
    display: flex;
}

.subMenuParent:hover .arrow-right{
    display: none;
}

.subMenuParent:hover .arrow-down{
    display: block;
}


/* NAV ENDS */
/* HERO SLIDER */

.fullPageSlider .img-wrapper {
 width: 100%;
 height: 100%;
 position: relative;

}

.fullPageSlider .img-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}

.fullPageSlider .heroImgGrad{
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0 212 255 / 0%) 100%);
    width: 100%;
    height: 45%;
    z-index: 3;
    position: absolute;
    bottom: 0;
}

.fullPageSlider{
    height: 100%;
    width: 100%;
}

.fullPageSlider .slider-caption{
    position: absolute;
    left: 50%;
    top:calc(45% + 4.5vw);
    font-family: var(--font-secondary);
    z-index: 4;
    color: var(--col-text-head);
    font-size: clamp(2.3rem, 3.5vw, 4.5rem);
    transform: translate(-50%, 0);
    text-align: center;
    text-shadow: 0px 3px 5px #000000d1;
}

.fullPageSlider .swiper-pagination-bullet{
    width: max(0.6rem, 1vw);
    height: max(0.6rem, 1vw);
    margin: 0 0.3rem !important;
    bottom: 3rem !important;
    background-color: var(--col-text-prim);
}

.heroEmbel{
    position: absolute;
    bottom: 0px;
    z-index: 5;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
    overflow: hidden;
}

.heroEmbel img{
    max-width: 24%;
    min-width: 10rem;
}

.embelFlwrR{
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

/* HERO SLIDER END*/

.gradbg{
    background-image: radial-gradient(circle, rgba(221,155,138,1) 0%, rgba(0,212,255,0) 38%),linear-gradient(
                        180deg,
                        hsl(326deg 43% 77%) 0%,
                        hsl(337deg 42% 79%) 8%,
                        hsl(350deg 41% 81%) 17%,
                        hsl(5deg 42% 82%) 27%,
                        hsl(19deg 47% 82%) 38%,
                        hsl(29deg 53% 82%) 51%,
                        hsl(36deg 58% 81%) 64%,
                        hsl(43deg 63% 81%) 77%,
                        hsl(48deg 67% 81%) 90%,
                        hsl(52deg 72% 80%) 100%
                    );
}

/* TEXT SLIDER START */

.textSlider{
    width: 100%;
}

.txtSliderWrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.txtSliderWrapper h2{
    padding-top: 6rem;
    font-family: var(--font-prim);
    text-align: center;
    font-size: max(3vw, 1.6rem);
    width: min(80%, 50rem);
    margin: 0;
    padding-bottom: 3rem;
    color: var(--col-primary);
    /* text-shadow: 0 0 4px #0000002e; */
    font-weight: 100;
}

.txtSliderWrapper p{
    font-family: var(--font-secondary);
    width: 80%;
    max-width: 50rem;
    text-align: center;
    margin: auto;
    /* text-shadow: 0 0 4px #0000002e; */
    color: var(--col-primary);
    font-size: max(1.5vw, 1.2rem);
    line-height: min(2.2rem, 7vw);
}

.txtSliderWrapper .swiper-wrapper{
    padding-bottom: 12rem;
}

.txtSliderWrapper .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 0px !important;
}

.txtSliderWrapper .swiper-pagination-bullet{
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.5rem !important;
    background-color: var(--col-primary);
}

.textSliderEmble{
    width: 217px;
    position: absolute;
    bottom: 104px;
    left: 50%;
    transform: translate(-50%, 0);
}

.textSliderEmble img{
    width: 100%;
}

/*TXT SLIDER ENDS*/
/*FULL PAGE TXT SLIDER STARTS*/

.fullPageTxtSlider{
    width: 100%;
    height: 100%;
}

.fullPageTxtSlider p {
    font-family: var(--font-prim);
    font-size: var(--full-page-text);
    color: var(--col-black);
    background-color: var(--col-text-head);
    text-align: center;
    padding: 5rem calc(5vw + 5px);
}

.fullPageTxtSlider p::after {
    background-image: url('/img/about/embel.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: table;
    content: '';
    position: absolute;
    top: 0;
    width: 406px;
    height: 151px;
    transform: translate(-50% ,-74%);
    left: 50%;
}

.fullPageTxtSlider p::before {
    background-image: url('/img/about/embel.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: table;
    content: '';
    position: absolute;
    bottom: 0;
    width: 406px;
    height: 151px;
    transform: translate(-50% ,75%) rotatez(-180deg);
    left: 50%;
}

.fullPageTxtSlider .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullPageTxtSlider .swiper-pagination-bullet{
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.5rem !important;
    background-color: var(--col-primary);
}

/*FULL PAGE TXT SLIDER ENDS*/
/* FEATURED ON START */
.headRight h2{
    font-family: var(--font-prim);
    color: var(--col-text-prim);
    text-align: center;
    font-size: min(3.5rem, 8vw);
    font-weight: 100;
    background-color: var(--col-primary);
    padding: 30px 0;
    box-shadow: inset #0000002e 0px 0px 20px 0px;
    margin: 0;
}

.featSites{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
    justify-content: center;
    align-items: center;
    gap: 90px;
    max-width: 80%;
    width: calc(10vw + 800px);
    margin: auto;
    padding: 119px 0;
}

.featSites img{
    width: 100%;
}

/* FEATURED ON ENDS */

/* SOCIAL MED START */

.social{
    padding-top:0;
}

.socialMedWrapper{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    /*padding-bottom: 4rem;*/
    padding: 4rem 0;
}

.thumbs > div{
    width: 100%;
    padding: 2rem 10rem;
}

.thumbs img{
    width: 100%;
}

.socialMeds{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
}

.socialMeds > div{
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    width: 290px;
}

.socialMeds h4{
    text-align: center;
    font-family: var(--col-primary);
    font-size: 2rem;
    padding: 1rem 0;
    margin: 0;
}

.socialMeds a{
    text-align: center;
    padding-top: 0.5rem;
    font-family: var(--col-secondary);
    color: black;
    font-size: 0.7rem;
}

.trailSlider{
    padding-top:2rem;
    width: 100%;
}

.trailSlider img{
    width: 100%;
    height: 100%;
}

.social{
    padding-bottom: 0;
}

/*TESTIMONIALS START*/

.testi{
    background-image: radial-gradient(circle, rgba(221,155,138,1) 0%, rgba(0,212,255,0) 38%),linear-gradient(
            180deg,
            hsl(326deg 43% 77%) 0%,
            hsl(337deg 42% 79%) 8%,
            hsl(350deg 41% 81%) 17%,
            hsl(5deg 42% 82%) 27%,
            hsl(19deg 47% 82%) 38%,
            hsl(29deg 53% 82%) 51%,
            hsl(36deg 58% 81%) 64%,
            hsl(43deg 63% 81%) 77%,
            hsl(48deg 67% 81%) 90%,
            hsl(52deg 72% 80%) 100%
    );
    position: relative;
    z-index: 1;
    overflow-y: hidden;
    position: relative;
    overflow: hidden;
}

.testi *{
    position: relative;
    z-index: 10;
}

.testiTop{
    width: clamp(60%, 800px, 100%);
    margin-left: auto;
}

.testiTop svg{
    font-family: var(--font-prim);
}

.testiSlider{
    width: 100%;
}

.testiSlider .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
}

.testiImgWrapper{
    width: 20vw;
    height: 20vw;
    min-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: var(--col-primary) solid 14px;
    z-index: 10;
    position: relative;
}

.testiImgWrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testiText{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--col-primary);
    margin: 60px 0;
    padding: 20px 20px 20px 105px;
    position: relative;
    left: -120px;
    z-index: 5;
    border-radius: 20px;
}

.testiText h4{
    font-family: "Times New Roman", serif;
    font-size: max(1.8vw, 1.8rem);
    color: var(--col-text-prim);
    margin: 0;
    padding: 5px 0 5px 0;
    text-align: center;
}

.testiText p.designation{
    text-align: center;
    padding: 5px;
    font-size: max(1.1vw, 1.2rem);
    font-weight: bold;
}

.testiText p{
    font-family: var(--font-secondary);
    font-size: max(0.9vw, 1rem);
    color: var(--col-text-prim);
    margin: 0;
    width: 90%;
    text-align: justify;
}

.testiSlider .swiper-wrapper{
    padding-bottom: 4vw;
    margin-top: -5vw;
}

.testiSlider .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 0px !important;
}

.testiSlider .swiper-pagination-bullet{
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.5rem !important;
    background-color: var(--col-primary);
}
.testBotHead{
    margin: auto;
    position: relative;
    padding-bottom: 100px;
}

.testi::before{
    width: 202px;
    height: 241px;
    display: table;
    content: '';
    background-image: url(../svg/flwr.svg);
    background-size: cover;
    position: absolute;
    top: 76%;
    left: calc(-9% + 202px);
    z-index: 2;
    filter: opacity(0.5);
}

.testBotHead h5{
    margin: 0;
    text-align: center;
    font-family: var(--font-prim);
    color: var(--col-primary);
    font-size: clamp(1.5rem, 5vw, 3rem);
}

.banner{
    background-image: url("../img/bg3.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 2;
}

.banner::after{
    width: 100%;
    height: 100%;
    display: table;
    content: '';
    background-color: #2b0e0fde;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;

}

.banner h2{
    text-align: center;
    margin: 0;
    padding: 80px 20px;
    font-family: var(--font-prim);
    color: var(--col-text-prim);
    font-size: clamp(1.6rem, 2vw, 2.5rem);
    position: relative;
    z-index: 2;
}

footer{
    background-color: var(--col-text-prim);
}

.contact{
    width: min(700px, 100% - 4rem);
    padding: 80px 0;
    margin: auto;
}

.contact h2{
    margin: 0;
    font-family: var(--font-prim);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 100;
    padding-bottom: 30px;
    color: var(--col-primary);
}

.contact a{
    font-family: sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.contact .contactInfo{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact .contactInfo > div{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contact a img{
    width: 2.3rem;
    padding-right: 0.3rem;
}

.copyright{
    width: 100%;
    font-family: sans-serif;
    background-color: var(--col-primary);
    color: var(--col-text-prim);
    padding: 5px 0;
    text-align: center;
    font-size: max(0.7rem, 0.8vw);
}

.copyright p{
    padding: 0 10px;
}

/*INTRO SECTION STARTS*/
.intro{
    position: relative;
    background-color: var(--col-primary);
    border-radius: 3rem;
    color: var(--col-text-prim);
}

.introTxt{
    padding: 3.5vw 22vw 3.5vw 3.5vw;
}

.introImg{
    width: max(25vw, 18rem);
    height: max(25vw, 18rem);
    position: absolute;
    overflow: hidden;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    border: var(--def-border);
    transform: translateX(42%);
    box-shadow: -13px 6px 20px 0px #00000038;
}

@media screen and (width < 1200px){
    h2, h3, h4, h5{
        text-align: center;
        padding: 1rem 1rem;
    }
    h3{
        font-size: 2.1rem;
    }
    .introTxt{
        padding: max(4rem, 3vw + 7rem) 3.5vw 3.5vw 3.5vw;
    }
    .introImg{
        width: max(25vw, 16rem);
        height: max(25vw, 16rem);
        position: absolute;
        overflow: hidden;
        top: 0;
        right: 50%;
        border-radius: 50%;
        border: var(--def-border);
        transform: translate(50%, -50%);
        box-shadow: 2px 10px 20px 0px #00000038;
    }
}
/*INTRO SECTION ENDS*/
/*PILL TEXT STARTS*/

.pillTxt{
    font-family: var(--font-prim);
    color: var(--col-text-prim);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: calc(4vw + 10px);
    gap: calc(4svw + 10px);
    width: 100%;
}


.pillTxt .pill{
    background-color: var(--col-primary);
    text-align: center;
    border-radius: 2rem;
    padding: 2rem;
    height: fit-content;
    width: 100%;
    align-self: center;
}

.pillTxt p {
    padding: 0.4rem 0px;
    font-size: var(--h5-size);
}

.pill li{
    list-style-type: disc;
    text-align: left;
    font-size: var(--h5-size);
}

.pill figcaption{
    font-weight: bold;
}

.title-left{
    max-width: 720px;
}

/*PILL TEXT ENDS*/

/*CARDS UI STARTS*/

.pills{
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    align-items: center;
}

.gridContent{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 7vw;
    gap: 7svw;
}
.gridContent li{
    color: var(--col-text-prim);
    font-size: var(--desc);
    list-style-type: disc;
}

.pills img{
    box-shadow: var(--def-shadow);
    border-radius: 2rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.fullWidth{
    width: calc(100vw - 10vw);
}


.pills .gridContent > *{
    padding: 0 10px;
    background-color: var(--col-primary);
    border-radius: 2rem;
    box-shadow: 0px 3px 11px 0 #00000061;
}

.pills .gridContent div{
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.pills p{
    font-size: var(--desc);
    font-weight: 100;
    text-align: center;
}

.pills h4{
    font-size: var(--sub-heading);
    padding: 0.5rem 1rem;
    text-align: center;
}

.title-right{
    background-color: var(--col-primary);
    text-align: center;
    margin-left: auto;
    border-radius: 4rem 0 0 4rem;
    padding: 1.4rem 7vw;
    width: max(314px, 50vw);
    font-size: var(--heading);
    position: relative;
}

.iconCards img{
    --size: 12rem;
    height: var(--size);
    width: var(--size);
    background-color: var(--col-text-head);
    border-radius: 50%;
    margin: auto;
}

/* CARDS UI ENDS */

/* DESTINATION WEDDING TYPE */
.pills .title-right::after{
    display: block;
    content: '';
    height: 11rem;
    width: 7rem;
    background-image: url(../img/destination_wedding/bird.png);
    position: absolute;
    top: -30px;
    left: -14vw;
    background-size: cover;
}
/* DESTINATION WEDDING TYPE */

/* DESTINATION WEDDING SERVICES */
/* DESTINATION WEDDING SERVICES */


@media (width < 1350px){
    .testiSlider .swiper-slide{
        flex-direction: column;
    }
    .testiText{
        width: min(600px, 80vw);
        display: flex;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--col-primary);
        margin: 0px 0;
        padding: 80px 20px 30px 20px;
        position: relative;
        left: 0;
        top: -80px;
        z-index: 5;
        border-radius: 20px;
    }
}

.charity figcaption{
    font-size: 1.4rem;
}

.charity{
    display: flex !important;
  place-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;  
}

.charity div:nth-child(1){
    display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

.charity figure ul {
    width: 100%;
}

.charity li{
    font-size: clamp(1.1rem, 1.2vw, 1.3rem) !important;
}