@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: 5rem;
    transition: all .8s ease;
    transition-delay: 2.7;
}
.animated-element.visible {
    opacity: 1;
    position: relative;
    top: 0rem;
    transition: all .9s ease;
}

:root{
    --black-color: rgb(0,0,0);
    --main-color: #008cff;
    --secondary-color: rgb(0 255 200);
    --main-font-family: "Inter", 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;
}

div#mobile-nav{
    z-index: 9999;
    width: 100%;
    height: 100vh;
    background-color: rgba(70, 70, 70, 1);
    position: fixed;
    display: flex;
    justify-content: center;
    padding-block: 1.2rem;
    overflow: scroll;
}
#mobile-nav-div{
    width: 65%;
}
#mobile-nav ul{
    list-style: none;
    margin-block-start: 1.5rem;
}
div#mobile-nav i{
    color: #ffffff;
}
#mobile-nav-div > ul >li > a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: .5rem;
    font-weight: 500;
    font-size: 1rem;
}
.mobile-menu p{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding: .5rem;
    font-weight: 500;
    font-size: 1rem;
}
#mobile-menu{
    display: none;
}
#close-menu{
    font-size: 1.5rem;
    text-align: right;
    display: inline-block;
    width: 100%;
    color: #ffffff;
}


nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0rem 4rem;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 9;
}
nav img{
    width: 220px;
}
nav ul{
    display: flex;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a{
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    padding: 1rem;
    font-size: .95rem;
    font-family: var(--main-font-family);
    text-transform: uppercase;
}
nav a:hover{
    color: var(--main-color)
}
nav i{
    color: #000000;
}
#order-request{
    color: #6B6B6B;
    background-color: var(--secondary-color);
    padding: .95rem 2rem;
    border-radius: 40px;
    font-size: .95rem;
}
#order-request:hover{
    background-color: var(--main-color);
    color: #ffffff;
}

.menuList{
    display: none;
}
#menu .menuList{
    top:37px;
    position: absolute;
    background-color: #ffffff;
    z-index: 99;
    width: 450px;
    border-radius: 6px;
    padding: 1rem 2rem;
}
#menu .menuList ul li{
    margin-top: .5rem;
}
.menuList a{
    color: var(--main-color);
    display: block;
    margin-block: .25rem;
}
.menuList a:hover{
    color: rgba(210, 210, 210, .95)
}
.dropdown:hover > .menuList{
    display: block;
}
#hero-section{
    height: 100vh;
    background-image: url(../img/main-image.jpg);
    background-size: cover;
}
.hero-section-cover{
    display: flex;
    justify-content: space-around;
    background-color: rgba(0,0,0,.3);
    height: 100%;
    
}
.hero-section-div{
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-section-div h1{
    color: #ffffff;
    font-size: 5rem;
    font-family: "Cormorant", serif;
    font-weight: 300
}
.hero-section-div h6{
    font-family: var(--main-font-family);
    color: #fff;
    text-transform: uppercase;
}
.hero-section-div p{
    font-family: var(--main-font-family);
    font-size: 1.2rem;
    color: #fff
}
.hero-section-left{
    padding: 5rem 2.5rem 7.5rem 2.5rem;
    width: 55%;
}
.hero-section-right{
    position: relative;
}
.hero-section-div img{
    max-width: 99%;
}
.hero-buttons{
    display: flex;
    gap: 2rem;
}

.hero-buttons a{
    border: 2.5px solid #ffffff;
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    color:#fff;
    text-decoration: none;
}
.hero-buttons a:hover{
    background-color: #fff;
    color: #000000;
}
.hero-buttons .hero-buttons-right{
    background-color:  var(--secondary-color);
    border: none;
    color: #6B6B6B;
}
.hero-buttons .hero-buttons-right:hover{
    background-color: var(--main-color);
    color: #fff;
}
#about-numbers{
    display: flex;
    gap: 5rem;
    justify-content: center;
    padding-block: 6rem;
    background-color: var(--main-color);
}
.about-numbers-list{
    width: 18%;
    text-align: center;
}
.about-numbers-list h2{
    font-family: var(--main-font-family);
    color: #ffffff;
    font-size: 4.5rem;
}
.about-numbers-list p{
    font-family: var(--main-font-family);
    color: #ffffff;
    font-size: 1.09rem;
    font-weight: 300;

}
/*#categories{
    height: 70vh;
    padding: 4rem 0;
    background-color: rgb(253 251 247);
}
.categories-div{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
}
.categories-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: #ffffff;
    padding-block: 2rem;
    font-family: var(--main-font-family);
    width: 22%;
    border-radius: 20px;
}
.categories-list i{
    color: var(--main-color);
    font-size: 2.5rem;
}
.categories-list p strong{
    font-size: 1.1rem;
    font-weight: 600;
    color: #535353;
}
.categories-list p{
    line-height: 10px;
    color: #6B6B6B;
}
*/


/*#calling{
    background-color: #FDFBF7;
    padding: 3rem;
}
.calling-div{
    display: flex;
    gap: 5.5rem;
}
.calling-div > div{
    width: 50%;
}
.calling-div img{
    border-radius: 20px;
}
.calling-div p{
    font-family: var(--main-font-family);
    color: #6B6B6B;
}
.calling-div h1{
    color: #2B2B2B;
    font-size: 3rem;
    font-family: "Cormorant", serif;
    font-weight: 300;
    margin-bottom: 2rem;
}
.calling-left{
    padding-left: 5.5rem;
    border-right: 1px solid #e4e4e4;
}
.calling-left p{
    background-color: var(--main-color);
    color: #fff;
    padding: .4rem 2rem;
    width: 35%;
    border-radius: 50px;
    text-transform: uppercase;
}
.calling-div a{
    text-decoration: none;
    color: var(--main-color);
}*/

#transformation{
    padding: 5rem 6.5rem;
}
.transformation-top{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 3rem;
}
.transformation-top > div{
    width: 25%;
}
.transformation-top h1{
    font-family: "Cormorant", serif;
    font-size: 4rem;
    font-weight: 400;
}
.transformation-top p{
    color: #6B6B6B;
    font-size: 1.2rem;
}

.transformation-down{
    display: flex;
    justify-content: space-between;
}
.transformation-down-list{
    width: 30%;
    height: 400px;
    background-color: #FDFBF7;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem 3rem;
    font-family: var(--main-font-family);
    box-shadow: 0 4px 8px #6b6b6b29;
}
.transformation-down-list i.top-i{
    font-size: 3rem;
    color: var(--secondary-color);
    background-color: #00ffc814;
    padding: 1.1rem;
    border-radius: 50%;
}
.transformation-down-list p{
    color: #6B6B6B;
}
.transformation-down-list h3{
    color: #2B2B2B;
    margin-bottom: 1rem;
}
.transformation-down-list a{
    text-decoration: none;
    color: var(--main-color);
    font-size: 1rem;
}
.transformation-down-list i{
    font-size: 1rem;
}


#why-lomivest{
    padding-block: 6rem;
    background-color: #F5FAFF;
}
#why-lomivest h1{
    margin-bottom: 3.5rem;
}

.why-lomivest-div{
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.why-lomivest-list{
    display: flex;
    gap: 2rem;
    width: 25%;
    align-items: flex-start;
}
.why-lomivest-list i{
    background-color: var(--secondary-color);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 1rem;
    font-size: 2.5rem;
}
.why-lomivest-list h4{
    color: var(--main-color);
    font-size: 1.65rem;
    font-family: var(--main-font-family);
}
.why-lomivest-list p{
    color: #6B6B6B;
    font-size: 1.1rem;
}

#about-us{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5.5rem 10rem;
    gap: 3rem;
}
#about-us > div{
    width: 45%;
}
#about-us img{
    max-width: 100%;
    border-radius: 1.5rem;
}
.about-us-left{
    position: relative;
}
.shield{
    position: absolute;
    bottom: -2rem;
    right: 10%;
    background-color: #ffffff;
    color: #6B6B6B;
}
.about-us-right h6{
    text-transform: uppercase;
    background-color: var(--secondary-color);
    color: #6B6B6B;
    border-radius: 50px;
    padding: .35rem 2rem;
    font-size: .9rem;
    width: fit-content;
    font-family: var(--main-font-family);
}
.about-us-right h1{
    color: var(--main-color);
    font-family: var(--main-font-family);
}
.about-us-right p{
    color: #6B6B6B;
    font-family: var(--main-font-family);
    font-size: 1.09rem;
}
.about-us-right a{
    color: #fff;
    background-color: var(--main-color);
    text-decoration: none;
    padding: .75rem 2.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 2rem;
}


#our-project{
    padding: 6rem 10rem;
}
.our-project-top{
    width: 50%;
    margin-bottom: 4rem;
}
.our-project-top h6{
    text-transform: uppercase;
    color: var(--secondary-color);
    font-family: var(--main-font-family);
}
.our-project-top h1{
    color: var(--main-color);
    font-family: var(--main-font-family);
    margin-block: 1rem;
}
.our-project-top p{
    font-family: var(--main-font-family);
    
}
.our-project-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.our-project-bottom-list {
    width: 28%;
    border: 1px solid #6b6b6b28;
    border-radius: 1rem;
}
.our-project-bottom-list h6{
    text-transform: uppercase;
    color: var(--secondary-color);
    font-size: .85rem;
    font-family: var(--main-font-family);
}
.our-project-bottom-list img{
    max-width: 100%;
    border-radius: 1rem 1rem 0 0;
}
.our-project-bottom-list p{
    color: #6B6B6B;
    font-family: var(--main-font-family);
}

.our-project-bottom-list > div{
    padding: 1rem;
}
.view-projects a{
    width: 30%;
    text-decoration: none;
    color: #fff;
    display: block;
    background-color: var(--main-color);
    padding: .75rem 3rem;
    margin: 2rem auto;
    text-align: center;
    border-radius: 50px;
}




#stay-connected{
    background-color: #008cff26;
    text-align: center;
    padding: 9rem 0;
}
#stay-connected > h6{
    font-family: "Inter", sans-serif;
    color: var(--main-color);
    font-size: .96rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
}
#stay-connected > h1{
    font-family: "Cormorant", serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #2B2B2B;
    margin-bottom: 1rem;
}
#stay-connected > p{
    font-family: var(--main-font-family);
    color: #6B6B6B;
    font-size: 1.1rem;
    margin: 0 auto;
    margin-block: 3rem;
    line-height: 30px;
}
.subscription-form{
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--main-color);
    width: 30%;
    margin: 1rem auto;
    padding-bottom: .15rem;
}
.subscription-form input{
    background-color: transparent;
    border: none;
    padding: .5rem;
    width: 100%;
    font-family: var(--main-font-family);
    color: #2B2B2B
}
.subscription-form input:focus{
    outline: none;
}
.subscription-form button{
    background-color: var(--main-color);
    border: none;
    color: #fff;
    padding: .5rem 1rem;
    font-size: 1.5rem;
    border-radius: 50%;

}

.socials{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 6rem;
    font-size: 2rem;
}
.socials a{
    text-decoration: none;
    color: #2B2B2B;
}





.footer{
    background-color: #2B2B2B;
    font-family: var(--main-font-family);
    color: #ffffff;
    padding: 6rem 4rem;
}
.footer-section-one{
    padding: 1rem 3.5rem;
}
.footer-section-one h1{
    font-size: 2.8rem;
}
.footer-section-one a{
    font-size: 1.2rem;
    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: center;
    padding: .2rem 3.5rem;
    width: 100%;
}
.footer-section-two > div{
    width: 30%;
}
.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: #ffffff;
    font-family: var(--main-font-family);
}
.footer-section-two ul a{
    display:inline-block;
    color: #ffffff;
    font-size: 1rem;
    padding-block-end: .3rem;
    text-decoration: none;
    font-family: var(--main-font-family)
}
.footer-section-two h5{
    color: rgb(160, 160, 160)
}
.footer-section-two p{
    font-family: var(--main-font-family);
    font-size: 1rem;
}
.footer-socials p{
    display: flex;
    gap: 1rem;
}
#footer-form input{
    background-color: rgb(1, 1, 63);
    border: none;
    color: #fff;
    width: 270px;
    padding: .5rem;
    border-bottom: 1px solid #fff;
}
#footer-form button{
    background-color: var(--main-color);
    border: 1px solid #fff;
    font-size: .95rem;
    padding: .2rem 1rem;
    color: #fff;
}
.footer i{
    color: #ffffff;
}
.footer-socials{
    display: flex;
    gap: 1rem;
}
.footer img{
    max-width: 50%;
    margin-bottom: 2rem;
}
.footer-section-two input{
    background-color: #ffffff;
    border: none;
    color: #6B6B6B;
    width: 100%;
    font-family: var(--main-font-family);
    padding: .75rem;
    width: 80%;
}
.footer-section-two button{
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 0 50px 50px 0;
    padding: .75rem;
}
.footer-section-two form{
    margin-top: 3rem;
}
.footer-socials{
    color: #ffffff;
    font-size: 1.35rem;
}
.footer-socials a{
    text-decoration: none;
}
.footer-section-three p{
    padding-left: 5rem;
}
@media screen and (max-width: 598px) {
    nav{
        padding: .5rem .75rem; 
        justify-content: space-between;
    }
    nav #orders{
        display: none;
    }
    nav ul{
        display: none;
    }
    nav img{
        width: 150px;
    }
    #mobile-menu{
        display: inline-block;
    }
    #hero-section{
        height: auto;
        padding: 0;
    }
    .hero-section-cover{
        flex-direction: column;
    }
    .hero-section-left{
        padding-block: 2.5rem;
        width: 55%;
    }
    .hero-section-div{
        width: 100%;
    }
    .hero-section-div h1{
        color: #ffffff;
        font-size: 3.5rem;
    }
    .hero-section-div h6{
        display: none;
    }

    .hero-buttons{
        display: block;
        gap: 2rem;
    }
    .hero-buttons a{
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        margin-top: 1rem;
    }
    #about-numbers{
        flex-wrap: wrap;
        padding-block: 2rem;
        gap: 1rem;
    }
    .about-numbers-list{
        width: 45%;
    }

    
    #transformation{
        padding: 1rem .75rem;
    }
    .transformation-top{
        flex-direction: column;
        align-items: start;
    }
    .transformation-top > div{
        width: 100%;
    }
    .transformation-top h1{
        font-size: 3rem;
    }
    .transformation-down{
        flex-direction: column;
        gap: 1.5rem;
    }
    .transformation-down-list{
        width: 100%;
    }
    #why-lomivest{
        padding-inline: 1rem;
    }
    #why-lomivest h1{
        margin-bottom: 3.5rem;
        font-size: 4rem;
    }

    .why-lomivest-div{
        flex-direction: column;
        gap: 1rem;
    }
    .why-lomivest-list{
        gap: .75rem;
        width: 100%;
    }

    #about-us{
        flex-direction: column-reverse;
        padding: 3rem 1rem;
        gap: 1.5rem;
    }
    #about-us > div{
        width: 100%;
    }
    .about-us-right a{
        display: block;
        width: 100%;
    }


    #our-project{
        padding: 6rem 1rem;
    }
    .our-project-top{
        width: 100%;
    }
    .our-project-bottom{
        flex-direction: column;
        gap: 2rem;
    }
    .our-project-bottom-list {
        width: 100%;
    }
    .view-projects a{
        width: 100%;
        padding: .75rem 1.5rem;
    }

    #stay-connected > h1{
        font-size: 2.5rem;
    }
    .subscription-form{
        width: 90%;
    }

    .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%;
    }
}

