@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lobster&family=Lovers+Quarrel&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Special+Gothic+Expanded+One&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins",Arial, sans-serif;
}

/* NAVBAR---------------STARTS----------------HERE-------- */

nav.fix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    margin-top: 20px;
}

nav.fix .logo-dark{
    display: none;
}

nav .header-left{
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    width: 90%;
}

nav .header-left .nav-bar{
    list-style: none;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 16px;
}

nav .header-right{
    padding: 0 10px;
}

nav .header-right .iconn{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    width: 90px;
    text-decoration: none;
    color: #CC8809;
}

nav .header-right .bttn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(47deg, #fbc579, #FC9935);
    width: 90px;
    margin: 0 10px;
    transition: 0.4s ease;
}

nav .header-right .bttn:hover{
    background: linear-gradient(47deg, #FC9935, #fbc579);
}


nav.fix .header-left .nav-bar .search-bar{
    display: none;
}

nav.fix .right-div-show{
    display: none;
}

.nav-active-link{
    text-decoration: none;
    color: white;
}

.nav-active-link:hover{
    color: white;
}

.nav-hide-btn{
    display: none;
}

nav .header-right .right-div-show-btn .right-div-show-1{
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .header-right .right-div-show-btn a{
    text-decoration: none;
    color: black;
}

/* NAV----LINE------ANIMATION-----AND--------ACTIVE-LINK-----STARTS---------HERE */

.nav-active-item{
    margin: 0 18px;
    padding: 4px 0;
    position: relative;
}

nav .nav-active-item.active::before{
    content: "";
    background-color: #85f16d;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

nav .nav-active-item::before{
    content: "";
    background-color: #85f16d;
    color: #85f16d;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.4s ease-in-out;
}

nav .nav-active-item:hover::before{
    transform: scale(1);
}

nav .nav-show-btn{
    display: none;
}

nav .nav-show-btn .nav-show{
    color: black;
    font-size: 20px;
}

/* NAV----LINE------ANIMATION-----AND--------ACTIVE-LINK-----ENDS---------HERE */


@media only screen and (max-width: 1200px){
    .nav-active-item{
        margin: 0 13px;
    }
    nav .header-right {
        padding: 0;
    }
    nav .header-right .bttn{
        background: none;
    }
    nav .header-right .bttn:hover{
        background: none;
    }
    nav .header-right .bttn i{
        color: white;
    }
    nav .header-right .iconn{
        width: 50px;
    }
    nav .header-right .bttn {
        margin: 0;
        background-color: rgba(0, 0, 0, 0.4);
        color: white;
        width: 50px;
    }
}
@media only screen and (max-width: 992px){
    nav.fix{
        margin: 0 0 0;
        background-color: rgb(255, 255, 255);
    }
    nav.fix .logo-light{
        display: none;
    }
    nav.fix .logo-dark{
        display: block;
        height: 50px;
    }
    nav .header-left{
        background-color: rgb(255, 255, 255);
        width: 100%;
        padding: 10px 0 10px 0;
    }
    nav .header-right .bttn {
        margin: 0;
        background-color: white;
        color: black;
        width: 50px;
        /* padding-right: 20px; */
    }
    nav.fix a .nav-icon-1{
        display: none;
    }
    nav.fix .right-div-show{
        display: block;
    }
    nav .header-left .nav-bar{
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        width: 280px;
        background-color: white;
        transition: 0.6s ease-in-out;
    }
    nav .header-right .right-div-show-btn .right-div-show-1{
        display: none;
    }
    nav .header-right .iconn{
        display: none;
    }
    nav .header-right .bttn i{
        color: black;
    }
    nav .nav-hide-btn{
        background-color: black;
    }
    nav .nav-hide-btn{
        background-color: #f5945c;
        padding: 10px;
        height: 45px;
        width: 45px;
        margin: 0 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 22px;
    }
    nav .nav-hide{
        color: white;
    }
    nav.fix .header-left .nav-bar .search-bar{
        display: block;
        position: relative;
        margin: 20px 0 0 20px;
        max-width: max-content;
    }
    nav.fix .header-left .nav-bar .search-bar i{
        position: absolute;
        top: 11px;
        right: 10px;
    }
    nav.fix .header-left .nav-bar .search-bar:hover i{
        color: #f5945c;
    }
    nav.fix .header-left .nav-bar .search-bar input{
        padding: 5px;
        letter-spacing: 2px;
    }
    nav.fix .header-left .nav-bar .search-bar input:focus{
        border: 1px solid #f5945c;
        outline: none;
    }
    nav .nav-active-item{
        max-width: max-content;
        margin: 20px auto 0 20px;
    }
    nav .nav-active-link{
        color: black;
        font-weight: 500;
    }
    nav .nav-active-link:hover{
        color: #f5945c;
    }
    nav .nav-show-btn{
        display: block;
    }
}
@media only screen and (max-width: 768px){
    nav .header-right .iconn{
        display: none;
    }
}

/* NAVBAR---------------ENDS----------------HERE-------- */


/* RIGHT-DIV-------------STARTS--------------HER */

.right-div-main .right-div{
    position: fixed;
    right: -100%;
    height: 100%;
    width: 300px;
    z-index: 9999;
    background-color: white;
    box-shadow: 0 0 5px black;
    transition: 0.5s ease-in-out;
}

.right-div-main .right-div .right-div-hide-btn{
    max-width: max-content;
    margin: 20px 20px 0 auto;
}

.right-div-main .right-div .right-div-hide-btn a{
    text-decoration: none;
}

.right-div-main .right-div .right-div-hide i{
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 28px;
    transition: 0.4s ease;
}

.right-div-main .right-div .right-div-hide i:hover{
    transform: rotate(90deg);
    color: rgb(255, 0, 0);
}

.right-div-main .content{
    padding: 20px;
}

.right-div-main .content h3{
    font-size: 22px;
    font-weight: 600;
}

.right-div-main .content .line{
    height: 2px;
    background-color: #deb018;
    width: 20%;
}

.right-div-main .content .info{
    color: gray;
}

.right-div-main .content .info i{
    color: rgb(105, 105, 105);
}

.right-div-main .content .social-links{
    display: flex;
}

.right-div-main .content .social .iconn{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    box-shadow: 0 0 2px;
}

.right-div-main .content .social .icon-1{
    background-color: #395898;
    transition: 0.3s ease;
}
.right-div-main .content .social .icon-1:hover{
    background-color: #1849aa;
    cursor: pointer;
}
.right-div-main .content .social .icon-2{
    background-color: #55aff4;
    transition: 0.3s ease;
}
.right-div-main .content .social .icon-2:hover{
    background-color: #1f96f1;
    cursor: pointer;
}
.right-div-main .content .social .icon-3{
    background-color: #0077b3;
    transition: 0.3s ease;
}
.right-div-main .content .social .icon-3:hover{
    background-color: #006091;
    cursor: pointer;
}
.right-div-main .content .social .icon-4{
    background-color: #e64060;
    transition: 0.3s ease;
}
.right-div-main .content .social .icon-4:hover{
    background-color: #df2047;
    cursor: pointer;
}

.right-div-main .content .social .iconn i{
    color: white;
}


/* RIGHT-DIV-------------ENDS--------------HER */


/* BANNER----------------STARTS-------------HERE */

.banner{
    position: relative;
    top: 0;
}

.banner .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    font-size: 24px;
}

.banner .swiper-button-next{
    font-weight: 400;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.banner .swiper-button-next:hover{
    background-color: rgba(0, 0, 0, 0.9);
}

.banner .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    font-size: 24px;
}

.banner .swiper-button-prev{
    font-weight: 400;
    color: white;
    background-color: rgba(0, 0, 0, 0.2);
    height: 70px;
    width: 70px;
    border-radius: 50%;
    margin-left: 20px;
}

.banner .swiper-button-prev:hover{
    background-color: rgba(0, 0, 0, 0.9);
}

.banner .swiper-slide .card-img{
    background-image: url(../images/bg-slider1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    width: 100%;
}

.banner .swiper-slide .card-1 .txt{
    padding-left: 25px;
} 

.banner .swiper-slide .card-3 .txt{
    padding-right: 25px;
} 

.banner .swiper-slide .card-img .content{
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    padding: 100px;
    color: white;
}

.banner .swiper-slide .cardd .txt{
    margin-top: 100px;
}

.banner .swiper-slide .card-img .content h1{
    width: 700px;
    font-size: 60px;
}

.banner .swiper-slide .card-img .content h1 span i{
    color: #CC8809;
    font-family: 'playfair display',sans-serif;
}

.banner .swiper-slide .card-img .content h4{
    letter-spacing: 3px;
    font-weight: 400;
}

.banner .swiper-slide .card-img .content .bttn{
    text-decoration: none;
    background: linear-gradient(135deg, #D0A66A, #deb018);
    box-shadow: 0 0 2px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 200px;
    border-radius: 30px;
}

@media only screen and (max-width: 1200px){
    .banner .swiper-slide .card-img .content h1 {
        width: 600px;
        font-size: 40px;
    }
}
@media only screen and (max-width: 992px){
    .banner .swiper-slide .card-img .content h1{
        width: auto;
    }
}
@media only screen and (max-width: 768px){
    .banner .swiper-slide .card-img .content h1{
        font-size: 40px;
    }
    .banner .swiper-slide .card-img .content h4{
        letter-spacing: 2px;
        font-size: 18px;
    }
    .banner .swiper-slide .card-img .content .bttn{
        height: 40px;
        width: 150px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 426px){
    .banner .swiper-slide .card-img .content{
        padding: 0 6px;
    }
    .banner .swiper-slide .card-img .content h1{
        font-size: 30px;
    }
    .banner .swiper-button-next {
        display: none !important;
}
    .banner .swiper-button-prev {
        display: none !important;
    }
    .banner .swiper-slide .card-img .content .bttn{
        font-size: 13px;
    }
}
@media only screen and (max-width: 376px){
    .banner .swiper-slide .card-img .content h1{
        font-size: 25px;
    }
    .banner .swiper-slide .card-img .content h4{
        font-size: 16px;
    }
}


/* BANNER----------------ENDS-------------HERE */


/* BANNER-2--------------STARTS-----------HERE */

.banner-2 .banner-2-img{
    background-image: url(../images/bg-fancybox.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 48vh;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px; 
}

.banner-2 .banner-2-img .cards{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 100px;
}

.banner-2 .banner-2-img .cardd{
    display: flex;;
}

.banner-2 .banner-2-img .cardd .iconn{
    height: 40px;
    width: 40px;
    padding: 10px;
    background: linear-gradient(47deg, #fbc579, #FC9935);
    box-shadow: 0 0 5px #fbc579;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-2 .banner-2-img .cardd .icon-2 i{
    font-size: 28px;
}

.banner-2 .banner-2-img .cardd .iconn i{
    color: white;
}

.banner-2 .banner-2-img .cardd .txt{
    padding-left: 20px;
}

.banner-2 .banner-2-img .cardd .txt h4{
    color: white;
    font-size: 20px;
}

.banner-2 .banner-2-img .cardd .txt p{
    color: rgb(151, 151, 151);
    font-size: 15px;
}

@media only screen and (max-width: 1200px){
    .banner-2 .banner-2-img .cards{
        padding: 0;
    }
    .banner-2 .banner-2-img .cardd .txt p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 768px){
    .banner-2 .banner-2-img .cardd .txt h4{
        font-size: 14px;
    }
    .banner-2 .banner-2-img .cardd .txt p{
        font-size: 12px;
    }
}
@media only screen and (max-width: 426px){
    .banner-2 .banner-2-img{
        height: 65vh;
    }
    .banner-2 .banner-2-img .cardd{
        margin-top: 25px;
    }
    .banner-2 .banner-2-img .cardd .iconn{
        height: 30px;
        width: 30px;
    }
}

/* BANNER-2--------------ENDS-----------HERE */


/* ABOUT-----------------STARTS----------HERE */

.about{
    padding-left: 150px;
    padding-right: 20px;
    padding-bottom: 100px;
}

.about .card-1{
    padding-top: 100px;
}

.about .card-1 h6{
    letter-spacing: 4px;
    color: #e64060;
    font-weight: 300;
    font-size: 14px;
}

.about .card-1 h3{
    font-size: 30px;
    font-weight: 700;
    width: 80%;
}

.about .card-1 h3 span i{
    color: #CC8809;
    font-family: 'playfair display',sans-serif;
}

.about .card-1 .line-div .line{
    height: 4px;
    background-color: #deb018;
    width: 10%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.about .card-1 .para{
    margin-top: 30px;
}

.about .card-1 .para p{
    font-weight: 300;
    font-size: 15px;
    width: 90%;
}

.about .card-1 .para p a{
    color: #deb018;
    font-weight: 500;
}

.about .card-1 .para span {
    font-weight: 500;
}

.about .card-1 .contact{
    margin-top: 30px;
}

.about .card-1 .contact p{
    font-size: 16px;
    font-weight: 500;
}

.about .card-1 .contact p .nmber{
    font-size: 25px;
    font-weight: 700;
}

.about .card-1 .contact p .or{
    color: gray;
    font-weight: 400;
}

.about .card-1 .contact a{
    color: black;
    transition: 0.4s ease;
    display: inline;
}

.about .card-1 .contact a:hover{
    color: #deb018;
}

.about .card-1 .underline{
    display: inline-block;
    border-bottom: 1px dashed #8b8b8b;
    padding-bottom: 1px;
    width: 100%;
    margin-top: 20px;
}

.about .card-1 .signature{
    display: flex;
}

.about .card-1 .signature .name{
    padding-left: 70px;
    margin-top: 20px;
}

.about .card-1 .signature .name h4{
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}


.about .card-1 .signature .name p{
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: gray;
}

.about .card-2{
    position: relative;
}

.about .card-2 .card-2-img img{
    height: 600px;
    width: 100%;
    object-fit: cover;
} 

.about .card-2 .img-2{
    position: absolute;
    top: 200px;
    left: -40px;
}

.about .card-2 .img-2 img{
    height: 550px;
} 

@media only screen and (max-width: 1200px){
    .about {
        padding-left: 20px;
    }
    .about .card-1 .para .txt{
        margin-left: 0rem !important;
    }
    .about .card-1 .contact .or{
        display: block;
    }
    .about .card-1 h3{
        width: 90%;
    }
}
@media only screen and (max-width: 992px){
    .about .card-1 .para p{
        font-size: 14px;
    }
    .about .card-2 .img-2 img{
        height: 450px;
    }
    .about .card-2 .img-2{
        left: -30px;
    }
}
@media only screen and (max-width: 768px){
    .about .card-1 .head{
        text-align: center;
    }
    .about .card-1 .contact .or{
        display: inline-block;
    }
    .about .card-2{
        margin-top: 20px;
    }
    .about .card-2 .card-2-img img{
        height: 400px;
    }
    .about .card-2 .img-2{
        top: 100px;
        left: 0;
    }
    .about .card-2 .img-2 img{
        height: 350px;
    }
    .about .card-1 h3{
        width: 100%;
        font-size: 23px;
        margin-top: 20px;
    }
    .about .card-1 .para span{
        display: block !important;
    }
    .about .card-1 .contact p .nmber{
        display: block;
        margin-left: 0 !important;
        margin-top: 10px;
    }
    .about .card-1 .contact p{
        text-align: center;
        width: 100%;
        margin-top: 75px;
    }
    .home-about .card-2 .card-2-img img {
        height: 700px;
        margin-top: 100px;
    }
    .home-about .card-2 .img-2 {
        top: 500px;
        left: 0;
    }
    .home-about .card-1 .signature .name{
        padding-left: 50px;
    }
}
@media only screen and (max-width: 426px){
    .about .card-2 .card-2-img img{
        height: 600px;
    }
    .home-about .card-2 .card-2-img img{
        margin-top: 0;
    }
    .about .card-2 .img-2 img{
        height: 400px;
    }
    .home-about .card-2 .img-2 {
        top: 200px;
    }
    .about .card-1 .line-div {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 376px){
    .home-about .card-1 .signature .name{
        padding-left: 30px;
    }
    .about .card-2 .card-2-img img{
        height: 450px;
    }
    .about .card-2 .img-2 img{
        height: 350px;
    }
    .home-about .card-2 .img-2 {
        top: 100px;
    }
}

/* ABOUT-----------------ENDS----------HERE */


/* SERVICES----------STARTS------------HERE */

.services{
    padding: 100px 100px 0 100px;
    background-color: black;
    overflow: hidden;
}
.services .head{
    text-align: center;
}

.services .head .heading{
    display: flex;
    justify-content: center;
    align-items: center;
}


.services .head h6{
    color: #deb018;
    letter-spacing: 4px;
    font-weight: 400;
}

.services .head h2{
    color: white;
    width: 50%;
}

.services .head h2 span i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
}

.services .line-div{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.services .line-div .line{
    height: 4px;
    width: 60px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    background-color: #deb018;
}

.services .cards .overflow-hidden {
    position: relative;
    border: 2px dashed rgb(66, 66, 66);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}


.services .cards .cardd{
    text-align: center;
    padding: 40px;
}

.services .cards .cardd .iconn{
    color: #deb018;
    font-size: 40px;
}

.services .cards .cardd .card-heading h3{
    color: white;
    font-size: 20px;
}   

.services .cards .cardd .txt p{
    color: gray;
    font-size: 14px;
    margin-top: 20px;
}

.services .cards .card-img{
    position: absolute;
    bottom: -140%;
    z-index: 3;
    transition: 0.4s all ease-in-out;
    height: 100%;
    width: 100%;
}

.services .cards .overflow-hidden:hover .card-img{
    bottom: 0;
}

.services .cards .card-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    filter: brightness(60%);
}

.services .cards .card-img .card-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    
}

.services .cards .card-img .card-btn .bttn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    width: 150px;
    background-color: #deb018;
    box-shadow: 0 0 3px #d9bc5b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.services .swiper{
    width: 55%;
    margin-left: 55px;
    margin-right: 0;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.services .swiper .cardd{
    height: 310px;
    width: 100%;
    background: linear-gradient(60deg, #101010, #3b3b3b);
    padding: 40px;
}

.services .swiper .cardd .comma i{
    font-size: 35px;
    color: rgb(179, 179, 179);
    margin-bottom: -30px;
}

.services .swiper .cardd .txt{
    padding-top: 25px;
    margin-left: 5px;
}

.services .swiper .cardd .txt p{
    color: rgb(199, 197, 197);
    font-size: 14px;
    font-weight: 400;
}

.services .swiper .cardd .profile-info {
    margin-top: 20px;
}

.services .swiper .cardd .profile-info .profile-img img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.services .swiper .cardd .profile-info .info {
    margin-top: 15px;
    padding-left: 30px;
}

.services .swiper .cardd .profile-info .info h5 {
    color: white;
    font-size: 18px;
}

.services .swiper .cardd .profile-info .info p {
    color: gray;
    font-size: 14px;
}

.services .swiper .swiper-pagination{
    display: flex;
    justify-content: end;
    margin-bottom: 50px;
    padding-right: 20px;
}

.services .swiper .swiper-pagination .swiper-pagination-bullet{
    background-color: #deb018;
}

.services .slider-main{
    margin-top: 130px;
}

.services .slider-main .slider-img{
    display: flex;
    justify-content: end;
    margin-top: -350px;
    margin-right: 100px;
    position: relative;
    z-index: 3;
}

.glow-background {
  background: radial-gradient(circle, rgba(255, 200, 0, 0.5) 0%, rgba(0, 0, 0, 0.95) 70%);
  height: 63vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 1200px){
    .services{
        padding: 80px 0 0 0 ;
    }
    .services .cards .cardd{
        padding: 30px;
    }
    .services .slider-main .slider-img{
        margin-right: 0;
    }
    .glow-background {
        height: 75vh;
    }
    .services .swiper .cardd{
        padding: 30px;
    }
    .services .swiper{
        margin-left: 0;
    }
}
@media only screen and (max-width: 992px){
    .services .head h2{
        width: 80%;
        margin-top: 15px;
    }
    .services .swiper{
        width: 100%;
    }
    .services .slider-main .slider-img {
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-right: 0;
    }
    .services .swiper .cardd{
        border-radius: 20px;
    }
}
@media only screen and (max-width: 426px){
    .services .head h2{
        width: 100%;
        font-size: 21px;
    }
    .services .swiper .cardd{
        padding: 20px;
    }
    .services .swiper .cardd .comma i{
        font-size: 25px;
    }
}
@media only screen and (max-width: 376px){
    .services .head h2{
        width: 100%;
        font-size: 18px;
    }
    .services .swiper .swiper-pagination{
        margin-bottom: 20px;
    }
}

/* SERVICES----------ENDS------------HERE */


/* FUN-FACT---------STARTS-------------HERE */

.fun-fact{
    padding: 90px 0 0 0;
}

.fun-fact .bg-img{
    background-image: url(../images/bg-section-counter1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 70vh;
    width: 100%;
    padding: 0 50px 0 50px;
}

.fun-fact .upper-cards .heading p{
    letter-spacing: 3px;
    color: gray;
    font-size: 15px;
}

.fun-fact .upper-cards .heading h3{
    font-weight: 700;
    font-size: 30px;
    width: 70%;
}

.fun-fact .upper-cards .heading h3 i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
    font-weight: 700;
}

.fun-fact .upper-cards .heading .line-div .line{
    height: 4px;
    background-color: #deb018;
    width: 60px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-top: 20px;
}

.fun-fact .upper-cards .head-card{
    padding-top: 40px;
}

.fun-fact .cards{
    margin-top: 60px;
}

.fun-fact .cards .cardd{
    text-align: center;
    height: 150px;
    width: 270px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px gray;
}

.fun-fact .cards .card-1{
    background: linear-gradient(55deg, #CFA569 , #9A7246);   
}

.fun-fact .cards .cardd .txt h2{
    font-weight: 800;
}

.fun-fact .cards .cardd .txt p{
    font-weight: 500;
    font-size: 18px;
}

.fun-fact .cards .card-2{
    background-color: #191514;   
}

.fun-fact .cards .card-3{
    background: linear-gradient(55deg, #CFA569 , #9A7246);   
}

.fun-fact .cards .card-4{
    background-color: #191514;   
}

@media only screen and (max-width: 1200px){
    .fun-fact .bg-img{
        padding: 0;
    }
} 
@media only screen and (max-width: 992px){
    .fun-fact .cards .cardd{
        margin-top: 30px;
    }
    .fun-fact .bg-img{
        height: 120vh;
    }
}
@media only screen and (max-width: 767px){
    .fun-fact .bg-img{
        height: 190vh;
    }
}
@media only screen and (max-width: 768px){
    .fun-fact .upper-cards .heading{
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fun-fact .upper-cards .heading h3{
        width: 100%;
    }
    .fun-fact .upper-cards .head-card p{
        font-size: 15px;
        font-weight: 400;
        color: gray;
        text-align: center;
    }
}
@media only screen and (max-width: 426px){
    .fun-fact .upper-cards .head-card p{
        margin-bottom: 0;
        font-size: 14px;
    }
    .fun-fact .upper-cards .head-card{
        padding-top: 30px;
    }
    .fun-fact .cards .cardd{
        width: 100%;
    }
}
@media only screen and (max-width: 375px){
    .fun-fact .bg-img{
        height: 200vh;
    }
}

/* FUN-FACT---------ENDS-------------HERE */


/* TEAM-MEBER-------STARTS-----------HERE */

.team-member{
    padding: 100px 100px 30px 100px;
    background-color: black;
}

.team-member .heading .head h6{
    letter-spacing: 3px;
    color: #b08700;
}

.team-member .heading .head h3{
    font-weight: 700;
    font-size: 35px;
    width: 80%;
    color: white;
}

.team-member .heading .head h3 i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
}

.team-member .heading .head .line-div .line{
    height: 4px;
    background-color: #deb018;
    width: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-top: 20px;
}

.team-member .heading .head-2 p{
    color: gray;
    padding-top: 25px;
}

.team-member .swiper{
    margin-top: 120px;
}

.team-member .swiper .swiper-slide{
    height: 350px;
}

.team-member .cards .cardd{
    position: relative;
}

.team-member .cards .card-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s all ease-in-out;
}

.team-member .cards .cardd:hover img{
    filter: grayscale(0);
}

.team-member .cards .name-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    width: 100%;
    position: absolute;
    bottom: -30px;
}

.team-member .cards .name-box .txt{
    background-color: white;
    height: 100%;
    width: 70%;
    padding: 20px;
    box-shadow: 0 0 3px gray;
    display: flex;
    justify-content: start;
    align-items: center;
}

.team-member .cards .name-box .txt h4{
    font-weight: 700;
    font-size: 20px;
}

.team-member .cards .name-box .txt h6{
    font-weight: 400;
    color: gray;
}

.team-member .cards .cardd .info-box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
    width: 100%;
    position: absolute;
    bottom: -100%;
    transition: 0.3s all ease-in-out;
    opacity: 0;
}

.team-member .cards .cardd:hover .info-box{
    bottom: 0;
    opacity: 1;
}

.team-member .cards .cardd .info-box .txt{
    background: linear-gradient(55deg, #CFA569, #9A7246);
    color: white;
    height: 100%;
    width: 70%;
    padding: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.team-member .cards .cardd .info-box .txt .iconn i{
    margin-right: 10px;
}

@media only screen and (max-width: 1200px){
    .team-member{
        padding: 100px 0 50px 0;
    }
}
@media only screen and (max-width: 768px){
    .team-member{
        padding-bottom: 0;
    }
    .team-member .swiper{
        margin-top: 70px;
    }
    .team-member .cards .name-box .txt h4{
        font-size: 14px;
    }
    .team-member .cards .name-box .txt h6{
        font-size: 12px;
    }
    .team-member .cards .name-box{
        height: 100px;
    }
    .team-member .cards .cardd .info-box{
        height: 100px;
    }
    .team-member .head{
        text-align: center;
    }
    .team-member .heading .head h3{
        width: 100%;
    }
    .team-member .heading .head .line-div{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .team-member .heading .head-2 p{
        text-align: center;
    }
}
@media only screen and (max-width: 426px){
    .team-member .heading .head h3{
        font-size: 25px;
        margin-top: 10px;
    }
    .team-member .heading .head-2 p{
        font-size: 13px;
    }
    .team-member .cards .name-box .txt{
        width: 90%;
    }
    .team-member .cards .cardd .info-box .txt{
        width: 90%;
    }
}

/* TEAM-MEBER-------ENDS-----------HERE */


/* PORTFOLIO-------STARTS-----------HERE */

.portfolio{
    padding: 100px 0 100px 0;
}

.portfolio .heading .head h6{
    letter-spacing: 3px;
    color: #b08700;
    text-align: center;
}

.portfolio .heading{
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio .heading .head{
    width: 50%;
}

.portfolio .heading .head h3{
    font-weight: 700;
    font-size: 35px;
    text-align: center;
}

.portfolio .heading .head h3 i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
}

.portfolio .heading .head .line-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio .heading .head .line-div .line{
    height: 4px;
    background-color: #deb018;
    width: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-top: 20px;
}

.portfolio .cards{
    padding: 0 30px;
}

.portfolio .swiper .cardd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
}

.portfolio .swiper .card-img{
    position: relative;
}

.portfolio .swiper .card-img .txt-box{
    position: absolute;
    bottom: 0px;
    padding: 20px;
    color: white;
}

.portfolio .swiper .card-img .txt-box h6{
    font-size: 15px;
    font-weight: 400;
}

.portfolio .swiper .card-img .txt-box .line-div{
    height: 1px;
    background-color: gray;
}

.portfolio .swiper .card-img .txt-box .line-div .line{
    height: 1px;
    background-color: #deb018;
    width: 70px;
}

.portfolio .swiper .cardd{
    position: relative;
    margin-top: 30px;
}

.portfolio .swiper .cardd .icon-div{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s all ease-in-out;
}

.portfolio .swiper .cardd:hover .icon-div{
    background-color: rgba(0, 0, 0, 0.7);
}

.portfolio .swiper .cardd .icon-div .iconn{
    height: 70px;
    width: 70px;
    background: linear-gradient(55deg, #CFA569 , #9A7246);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 5px #CFA569;
    margin-top: 500px;
    transition: 0.4s all ease-in-out;
    opacity: 0;
}

.portfolio .swiper .cardd:hover .icon-div .iconn{
    margin-top: 0;
    opacity: 1;
}

.portfolio .swiper .cardd .icon-div .iconn i{
    color: white;
    font-size: 20px;
}

@media only screen and (max-width: 1200px){
    .portfolio .heading .head{
        width: 70%;
        padding: 20px;
    }
    .portfolio{
        padding: 60px 0 100px 0;
    }
}
@media only screen and (max-width: 768px){
    .portfolio .heading .head{
        width: 90%;
    }
    .portfolio .heading .head h3{
        margin-top: 20px;
    }
}
@media only screen and (max-width: 426px){
    .portfolio .cards{
        padding: 0 10px;
    }
    .portfolio .heading .head{
        width: 100%;
    }
    .portfolio .heading .head h3{
        font-size: 25px;
    }
}

/* PORTFOLIO-------ENDS-----------HERE */


/* <!-- CONTACT-US--------STARTS------------HERE --> */

.contact-us .upper-cards{
    padding: 100px 10px;
}

.contact-us .bg-img{
    background-image: url(../images/bg-parallax3.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 110vh;
    position: relative;
}

.contact-us .dark{
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.775);
}

.contact-us .container {
    position: relative;
    z-index: 5;
}

.contact-us .bg-img .heading .head{
    color: white;
    width: 80%;
}

.contact-us .bg-img .heading .head h3{
    font-size: 35px;
    font-weight: 700;
}

.contact-us .bg-img .heading .head h3 i{
    color: #deb018;
    font-family: 'playfair display',sans-serif;
}

.contact-us .head-card .info{
    padding-left: 15px;
}

.contact-us .head-card .info span{
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: white;
}

.contact-us .head-card .info span h5{
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 300;
}

.contact-us .upper-cards .head-card{
    color: white;
    margin-top: 50px;
}

.contact-us .upper-cards .head-card i{
    color: #deb018;
    font-size: 25px;
}

.contact-us .upper-cards .head-card p{
    font-size: 18px;
    font-weight: 300;
    padding-left: 10px;
}

.contact-us .form-main input{
    width: 100%;
    padding: 10px;
    background-color: rgba(128, 128, 128, 0.548);
    color: white;
    border: 1px solid #deb018;
}

.contact-us .form-main input:focus{
    border: 1px solid #deb018;
    outline: none;
}

.contact-us .form-main input::-webkit-input-placeholder{
    color: white;
    font-size: 14px;
}

.contact-us .form-main textarea{
    margin-top: 30px;
    height: 200px;
    width: 100%;
    background-color: rgba(128, 128, 128, 0.548);
    color: white;
    border: 1px solid #deb018;
    padding: 10px;
}

.contact-us .form-main textarea::-webkit-input-placeholder{
    color: white;
    font-size: 14px;
}

.contact-us .form-main textarea:focus{
    border: 1px solid #deb018;
    outline: none;
}

.contact-us .form-main .submit-btn{
    height: 45px;
    width: 100%;
    background-color: #deb018;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px #e4c663;
    margin-top: 30px;
    cursor: pointer;
}

.contact-us .form-main .submit-btn .bttn{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

@media only screen and (max-width: 1200px){
    .contact-us .bg-img{
        height: 150vh;
    }
    .contact-us .bg-img .heading .head{
        width: 100%;
    }
}
@media only screen and (max-width: 768px){
    .contact-us .bg-img{
        height: 130vh;
    }
    .contact-us .bg-img .heading .head {
        width: 100%;
        text-align: center;
    }
    .contact-us .bg-img .heading .head p{
        font-size: 24px;
    }
    .contact-us .form-main textarea{
        height: 150px;
    }
    .contact-us .upper-cards{
        padding: 60px 10px;
    }
}
@media only screen and (max-width: 426px){
    .contact-us .bg-img{
        height: 180vh;
    }
    .contact-us .bg-img .heading .head p{
        font-size: 20px;
    }
    .contact-us .bg-img .heading .head h3{
        font-size: 30px;
    }
    .contact-us .upper-cards .head-card p{
        font-size: 16px;
    }
    .contact-us .upper-cards .head-card {
        text-align: center;
        margin-top: 40px;
    }
    .contact-us .head-card .info span h5{
        text-align: center;
        width: 100%;
        padding: 0;
        font-size: 16px;
    }
    .contact-us .form-main input{
        margin-top: 10px;
        border-radius: 5px;
    }
    .contact-us .form-main textarea{
        border-radius: 5px;
    }
    .contact-us .form-main .submit-btn{
        border-radius: 5px;
        box-shadow: 0 0 3px #e4c663;
    }
}

/* <!-- CONTACT-US--------ENDS------------HERE --> */


/* <!-- NEWS-------------STARTS-----------HERE --> */

/* <!-- NEWS-------------STARTS-----------HERE --> */
.news{
    padding: 100px 0;
}

.news .head h6{
    font-size: 16px;
    letter-spacing: 2px;
    color: #CC8809;
}

.news .head .heading h2{
    font-size: 30px;
    font-weight: 700;
    width: 70%;
}

.news .head .heading i{
    color: #CC8809;
    font-family: 'playfair display',sans-serif;
}


.news .head .heading .line-div .line{
    height: 4px;
    width: 50px;
    background-color: #deb018;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.news .main .para{
    font-size: 16px;
    margin-top: 25px;
    line-height: 25px;
    color: #3b3636;
}

.news .main .cards{
    padding-top: 100px;
}

.news .cards .swiper-slide{
    padding: 10px;
}

.news .cards .swiper-slide .cardd{
    box-shadow: 0 0 5px rgb(191, 190, 190);
}

.news .cardd .card-img img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.4s ease;
}

.news .cardd:hover .card-img img{
    transform: scale(1.1);
}

.news .cardd .txt-box{
    padding: 30px;
}

.news .cardd .abt{
    margin-top: 10px;
}

.news .cardd .abt h4{
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
}

.news .cardd:hover .abt h4{
    color: #cf9c59;
}

.news .cardd .card-img .info span{
    display: flex;
    text-decoration: none;
}

.news .cardd .card-img .info i{
    color: #959292;
}

.news .cardd .card-img .info h6{
    padding-left: 10px;
    color: #959292;
    font-size: 14px;
    font-weight: 300;
}

.news .cardd .card-img .info a{
    display: flex;
    padding-left: 30px;
    text-decoration: none;
}

.news .cardd .card-img .info .card-october{
    padding-left: 20px;
}

.news .cardd .view-btn .bttn{
    background-color: black;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 135px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.4s ease-in-out;
}

.news .cardd .view-btn .bttn:hover{
    background-color: #CCA167;
}

.news .cardd:hover .card-img .imge{
    position: relative;
}

.news .swiper .cardd .imge .icon-div{
    position: absolute;
    z-index: 3;
    height: 100%;
    width: 100%;
}

.news .swiper .cardd:hover .icon-div{
    background-color: rgba(0, 0, 0, 0.629);
}

.news .swiper .cardd .imge .icon-div .iconn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    top: -100%;
    transition: 0.4s ease-in-out;
}

.news .swiper .cardd .imge .icon-div .iconn i {
    color: white;
    height: 50px;
    width: 50px;
    background-color: #CCA167;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.news .swiper .cardd:hover .imge .icon-div .iconn {
    top: 0;
}

@media only screen and (max-width: 1200px){
    .news .cardd .txt-box{
        padding: 20px;
    }
    .news .cardd .abt h4{
        font-size: 16px;
    }
    .news .cardd .card-img .info h6{
        font-size: 12px;
    }
    .news .cardd .view-btn .bttn{
        font-size: 12px;
        width: 120px;
    }
    
}
@media only screen and (max-width: 768px){
    .news .head h6{
        text-align: center;
    }
    .news .head .heading h2{
        width: 100%;
        text-align: center;
    }
    .news .head .heading .line-div .line{
        margin-left: 20px;
    }
    .news .main .para{
        text-align: center;
    }
}
@media only screen and (max-width: 426px){
    .news .head .heading h2{
        font-size: 25px;
    }
    .news .main .para{
        font-size: 14px;
    }
}

/* <!-- NEWS-------------ENDS-----------HERE --> */


/* <!-- NEWS-LETTER------STARTS---------HERE --> */



.news-letter .bg-img{
    background-image: url(../images/bg-newsletter.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 30vh;
    padding: 45px 30px 30px 30px;
}

.news-letter .bg-img .txt h4{
    color: white;
    width: 45%;
}

.news-letter .bg-img .email-field input{
    background-color: rgba(0, 0, 0, 0.178);
    border: 1px solid #deb018;
    padding: 5px 5px 5px 10px;
    color: white;
    width: 400px;
}

.news-letter .bg-img .email-field input:focus{
    outline: none;
    border: 1px solid #deb018;
}

.news-letter .bg-img .sub-btn .bttn{
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 130px;
    background-color: #deb018;
    font-size: 14px;
    font-weight: 600;
}

@media only screen and (max-width: 768px){
    .news-letter .bg-img .txt h4{
        width: 67%;
    }
    .news-letter .bg-img .email-field input{
        width: 300px;
    }
}
@media only screen and (max-width: 426px){
    .news-letter .bg-img .txt h4{
        width: 100%;
        text-align: center;
        font-size: 19px;
    }
    .news-letter .bg-img .email-field{
        margin-top: 15px;
    }
    .news-letter .bg-img .email-field input{
        width: 50%;
    }
    .news-letter .bg-img .email-field input::placeholder{
        font-size: 14px;
    }
    .news-letter .bg-img .sub-btn{
        width: 50%;
    }
    .news-letter .bg-img .sub-btn .bttn{
        width: 100%;
    }
}

/* <!-- NEWS-LETTER------ENDS---------HERE --> */


/* <!-- FOOTER-----------START--------HERE --> */

.footer{
    background-color: #191514;
    padding: 100px;
}

.footer .cardd .para p{
    color: rgb(239, 238, 238);
    font-size: 14px;
    line-height: 25px;
    margin-top: 20px;
}

.footer .cardd .info{
    margin-top: 25px;
}

.footer .cardd .info span{
    display: flex;
    color: rgb(162, 162, 162);
    font-size: 14px;
    margin: 10px 0;
}

.footer .cardd .info span h6{
    font-size: 14px;
    padding-left: 10px;
    font-weight: 300;
}

.footer .cardd .head h3{
    color: white;
    font-weight: 600;
    font-size: 25px;
}

.footer .cardd ul{
    padding: 0;
    margin-top: 20px;
}

.footer .cardd .links ul li{
    list-style: none;
    display: flex;
    margin: 15px 0;
    transition: 0.6s ease;
    font-size: 15px;
}

.footer .cardd .links ul li:hover{
    padding-left: 10px;
}

.footer .cardd .links ul li span{
    color: rgb(162, 162, 162);
}

.footer .cardd .links ul li:hover span{
    color: white;
}

.footer .cardd .links ul li a{
    padding-left: 10px;
    text-decoration: none;
    color: gray;
    transition: 0.4s ease;
}

.footer .cardd .links ul li:hover a{
    text-decoration: underline;
    color: white;
}

.footer .cardd .links-2 ul li:hover{
    padding-left: 0;
}

.footer .cardd .img-card img{
    height: 80px;
    width: 100%;
    object-fit: cover;
}

.copy-right {
    padding: 20px 100px;
    background-color: black;
}

.copy-right .txt span{
    color: rgb(162, 162, 162);
    font-size: 14px;
}

.copy-right .txt span a{
    text-decoration: none;
    color: white;
    padding-left: 5px;
    transition: 0.4s ease;
}

.copy-right .txt span a:hover{
    color: #deb018;
}

.copy-right .social-links span{
    color: rgb(162, 162, 162);
    font-size: 15px;
}

.copy-right .social-links a{
    text-decoration: none;
    color: rgb(162, 162, 162);
}

.copy-right .social-links i{
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-size: 18px;
    transition: 0.4s ease;
}

.copy-right .social-links i:hover{
    color: white;
}

@media only screen and (max-width: 1200px){
    .footer{
        padding: 80px 0;
    }
    .copy-right {
        padding: 20px 50px;
    }
}
@media only screen and (max-width: 768px){
    .footer .card-f-space{
        margin-top: 50px;
    }

    .copy-right {
        padding: 20px 20px;
    }
}
@media only screen and (max-width: 426px){
    .footer .card-f-space{
        margin-top: 0;
    }
    .footer .cards .cardd{
        margin-top: 20px;
    }
    .copy-right {
        display: block !important;
    }
    .copy-right .txt span {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .copy-right .social-links{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5px;
    }
}
@media only screen and (max-width: 375px){
    .copy-right {
        padding: 20px 10px;
    }
}

/* <!-- FOOTER-----------END--------HERE --> */