*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0.8px;
    text-decoration: none;
    list-style-type: none;
    font-family: "font-two";
    font-weight:bold;
}
@font-face {
    font-family: "font-one";
    src: url('../fonts/kagura.otf');
}
@font-face {
    font-family: "font-two";
    src: url('../fonts/enorish.otf');
}
html,body
{
    width: 100%;
    /* height: 100%; */
    overflow-x: hidden;
    /* background: rgba(245, 222, 179, 0.058); */
    background: #F2F7FF;
    /* background: rgb(119, 156, 1); */
    scroll-behavior: smooth;  
    
}

/* HEADER SECTION CSS CODE STARTS  */
header
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 40px;
    position: fixed;
    top:0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid lightgray;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(8px);
}
header .user-data
{
    position: absolute;
    top: 28px;
    right: 0px;
    cursor: pointer;
}
header .user-data .user-data-insides
{
    position: relative;
}
header .user-data .user-data-insides i
{
    font-size: 23px;
    border-radius: 50%;
}

header .user-data .user-data-insides i.active
{
   border: 2px solid crimson;
}
@media screen and (max-width:570px)
{
    header .user-data
    {
        position: absolute;
        top: 30px;
        right: -30px;
        cursor: pointer;
    }
    
}
@media screen and (max-width:460px)
{
    header .user-data
    {
        position: absolute;
        top: 28px;
        right: -65px;
        cursor: pointer;
    }
    header .logo
    {
        position: relative;
        font-size: 15px !important;
        padding-right: 25px;
        z-index: 1;
    }
    header .logo img
    {
        position: absolute;
        left: 5px;
        top: 30%;
        transform: translateY(-50%);
        width: 50px !important;
        height: 50px !important;
        opacity: 0.4;
        z-index: -1;
    }
}
header .user-data .user-data-insides .user-icon-data
{
    width: 170px;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    background-color: white;
    transform: translateX(0px);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    transition: 0.3s ease;
    visibility: hidden;
    opacity: 0;
}
header .user-data .user-data-insides .user-icon-data.active
{
    visibility: visible;
    opacity: 1;
    transform: translateX(-80px);
}
header .user-data .user-data-insides .user-icon-data a
{
    font-size: 13px;
}

header .menu-data
{
    cursor: pointer;
    position: relative;
    z-index: 1;
}
header .menu-data i
{
    font-size: 30px;
    transform: scaleX(1.8);
    transition: 0.4s ease;
}
header .menu-data .blob-img
{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: -1;
    animation: blobanim 8s linear infinite;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
@keyframes blobanim
{
    0%
    {
        transform: translate(-50%, -50%) rotate(0);
    }
     100%
    {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
header .menu-data:hover .blob-img
{
    visibility: visible;
    opacity: 1;
}
header .menu-data:hover i
{
    color: white;
}
header .logo 
{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    cursor: pointer;
    
}
header .logo
{
    font-family: "font-two";
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
}
header .logo img
{
    width: 50px;
    height: 40px;
    object-fit: contain;
    background-repeat: no-repeat;
}
header a
{
    color: black;
    font-size: 18px;
    position: relative;
    z-index: 1;
}
header a::after
{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color:black;
    z-index: -1;
    transition: 0.3s ease;
}
header a:hover::after
{
    width: 100%;
}

@media screen and (max-width:550px) 
{
    header
    {
        padding: 20px;
    }
    header a
    {
        font-size: 15px;
    }
}
/* AWESOME NAVIGATION MENU CSS CODE STARTS  */
.Awesome-navigationMenu
{
   position: fixed;
   top:0;
   left: -110%;
   width: 95%;
   height: 100%;
   background-color: white;
   background: url('../images/green-bg.jpg');
   background: #C3DABE;
   background-position: top;
   background-size: cover;
   z-index: 100;
   padding-top: 40px;
   transition: 1s ease;
   box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}
.Awesome-navigationMenu .nav-tile
{
    width: 200px;
    height: 100%;
    background-color: white;
    position: absolute;
    top:0;
    left: 0;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 20%; */
}
.Awesome-navigationMenu .nav-tile h3
{
    transform: rotate(-90deg);
    transform-origin: center;
    font-size: 3rem;
    width: 100%;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: var(--font-two);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.Awesome-navigationMenu .nav-tile h3 img
{
    width: 50px;
}
.Awesome-navigationMenu.active
{
    left: 0;
}
.Awesome-navigationMenu .Awesome-navigationMenu-links
{
    width: fit-content;
    height: 80px;
    margin: 20px 40px 20px 250px;
    padding:0 10px;
    color: black;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.Awesome-navigationMenu .Awesome-navigationMenu-links.signIN-UP
{
    display: inline-block;
    height: 100px;
}
.Awesome-navigationMenu .Awesome-navigationMenu-links.signIN-UP a
{
    display: inline-block;
    width: fit-content;
}
.Awesome-navigationMenu .Awesome-navigationMenu-links-other a:nth-child(2)
{
    /* visibility: visible;
    opacity: 1; */
    font-size: 10rem;
    background-color: transparent !important;
}
.Awesome-navigationMenu .Awesome-navigationMenu-links-other.signIN-UP a:nth-child(2)
{
    background-color: #ffffff;
    color: #C4DBBF;
    padding: 5px 10px;

}
.Awesome-navigationMenu .Awesome-navigationMenu-links .nav-container
{
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    transition: 0.4s ease;
}
.close-btn
{
    position: absolute;
    top:20px;
    right: 30px;
    font-size: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: 0.3s ease;
}
.close-btn:hover
{
    color: crimson;
}
.close-btn:hover
{
     border-bottom: 2px solid crimson;
}
.Awesome-navigationMenu .Awesome-navigationMenu-links:hover .nav-container
{
    transform: translateY(-90px);
}
.Awesome-navigationMenu .Awesome-navigationMenu-links a
{
    width: 100%;
    font-size: 5rem;
    /* transform: scaleX(2); */
    display: block;
    font-weight: bold;
    color: black;
    line-height: 1;
    white-space: nowrap;
    padding: 5px;
}
.Awesome-navigationMenu .Awesome-navigationMenu-links a:nth-child(2)
{
    background-color: #ffffff;
    color: #C4DBBF;
    padding: 5px;
}
.Awesome-navigationMenu .navigation-img
{
    position: absolute;
    top:100px;
    right: 50px;
    width: 0px;
    height: 450px;
    transition: 0.5s ease;
    overflow: hidden;
}
.Awesome-navigationMenu .navigation-img.active
{
     width: 400px;
}
.Awesome-navigationMenu .navigation-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Awesome-navigationMenu .navigation-img h1
{
    font-size: 8rem;
    padding-left: 50px;
    transform: translateY(-300px);
    color: white;

}

@media screen and (max-width:1500px)
{
    .Awesome-navigationMenu .navigation-img
    {
        height: 350px;
    }
    .Awesome-navigationMenu .navigation-img.active
    {
        width: 300px;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links a
    {
        font-size: 4rem;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links
    {
        height: 60px;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links:hover .nav-container
    {
        transform: translateY(-80px);
    }
    .Awesome-navigationMenu .navigation-img h1
    {
        font-size: 5rem;
    }
}
@media screen and (max-width:1180px)
{
    .Awesome-navigationMenu .Awesome-navigationMenu-links a
    {
        font-size: 3rem;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links:hover .nav-container
    {
        transform: translateY(-60px);
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links
    {
        height: 50px;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links a img
    {
        width: 40px !important;
    }
}
@media screen and (max-width:1095px)
{
    .Awesome-navigationMenu .Awesome-navigationMenu-links
    {
        margin: 20px 40px 20px 180px;
    }
    .Awesome-navigationMenu .navigation-img
    {
        height: 300px;
    }
    .Awesome-navigationMenu .navigation-img.active
    {
        width: 250px;
    }
    .Awesome-navigationMenu .nav-tile
    {
        width: 150px;
    }
    .Awesome-navigationMenu .nav-tile h3
    {
        transform: rotate(-90deg);
        transform-origin: center;
        font-size: 2rem;
    }
}
@media screen and (max-width:930px)
{   
    .Awesome-navigationMenu .nav-tile
    {
        width: 100px;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links
    {
        margin: 20px 40px 20px 110px;
    }
    .Awesome-navigationMenu .navigation-img
    {
        height: 300px;
    }
    .Awesome-navigationMenu .navigation-img.active
    {
        width: 200px;
    }
    .Awesome-navigationMenu .navigation-img h1
    {
        font-size: 4rem;
    }
}
@media screen and (max-width:800px)
{
    .Awesome-navigationMenu .navigation-img
    {
        display: none;
    }
}
@media screen and (max-width:600px)
{
    .Awesome-navigationMenu .Awesome-navigationMenu-links a
    {
        font-size: 2.5rem;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links
    {
        height: 40px;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links:hover .nav-container
    {
        transform: translateY(-55px);
    }
    .Awesome-navigationMenu .close-btn
    {
        font-size: 25px;
    }
}
@media screen and (max-width:500px)
{
    .Awesome-navigationMenu .nav-tile
    {
        width: 70px;
        
    }
    .Awesome-navigationMenu .nav-tile img
     {
        width: 40px !important;
     }
    .Awesome-navigationMenu .Awesome-navigationMenu-links
    {
        margin: 20px 40px 20px 70px;
        height: 35px;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links a
    {
        font-size: 1.8rem;
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links:hover .nav-container
    {
        transform: translateY(-40px);
    }
    .Awesome-navigationMenu .Awesome-navigationMenu-links a img
    {
        width: 30px !important;
    }
    .Awesome-navigationMenu
    {
    width: 100%;
    }
}
/* AWESOME NAVIGATION MENU CSS CODE ENDS  */

/* HEADER SECTION CSS CODE ENDS  */

/* HOME SECTION CSS CODE STARTS  */
.home-section
{
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 1;
    /* background-color: rebeccapurple; */
}

.home-section .papercut
{
    position: absolute;
    bottom: -70%;
    left: -10%;
    width: 120%;
    height: auto;
    transform: scaleY(1.4) rotate(90deg) rotateX(180deg);
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
    /* background-color: rebeccapurple; */
}
.home-section h1
{
    font-size: 10vw;
    font-family: "font-two";
    text-align: center;
    line-height: 1;
    width: 100%;
    z-index: 1;
    margin-top: 120px;
    position: relative;
    white-space: nowrap;
}

.home-section h1::before
{
    content: "";
    position: absolute;
    top: -70px;
    left: 40px;
    width: 300px;
    height:300px;
    background: url(../images/logo_hw.png);
    background-position: center;
    background-size: cover;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}
.home-section h1 .img-1
{
    /* position: absolute; */
    width: 250px;
    height: 350px;
    object-fit: cover;
    mix-blend-mode: darken;
    transform: translateX(-50px);
    z-index: -1;
    display: none;
}
.home-section h1 .img-2
{
    width: 250px;
    height: 350px;
    object-fit: cover;
    mix-blend-mode: darken;
    position: absolute;
    transform: translateX(50px);
    display: none;
}
.home-section .home-section-cols
{
    width: 100%;
    height: fit-content;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.home-section .home-section-cols .home-section-cols-left, .home-section-cols-middle
{
    flex-basis: 20%;
    height: 500px;
    margin-top: 50px;
}

.home-section .home-section-cols .left-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-section .home-section-cols .home-section-cols-left h4
{
    margin-bottom: 20px;
}
.home-section .home-section-cols .home-section-cols-right
{
    flex-basis: 45%;
    height: 500px;
    margin-left: 20px;
    transform: translateY(-150px);
    position: relative;
}
.home-section .home-section-cols .home-section-cols-right h4
{
    background-color: white;
    padding: 10px;
    line-height: 1.6;
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 50%;
}
.home-section .home-section-cols .right-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-section .home-section-cols .home-section-cols-right .aboutUS
{
    margin-top: 50px;
    display: block;
    font-size: 30px;
    padding: 15px 50px;
    border-radius: 35px;
    color: black;
    border: 1px solid black;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s ease;
}
.home-section .home-section-cols .home-section-cols-right .aboutUS::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: black;
    z-index: -1;
    border-radius: 35px;
    transition: 0.5s ease;
}
.home-section .home-section-cols .home-section-cols-right .aboutUS:hover
{
    color: white;
}
.home-section .home-section-cols .home-section-cols-right .aboutUS:hover::after
{
    height: 100%;
}

@media screen and (max-width:1600px)
{
    .home-section .home-section-cols .home-section-cols-left, .home-section-cols-middle
    {
        flex-basis: 20%;
        height: 380px;
        margin-top: 50px;
    }
    .home-section .home-section-cols .home-section-cols-right
    {
        flex-basis: 45%;
        height: 380px;
        margin-left: 10px;
        transform: translateY(-120px);
        position: relative;
    }

    .home-section h1::before
    {
        top: -70px;
        left: 40px;
        width: 280px;
        height:280px;
    }
}

@media screen and (max-width:1400px)
{
     .home-section h1::before
    {
        top: -70px;
        left: 40px;
        width: 250px;
        height:250px;
    }
}

@media screen and (max-width:1300px)
{
    .home-section .home-section-cols .home-section-cols-right .aboutUS
    {
        margin-top: 50px;
        display: block;
        font-size: 20px;
        padding: 10px 30px;
    }
    .home-section .home-section-cols h4
    {
        font-size: 14px;
    }
     .home-section .home-section-cols .home-section-cols-left, .home-section-cols-middle
    {
        flex-basis: 20%;
        height: 300px;
        margin-top: 50px;
    }
    .home-section .home-section-cols .home-section-cols-right
    {
        flex-basis: 45%;
        height: 300px;
        margin-left: 10px;
        transform: translateY(-100px);
        position: relative;
    }
}
@media screen and (max-width:1092px)
{
     .home-section h1::before
    {
        top: -70px;
        left: 40px;
        width: 220px;
        height:220px;
    }
}

@media screen and (max-width:950px)
{
    .home-section .home-section-cols h4
    {
        font-size: 12px;
    }
    .home-section .home-section-cols .home-section-cols-left, .home-section-cols-middle
    {
        flex-basis: 25%;
        height: 200px;
    }
    .home-section .home-section-cols .home-section-cols-right
    {
        flex-basis: 45%;
        height: 230px;
        margin-left: 0;
        transform: translateY(-65px);
    }
    .home-section .home-section-cols .home-section-cols-right h4
    {
        right: -10px;
    }
    .home-section h1::before
    {
        top: -50px;
        left: 40px;
        width: 150px;
        height:150px;
    }
}
@media screen and (max-width:690px) {
  .home-section h1
    {
        font-size: 9.5vw;
        font-family: "font-two";
        text-align: center;
        line-height: 1;
        width: 100%;
        z-index: 1;
        margin-top: 100px;
    }
    .home-section .home-section-cols
    {
        flex-wrap: wrap;
    }
    .home-section .home-section-cols h4
    {
        font-size: 11.5px;
    }

    .home-section .home-section-cols .home-section-cols-right {
        flex-basis: 100%;   /* full width */
        order: -1;   
        transform: translateY(0px);   
        margin-bottom: 50px;   
    }

    .home-section .home-section-cols .home-section-cols-left,
    .home-section .home-section-cols .home-section-cols-middle {
        flex-basis: 46%;    /* side by side */
    }
    .home-section .home-section-cols .home-section-cols-left
    {
        height: 220px;
    }
    .home-section h1::before
    {
        top: -35px;
        left: 40px;
        width: 90px;
        height:90px;
    }
}
/* HOME SECTION CSS CODE ENDS  */

/* ABOUT US SECTION CSS CODE STARTS  */

.about-us
{
    width: 100%;
    padding: 200px 40px 150px 40px;
    height: auto;
    position: relative;
    z-index: 5;
}
.about-us .about-us-cols
{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}
.about-us .about-us-cols .about-us-cols-left
{
    flex-basis: 60%;
}
.about-us .about-us-cols .about-us-cols-left h1
{
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1;
}
.about-us .about-us-cols .about-us-cols-left p
{
    line-height: 1.8;
    margin-bottom: 50px;
}
.about-us .about-us-cols .about-us-cols-right
{
    flex-basis: 30%;
}
.about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
{
    width: 500px;
    height: 600px;
    margin: auto;
}
.about-us .about-us-cols .about-us-cols-left-insides
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}
.about-us .about-us-cols .about-us-cols-left-insides h3
{
    font-size: 4rem;
    text-transform: uppercase;
}
.about-us .about-us-cols .about-us-cols-left-insides h4
{
    font-size: 20px;
}

.about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper-slide.swiper-slide img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* height: 100%; */
}
@media screen and (max-width:1600px)
{
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 450px;
        height: 500px;
    }
    .about-us .about-us-cols .about-us-cols-left h1
    {
        font-size: 4rem;
    }
}
@media screen and (max-width:1450px)
{
 .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 400px;
        height: 400px;
    }
    .about-us .about-us-cols .about-us-cols-left h1
    {
        font-size: 3rem;
    }
    .about-us .about-us-cols .about-us-cols-left-insides h3
    {
        font-size: 3rem;
        text-transform: uppercase;
    }

}
@media screen and (max-width:1300px)
{
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 320px;
        height: 450px;
    }
    .about-us .about-us-cols .about-us-cols-left-insides h4
    {
        font-size: 16px;
    }
    .about-us .about-us-cols .about-us-cols-left p
    {
        font-size: 14px;
    }
}
@media screen and (max-width:1000px)
{
    .about-us .about-us-cols .about-us-cols-left h1
    {
        font-size: 2.5rem;
    }
    .about-us
    {
        width: 100%;
        padding: 130px 40px 50px 40px;
    }
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 300px;
        height: 400px;
    }
    .about-us .about-us-cols .about-us-cols-left-insides h3
    {
        font-size: 2rem;
        text-transform: uppercase;
    }
    .about-us .about-us-cols .about-us-cols-left-insides h4
    {
        font-size: 13px;
    }
}
@media screen and (max-width:950px)
{

    .about-us .about-us-cols
    {
        flex-wrap: wrap;
    }
    .about-us .about-us-cols .about-us-cols-left, .about-us .about-us-cols .about-us-cols-right
    {
        flex-basis: 100%;
    }
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 600px;
        height: 400px;
        margin: auto;
        padding-top: 30px;
        overflow: hidden;
    }
}
@media screen and (max-width:700px)
{
    .about-us
    {
        padding: 110px 20px 50px 20px;
    }
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 400px;
    }
}
@media screen and (max-width:450px)
{
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 350px;
    }
}
@media screen and (max-width:400px)
{
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 320px;
    }
}
@media screen and (max-width:360px)
{
    .about-us .about-us-cols .about-us-cols-right .about-us-cols-right-swiper.photoSwiper
    {
        width: 280px;
    }
}
/* ABOUT US SECTION CSS CODE ENDS  */

/* SPECIAL GALLERY SECTION CSS CODE STARTS  */
.special-gallery
{
    width: 100%;
    background: url('../images/title.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: auto;
    z-index: 1;
    position: relative;
    margin-bottom: 50px;
}
.special-gallery .special-gallery-cursor p
{
    font-size: 14px;
}
.special-gallery .h1-tag
{
    width: 100%;
    position: sticky;
    top:50%;
    transform: translateY(-50%);
}
.special-gallery h1
{
    padding-top: 100px;
    text-align: center;
    width: 100%;
    font-size: 9rem;
    white-space: nowrap;
    transform: scaleY(2);
    opacity: 0;
}
.special-gallery .special-gallery-cols
{
    margin: 40px auto;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:120px;
}
.special-gallery .special-gallery-cols .special-gallery-cols-imgs
{
    flex-basis: 250px;
    height: 320px;
    position: relative;
    transition: 0.3s ease;
}
.special-gallery .special-gallery-cols .special-gallery-cols-imgs:hover
{
    scale: 1.05;
}
.special-gallery .special-gallery-cols .special-gallery-cols-imgs img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.special-gallery .special-gallery-cols .special-gallery-cols-imgs p
{
    position:absolute;
    top:0;
    left: 0;
    transform: translate(-50%, -50%);
    background-color: rgb(0, 0, 0);
    color: white;
    box-shadow: 4px 4px 5px rgba(0,0,0,0.2);
    padding: 5px 20px;
    z-index: 10;
    pointer-events: none;
    width: fit-content;
    white-space: nowrap;
    text-align: center;
    visibility: hidden;
    opacity: 0;
}
.special-gallery .view-more-btn
{
    margin: 50px auto 10px auto;
    display: block;
    font-size: 30px;
    padding: 15px 50px;
    border-radius: 35px;
    color: black;
    border: 1px solid black;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s ease;
    background-color: #FEFBF6;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}
.special-gallery .view-more-btn::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: black;
    z-index: -1;
    border-radius: 35px;
    transition: 0.5s ease;
}
.special-gallery .view-more-btn:hover
{
    color: white;
}
.special-gallery .view-more-btn:hover::after
{
    height: 100%;
}

@media screen and (max-width:1600px)
{
    .special-gallery .special-gallery-cols
    {
        margin: 40px auto;
        width: 100%;
    }
    .special-gallery .special-gallery-cols .special-gallery-cols-imgs
    {
        flex-basis: 250px;
        height: 320px;
    }
}
@media screen and (max-width:1500px)
{
    .special-gallery .special-gallery-cols .special-gallery-cols-imgs
    {
        flex-basis: 300px;
        height: 320px;
    }
}
@media screen and (max-width:1300px)
{
    .special-gallery
    {
        width: 100%;
        background: #FDFBF7;
    }
     .special-gallery .special-gallery-cols
     {
        gap: 15px;
     }
    .special-gallery .special-gallery-cols .special-gallery-cols-imgs
    {
        flex-basis: 43%;
        height: 380px;
    }   
     .special-gallery .special-gallery-cols .special-gallery-cols-imgs
    {
        flex-basis: 44%;
        height: 250px;
    }
    .special-gallery .view-more-btn
    {
        margin: 50px auto 10px auto;
        display: block;
        font-size: 20px;
        padding: 10px 30px;
    }
}
@media screen and (max-width:1200px)
{
    .special-gallery .special-gallery-cols .special-gallery-cols-imgs p
    {
        display: none;
    }
}

/* SPECIAL GALLERY SECTION CSS CODE ENDS  */

/* OUR SERVICES SECTION CSS CODE STARTS  */
.our-services
{
    width: 100%;
    height: auto;
    padding: 40px;
    background-color: white;
    background-image: url('../images/green-bg.jpg');
   /* background-attachment: fixed; */
    background-position: center;
    background-size: cover;
}
.our-services h1
{
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    white-space: nowrap;
    column-gap: 30px;
}
.our-services h1 img
{
    width: 100px;
    transform: rotate(15deg);
}
.our-services p
{
    width: 60%;
    margin: 10px auto;
    text-align: center;
    line-height: 1.8;
}
.our-services .cool-hover-services-container
{
    width: 80%;
    margin: 50px auto 10px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.our-services .cool-hover-services-container .cool-hover-services-container-data
{
    flex-basis: 25%;
    height: fit-content;
    background-color: white;
    padding: 30px;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    border-bottom-right-radius: 35px;
    margin-bottom: 30px;
    position: relative;
    transition: 0.3s ease;
}
.our-services .cool-hover-services-container .cool-hover-services-container-data:hover
{
    background-color: black;
    color: white;
}
.our-services .cool-hover-services-container .cool-hover-services-container-data span
{
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}
.our-services .cool-hover-services-container .cool-hover-services-container-data h2
{
    font-size: 2rem;
    text-transform: uppercase;
}
.our-services .cool-hover-services-container .cool-hover-services-container-data small
{
    font-size: 16px;
    width: 100%;
    display: block;
    line-height: 1.8;
}
.our-services .cool-hover-services-container .cool-hover-services-container-data img
{
    position: absolute;
    top:0px;
    left: 0px;
    /* transform: translate(-50%, -50%); */
    pointer-events: none;
    width: 250px;
    height: 250px;
    object-fit: cover;
    mix-blend-mode: difference;
    z-index: 2;
    border-radius: 35px;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width:1600px)
{
    .our-services h1
    {
        font-size: 4rem;
        column-gap: 20px;
    }
     .our-services h1 img
     {
        width: 80px;
     }
     .our-services .cool-hover-services-container .cool-hover-services-container-data
     {
        flex-basis: 30%;
     }
}
@media screen and (max-width:1400px)
{
    .our-services h1
    {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .our-services p
    {
        font-size: 14px;
    }
    .our-services .cool-hover-services-container .cool-hover-services-container-data h2
    {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .our-services p 
    {
        width: 80%;
        margin: 10px auto;
        text-align: center;
        line-height: 1.8;
    }
    .our-services .cool-hover-services-container .cool-hover-services-container-data small
    {
        font-size: 14px;
    }
}
@media screen and (max-width:1200px)
{
    .our-services h1
    {
        font-size: 2.5rem;
    }

    .our-services .cool-hover-services-container .cool-hover-services-container-data img
    {
        display: none;
    }
    .our-services h1 img
    {
        width: 60px;
    }
    .our-services .cool-hover-services-container
    {
        width: 100%;
        gap: 30px;
    }
    .our-services .cool-hover-services-container .cool-hover-services-container-data
    {
        flex-basis: 26%;
    }
}
@media screen and (max-width:1300px)
{
    .our-services
    {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    .our-services p 
    {
        width: 90%;
    }
    .our-services .cool-hover-services-container
    {
        width: 100%;
        gap: 10px;
    }
    .our-services .cool-hover-services-container .cool-hover-services-container-data
    {
        flex-basis: 28%;
    }
}
@media screen and (max-width:750px)
{
    .our-services .cool-hover-services-container .cool-hover-services-container-data
    {
        flex-basis: 48%;
    }
}
@media screen and (max-width:550px)
{
    .our-services h1
    {
        font-size: 2rem;
        flex-direction: column-reverse;

    }
    
     .our-services h1 img
     {
        width: 45px;
     }
     .our-services p
     {
        font-size: 14px;
        width: 100%;
     }
    .our-services .cool-hover-services-container
    {
       gap: 0;
    }
    .our-services .cool-hover-services-container .cool-hover-services-container-data
    {
        flex-basis: 100%;
    }
}
/* OUR SERVICES SECTION CSS CODE ENDS  */

/* CONTACT US SECTION CSS CODE STARTS  */
.contact-us
{
    width: 100%;
    height: auto;
    padding:100px 30px;
    background: url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-margin: 80px;
}
.contact-us .contact-us-cols h1
{
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    color: #C3DABE;
    z-index: 4;
    position: relative;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3),
                 2px 2px 0 white;
    width: 100%;
    white-space: nowrap;
}
.contact-us .contact-us-cols h1 span
{
    -webkit-text-stroke: 1px black;
    color: white;
    display: block;
    font-weight: 100;
    font-size: 4.3rem;
    z-index: 2;
}
.contact-us .contact-us-cols
{
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 100px;
}
.contact-us .contact-us-cols .contact-us-cols-left, .contact-us-cols-right
{
    flex-basis: 40%;
    padding: 10px;
    position: relative;
}
.contact-us .contact-us-cols .contact-us-cols-left .circle-text
{
    position: absolute;
    top:-20%;
    left: -25%;
    width: 300px;
    object-fit: contain;
    pointer-events: none;
    animation: circleanim 20s linear infinite;
}
@keyframes circleanim
{
    from
    {
        transform: rotate(0);
    }
    to
    {
        transform: rotate(360deg);
    }
}
.contact-us .contact-us-cols .contact-us-cols-left form
{
    width: 100%;
}
.contact-us .contact-us-cols .contact-us-cols-left form .contact-us-fields
{
    display: flex;
    flex-direction: column;
    column-gap: 10px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.contact-us .contact-us-cols .contact-us-cols-left form .contact-us-fields label
{
    /* font-size: 17px; */
    margin-bottom: 3px;
}
.contact-us .contact-us-cols .contact-us-cols-left form .contact-us-fields input
{
    padding:15px 12px;
    background: rgba(0, 0, 0, 0.033);
    border-radius: 5px;
    /* font-size: 17px; */
    border: none;
    outline: none;
    /* border: 1px solid #C3DABE; */
}
.contact-us .contact-us-cols .contact-us-cols-left form .message-text
{
    padding:15px 12px;
    background: rgba(0, 0, 0, 0.033);
    border-radius: 5px;
    /* font-size: 17px; */
    border: none;
    outline: none;
    height: 100px;
    /* border: 1px solid #C3DABE; */

}
.contact-us .contact-us-cols .contact-btn
{
    margin: 20px auto 10px auto;
    display: block;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 35px;
    color: black;
    border: 1px solid black;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s ease;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    cursor: pointer;
}
.contact-us .contact-us-cols .contact-btn::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: black;
    z-index: -1;
    border-radius: 35px;
    transition: 0.5s ease;
}
.contact-us .contact-us-cols .contact-btn:hover
{
    color: white;
}
.contact-us .contact-us-cols .contact-btn:hover::after
{
    height: 100%;
}
.contact-us .contact-us-cols-right .FAQ-cols
{
  display: flex;
  flex-direction: column;
}
.contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data
{
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    border-radius: 25px;
    background-color: white;
    /* box-shadow: 5px 5px 10px rgba(0,0,0,0.1); */
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
}
.contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data.active
{
    height: auto;
    background: #C4DBBF;
    animation: accordionAnim 0.3s linear forwards;
}


.contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data h2
{
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
    /* padding-bottom: 10px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}
.contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data.active h2
{
    animation: accordionAnim 0.3s linear forwards;
}
.contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data.active p
{
    animation: accordionAnim 0.3s linear forwards;
}
@keyframes accordionAnim
{
    from
    {
        transform: translateY(15px);
        /* opacity: 0.7; */
    }
    to
    {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media screen and (max-width:1600px)
{
    .contact-us .contact-us-cols
    {
        width: 90%;
        column-gap: 40px;
    }
    .contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data h2
    {
        width: 100%;
        font-size: 18px;
    }
    .contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data p
    {
        font-size: 14px;
    }
    .contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data
    {
        width: 100%;
        height: 50px;
    }
}
@media screen and (max-width:1150px)
{
    .contact-us .contact-us-cols
    {
        width: 80%;
        column-gap: 20px;
    }
    .contact-us .contact-us-cols .contact-us-cols-left, .contact-us-cols-right
    {
        flex-basis: 43%;
    }
}
@media screen and (max-width:950px)
{
    .contact-us .contact-us-cols
    {
        flex-wrap: wrap;
    }
    .contact-us .contact-us-cols .contact-us-cols-left, .contact-us .contact-us-cols .contact-us-cols-right
    {
        flex-basis: 100%;
    }
    .contact-us .contact-us-cols .contact-us-cols-left .circle-text
    {
        position: absolute;
        top:-130px;
        left: -120px;
        scale: 0.7;
    }
    .contact-us
    {
        width: 100%;
        height: auto;
        padding:50px 10px;
    }
    .contact-us .contact-us-cols h1
    {
        font-size: 2.8rem;
    }
    .contact-us .contact-us-cols h1 span
    {
        font-size: 2.8rem;
    }
    .contact-us .contact-us-cols-right .FAQ-cols .FAQ-cols-data h2
    {
        width: 100%;
        font-size: 16px;
    }
}
@media screen and (max-width:500px)
{
    .contact-us .contact-us-cols
    {
        width: 100%;
    }
}
/* CONTACT US SECTION CSS CODE ENDS */

/* TESTIMONIALS SECTION CSS CODE STARTS  */
.testimonials
{
    width: 100%;
    padding: 20px;
    background:url('../images/couter-top.png');
    background-position: top;
    background-size: cover;
}
.testimonials h1
{
    text-align: center;
    margin-bottom: 10px;
    font-size: 4.5rem;
}
.testimonials small
{
    display: block;
    width: 60%;
    margin: auto;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
}
.testimonials h5
{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    margin-bottom: 10px;
}
.testimonials .testimonials-swiper.testimonialsSWIPER
{
    padding: 100px 0;
}
.testimonials .testimonials-swiper-slides.swiper-slide
{
    padding: 20px;
    border-radius: 35px;
    line-height: 1.6;
    background-color: #C7E37C;
    transform: rotate(5deg);
    height: fit-content;
    width: fit-content;

}
.testimonials .testimonials-swiper-slides.swiper-slide p
{
    font-size: 14px;
}
.testimonials .testimonials-swiper-slides.swiper-slide:nth-child(2n+1)
{
    background-color: #E9E3D7;
    transform: rotate(-5deg);
}

.testimonials .testimonials-swiper-slides.swiper-slide .rating
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    margin: 5px 0;
}

.testimonials .testimonials-btn
{
    margin:0px auto 10px auto;
    display: block;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 35px;
    color: black;
    border: 1px solid black;
    width: fit-content;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s ease;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    cursor: pointer;
    transform: translateY(-20px);
}
.testimonials .testimonials-btn::after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: black;
    z-index: -1;
    border-radius: 35px;
    transition: 0.5s ease;
}
.testimonials .testimonials-btn:hover
{
    color: white;
}
.testimonials .testimonials-btn:hover::after
{
    height: 100%;
}
@media screen and (max-width:1300px)
{
    .testimonials h1
    {
        text-align: center;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
    .testimonials small
    {
        display: block;
        width: 90%;
        margin: auto;
        line-height: 1.6;
        font-size: 13px;
        text-align: center;
    }
}
/* TESTIMONIALS SECTION CSS CODE ENDS  */

/* AESTHETICS SECTION CSS CODE STARTS */
.aesthetics-video
{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.aesthetics-video .counter-top
{
    position: absolute;
    top:-40px;
    object-fit: cover;
    left: 0;
    z-index: 5;
    transform: scaleY(1.4);
}
.aesthetics-video .counter-bottom
{
    position: absolute;
    bottom:-30px;
    width: 100%;
    object-fit: cover;
    left: 0;
    z-index: 5;
    transform: rotateX(180deg) scaleY(1.6);
}
.aesthetics-video .aesthetics-video-src
{
    width: 100%;
    height: 700px;
    position: relative;
}
.aesthetics-video .aesthetics-video-src video
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.aesthetics-video .aesthetics-video-src h1
{
    font-size: 6rem;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-text-stroke: 2px yellow;
    color: yellow;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 0.8;
    text-shadow: 4px 4px 20px rgba(0,0,0,0.8) !important;
    width: 70%;
    z-index: 2;
}
.aesthetics-video .imgTrail
{
    width: 200px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    position: absolute;
    /* top:50%;
    left: 50%; */
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    /* mix-blend-mode: overlay; */
}

@media screen and (max-width:1450px)
{
    .aesthetics-video .aesthetics-video-src h1
    {
        font-size: 5rem;
    }
    .aesthetics-video .aesthetics-video-src
    {
        width: 100%;
        height: 500px;
    }
    .aesthetics-video .aesthetics-video-src h1
    {
        font-size: 4rem;
    }
}
@media screen and (max-width:1200px)
{
    .aesthetics-video .imgTrail
    {
        display: none;
    }
}
@media screen and (max-width:1000px)
{
    .aesthetics-video .counter-bottom
    {
        bottom:-20px;
    }
}
@media screen and (max-width:800px)
{
    .aesthetics-video .aesthetics-video-src h1
    {
        font-size: 3rem;
        width: 90%;
        -webkit-text-stroke: 0px yellow;
    }
}
@media screen and (max-width:550px)
{
    .aesthetics-video .aesthetics-video-src h1
    {
        font-size: 2rem;
        width: 95%;
        -webkit-text-stroke: 0px yellow;
    }
}
/* AESTHETICS SECTION CSS CODE ENDS */

/* FOOTER SECTION CSS CODE STARTS */
footer
{
    width: 100%;
    padding: 40px 20px;
    position: relative;
}
footer .counter-bottom
{
    position: absolute;
    top:-80px;
    width: 100%;
    object-fit: cover;
    left: 0;
    z-index: 5;
    transform: rotateX(180deg) scaleY(1.6);
    opacity: 0.6;
}
footer .footer-cols .footer-logo
{
    position: relative;
}
footer h1
{
    width: 50%;
    text-align: center;
    font-size: 5rem;
    text-transform: uppercase;
    -webkit-text-stroke: 2px black;
    line-height: 1;
}
footer .footer-cols
{
    width: 90%;
    display: flex;
    justify-content: center;
    column-gap: 40px;
}
footer .footer-links
{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    width: 100%;
    margin: 20px auto;
}
footer .footer-links a
{
    color: black;
    display: block;
    font-size: 20px;
}
footer .footer-cols .footer-cols-data
{
    flex-basis: 40%;
}
footer .footer-cols .footer-cols-data:nth-child(1)
{
    flex-basis: 500px;
    margin-right: 40px;
}
footer .footer-cols .footer-logo img
{
    position: absolute;
    top: 0;
    right: 100px;
    width: 100px;
    pointer-events: none;
}
footer .footer-cols .footer-logo h1::before
{
    content: "";
    position: absolute;
    top: -25px;
    right: -40px;
    width: 150px;
    height:120px;
    background: url(../images/logo_hw.png);
    background-position: center;
    background-size: cover;
    z-index: -1;
}
footer .footer-cols .footer-logo h1 
{
    position: relative;
    z-index: 1;
    width: fit-content;
    text-align: left;
    /* background-color: rebeccapurple; */
}
footer .footer-cols .footer-cols-data .socials
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    column-gap: 12px;
    margin-top: 20px;
}
footer .footer-cols .footer-cols-data .socials a img
{
    width: 40px;
    cursor: pointer;
}

@media screen and (max-width:970px)
{
    footer .footer-cols
    {
        width: 100%;
        flex-wrap: wrap;
        row-gap: 40px;
    }
    footer .footer-cols .footer-cols-data
    {
        flex-basis: 100%;
    }
    footer h1
    {
        width: 50%;
        text-align: center;
        font-size: 3rem;
    }
    footer .footer-cols .footer-cols-data
    {
        flex-basis: 100%;
    }
    footer .footer-cols .footer-cols-data:nth-child(1)
    {
        flex-basis: 390px;
        margin-right: auto;
    }
    footer .footer-cols .footer-logo h1::before
    {
        top: 0px;
        right: -50px;
    }
}
@media screen and (max-width:475px)
{
    footer .footer-cols .footer-cols-data:nth-child(1)
    {
        flex-basis: 90%;
    }
    footer .footer-cols .footer-logo h1::before
    {
        opacity: 0.7;
    }
}
/* FOOTER SECTION CSS CODE ENDS */

/* GALLERY SECTION CSS CODE STARTS  */
.gallery-container
{
    width: 100%;
    height: auto;
}
.gallery-container .gallery-container-top
{
    width: 100%;
    animation:galleryText 10s linear infinite;   
}
.gallery-container .gallery-categories
{
    width: 100%;
    margin: 50px 20px 0px 20px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.gallery-container .gallery-categories .categories-buttons
{
    padding: 6px 15px;
    border-radius: 35px;
    background-color: transparent;
    color: black;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 12px;
    border: 1px solid black;
    transition: 0.2s ease;
}
.gallery-container .gallery-categories .categories-buttons:hover
{
    background-color: black;
    color: white;
}
.gallery-container .gallery-categories .categories-buttons:active
{
    scale: 1.1;
}
.gallery-container .gallery-categories .categories-buttons.active
{
    background-color: black;
    color: white;
}
.gallery-container .scroll-wrapper {
  width: 100%;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
}

.gallery-container .scroll-text
{
  display: inline-block;
  align-items: center;
  animation: scrollText 15s linear infinite;
  font-size: 10rem;
  padding: 50px 0 0 0;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.gallery-container .gallery-container-top
{
    width: 100%;
    padding: 20px;
    /* background: url('../images/gallery-bg.avif'); */
    background: url('../images/mountain_hill.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}
.gallery-container .gallery-container-top .search-pallete
{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.603);
    backdrop-filter: blur(10px);
    padding: 10px;
    width: 600px;
    border-radius: 35px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);
    
}
.gallery-container .gallery-container-top .search-pallete form .form-insides
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gallery-container .gallery-container-top .search-pallete form .form-insides input
{
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 15px;
    background-color: transparent;
}
.gallery-container .gallery-container-top .search-pallete form .form-insides input::placeholder
{
    color: black;
}
.gallery-container .gallery-container-top .search-pallete form .form-insides .search-pallete-btn
{
    padding:20px 30px;
    border-radius: 25px;
    background-color: white;
    color: rgb(0, 0, 0);
    cursor: pointer;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0);
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
}  
.gallery-container .gallery-container-top .search-pallete form .form-insides .search-pallete-btn:hover
{
    background: black;
    color: white;
} 
.gallery-container .the-image-gallery
{
    margin: 50px auto 150px auto;
    width: 100%;
    padding: 20px;
}
.gallery-container .the-image-gallery .the-image-gallery-cols
{
    columns: 5;
    gap: 15px;
}
.the-image-gallery-cols-images
{
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.the-image-gallery-cols-images img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}
.the-image-gallery-cols-images:hover img
{
    filter: brightness(0.2);
}
.the-image-gallery-cols-images:hover .the-image-gallery-cols-images-data
{
    bottom: 0px;
    opacity: 1;
    visibility: visible;
}
.the-image-gallery-cols .the-image-gallery-cols-images-data
{
    position: absolute;
    bottom: -50%;
    opacity: 0;
    visibility: hidden;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: fit-content;
    text-align: left;
    padding: 15px;
    color: white ;
    transition: 0.4s ease;
}
.the-image-gallery-cols .the-image-gallery-cols-images-data small
{
    font-family: monospace;
    margin: 8px 0;
    display: block;
}
@media screen and (max-width:1600px)
{
    .gallery-container .the-image-gallery .the-image-gallery-cols
    {
        columns: 4;
    }
}

@media screen and (max-width:1350px)
{
    .gallery-container .scroll-text
    {
        font-size: 5rem !important;
        margin-bottom: 30px;
    }
    .the-image-gallery-cols .the-image-gallery-cols-images-data h4, .the-image-gallery-cols .the-image-gallery-cols-images-data h3
    {
        font-size: 14px;
    }
    .the-image-gallery-cols .the-image-gallery-cols-images-data small
    {
        font-family: monospace;
        margin: 5px 0;
    }

}
@media screen and (max-width:1200px)
{
    .gallery-container .the-image-gallery .the-image-gallery-cols
    {
        columns: 3;
        gap: 10px;
    }
}
@media screen and (max-width:1100px)
{
    .the-image-gallery-cols-images:hover img
    {
        filter: brightness(1);
    }
    .the-image-gallery-cols-images:hover .the-image-gallery-cols-images-data
    {
        bottom: 0px;
        opacity: 1;
        visibility: visible;
    }
    .the-image-gallery-cols .the-image-gallery-cols-images-data
    {
        position: unset;
        bottom: unset;
        opacity: 1;
        visibility: visible;
        left: unset;
        transform: unset;
        width: 100%;
        height: fit-content;
        text-align: left;
        padding: 15px;
        color: rgb(0, 0, 0) ;
        transition: unset;
        box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
        background-color: #E9E3D7;
    }
}
@media screen and (max-width:850px)
{
    .gallery-container .gallery-container-top .search-pallete
    {
        width: 80%;
    }
    .gallery-container .scroll-text
    {
        font-size: 3rem !important;
        margin-bottom: 30px;
    }
    .gallery-container .gallery-categories .categories-buttons
    {
        padding: 3px 12px;
    }
}
@media screen and (max-width:650px)
{
    .gallery-container .the-image-gallery .the-image-gallery-cols
        {
            columns: 2;
        }
}
@media screen and (max-width:550px)
{
    .gallery-container .gallery-container-top .search-pallete
    {
        width: 95%;
    }
    .gallery-container .gallery-container-top .search-pallete form .form-insides .search-pallete-btn
    {
        padding:10px 20px;
        font-size: 14px;
    }
}
@media screen and (max-width:450px)
{
    .gallery-container .the-image-gallery .the-image-gallery-cols
        {
            columns: 1;
        }
}
/* GALLERY SECTION CSS CODE ENDS  */


/* ABOUT US PAGE SECTION CSS CODE STARTS  */
.about-us-page
{
    width: 100%;
    padding: 20px 0 0 0;
    margin-top: 100px;
}
.about-us-page .about-us-page-cols
{
    width: 100%;
    padding: 0px 200px;
    display: flex;
    align-items: first baseline;
    justify-content: center;
    column-gap: 200px;
}
.about-us-page .about-us-page-cols .about-us-page-cols-left
{
    flex-basis: 70%;
    position: relative;
    /* background-color: rebeccapurple; */
}
.about-us-page .about-us-page-cols .about-us-page-cols-left h1
{
    font-size: 10rem;
    text-transform: uppercase;
    line-height: 1;
}
.about-us-page .about-us-page-cols .about-us-page-cols-left p
{
    width: 30%;
}
.about-us-page .about-us-page-cols .about-us-page-cols-left p, .about-us-page .about-us-page-cols .about-us-page-cols-right p
{
    font-size: 13px;
}
.about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img
{
    width: 80%;
    height: 400px;
    border-radius: 35px;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    top:180px;
    right: -150px;
}
.about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img.active
{
    visibility: visible;
    animation: blinkanim 0.5s linear forwards;
}
@keyframes blinkanim
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}
.about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-us-page .about-us-page-cols .about-us-page-cols-right
{
    flex-basis: 30%;
    /* background-color: rebeccapurple; */
    position: relative;
    height: fit-content;
}
.about-us-page-cols-right .about-us-page-cols-right-data .about-us-page-cols-right-data-arrows
{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    margin-bottom: 30px;
}
.about-us-page-cols-right .about-us-page-cols-right-data .about-us-page-cols-right-data-arrows i
{
    font-size: 4rem;
    background-color: white;
    border-radius: 10px;
    cursor: pointer;
    color: black;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    text-shadow: 4px 4px 10px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}
.about-us-page-cols-right .about-us-page-cols-right-data .about-us-page-cols-right-data-arrows i:hover
{
    background-color: black;
    color: white;
}
.about-us-page-cols-right .about-us-page-cols-right-data .about-us-page-cols-right-data-arrows i:active
{
    scale: 0.8;
}
.about-us-page-cols-right .photographer-info
{
    display: none;
    line-height: 1.6;
    position: absolute;
    visibility: hidden;
    top: inherit;
    left: inherit;
}
.about-us-page-cols-right .photographer-info h2
{
    font-size: 20px;
    margin-top: 15px;
}
.about-us-page-cols-right .photographer-info.active
{
    display: block;
    visibility: visible;
    animation: blinkanim 0.5s linear forwards;
}

.about-us-page .modern-about-us
{
    padding: 200px 0 100px 0;
    width: 100%;
}
.about-us-page .modern-about-us .modern-about-us-cols
{
    display: flex;
    flex-direction: column;
    position: relative;
    /* row-gap: 20px; */
}
.about-us-page .modern-about-us .modern-about-us-cols .modern-about-us-cols-data
{
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    background-color: white;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    transition: 0.6s ease;

}
.about-us-page .modern-about-us .modern-about-us-cols .modern-about-us-cols-data:hover
{
    background-color: black;
    color: white;
}
.about-us-page .modern-about-us .modern-about-us-cols .modern-about-us-cols-data h1
{
    font-size: 7vw;
    width: 100%;
    white-space: nowrap;
    padding: 10px 0 10px 30px;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
}
.about-us-page .modern-about-us .modern-about-us-cols .dynamic-hover-card
{
    position: absolute;
    width: 300px;
    height: 350px;
    border-radius: 35px;
    overflow: hidden;
    z-index: 100;
    pointer-events: none;
    /* mix-blend-mode:difference; */
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
    z-index: 4;
    opacity: 0;
    visibility: visible;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    background-position: center;
    background-size: cover;
}


@media screen and (max-width:1650px)
{
    .about-us-page .about-us-page-cols
    {
        width: 100%;
        padding: 0px 130px;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left p
    {
        width: 35%;
    }

}
@media screen and (max-width:1450px)
{
    .about-us-page .about-us-page-cols .about-us-page-cols-left h1
    {
        font-size: 8rem;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img
    {
        width: 85%;
        height: 300px;
        top:150px;
    }
    .about-us-page-cols-right .about-us-page-cols-right-data .about-us-page-cols-right-data-arrows i
    {
        font-size: 3rem;
    }
    .about-us-page .modern-about-us .modern-about-us-cols .dynamic-hover-card
    {
        position: absolute;
        /* transform: translate(-50%, -50%); */
        width: 250px;
        height: 300px;
    }
    
}
@media screen and (max-width:1170px)
{
    .about-us-page .about-us-page-cols
    {
        width: 100%;
        padding: 0px 50px;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left h1
    {
        font-size: 8rem;
    }
    .about-us-page .modern-about-us .modern-about-us-cols .modern-about-us-cols-data h1
    {
        font-size: 7vw;
        width: 100%;
        white-space: nowrap;
        padding: 10px 0 10px 10px;
        letter-spacing: 2px;
        position: relative;
        z-index: 5;
    }
}
@media screen and (max-width:1000px)
{
    .about-us-page .about-us-page-cols
    {
        flex-wrap: wrap;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left, .about-us-page .about-us-page-cols .about-us-page-cols-right
    {
        flex-basis: 100%;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-right
    {
        margin-top: 80px;
        margin-bottom: 100px;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img
    {
        width: 60%;
        height: 400px;
        border-radius: 35px;
        position: absolute;
        overflow: hidden;
        visibility: hidden;
        top:140px;
        right: 0px;
    }
    .about-us-page .modern-about-us .modern-about-us-cols .dynamic-hover-card
    {
        display: none;
    }
    .about-us-page .modern-about-us .modern-about-us-cols .modern-about-us-cols-data h1
    {
        font-size: 5vw;
        width: 100%;
        white-space: nowrap;
        padding: 10px 0 10px 10px;
        letter-spacing: 2px;
        position: relative;
        z-index: 5;
    }
}

@media screen and (max-width:670px)
{
    .modern-about-us{
        margin-top:95px;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left p
    {
        width: 100%;
        margin-bottom: 380px;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img
    {
        width: 100%;
        height: 400px;
        border-radius: 35px;
        position: absolute;
        overflow: hidden;
        visibility: hidden;
        top:400px;
        right: 0px;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left h1
    {
        font-size: 5rem;
    }
    .about-us-page .about-us-page-cols
    {
        width: 100%;
        padding: 0px 20px;
    }
    .about-us-page-cols-right .photographer-info h2
    {
        font-size: 15px;
    }
    .about-us-page .modern-about-us .modern-about-us-cols .modern-about-us-cols-data h1
    {
        font-size: 5vw;
        width: 100%;
        white-space: nowrap;
        padding: 5px 0 5px 10px;
        letter-spacing: 2px;
        position: relative;
        z-index: 5;
    }
}
@media screen and (max-width:360px)
{
    .about-us-page .about-us-page-cols .about-us-page-cols-left p
    {
        width: 100%;
    }
    .about-us-page .about-us-page-cols .about-us-page-cols-left .about-us-page-cols-left-img
    {
        top:330px;
    }
}
/* ABOUT US PAGE SECTION CSS CODE ENDS  */

/* OUR SERVICES PAGE SECTION CSS CODE START  */
.our-services-page
{
    width: 100%;
    position: relative;
    margin-top: 100px;
}
.our-services-page .our-services-page-cursor
{
    position: absolute;
    width: 0px;
    height: 0px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    color: black;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    /* mix-blend-mode: color; */
    pointer-events: none;
    text-transform: uppercase;
}
.our-services-page .our-services-page-cols
{
    display: flex;
    justify-content: center;
    column-gap: 100px;
    padding: 10px 200px;
    width: 100%;
}
.our-services-page .our-services-page-cols .our-services-page-cols-left, .our-services-page .our-services-page-cols .our-services-page-cols-right
{   
    flex-basis: 45%;
}
.our-services-page .our-services-page-cols .our-services-page-cols-left h1
{
    font-size: 10rem;
    line-height: .9;
    text-transform: uppercase;
}
.our-services-page .our-services-page-bottom-data
{
   width: 100%;
   padding: 20px;
   margin-top: 50px;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table
{
    width: 100%;
    line-height: 1.6;
}

.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td
{
    padding:100px 20px;
    position: relative;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td p
{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.425);
    backdrop-filter: blur(8px);
    filter: saturate(150%);
    z-index: 10;
    color: black;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    font-family: "font-one";
    line-height: 1.3;
    font-size: 25px;
    color: rgb(0, 0, 0);
    z-index: 10;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td:hover p
{
    opacity: 1;
    visibility: visible;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td h1
{
    font-size: 5vw;
    text-transform: uppercase;
    line-height: 0.9;
    color: white;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table .tdOne
{
    background-image: url('../images/gal3.webp');
    /* background-color: rgba(0,0,0,0.4); */
    background-size: cover;
    background-position: center;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table .tdTwo
{
    background-image: url('../images/about1.webp');
    /* background-color: rgba(0,0,0,0.4); */
    background-size: cover;
    background-position: center;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table .tdThree
{
    background-image: url('../images/s3.jpg');
    /* background-color: rgba(0,0,0,0.4); */
    background-size: cover;
    background-position: center;
    height: 500px;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table .tdFour
{
    background-image: url('../images/s4.jpg');
    /* background-color: rgba(0,0,0,0.4); */
    background-size: cover;
    background-position: center;
}
.our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table .tdFive
{
    background-image: url('../images/s5.jpg');
    /* background-color: rgba(0,0,0,0.4); */
    background-size: cover;
    background-position: center;
}
@media screen and (max-width:1650px)
{
    .our-services-page .our-services-page-cols
    {
        column-gap: 70px;
        padding: 10px 100px;
    }
    .our-services-page .our-services-page-cols .our-services-page-cols-left h1
    {
        font-size: 8rem;
    }
}
@media screen and (max-width:1350px)
{
    .our-services-page .our-services-page-cols .our-services-page-cols-left, .our-services-page .our-services-page-cols .our-services-page-cols-right
    {
        flex-basis: 50%;
    }
}
@media screen and (max-width:1200px)
{
     .our-services-page .our-services-page-cols
    {
        column-gap: 70px;
        padding: 10px 50px;
        flex-wrap: wrap;
    }
     .our-services-page .our-services-page-cols .our-services-page-cols-left, .our-services-page .our-services-page-cols .our-services-page-cols-right
    {
        flex-basis: 100%;
    }
    .our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td p
    {
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.705);
        backdrop-filter: blur(8px);
        filter: saturate(150%);
        z-index: 10;
        color: black;
        position: unset;
        top: unset;
        left: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        font-size: 15px;
        opacity: 1;
        visibility: visible;
        transition: 0.3s ease;
        font-family: "font-one";
        line-height: 1.3;
        font-size: 20px;
        color: rgb(0, 0, 0);
        z-index: 10;
        margin-top: 20px;
    }
    .our-services-page .our-services-page-cursor
    {
        display: none;
    }
    .our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table .tdThree
    {
        height: fit-content;
    }
    .our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td h1
    {
        font-size: 5vw;
    }
  
}
@media screen and (max-width:700px)
{
    .our-services-page .our-services-page-cols .our-services-page-cols-left h1
    {
        font-size: 5rem;
    }
    .our-services-page .our-services-page-cols .our-services-page-cols-left, .our-services-page .our-services-page-cols .our-services-page-cols-right p
    {
        font-size: 13px;
        margin-top: 10px;
    }
    .our-services-page .our-services-page-cols
    {
        column-gap: 70px;
        padding: 10px 20px;
    }
    .our-services-page-table,
    .our-services-page-table tr,
    .our-services-page-table td {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .our-services-page .our-services-page-bottom-data
    {
    width: 100%;
    padding: 20px;
    margin-top: 0px;
    }
    .our-services-page .our-services-page-bottom-data .our-services-page-bottom-data-contents .our-services-page-table td h1
    {
        font-size: 35px;
    }
}
/* OUR SERVICES PAGE SECTION CSS CODE END  */


/* LOGIN PAGE SECTION CSS CODE STARTS  */
.login-page
{
    width: 100%;
    height: fit-content;
    margin-bottom: 50px;
    position: relative;
    /* margin-top: 100px; */
}
.login-page .login-page-cols
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}
.login-page .login-page-cols .login-page-cols-left
{
    width: 100%;
    height: fit-content;
    height: 100vh;
    background: url('../images/login-img.jpg');
    background-size: cover;
    background-position: center;
}
.login-page .login-page-cols .login-page-cols-left
{
    flex-basis: 70%;
}
.login-page .login-page-cols .login-page-right-form
{
    flex-basis: 26%;
    margin-right: 50px;
}
.login-page .login-page-cols .login-page-right-form h2
{
    font-size: 4rem;
    margin-bottom: 10px;

}
.login-page .login-page-cols .login-page-right-form .login-page-fields
{
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    margin-bottom: 10px;
}
.login-page .login-page-cols .login-page-right-form .login-page-fields label
{
    font-size: 25px;
    /* text-transform: uppercase; */
    /* font-weight: bold; */
    margin-bottom: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login-page .login-page-cols .login-page-right-form .login-page-fields input
{
    padding: 8px 10px;
    outline: none;
    border: none;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0.425);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* width: fit-content; */
}
.login-page .login-page-cols .login-page-right-form p, .login-page .login-page-cols .login-page-right-form a
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login-page .login-page-cols .login-page-right-form .login-page-fields .login-page-btn
{
    padding: 8px 10px;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 30px;
    cursor: pointer;
    margin: 20px auto;
    border: none;
}
.login-page .forget-Password-form
{
    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.507);
    backdrop-filter: blur(8px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items:center;
    justify-content: center;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
}
.login-page .forget-Password-form.active
{
    visibility: visible;
    opacity: 1;
}
.login-page .forget-Password-form .forget-password-form-data
{
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    width: 400px;
    height: auto;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}
.login-page .forget-Password-form  .forget-Password-form-cut
{
    text-align: right;
}
.login-page .forget-Password-form .forget-Password-form-title
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.login-page .forget-Password-form i
{
    font-size: 30px;
    color: crimson;
    cursor: pointer;
    transform: rotate(45deg);
}
.login-page .forget-Password-form .forget-password-form-data .forget-Password-form-fields
{
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}
.login-page .forget-Password-form .forget-password-form-data .forget-Password-form-fields label
{
    margin-top: 10px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login-page .forget-Password-form .forget-password-form-data .forget-Password-form-fields input
{
    padding: 15px 14px;
    border: none;
    border: 1px solid black;
    outline: none;
    margin-top: 5px;
    width: 100%;
    /* border-radius: 5px; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
}
.login-page .forget-Password-form .forget-password-form-data .forget-Password-form-fields button
{
    background-color: black;
    padding: 15px 14px;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    /* border-radius: 5px; */
    color: white;
    margin: 15px 0 8px 0;
    font-size: 18px;
    transition: 0.3s ease;
}
.login-page .forget-Password-form .forget-password-form-data .forget-Password-form-fields button:hover
{
    background-color: white;
    color: black;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width:1200px)
{   
    .login-page .login-page-cols .login-page-right-form .login-page-fields label
    {
        font-size: 20px;
    }
    .login-page .login-page-cols .login-page-right-form .login-page-fields input
    {
        font-size: 18px;
    }
    .login-page .login-page-cols .login-page-right-form .login-page-fields .login-page-btn
    {
        font-size: 20px;
    }
    .login-page .login-page-cols .login-page-cols-left
    {
        flex-basis: 50%;
    }
    .login-page .login-page-cols .login-page-right-form
    {
        flex-basis: 50%;
        margin-right: 30px;
    }
    .login-page .login-page-cols
    {
        column-gap: 30px;
    }

    
}
@media screen and (max-width:650px)
{
    .login-page .login-page-cols
    {
        flex-wrap: wrap;
    }
    .login-page .login-page-cols .login-page-cols-left
    {
        flex-basis: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
    .login-page .login-page-cols .login-page-right-form
    {
        flex-basis: 100%;
        margin-right: 20px;
        margin-left: 20px;
    }
    .login-page .forget-Password-form .forget-password-form-data
    {
        background-color: white;
        padding: 15px;
        border-radius: 15px;
        width: 90%;
    }
}
/* LOGIN PAGE SECTION CSS CODE ENDS  */



/* SIGN UP PAGE SECTION CSS CODE STARTS  */

.sign-up-page
{
    width: 100%;
    height: fit-content;
    margin-bottom: 50px;
    /* margin-top: 100px; */
}
.sign-up-page .sign-up-page-cols
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
}
.sign-up-page .sign-up-page-cols .sign-up-page-cols-left
{
    width: 100%;
    height: 100vh;
    background: url('../images/signImg.jpg');
    background-size: cover;
    background-position: center;
}
.sign-up-page .sign-up-page-cols .sign-up-page-cols-left
{
    flex-basis: 70%;
}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form
{
    flex-basis: 26%;
    margin-left: 50px;
    margin-top: 80px;
}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form h2
{
    font-size: 4rem;
    margin-bottom: 10px;

}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields
{
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    margin-bottom: 10px;
}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields label
{
    font-size: 25px;
    margin-bottom: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields input
{
    padding:8px 10px;
    outline: none;
    border: none;
    font-size: 20px;
    border: 1px solid rgba(0, 0, 0, 0.425);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form p, .sign-up-page .sign-up-page-cols .sign-up-page-right-form a
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields .sign-up-page-btn
{
    padding: 8px 10px;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 30px;
    cursor: pointer;
    margin: 20px auto;
    border: none;
}

@media screen and (max-width:1200px)
{   
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields label
    {
        font-size: 20px;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields input
    {
        font-size: 18px;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form .sign-up-page-fields .sign-up-page-btn
    {
        font-size: 20px;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-cols-left
    {
        flex-basis: 50%;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form
    {
        flex-basis: 50%;
        margin-right: 30px;
    }
    .sign-up-page .sign-up-page-cols
    {
        column-gap: 30px;
    }
    
}
@media screen and (max-width:650px)
{
    .sign-up-page .sign-up-page-cols
    {
        flex-wrap: wrap;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-cols-left
    {
        flex-basis: 100%;
        height: 300px;
        order: 1;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form
    {
        flex-basis: 100%;
        margin-right: 20px;
        margin-left: 20px;
        order: 2;
    }
    .login-page .login-page-cols .login-page-right-form h2
    {
        font-size: 3rem;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form h2
    {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    .sign-up-page .sign-up-page-cols .sign-up-page-right-form
    {
        margin-top: 20px;
    }
}
/* SIGN UP PAGE SECTION CSS CODE ENDS */

/* PRODUCT PREVIEW PAGE CSS CODE STARTS  */
.product-preview-page
{
    width: 100%;
    height: fit-content;
    margin-top: 100px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}
.product-preview-page .product-preview-page-blob
{
    position: absolute;
    top:0;
    left: 0;
    opacity: 0.3;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.product-preview-page .product-preview-page-cols
{
    width: 900px;
    margin: auto;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-direction: column;
    row-gap: 20px;
    /* padding: 10px 150px; */
    position: relative;
    z-index: 1;
    /* background-color: rebeccapurple; */
}
.product-preview-page .product-preview-page-cols::before
{
    content: "";
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 80vh;
    z-index: -1;
    /* background-color: #d6d5d4; */
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-left
{
    flex-basis: 100%;
    /* margin: auto; */
    text-align: center;
    /* background-color: #C3DABE; */
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-left img
{
    width: 100%;
    height: 500px;
    margin: auto;
    object-fit: contain;
    /* box-shadow: 4px 4px 2px rgba(0,0,0,0.4); */
    /* border: 2px solid white; */
    /* background-color: #e9e8e763; */
    /* background-color:black; */
    padding: 10px;

}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right
{
    flex-basis: 100%;
    /* background-color: rebeccapurple; */
    line-height: 1.6;
    text-align: center;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right h5
{
    padding-bottom: 5px;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right small
{
    display: block;
    padding: 4px 10px;
    background-color: black;
    color: white;
    width: fit-content;
    margin: auto;
    font-size: 13px;
    letter-spacing: 1.4px;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right h4
{
    font-size: 3rem;
    background-color: white;
    padding: 3px 15px;
    display: inline-flex;
    line-height: 1;
    width: fit-content;
    margin:10px auto;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right h2
{
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right p
{
    padding-bottom: 15px;
    line-height: 1.3;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right h3
{
    font-size: 15px;
    font-style: italic;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right .product-preview-rating
{
    margin: 20px 0 10px 0;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right .product-preview-rating i
{
    font-size: 25px;
    color: goldenrod;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right .product-preview-page-buy-btn
{
    background-color: black;
    color: white;
    cursor: pointer;
    font-size: 30px;
    border: none;
    margin-top: 15px;
    transition: 0.3s ease;
    padding: 5px 20px;
    font-size: 25px;
}
.product-preview-page .product-preview-page-cols .product-preview-page-cols-right .product-preview-page-buy-btn:hover
{
    background-color: white;
    color: black;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3);
}

@media screen and (max-width:1650px)
{
    .product-preview-page .product-preview-page-cols .product-preview-page-cols-left img
    {
        width: 100%;
    }
    .product-preview-page .product-preview-page-cols .product-preview-page-cols-right h4
    {
        font-size: 3rem;
    }
    .product-preview-page .product-preview-page-cols .product-preview-page-cols-right h2
    {
        font-size: 2rem;
    }
    .product-preview-page .product-preview-page-cols .product-preview-page-cols-right .product-preview-page-buy-btn
    {
        padding: 5px 20px;
        font-size: 25px;
    }
}
@media screen and (max-width:1450px)
{
    .product-preview-page .product-preview-page-cols .product-preview-page-cols-right
    {
        flex-basis: 100%;
        padding: 10px;
        line-height: 1.6;
    }
}
@media screen and (max-width:1180px)
{
    .product-preview-page .product-preview-page-cols
    {
        width: 100%;
    }
 
}
@media screen and (max-width:650px)
{
    .product-preview-page .product-preview-page-cols .product-preview-page-cols-left img
    {
        object-fit: cover;
        height: auto;
    }
    .product-preview-page .product-preview-page-cols
    {
        width: 100%;
    }
}
/* PRODUCT PREVIEW PAGE CSS CODE ENDS  */

/* All REVIEWS PAGE SECTION CSS CODE STARTS  */
.all-reviews-page
{
    width: 100%;
    /* height: 100%; */
    padding: 20px;
    margin: 100px auto;
    /* background-image: url('../images/product-page-blob.jpg');
    background-size: cover;
    background-position: center; */
}
.all-reviews-page .all-reviews-page-cols
{
    width: 100%;
    gap: 15px;
    columns: 5;
}
.all-reviews-page .all-reviews-page-cols .all-reviews-page-cols-card
{
    background: #C7E37C;
    padding: 15px;
    border-radius: 35px;
    height:fit-content;
    overflow: hidden;
    margin-bottom: 15px;
    transform: rotate(1deg);

}
.all-reviews-page .all-reviews-page-cols .all-reviews-page-cols-card:nth-child(2n+1)
{
    background: #E9E3D7;
    transform: rotate(-1deg);
}

.all-reviews-page .all-reviews-page-cols .all-reviews-page-cols-card h5
{
    width: 35px;
    height: 35px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 5px;
}
.all-reviews-page .all-reviews-page-cols .all-reviews-page-cols-card p
{
    font-size: 14px;
    line-height: 1.6;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.all-reviews-page .all-reviews-page-cols .all-reviews-page-cols-card .rating
{
    margin-top: 10px;
}
@media screen and (max-width:1400px)
{
    .all-reviews-page .all-reviews-page-cols
    {
        columns: 4;
    }
}
@media screen and (max-width:1100px)
{
    .all-reviews-page .all-reviews-page-cols
    {
        columns: 3;
    }
}
@media screen and (max-width:800px)
{
    .all-reviews-page .all-reviews-page-cols
    {
        columns: 2;
    }
}
@media screen and (max-width:550px)
{
    .all-reviews-page .all-reviews-page-cols
    {
        columns: 1;
    }
}
/* All REVIEWS PAGE SECTION CSS CODE ENDS  */


/* credits css starts  */

.credits{
    width: 100%;
    padding:20px;
    text-align: center;
    background: #fff;
}
.credits p{
    font-size: 14px;
}
/* credits css  ends */


/* PRIVACY POLICY PAGE CSS CODE STARTS  */
.privacy-policy
{
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
    /* height: 100%; */
}
.privacy-policy .privacy-policy-data
{
    margin-top: 100px;
}
.privacy-policy .privacy-policy-data h1
{
    font-family:Arial, Helvetica, sans-serif;
    line-height: 1.5;
    margin-bottom: 15px;
}
.privacy-policy .privacy-policy-data ul 
{
    width: 90%;
    margin: auto;
    line-height: 1.6;
}
.privacy-policy .privacy-policy-data li p
{
    font-family:Arial, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 2;
}
@media screen and (max-width:556px)
{
    .privacy-policy .privacy-policy-data ul 
    {
        width: 100%;
    }
}
/* PRIVACY POLICY PAGE CSS CODE ENDS  */