@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-padding-top: var(--scroll-padding, 100px);
}

html, body {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif !important;
    color: var(--text-color) !important;
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

:root {
    --bg-color: #ffd6ba;
    --btn-color: #EB5B00;
    /* --btn-color: #EB5B00; */
    --text-color: #18212E;
    --heading-font: 'DM Serif Display', serif;
}

#navBar {
    position: relative;
    transition: all 0.5s linear;
    padding: 1.5rem 0px;
}

#logo {
    color: white;
}

.main-logo {
    margin-left:-40px;
}

.navlist_Holder ul li a:hover {
    color: var(--btn-color) !important;
}



.nav_active {
    background-color: white;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.418);
    padding: 1.2rem 0px !important;
}

#nav_list {
    align-items: center;
}

.navlink_active {
    color: var(--btn-color) !important;
    /* font-weight: 600; */
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 30px;
    height: 20px;
    z-index: 9999;

}



.menu-icon .menu-bar {
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transition: all 0.5s ease;
    /* margin: 1rem 0px; */
}

.search-bar {
    margin-left: 16px;
}



#slide-pointer-main {
    position: fixed;
    right: 0;
    z-index: 555;
    height: 100%;
    display: flex;
    align-items: center;
    width: 50px;
}

.slide-pointers {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    outline: 1px solid var(--btn-color);
    cursor: pointer;
    background-color: white;
}

.slide-active {
    background-color: var(--btn-color);
    outline: 1px solid #be5611;
}

.navbar {
    z-index: 1000;
}

.cont-num {
color: #121B28;
}

.search-box {
    background-color: white;
    border: none;
    overflow: hidden;
    width: 00px;
    transition: all 0.5s ease-in;
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
}

.search-btn {
    border: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.search-box:focus {
    outline: none;
}

.search-box-active {
    width: 300px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    visibility: visible;
    opacity: 1;
}

.search-icon-main {
    width: 40px;
    height: 40px;
    background-color: white;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    right: 0;
    top: 0;
    cursor: pointer;
    transition: all 0.5s ease-in;
    transition-delay: 0.2s;
}

/* .search-icon-active {
    box-shadow: none;
    background-color: transparent;
} */


/* Hero section styling*/

#hero {
    position: relative;
    background-color: var(--bg-color);
    width: 100%;
    height: 700px;
}

#hero .go-down-btn {
    position: absolute;
    width: 30px;
    height: 70px;
    outline: 2px solid var(--btn-color);
    bottom: 20px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 2;
}

#hero .go-down-btn::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #EB5B00;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: goDownSlide 2.5s linear infinite;
    /* z-index: -1; */
}

@keyframes goDownSlide {
    0% {
        top: 20%;
    }

    50% {
        top: 80%;
    }

    100% {
        top: 20%;
    }
}


#hero::before {
    content: "";
    position: absolute;
    background-image: url("../Images/hero_BG.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

#hero::after {
    content: "";
    position: absolute;
    background-image: url(../Images/hero_BG_2.svg);
    background-repeat: no-repeat;
    width: 49%;
    height: 38%;
    bottom: 0;
    right: 0;
    opacity: 0.5;
}



.content-holder {
    height: 100%;
    z-index: 2;
}

.content-holder .text-area {
    width: 50%;
    height: 100%;
}

.content-holder .text-area .text-area-holder {
    margin: auto;
}

.content-holder .text-area h1 {
    font-family: var(--heading-font);
    font-size: 5rem;
    text-transform: capitalize;
}

.content-holder .text-area a {
    background-color: var(--btn-color);
    color: white;
}

.img-sec {
    /* background-color: #EB5B00; */
    width: 50%;
    height: 100%;
}

.img-sec .img-holder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-left: px solid black; */
    /* background-color: aquamarine; */
    width: 450px;
    height: 450px;
    border-radius: 100%;
    /* overflow: hidden; */
}

.img-sec .img-holder::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: aqua; */
    border: 15px solid transparent;
    border-radius: 100%;
    border-right-color: #EB5B00;
    transform: rotate(65deg);
    box-sizing: border-box;
    animation: spin 2s ease-in-out infinite;
    transition: all 0.5s ease;
}
@keyframes spin {
    0% {
        transform: rotate(65deg);
    }

    75% {
        transform: rotate(440deg);
    }

    100% {
        transform: rotate(425deg);
    }
}

.img-sec .img-holder .img-section {
    position: absolute;
    width: 400px;
    height: 400px;
    /* background-image: url("/bg.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    overflow: hidden;
}

.img-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero section styling end*/


/* short info styling start */


#short-info {
    height: 100vh;
}

#short-info .short-info-left {
    width: 50%;
}

#short-info .short-info-left img {
    width: 100%;
    height: 100%;
}

#short-info .short-info-right {
    width: 50%;
}

.com-btn {
    background-color: var(--btn-color) !important;

}

.short-info-right h1 {
    font-family: var(--heading-font);
    font-size: 3.2rem;
}

.short-info-right h1>span,
.what_we_do_left_side h1>span {
    color: var(--btn-color);
}


.short-info-right ul li {
    position: relative;
    list-style: none;
    margin-left: 1.5rem;
    text-align: left;
}

.short-info-right ul li::before {
    content: "";
    position: absolute;
    background-image: url(../Images/list_style_icon.svg);
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 67%;
    background-repeat: no-repeat;
    /* display: inline-block; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

/* short info styling end's */

/* what we do styling start */




#what_we_do .what_we_do_holder {
    background-color: var(--bg-color);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, auto);
    border-radius: 3rem;
}

/*
    .what_we_do_holder .what_we_do_left_side {
        display: flex;
        flex-direction: column;
        justify-content: center;
    } */

.what_we_do_left_side h1 {
    font-family: var(--heading-font);
}

.what_we_do_holder .what_we_do_right_side {

    display: grid;
    max-height: 100%;
    grid-template-columns: repeat(2, auto);
    grid-gap: 1rem;
}

.what_we_do_cards {
    background-color: white;
    border-radius: 1rem;
    box-shadow: -14px 11px 10px rgba(0, 0, 0, 0.1);
}
.wwd-icon{
    width: 100px;
    height: 100px;
}

.wwd_text_area h5 {
    font-family: var(--heading-font);
}



/* what we do styling end's */


/* services styling start */

#services {
    height: 100vh;
}

.service-holder h1 {
    font-family: var(--heading-font);
}

.service-holder h1>span {
    color: var(--btn-color);
}

.services-card .s-card-holder {
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.services-card .s-card-holder img {
    height: 100%;
    width: 100%;
}

.s-card-holder .services_card_textarea p {
    font-size: 0.8rem;
    text-align: justify;
}

.s-card-holder .services_card_textarea h5 {
    font-family: var(--heading-font);
}

.s-card-holder .services_card_textarea a {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    text-decoration: none;
    color: var(--btn-color);
    font-weight: 600;
}

.s-card-holder .services_card_textarea .btn-arrow {
    position: relative;
    width: 80px;
}

/* services styling end's */

/* latest News styling Start */

#latest_news .latest_news_holder {
    background-color: var(--bg-color);
    border-radius: 3rem;
}

/* .news_main{
    max-height: 500px;
} */

/* .latest_news_main{
    padding: 1.5rem;
    padding-bottom: 4rem !important;
} */
.latest_news_main h1 {
    font-family: var(--heading-font);
    margin: auto 0;
}

.latest_news_main h1 span {
    color: var(--btn-color);
}

/* .carousel-control-prev,
.carousel-control-next{
    position: absolute;
} */

.news_text-area p {
    font-size: 0.8rem;
}

.news_main {
    overflow: hidden;
    border-radius: 50px;
    background-color: white;
}

.news-date p {
    color: #838383;
    font-size: 0.8rem;
}

.carousel {
    background-color: white;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-item img {
    max-width: 400px;
    height: auto;
    object-fit: cover;
}

.slider-btn {
    background-color: #EB5B00;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    color: white;
}

/* latest News styling end's */

.c-logo-holder {
    max-width: 100px !important;
}

.c-logo-holder>img {
    width: 100%;
    height: 100%;
}

.logo_holder {
    background-color: var(--bg-color);
    border-radius: 20px;
}


.social_media_holder .social-media-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--btn-color);
    font-size: 1.2rem;
    cursor: pointer;
}


.footer {
    background-color: #16243d;
    padding: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Adjust alignment */
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text {
    margin-bottom:1px;
    flex: 1;
    text-align: center; /* ✅ Center Align */
    font-size: 14px;
    color: #fff;
}

.footer-logo {
    width: 200px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    color: #f37021; /* Icon color */
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #ff5722; /* Hover color */
}



/* --------------------------------------------styling for services page  ------------------------------------------*/

/* #heading #heading-bg {
    position: absolute;
    height: 500px;
    width: 100vw;
    transform: translateY(-4rem);
    z-index: -1;
    filter: blur(0.8);
} */

.heading-bg {
    position: relative;
    min-height: 350px;
}

.heading-bg-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading-bg::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgba(24, 33, 46, 0.8), rgba(24, 33, 46, 0.8));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#heading-text-area {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 3;
}

.s-content-holder .success_bg {
    width: 58%;
}

#heading-text {
    margin: auto;
}

.custom-shape-divider-bottom-1673524546 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.custom-shape-divider-bottom-1673524546 svg {
    position: relative;
    display: block;
    width: calc(159% + 1.3px);
    height: 133px;
}

.custom-shape-divider-bottom-1673524546 .shape-fill {
    fill: #FFFFFF;
}

/* #heading-text{
    height: 528px;
} */

#heading-text-area #heading-text h1 {
    font-family: var(--heading-font);
    color: white;
    font-size: 4.5rem;
    text-transform: uppercase;
}


.breadcrumb ul {
    background-color: var(--btn-color);
}

.home_icon {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-card::after {
    content: "";
    position: absolute;
    background: linear-gradient(270deg, rgba(24, 33, 46, 0.9) 11.46%, rgba(24, 33, 46, 0.819) 41.15%, rgba(24, 33, 46, 0) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
   
 }
 
 .container p {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    color: #333;
 }
 
 .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
 }
 
 .item {
    background-color: #e7e7e7;
    padding: 20px;
    border-radius: 5px;
 }
 
 .item h2 {
    font-size: 20px;
    color: #eb5b00;
 }
 
 .item p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
 }
 
 .item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
 }
 
 .item::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
 }
 
 .item h2::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
 }
.s-img-holder {
    width: 100%;
    max-height: 300px;
}

.s-img-holder img {
    max-width: 100%;
    max-height: 100%;
    background-repeat: no-repeat;
    /* background-size: cover; */
    object-fit: cover;
}

.service-textarea {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.s-text-holder {
    width: 80%;
}

.service-textarea .s-text-holder h1 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
}

#load-more-btn {
    background-color: var(--btn-color);
    color: white;
}

#success_sec {
    position: relative;
    /* background-color: var(--bg-color); */
}

/* #success_sec::after{
    content: "";
    position: absolute;
    background-image: url(../Images/success_bg.svg);
    width: 54%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    right: 40px;
    left: 0;
    top: 0;
} */

#success_sec::before {
    content: "";
    position: absolute;
    background-color: var(--bg-color);
    width: 100%;
    height: 88%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.sr-text-area h3 {
    font-size: 1.5rem;
    color: var(--btn-color);
}

.stars {
    color: #FBBD00;
}

.faq-text h1 {
    font-family: var(--heading-font);
}

.faq-text p {
    text-align: justify;
}

.faq-text h1 span {
    color: var(--btn-color);
}

.success-textarea {
    width: 50%;
}

.success-textarea h1 {
    font-family: var(--heading-font);
}

.success-textarea h1 span {
    color: var(--btn-color);
}

.s-content-holder .success-bg {
    width: 55%;
}

.accordion-button {
    border-radius: 0.375rem !important;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 25%) !important;
}

/* .accordion-button:focus {
    box-shadow: none !important;
} */

.accordion-button:not(.collapsed) {
    background-color: var(--btn-color) !important;
    color: white !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/minus-solid.svg") !important;
    color: white !important;
}

.accordion-button::after {
    background-image: url("../images/plus-solid.svg") !important;
}

.accordion-item {
    border: none !important;
}


.accordion-body p {
    padding: 1rem;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 25%);
    border-radius: 0.375rem;
    /* margin-top: 1rem; */
    margin: 1rem 5px 0px 5px;
}

.faq-text-area {
    width: 60%;
}

.questions-holder {
    width: 40%;
}

.faq-img {
    width: 30%;
}




/* --------------------------------------------styling for contact_us page  ------------------------------------------*/

form {
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    transform: translateY(-8rem);
    z-index: 5;
}

.input_field input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid black;
    transition: all 0.2s linear;
    font-size: 0.8rem;
}

.input_field input:focus {
    outline: none;
    border-bottom: 2px solid var(--btn-color);
}

.contact_details {
    background-color: var(--btn-color);
}

.contact_details .social_media_holder .social-media-icon {
    background-color: white;
    color: var(--btn-color);
}



/* ----------------------------------- styling responsive section --------------*/

@media screen and (max-width:992px) {
    .navbar-brand {
        z-index: 9999;
    }

    #hero,
    #short-info .short-info-left,
    #short-info,
    #what_we_do,
    #services,
    #latest_news,
    .img-sec,
    .short-info-right {
        height: 100% !important;
        width: 100% !important;
    }

    .navlist_Holder ul li a {
        color: black;
    }

    .content-holder .text-area {
        width: 100% !important;
    }

    .menu-icon {
        display: flex;
    }

    .menu-bar-bg .menu-bar {
        background-color: rgb(0, 0, 0) !important;
        transition: all 0.5s ease;
    }

    .menu-bar-bg .menu-bar:nth-child(1) {
        transform: translateY(7px) rotate(-45deg);
        top: 0;
    }

    .menu-bar-bg .menu-bar:nth-child(2) {
        opacity: 0;
        visibility: 0;
    }

    .menu-bar-bg .menu-bar:nth-child(3) {
        transform: translateY(-10px) rotate(45deg);
        bottom: auto;
    }

    .navlist_Holder {
        position: absolute;
        flex-direction: column;
        background-color: white;
        right: -100%;
        top: 0px;
        height: 100vh;
        width: 50%;
        padding: 5rem 0px;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .nav_holder_active {
        right: 0px !important;
        box-shadow: 0pt 0pt 0px 100vmax rgb(0 0 0 / 71%);
    }

    #nav_list {
        flex-direction: column;
        width: auto;
        align-items: flex-start;
    }

    #nav_list li {
        display: block;
        width: 100%;
        padding: 0.8rem 2rem;
        border-top: 2px solid var(--bg-color);
        /* margin: 0.5rem 0px; */
    }

    #nav_list li:hover {
        background-color: var(--bg-color);
    }

    #latest_news_heading {
        text-align: center;
    }

    .search-bar {
        margin-left: 0px;
    }

    .carousel-item img {
        max-width: 100%;
    }



    #heading #heading-bg {
        transform: translateY(0px);
    }

    #heading #heading-text {
        margin-top: 2rem;
    }

    #heading-text-area #heading-text h1 {
        font-size: 2.5rem;
    }

    #heading-text-area #heading-text p {
        font-size: 0.8rem;
    }

    #heading #heading-text p {
        font-size: 0.8rem;

    }

    .success-textarea {
        width: 100%;
    }

    .s-textarea h1 {
        font-size: 2.5rem;
    }

    #success_sec::before {
        height: 100%;
    }

    .s-content-holder .success_bg {
        width: 100%;
    }

    .faq-text-area,
    .questions-holder {
        width: 100%;
    }

    form {
        transform: translateY(-5rem);
    }

    .main-logo {
        margin-left:-40px;
    }

}


@media screen and (max-width:1024px) {



    #slide-pointer-main {
        display: none;
    }

    #hero {
        overflow: hidden;
    }

    #hero::before {
        left: -50%;
    }

    #hero::after {
        width: 100%;
        bottom: -73px;
    }

    .short-info-right ul li::before  {
        margin-left:-10px;
    }
    .what_we_do_holder .what_we_do_cards{
        width:17rem;
        height:20rem;
    }



    /* #hero::after{

    } */


    .content-holder .text-area .text-area-holder {
        
        text-align: center;
    }

    .content-holder .text-area h1 {
      
        font-size: 4rem !important;
        text-align: center;
    }

    .main-logo {
        margin-left:-40px;
    }

    #hero .go-down-btn {
        display: none;
    }



    /* #nav_list {
        position: absolute;
        flex-direction: column;
        justify-content: center;
        top: 0;
        right: 0;
        height: 100vh;
        width: 30%;
        padding: 5rem 2rem;
        background: white;
        transform: translateX(100%);
        transition: all 0.3s ease;
    } */
}


@media screen and (max-width:769px) {



    #slide-pointer-main {
        display: none;
    }

    #hero {
        overflow: hidden;
    }

    #hero::before {
        left: -50%;
    }

    #hero::after {
        width: 100%;
        bottom: -73px;
    }
    .what_we_do_cards{
        margin:20px;
    }
    .w




    /* #hero::after{

    } */

    .container p {
        padding: 10px;
    }

    .short-info-right ul li {
        padding-left:15px;
    }
    .search-bar a {
        margin-left:50px;
        }


    .content-holder .text-area .text-area-holder {
        padding: 21px;
        text-align: center;
    }

    .content-holder .text-area h1 {
        padding: 81px;
        font-size: 4rem !important;
        text-align: center;
    }

    .main-logo {
        margin-left:-40px;
    }

    #hero .go-down-btn {
        display: none;
    }



    /* #nav_list {
        position: absolute;
        flex-direction: column;
        justify-content: center;
        top: 0;
        right: 0;
        height: 100vh;
        width: 30%;
        padding: 5rem 2rem;
        background: white;
        transform: translateX(100%);
        transition: all 0.3s ease;
    } */
}

@media screen and (max-width:426px) {
    .what_we_do_holder .what_we_do_right_side {
        display: grid;
        max-height: 100%;
        grid-template-columns: repeat(1, auto) !important;
        grid-gap: 1rem;
    }
    .wwd-icon{
        margin-bottom:0px;
       
    }



    #slide-pointer-main {
        display: none;
    }

    #hero {
        overflow: hidden;
    }

    #hero::before {
        left: -50%;
    }

    #hero::after {
        width: 100%;
        bottom: -73px;
    }@media screen and (max-width: 426px) {
        .footer-content {
            display: flex;
            flex-direction: column;  /* ✅ Row wise layout */
            align-items: center; /* ✅ Center align elements */
            text-align: center;
        }
    
        .footer-logo {
            width: 250px;
            margin-bottom: 10px; /* ✅ Spacing between elements */
        }
    
        .copyright-text {
            font-size: 14px;
            color: #fff;
            margin-bottom: 10px; /* ✅ Space between copyright & icons */
        }
    
        .social_media_holder{
            margin-left:12px;
        }
    }
    


    /* #hero::after{

    } */

    .container p {
        padding: 10px;
    }

    .short-info-right ul li {
        padding-left:15px;
    }

    #heading-text h1{
        margin:1px;
        margin-top:30px;
    }

    .content-holder .text-area .text-area-holder {
        padding: 21px;
        text-align: center;
    }

    .content-holder .text-area h1 {
        padding: 81px;
        font-size: 4rem !important;
        text-align: center;
    }

    #hero .go-down-btn {
        display: none;
    }



    /* #nav_list {
        position: absolute;
        flex-direction: column;
        justify-content: center;
        top: 0;
        right: 0;
        height: 100vh;
        width: 30%;
        padding: 5rem 2rem;
        background: white;
        transform: translateX(100%);
        transition: all 0.3s ease;
    } */
}