/* whatsapp icon styling */
body a.fixed-popup {
    position: fixed;
    left: 12px;
    text-align: center;
    color: #ffffff !important;
    z-index: 9999;
  }
  body a.fixed-popup.whatsapp-popup-alt {
    bottom: 30px;
    width: 60px;
    height: 60px;
    line-height: 56px;
    z-index: 9999;
  }
  body a.fixed-popup.whatsapp-popup-alt svg {
    width: 100%;
    height: 100%;
    z-index: 9999;
  }
  /* top header for numbera nd social media */
.top-header{
    width: 100%;
    height: auto;
    background-image: url("../images/top-header-bg.jpg") !important;

    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
}
.top-header .innerPartHead section{
    display: inline-block;
}

@media (max-width:991px) {
    .top-header{
        flex-direction: column;
        text-align: center;
    }
    .top-header .innerPartHead section{
        column-gap: 10px;
    }
}
/* navbar strat*/
.header{
    position: absolute;
    top: 40px;
    z-index: 9999;
}
.header .headContainer{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: transparent;
    z-index: 999;
}
.header .logo{
display: inline-flex;
width: 20%;
}

.header .logo img{
    width: 50%;
    height: 50%;
    vertical-align: left;
}
.header .menu .head{
    display: none;
}
.header .menu ul{
    list-style: none;
}
.header .menu > ul > li{
    display: inline-block;
}
.header .menu > ul > li:not(:last-child){
    margin-right: 40px;
}
.header .menu .dropdown{
    position: relative;
}
.header .menu a{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    color: rgb(255, 251, 251);
    line-height: 1.5;
    display: block;
}
.header .menu > ul > li > a{
padding: 24px 0;
color: #000;
font-weight:700;
font-size: larger;
}
.header .men1 > ul > li > a{
    color: #fff;
}
.header .menu > ul > .dropdown > a{
    padding-right: 15px;
}
.header .menu i{
    font-size: 10px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: #000;
    top: calc(50% -5px);
}
.header .menu > ul > li > i{
    right: 0;
    top: 45%;
}
.header .menu .sub-menu{
    position: absolute;
    top: 73%;
    left: 0;
    width: max-content;
    padding: 15px 0;
    background-image: linear-gradient(to right,#cf8368,#de9e86);
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
    z-index: 999;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden; 
    /* opacity: 0; */
}
.header .menu .sub-menu-right{
    left: 100%;
    top: 0;
    width: fit-content;
    height: fit-content;
    padding: 15px 0;
    z-index: 999;
}
.header .sub-menu .sub-menu-right li img{
    width: 22vw;
    height: fit-content;
}
.header .menu li:hover > .sub-menu{
    opacity: 1;
    z-index: 9999;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}

.header .menu .sub-menu a{
    padding: 6px 24px;
    color: #ffffff;
}
.header .menu .sub-menu .dropdown > a{
    padding-right: 34px;
}
.header .menu .sub-menu span{
    background-image: linear-gradient(hsl(0,0%,100%), hsl(0,0%,100%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}
.header .menu .sub-menu li:hover > a > span{
    background-size: 100% 1px;
}
.header .menu .sub-menu i{
    transform: rotate(-90deg);
    right: 20px;
    top:14px;
}

.header-right{
    display: flex;
}
.header-right > *{
    margin-left: 25px;
}
.header-right .open-menu-btn{
 display: none;
}
.header .menu .navButton{
    width: 116px;
    padding: .4rem;
    background-color: red;
    color: #fff;
    font-weight: 500;
    border-radius: 14px;
}
.header .menu .navButton:hover{
    background-color: #ffff;
    color: #ff0000;
}

@media (max-width: 991px) {
.header .headContainer {
    display: flex
;
    align-items: center;
    background-color: transparent;
    z-index: 999;
    justify-content: space-between;
    padding: 0px 12px;
}
}
@media(max-width:472px){
    .header{
        top: 86px !important;
       
        padding: 0px 0;
        background-image: url(../images/top-header-bg.jpg) !important;

    }
}
@media(max-width:991px){
    .header{
        /*top: 88px;
        padding: 0px 0;*/
         top: 64px;
        padding: 0px 0;
        background-image: url(../images/top-header-bg.jpg) !important;

    }

    .header .menu{
        position: fixed;
        right: 0;
        top: 0;
        width: 320px;
        height: 100%;
         background-color: #cf8368; 
        /*padding: 15px 30px 30px;*/
        overflow-y: auto;
        z-index: 999;
        transform: translateX(100%);
    }
    .header .menu.open{
        transform: none;
    }
    .header .menu .head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    .header .menu .close-menu-btn{
        height: 35px;
        width: 35px;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        cursor: pointer;
        border: none;
    }
    
    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after{
     content: '';
     position: absolute;
     width: 80%;
     height: 2px;
     color: #fff;
     background-color: hsl(0,0%,100%);
    }
    .header .menu .close-menu-btn::before{
        transform: rotate(45deg);
    }
    .header .menu .close-menu-btn::after{
        transform: rotate(-45deg);
    }
    .header .menu > ul >li{
      display: block;
    }
    .header .menu > ul > li:not(:last-child){
        margin-right: 0;
    } 
    .header .menu li{
        border-bottom: 1px solid hsla(0,0%,100%,0.25);
    }
    .header .menu li:first-child{
        border-bottom: 1px solid hsla(0,0%,100%,0.25);
    }
    .header .menu > ul > li > a{
        padding: 12px 0;
        color: #fff;
        font-size: 20px;
    }
    .header .menu > ul > .dropdown > a{
        padding-right: 34px;
    } 
    .header .menu i{
        height: 34px;
        width: 34px;
        border: 1px solid hsla(0,0%,100%,0.25);
        display: inline-flex;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }
    .header .menu .dropdown.active > i{
        background-color: hsla(0,0%,100%,0.25);
        transform: rotate(180deg);
    }
    .header .menu .sub-menu{
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    .header .menu .dropdown.active > .sub-menu{
       display: block;
    }
    .header .menu .sub-menu li:last-child{
        border: none;
    }
    .header .menu .sub-menu a{
        padding: 12px 0 12px 15px;
    }
    .header .menu .sub-menu .sub-menu .sub-menu a{
        padding-left: 45px;
    }
    .header .menu .sub-menu span{
        background-image: none;
    }
    .header .menu .sub-menu i{
        transform: none;
        right: 0;

    }
    .header-right .open-menu-btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border: none;
    }
.header-right .open-menu-btn .line{
        height: 2px;
        width: 30px;
        background-color: #000;
        /* color: #000; */
        position: absolute;
}
.header-right .open-menu-btn .line-1{
    transform: translateY(-8px);
}
.header-right .open-menu-btn .line-3{
    transform: translateY(8px);
}

.header .sub-menu .sub-menu-right li img{
    width: 209px;
    height: 150px;
}
.header .menu ul{
   padding-left: 0px;
}
}
/* navbar ends */

/* slider part start */
/* slider start  */
.slider .first{
    height: 40vw;
}
.first{
    animation-name: zoom-in-zoom-out;
animation-duration: 15s;
animation-fill-mode:both;
animation-timing-function: ease-out;
}
@keyframes zoom-in-zoom-out {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.2);
    }
    
}
.slider .slidePara{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
    color: #fff;
font-size: 40px;
font-weight: 700;
width: 100%;
text-align: center;
}
/*.slider{*/
/*     position: absolute; */
/*    clip-path: circle(20% at 10% 150%);*/
/*}*/
/*.slider.active{*/
/*    clip-path: circle(150% at 0 50%);*/
/*    transition: 2s ease;*/
/*    transition-property: clip-path;*/
/*}*/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px){
    .slider .first{
        height: 35vh;
        width: 100%;
        z-index: 999;
    }  
     .slider .slidePara{
        font-size: 30px;
        font-weight: 600;
    }
}
/* slider ends */
/* <!-- about part homepage--> */
.infoAb{
    padding: 2rem;
text-align: center;
background-image: linear-gradient(62deg, #d35422 0%, #e3a113 100%);
}
.infoheading{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.infoheading span{
    color: #fffdfd;
}
.infoheading h2{
    position: relative;
}
.infoheading h2::after{
    position: absolute;
    text-align: center;
    content: '';
    top: 44px;
    left: 32%;
    width: 36%;
    font-weight: 600;
    border-top: 5px solid #ffffff;
}
.infoheading h2:hover{
    transform: scale(1.02);
}
.infoheading p{
    width:50%
}
.infoIconSvg svg{
 color: #ffffff;
width: 25px;
height: 25px;
}
.infoIconSvg a{
    text-decoration: none;
    color: #fff;
    font-size: 24px;
}
.infoButton button{
    width: 9vw;
    height: 3vw;
    margin-top: 1rem;
margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background-color: #EB9C4D;
    color: #fff;
}
.infoMatter{
    color: #fff;
    display: flex;
    justify-content: center;
    /* align-items: ; */
    padding: 2rem;

    width: 100%;
}
.infoInner1{
    width: 60%;
    padding: 0px;
}
.infoInner1 iframe{
    width: 560px;
    height: 315px;
}
.infoInner2{
    width: 40%;
    text-align: left;
}
.infoInner2 ul{
    list-style: none;
}
.infoInner2 ul a{
    text-decoration: none;
    color: #fff;
}
.infoInner2 ul a:hover{
    text-decoration: none;
    color: #EB9C4D;
}
@media (max-width:991px) {
    .infoheading h2::after{
  visibility: hidden;
    }
    .infoheading p{
        width:90%
    }
    .infoMatter{
        flex-direction: column;
        padding: 0;
    }
    .infoInner1 iframe{
        width: fit-content;
        height: auto;
    }
    .infoIconSvg svg{
        text-align: center;
        color: #ffffff;
       width: 11px;
       height: 11px;
       }
    .infoIconSvg a{
        text-align: center;
        text-decoration: none;
        color: #fff;
        font-size: 10px;
    }
    .infoButton button{
        width: 36vw;
        height: 10vw;
        margin-bottom: 18px;
    }
    .infoInner2{
        width: 100%;
        text-align: left;
    }
}
/* ================================================================================ */
.aboutMainRan{
    padding: 2rem;
    text-align: center;
}
.aboutRan{
    /* border: 2px solid black; */
    text-align: center;
    margin-top: 8rem;
}
.aboutRan span{
    color: #d35422;
}
.ranBoxes{
    width: 100%;
    padding-top: 2rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.box1Ran{
    width: 24.33%;
     border: 2px solid #875e13;  
text-align: center;    
box-shadow: 0 11px 14px 0 rgba(0, 0, 0, 0.2), 0 10px 26px 0 rgba(0, 0, 0, 0.19);
}
.box1Ran img{
width: 100%;
height: 300px;
}
.box1Ran .paraAbout{
    text-align: justify;
    padding: 1rem;
}
@media (max-width:991px) {
    .ranBoxes{
        width: 100%;
        padding-top: 2rem;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }
    .box1Ran{
        width: 100%;
        margin: 2rem;
    }
}
/* -------------------------------------------------------------------------- */
.videoRan{
    text-align: center;
    padding: 2rem;
    background-image: url("../images/parallax1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.videoSect{
    padding-top: 2rem;
width: 100%;
height: 50%;
}
.partVideoPart1 iframe{
    width: 560px;
    height: 315px;
}
@media (max-width:991px) {
    .partVideoPart1 iframe{
        width: fit-content;
        height: 315px;
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1200px) {
    .partVideoPart1{
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        padding-bottom: 2rem;
    }
    .partVideoPart1 iframe{
        width: 400px;
        height: 315px;
    }
}
/* ---------------------------------- Package start ---------------- */
.package{
    width: 100%;
    text-align: center;
}
.packageBoxes{
    width: 100%;
    padding: 4rem 11rem;
    display: flex;
    justify-content: center;

    column-gap: 8px;
}
.packageBox{
        position: relative;
        border: solid 2px #875e13;
    box-shadow: 0 11px 14px 0 rgba(0, 0, 0, 0.2), 0 10px 26px 0 rgba(0, 0, 0, 0.19);
    background-color: #fff;
}
.packHeadLine{
   background-image: linear-gradient(62deg, #d35422 0%, #e3a113 100%);
}
.packageBox p>span{
    color: #d35422;
    font-weight: 600;
}
.packageBox p{
    font-weight: 700;
    text-align: left;
    padding:0px 5px;
}
.packNumberA{
    color: #d35422;
}
.packLinePerf{
    background-image: linear-gradient(62deg, #d35422 0%, #e3a113 100%);
}
.packButn{
position: absolute;
    border-radius: 14px;
    padding: 6px 12px;
    bottom: 0;
    left: 29%;
 
    margin-bottom: 10px;
}
.packPoints{
    list-style: none;
}
.consUnderPack{
    padding: 1rem 8rem;
}
.consUnderPack p{
    color: #d35422;
    font-weight: 900;
    font-size: larger;
    text-align: justify;
}
@media (max-width:991px) {
    .packageBoxes{
        width: 100%;
        padding: 0rem 2rem;
        display: flex;
        justify-content: center;
    flex-direction: column;
        column-gap: 27px;
    }
    .packageBox{
     width: fit-content;
        background-color: #fff;
        margin-bottom: 2rem;
              height: 150vh;
    }
    .consUnderPack{
        padding: 0rem 2rem;
    }
}
@media (min-width: 992px) and (max-width: 1200px){
    .packageBoxes{
        padding: 3rem 5rem;
    }
}
/* gallery section  */
.img-gallery{
    width: 90%;
    margin: 100px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(250px, 1fr));
    grid-gap: 30px;
}
.img-gallery img{
    width: 100%;
    cursor: pointer;
}
.img-gallery img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 7px rgba(68,77,136,0.2);
}
.full-img{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0,0, 0.9);
    position: fixed;
    top: 0;
    left: 0;

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.full-img img{
    width: 90%;
    max-width: 500px;
}
.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
/* ------------------------------------------------------------------------------------------ */
/* ABOUTPAGE START  */
.aboutBanner{
    background-image: url("../images/about/backBanner.JPG");
    background-position:  top center;
    background-attachment: fixed;
    background-size: cover;
/* position: relative; */
   width: 100%;
   height: 58vh;
}
.aboutBanner span h1{
    text-align: center;
   padding-top: 12rem;
   color: #d35422;
   font-weight: 800;
   font-size: 50px;
}
.aboutLineInfo{
    margin-top: 6rem;
    text-align: center;
    padding: 2rem;
    background-image: linear-gradient(180deg, #ffffff 0%, #ef8d25 100%);

}
.aboutLineInfo span{
    color: #d35422;
}
.aboutInfo{
    width: 100%;
    height: fit-content;
padding: 2rem;
    display: flex;
    justify-content: center;

    background-color: #ffffff;
background-image: linear-gradient(180deg, #ffffff 0%, #ef8d25 100%);

}
.aboutInfoPart1{
    width: 37%;
    display: table;
    margin-right: 20px;
}
.aboutInfoPart1 img{
    width: 90%;
}
.aboutInfoPart2{
    width: 60%;
    padding-right: 2rem;
}
.evolAbout{
    background-image: url("../images/about/about-bg1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    width: 98.7vw;
    height: fit-content;
    /* filter: brightness(50%); */
    /* filter: blur(5px); */
    color: #ffcd03;
    text-align: center;
    padding: 2rem;
}
.evolAboutP1 h3{
    color: #d35422;
    font-weight: 900;
    /* background-color: #fff; */
}


@media (max-width:991px) {
    .aboutBanner span h1{
       padding-top: 15rem;
    }
    .aboutInfo{
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    }
    .aboutInfoPart1{
        width: 100%;
    }
    .aboutInfoPart2{
        padding: 1rem;
        width: 100%;
        text-align: justify;
    }
    .evolAbout{
        background-image: url("../images/about/about-bg1.jpg");
        background-repeat: no-repeat;
        background-position: top right;
    }
}
/* --------------------------------------------------------------------------- */
/* contact us  */
.contactMain{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #ffffff 0%, #feaf5b 100%);
}
.contact_box{
	text-align: center;
	padding: 2rem;
	/* border: 1px solid black; */
    background-image: linear-gradient(180deg, #ffffff 0%, #feaf5b 100%);
}
.contact_box h1{
	font-size: 50px;
}
.contact_block{
	display: flex;
	padding: 2%;
    column-gap: 10px;
	justify-content: space-evenly;
	/* border: 1px solid black; */
}
.contact_part1{
	display: flex;
	padding: 2%;
	/* border: 1px solid black; */
	/* height: fit-content; */
	background-color: white;
	justify-content: space-evenly;
	width: 400px;
}
.contact_part1 .conIcon{
	font-size: 4vw; color: rgb(255, 182, 72);
}
.contact_part1 .conatct_list a{
text-decoration: none;
color: black;
font-size: 4vh;
}
.contact_part1 .conatct_list p{
font-size: 2vh;
text-align: left;
}
.contact_part1 .conatct_list p>a{
    font-size: 2vh;
}
.cont{
	display: flex;
	padding-top: 5%;
	/* padding-left: 15%; */
	justify-content: space-evenly;
    column-gap: 20px;
}
/* ========================================================================== */

.contactForm{
    width: 70%;
    padding: 40px;
    background-color: white;
}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactForm .inputBox{
    position: relative;
width: 100%;
margin-top: 10px;
}
.contactForm .inputBox input,
.contactForm .inputBox textarea
{
width: 100%;
padding: 5px 0;
font-size: 16px;
margin: 10px 0;
border: none;
border-bottom: 2px solid #333;
outline: none;
resize: none;
}
.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:focus ~span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}

.contactForm .inputBox input[type="submit"]
{
    width:100px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}
@media (max-width:991px) {
.contact_block{
    display: flex;
	justify-content: center;
    align-items: center;
    flex-direction: column;
}    
.contact_part1{
    justify-content: space-evenly;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
}
.cont{
	display: flex;
	padding-top: 5%;
    flex-direction: column;
	justify-content: space-evenly;
    column-gap: 20px;
}
.contactForm{
    width: 100%;
    padding: 40px;
    background-color: white;
}
.cont iframe{
    margin-top: 1.5rem;
    width: fit-content;
}
}

/* styling of multiple images css start */

.wrapperPartner1{ 
    /*margin: 4rem 0;*/
    width: 98%; 
    position: relative;
    /* background-image: linear-gradient(180deg, #ffffff 0%, #ef8d25 100%); */
} 
  
.wrapperPartner1 i { 
     height: 50px; 
    width: 50px; 
    /* background: rgb(246, 248, 246);  */ 
    text-align: center; 
    line-height: 50px; 
    border-radius: 50%; 
    cursor: pointer; 
    position: absolute; 
    top: 50%; 
    font-size: 1.25 rem; 
    transform: translateY(-50%); 
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23); 
   */
} 
  
.wrapperPartner1 i:first-child { 
    left: -22px; 
  
} 
  
.wrapperPartner1 i:last-child { 
    right: -22px; 
  
} 
  
.wrapperPartner1 .carouselPart { 
    display: grid; 
    grid-auto-flow: column; 
    grid-auto-columns: calc((100% / 3) - 12px); 
    gap: 16px; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    scrollbar-width: 0; 
} 
  
.carouselPart::-webkit-scrollbar { 
    display: none; 
} 
  
.carouselPart :where(.cardPart, .img) { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
} 
  
.carouselPart.dragging { 
    scroll-snap-type: none; 
    scroll-behavior: auto; 
} 
  
.carouselPart.no-transition { 
    scroll-behavior: auto; 
} 
  
.carouselPart.dragging .cardPart { 
    cursor: grab; 
    user-select: none; 
} 
  
.carouselPart .cardPart { 
    scroll-snap-align: start; 
    height: fit-content; 
    list-style: none; 
  
    border-radius: 8px; 
    display: flex; 
    cursor: pointer; 
    /* width: 98%;  */
    padding-bottom: 15px; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    /* border: 2px solid black; */
} 
  
/* .cardPart .img { 
  width: 145px; 
    height: 145px; 
}  */
  
.cardPart .img img { 
    width: 400px; 
    height: 280px; 
    object-fit: fill; 
} 
  
.cardPart h2 { 
    font-weight: 500; 
    font-size: 1.56rem; 
    margin: 30px 0 5px; 
} 
  
.cardPart span { 
    color: #6a6d78; 
    font-size: 1.31rem; 
  
} 
  
@media screen and (max-width: 900px) { 
    .wrapperPartner1 .carouselPart { 
        grid-auto-columns: calc((100% / 2) - 9px); 
  
    } 

    .wrapperPartner1{ 
    /*max-width: 1181px; */
    width: 94%; 
    position: relative; 
    margin-left: 0px;
  
} 
} 
  
@media screen and (max-width: 600px) { 
    .wrapperPartner1 .carouselPart { 
        grid-auto-columns: 100%; 
    } 

    .wrapperPartner1 { 
    /*max-width: 1181px; */
    margin-top: 8vw;
    width: 90%; 
    position: relative; 
    margin-left: 0px;
} 
.cardPart .img img { 
    width: 298px; 
    height: 168px; 
    object-fit: cover; 
} 
}
/* styiling of multiple imgs slider css ends */
/* ------------------------------------------------------- */
/* footer start css */
.footer{
    width: 100%;
    background-image: url("../images/footer-Image.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
    position: relative;
    /* z-index: 99999; */
    color: #fff;

    display: flex;
    justify-content: center;
    /* filter: brightness(50%); */
}

.footer::before{
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.4;
position: absolute;
}
.footerPart{
    width: 20%;
padding: 2rem 0;
    z-index: 1000;
    /* color: #d35422; */
}
.footerPart ul{
    list-style: none;
    padding-left: 0;
}
.footerPart a{
    color: #fff;
    text-decoration: none;
}
.footAbout{
    margin-right: 3rem;
}
.footerpart iframe{
    width: 400px;
    height: 300px;
}
@media (max-width:991px) {
    .footer{    
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .footerPart{
        width: 98%;
    padding: 2rem 2rem;
        z-index: 1000;
        /* color: #d35422; */
    }
    .footerPart iframe{
        width: fit-content;
    }
    .footerpart iframe{
        width: 250px;
        height: 300px;
    }
}
@media (min-width: 992px) and (max-width: 1200px){
    .footerpart iframe{
        width: 250px;
        height: 300px;
    }
}
/* some changes in contact form which is exit in services inner pages */
.rajContact{
    width: 100%;
    text-align: center;
    /* border: 2px solid black; */
}
.rajContact form{
    padding: 2rem;
    box-shadow: 0 11px 14px 0 rgba(0, 0, 0, 0.2), 0 10px 26px 0 rgba(0, 0, 0, 0.19);
}
.bookingLineSer{
    color: #d35422;
    padding: 2rem;
    text-align: center;
}
.aboutIframe iframe{
    width: 560px;
    height: 315px;
}
@media (max-width:991px) {
    .aboutIframe iframe{
        width: fit-content;
        height: 315px;
    }   
}
/* services pages css  */
.bhawaiPhoto .img img{
    height: 36vw;

}

/* videos css start */
.video{
    /*margin: 4rem;*/
    background-image: linear-gradient(62deg, #d35422 0%, #e3a113 100%);
    /*border: 2px solid #000;*/
}
.videoCont{
    display: flex;
    justify-content: space-around;
    padding: 2rem 7rem;
}
.videoCont iframe{
width: 370px;
height: 200px;
}
@media (max-width:991px) {
    .video{
        margin: 0rem;
        /* border: 2px solid #000; */
    }
    .videoCont{
        margin: 1rem 0.5rem;
        display: flex;
        justify-content: space-around;
        padding: 0rem 0rem;
        flex-direction: column;
        row-gap: 10px;
    }
}
/*videos css ends*/
/* extra css add */
.top-contact{
    width: 99%;
    padding: 0.8rem;
}
.contactHead{
    width: 99%;
}
.contactBanner{
    margin-top: -2.5vw;
}
.awardHeader{
    position: absolute;
    top: 40px;
    z-index: 999;
}
@media (max-width:991px) {
    .awardHeader{
        top: 88px;
    }
    .top-contact{
        width: 96.3%;
    }
    .contactBanner{
        margin-top: -10.5vw;
    }
}
/* -------------------------------------------------------------------------- */
/* popup css */
 
.popup{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    z-index: 1;
    transform: translate(-50%,-50%) scale(1.25);
    width: 485px;
    padding: 20px 30px;
    background-color: #fff;
    /* transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms; */
}
.popup.active{
    top: 70%;
    left: 220%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}
.popup .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 17px;
    height: 17px;
    background-color: #888;
    color:#eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.popup .form .input-box input[type="text"],
.popup .form .input-box input[type="number"],
.popup .form .input-box input[type="email"],
.popup .form .input-box input[type="date"],
.popup .form textarea{
    margin-top:5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.popup .form button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #d35422;
    color: #eee;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
@media (max-width:991px) {
    .popup{
        left: 50%;
        width: 280px;
    }
    .popup.active{
        top: 70%;
        left: 50%;
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
        transition: top 0ms ease-in-out 0ms,
                    opacity 200ms ease-in-out 0ms,
                    transform 200ms ease-in-out 0ms;
    }
    .pop1.active{
        top: 50%;
    }
    .pop2.active{
        top: 50%;
    }
    .pop3.active{
        top: 65%;
    }
    .popup .close-btn{
        z-index: 99;
    }
}
/* ------------------------------------------ */
.feedback{
    width: 100%;
    padding: 2rem;

    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.feedback iframe{
    width: 312px;
    height: 250px;
    border-radius: 30px;
    margin-bottom: 2rem;
}
/* testimonals style start */
.testimonal{
    display: flex;
    justify-content: center;
    
    column-gap: 20px;
    background-image: linear-gradient(30deg, #d35422 46%, #ecb538 50%);
    padding-bottom: 25px;
    border-radius: 2pc;
}
.testimonal p{
    text-align: justify;
    color: #7a7575;
    font-weight: 600;
    line-height: 22px;
}
.testimonal i{
    color: #ffa700;
}
.testimonal h2,
.testimonal h5{
    color: #fff;
}
.testimonal1{
    padding-top: 2rem;
    width: 40%;
}
.testimonial2{
    width: 40%;
    padding-top: 3rem;
}

.testiBox1{
    background-color: #f4c98c;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid black;
    padding: 1rem;
    box-shadow: 10px 12px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}
.testiBox2{
    background-color: #e9d6d6;
    border: 1px solid black;
    padding: 1rem;
    box-shadow: 10px 12px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}
.testiBox3{
    background-color: #d9d9d9;
    border: 1px solid black;
    padding: 1rem;
    box-shadow: 10px 12px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}
.testiBox4{
    background-color: #9ecec2;
    border: 1px solid black;
    padding: 1rem;
    box-shadow: 10px 12px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}
.testiBox5{
    background-color: #c4deb8;
    border: 1px solid black;
    padding: 1rem;
    box-shadow: 10px 12px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px){
    .testimonal{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .testimonal1{
        width: 90%;
    }
    .testimonial2{
        width: 90%;
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media(min-width: 600px) and (max-width: 768px){
    .testimonal{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .testimonal1{
        width: 90%;
    }
    .testimonial2{
        width: 90%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 992px){
    .testimonal{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .testimonal1{
        width: 90%;
    }
    .testimonial2{
        width: 90%;
    }
}
