@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cause:wght@100..900&family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.animated-element {
    opacity: 0;
    position: relative;
    top: 2rem;
    transition: all .8s ease;
    transition-delay: 2.7;
}
.animated-element.visible {
    opacity: 1;
    position: relative;
    top: 0rem;
    transition: all .9s ease;
}
.whatsapp{
    position: fixed;
    bottom: 30px;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
}
.whatsapp i{
    background-color: green;
    font-size: 2.2rem;
    padding: .5rem;
    border-radius: 50%;
    font-weight: 400;
}
.whatsapp a{
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
}

:root{
    --black-color: rgb(10,10,10);
    --main-color: rgb(248 108 11);
    --main-color-background: rgba(74, 44, 126, .12);
    --secondary-color: rgb(228, 177, 46);
    --secondary-color-background: rgba(228, 177, 46, .04);
    --tertiary-color: rgb(250, 204, 21);
    --main-font-family: "Montserrat", sans-serif;
    /*--animate-delay: 0.7s;*/
    --logo-width: 350px; /* Base width per logo; adjust for your designs */
    --slider-max-width: 90%; /* Controls how many logos are visible (e.g., 4 at 200px) */
    --slider-height: 250px; /* Logo container height */
    /*--animation-duration: 20s; */
}
a{
    text-decoration: none;
    font-family: var(--main-font-family)
}
.hide-menu{
    transform: scale(0,0);
    transform-origin: right;
    transition: transform .5s ease-in-out;
}
.show-menu{
    transform: scale(1, 1);
    transform-origin: right;
    transition: transform .5s ease-in-out;
}
.active{
    color: var(--main-color);
}

div#mobile-nav{
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: var(--black-color);
    position: fixed;
    display: flex;
    padding-inline: 4rem;
    justify-content: center;
    overflow: hidden;
}
#mobile-nav-div{
    width: 100%;
}
#mobile-nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
div#mobile-nav i{
    color: #ffffff;
    cursor: pointer;
    padding-top: 3rem;
}
div#mobile-nav i:hover{
    color: var(--main-color);
}
#mobile-nav-div > ul >li > a{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: .5rem;
    font-weight: 500;
    font-size: 2.5rem;
    font-family: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}
#mobile-nav-div > ul >li > a:hover{
    color: var(--main-color);
}
#mobile-nav-div > ul >li > a.active{
    color: var(--main-color);
}
.mobile-menu p{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: .5rem;
    font-weight: 500;
    font-size: 1rem;
}

#close-menu{
    font-size: 1.5rem;
    text-align: right;
    display: inline-block;
    width: 100%;
    color: #ffffff;
}
nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 5rem;
    position: fixed;
    top: 0;
    z-index: 999;
}
nav img{
    width: 100px;
}

nav i{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
}
nav i:hover{
    color: var(--main-color);
}


#trusted{
    background-color: var(--black-color);
    color: #ffffff40;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--main-font-family);
    padding: 2rem 3rem;
}
.trusted-div{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.trusted-div p{
    font-weight: 700;
    width: 22%;
}

.footer{
    background-color: var(--black-color);
    font-family: var(--main-font-family);
    color: #ffffff;
    padding: 4rem 5rem;
    padding-bottom: 1.5rem;
}

.footer-section-one h1{
    font-size: 2.8rem;
}
.footer-section-one a{
    font-size: 1rem;
    background-color: #ffffff;
    color: var(--black-color);
    text-decoration: none;
    padding: .5rem 2rem;
    position: relative;
    top: -10px;
    border-radius: 40px;
}
.footer-section-one a:hover{
    color: #ffffff;
    background-color: var(--main-color)
}
.footer-section-two{
    display: flex;
    gap: 2rem;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    padding: .2rem;
    width: 100%;
}
.footer-section-two > div{
    width: 25%;
}
.footer-section-two ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-section-two .explore{
    display: flex;
    gap: 1.5rem;
}
.explore > div:nth-child(2){
    display: none;
}
.footer p{
    color: #919191;
    font-family: var(--main-font-family);
}
.footer-section-two ul a{
    display:inline-block;
    color: #919191;
    font-size: .85rem;
    padding-block-end: .3rem;
    text-decoration: none;
    font-family: var(--main-font-family)
}
.footer-section-two h5{
    color: #ffffff40;
    font-size: .98rem;
    text-transform: uppercase;
}
.footer-section-two p{
    font-family: var(--main-font-family);
    font-size: .85rem;
}
.footer-socials p{
    display: flex;
    gap: 1rem;
}

.footer i{
    color: #919191;
}
.footer-socials{
    display: flex;
    gap: 1rem;
}
.footer img{
    max-width: 50%;
    margin-bottom: 2rem;
}

.footer-socials a{
    text-decoration: none;
}
.footer-section-three p{
    font-size: .75rem;
}
@media screen and (max-width: 598px) {
    .animated-element {
        transition-delay: .8s;
    }
    nav{
        padding: .5rem .75rem; 
        justify-content: space-between;
    }
    nav #orders{
        display: none;
    }
    nav ul{
        display: none;
    }
    nav img{
        width: 50px;
    }
    nav .logo-text-one{
        font-size: 1rem;
        font-weight: 700;
        line-height: 6px;
    }
    nav .logo-text-two{
        font-size: .95rem;
        line-height: 6px;
    }
    #mobile-menu{
        display: inline-block;
    }
    
    .footer{
        padding: 1rem 2rem;
    }
    .footer-section-one{
        padding: 1rem .5rem;
    }
    .footer-section-one h1{
        font-size: 1.75rem;
    }
    .footer-section-one a{
        font-size: 1rem;
        padding: .5rem 1rem;
        position: relative;
        top: 2px;
        display: block;
        width: 50%;
        text-align: center;
    }
    .footer-section-two{
        display: flex;
        flex-wrap: wrap;
        padding: .2rem .5rem;
    }
    .footer-section-two > div{
        width: 100%;
    }
    .hero-shadow{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 3px;
        z-index: 9999;
        box-shadow: inset 0 -120px 120px -8px rgba(0, 0, 0, 0.95);
        
    }
    .grace{
        color: #00ffc8
    }
    .footer-section-three p{
        padding-left: 1rem;
    }
    
}
@media screen and (min-width: 1000px)and (max-width: 1400px) {
    nav ul{
        gap: 1rem;
    }
    .module-down-writ{
        font-size: 3.5rem;
    }
    .module-writ p{
        font-size: 1.07rem;
    }
    .get-started-writ{
        padding: 0 5rem;
    }
    .get-started-writ > div{
        width: 50%;
    }
}

