#loader{
    display: block;
    z-index: 100;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--black);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: #002354;
}

#loader img{
    width: 30%;
    max-width: 70px;
}

#header img{
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}
#header-menu a{
    color: white;
}
#header-menu i{
    color: white;
}



#home{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    padding: 200px 10% 100px 10%;
    background-color: #325CFD;
    background-image: url(/images/decor1.svg), url(/images/decor4.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: contain, 300px;
    background-position: top right, bottom left;
    color: white;
    border-bottom-left-radius: 100px;
}

#home-text{
    font-size: 30px;
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 20px;
}

#home-text h1{
    font-weight: 300;
}

#home-text p{
    font-weight: 100;
}

#home-text a{
    display: inline-block;
    background-color: #1101B7;
    color: white;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 100px;
    font-size: 20px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

#home-text a:hover{
    background-color: white;
    color: #1101B7;
    -webkit-box-shadow: 0 0 30px #ffffff80;
            box-shadow: 0 0 30px #ffffff80;
}

#home-image{
    max-width: 500px;
    width: 100%;
    position: relative;   
}

#home-image img{
    -webkit-filter: drop-shadow(0 0 30px #00000020);
            filter: drop-shadow(0 0 30px #00000020);
    width: 100%;
    min-width: 350px;
}




#why{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 10%;
    gap: 30px;
    background-color: white;
    position: relative;
}

#why::before, #why::after{
    content: "";
    position: absolute;
    width: 100px;
    aspect-ratio: 1/1;
    background-color: #466CFD;
    top: 0;
    right: 0;
}

#why::after{
    background-color: #ffffff;
    border-top-right-radius: 100px;
}

#why-text{
    font-size: 30px;
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 20px;
}
#why-image{
    max-width: 500px;
    width: 100%;
    position: relative;   
}

#why-image img{
    -webkit-filter: drop-shadow(0 0 30px #00000020);
            filter: drop-shadow(0 0 30px #00000020);
    width: 100%;
    min-width: 350px;
}




#objectives{
    text-align: center;
    padding: 100px 10%;
    font-size: 30px;
    background-color: #325CFD;
    border-radius: 0 100px 0 100px;
    color: white;
}

#objectives-list{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 50px;
}

.objectives-item{
    border-radius: 20px;
    padding: 50px 20px 0 20px;
    font-size: 20px;
}

.objectives-item h3{
    font-weight: 500;
    opacity: 0.8;
}

.objectives-item i{
    font-size: 100px;
    margin-bottom: 20px;
}




#banner{
    text-align: center;
    padding: 100px 10%;
    font-size: 30px;
}




#services{
    padding: 100px 10%;
    position: relative;
}

#services h2{
    font-size: 50px;
}


#services::before, #services::after{
    content: "";
    position: absolute;
    width: 100px;
    aspect-ratio: 1/1;
    background-color: #325CFD;
    top: 0;
    right: 0;
}

#services::after{
    background-color: #ffffff;
    border-top-right-radius: 100px;
}
#services-list{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(300px, 1fr) 20px minmax(300px, 1fr) 20px minmax(300px, 1fr);
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.services-item{
    width: 100%;
    color: white;
    height: 500px;
    position: relative;
    border-radius: 20px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.services-item:hover{
    -webkit-box-shadow: 0 0 30px #00000050;
            box-shadow: 0 0 30px #00000050;
}

.services-item img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 10%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    background-color: #002a5a;
    -webkit-filter: brightness(1);
            filter: brightness(1);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.services-item:hover img{
    -webkit-filter: brightness(0.3);
            filter: brightness(0.3);
}

.services-item-text{
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    height: 100%;
    border-radius: 20px;
}

.services-item-text h3{
    font-size: 30px;
    -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.services-item:hover h3{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}

.services-item-text a{
    margin-top: auto;
    -ms-flex-item-align: end;
        align-self: flex-end;
    font-size: 25px;
    color: white;
    border: 3px solid white;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 100px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.services-item:hover a{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}









@media screen and (max-width: 1100px) {
    #home{
        padding-bottom: 120px;
    }
    #home-text{
        font-size: 25px;
    }
    #home-image{
        width: 100%;
    }
    #home-image img{
        width: 100%;
    }




    #why-text{
        font-size: 20px;
        max-width: 500px;
    }
    #why-image{
        width: 100%;
    }
    #why-image img{
        width: 100%;
    }


    #objectives p{
        font-size: 20px;
    }


    #services-list{
        -ms-grid-columns: (minmax(300px, 1fr))[2];
        grid-template-columns: repeat(2,minmax(300px, 1fr));
    }
}

@media screen and (max-width: 765px) {
    #home{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        padding: 150px 10% 100px 10%;
        background-image: url(/images/decor5.svg), url(/images/decor4.svg);
    }
    
    #why{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
    }
    
    #why::before{
        background-color: #325CFD;
    }

    #why-image{
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    
    
    
    
    #objectives{
        font-size: 25px;
    }
    
    #objectives-list{
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1,1fr);
    }
    
    
    

    #services-list{
        -ms-grid-columns: (minmax(300px, 1fr))[1];
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }


    .services-item{
        height: 400px;
        -webkit-box-shadow: 0 0 30px #00000050;
                box-shadow: 0 0 30px #00000050;
    }
    
    .services-item img{
        -webkit-filter: brightness(0.3);
                filter: brightness(0.3);
    }
    
    .services-item h3{
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
    
    .services-item a{
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
    
}

@media screen and (max-width: 650px) { 
    
}









@-webkit-keyframes defaultAnim{
    0%{
    
    }
    100%{
        -webkit-transform: none;
                transform: none;
        opacity: 1;
    }
}









@keyframes defaultAnim{
    0%{
    
    }
    100%{
        -webkit-transform: none;
                transform: none;
        opacity: 1;
    }
}



#home-text h1{
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    -webkit-animation: defaultAnim forwards normal 0.5s ease;
            animation: defaultAnim forwards normal 0.5s ease;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
}
#home-text p{
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    -webkit-animation: defaultAnim forwards normal 0.7s ease;
            animation: defaultAnim forwards normal 0.7s ease;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
}
#home-text a{
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
    -webkit-animation: defaultAnim forwards normal 0.9s ease;
            animation: defaultAnim forwards normal 0.9s ease;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
}
#home-image{
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
    -webkit-animation: defaultAnim forwards normal 0.7s ease;
            animation: defaultAnim forwards normal 0.7s ease;
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
}







#why-image{
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
}
#why-text h2{
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
}
#why-text p{
    -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
}






#objectives h2{
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
}

#objectives p{
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
}

.objectives-item{
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
}





#banner p{
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
}



#services h2{
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
}

.services-item{
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 0;
}