
/**
 COLORS:

  red:   #F30001

*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section{
    padding: 50px;
    position: relative;
    min-height: 100vh;
    box-shadow: rgba(130, 128, 193, 0.71) 0 15px 20px -5px;
}

.preloader {
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.page-load {
    -webkit-animation: 2000ms linear 0s normal none infinite running page-load;
    animation: 2000ms linear 0s normal none infinite running page-load;
    background: transparent none repeat scroll 0 0;
    border-color: #dddddd #dddddd rgb(6, 3, 132);
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    height: 40px;
    left: calc(50% - 20px);
    position: relative;
    top: calc(50% - 20px);
    width: 40px;
    z-index: 9;
}

@-webkit-keyframes page-load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes page-load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.z-index-inherit{
    z-index: inherit;
}

.slick-next
{
    right: 0;
    z-index: 10;
    height: 10%;
    width: 5%;
    min-width: 30px;
}

.slick-prev
{
    left: 0;
    z-index: 10;
    height: 10%;
    width: 5%;
    min-width: 30px;
}
.slick-next::before{
    content: none;
}
.slick-prev::before{
    content: none;
}

.slick-prev:hover, .slick-next:hover {
    color: transparent;
    outline: none;
    background: rgba(6, 3, 132, 0.3);
}


section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    z-index: 0;
}

#home{
    height: 100vh;
    position: relative;
    background-position-y: bottom;
    z-index: 1;
    padding: 0;
    background: #fff;
}

.slider {
    z-index: 1;
    width: 100%;
    height: 100vh;
}

.home_flag {
    position: absolute;
    z-index: 4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    height: fit-content;
    margin: 0 auto;
    max-width: 100%;
    z-index: 3;
}
 
#home::after{
   content: none;
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background: rgba(6, 3, 132, 0.2);
   z-index: 2;
}

.slider img {
    max-width: 100vw;
    height: 100vh;
    z-index: 16;
    min-width: 100vw;
    opacity: 0.4;
}

.slider_item {
    position: relative;
    max-height: 100%;
    max-width: 100%;
    height: 100vh;
    display: flex !important;
    justify-content: center;
}
.slider .slider_item::after{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background: url('../img/mion flag.png') ,rgba(6, 3, 132, 0.25);
   z-index: 38;
   background-size: auto 45%;
   background-repeat: no-repeat;
   background-position: center;
}


.home_flag img{
    height: fit-content;
    margin: auto 0;
    max-width: 100%;
    z-index: 3;
}






/* headers */

header{
    position: sticky;
    top: 0;
    z-index: 50;
}


nav{
    background-color: rgba(6, 2, 132, 0.5);
    border: 1px solid transparent;
    border-radius: 0 0 0 50px;
    min-height: 70px;
    box-shadow: #310D0D 0 5px 20px -10px;
}

#navbarSupportedContent{
    z-index: 20;
}

.navbar-brand{
    position: absolute;
    margin-left: 130px;
    padding: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.navbar-toggler:focus{
    outline: none;
}

.navbar-brand img{
    height: 100%;
    max-height: 100px;
}

.nav-item{
    padding: 5px 20px;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
}

.nav-item a{
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
}

.active a {
    color: rgba(255, 255, 255, 1);
}

#nav .active a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 1);
}
.nav-item:hover a::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
}


.section_header{
    font-size: 30px;
    color: #F30001;
    text-transform: uppercase;
    font-weight: 500;
    padding: 25px 0;
    position: relative;
    z-index: inherit;
}


ul#nav {
    display: inline-block;
}

.home_header a {
    color: rgba(255, 255, 255, 0.75);
}
.home_header .active a, .home_header .nav-item:hover a{
    color: rgb(255, 255, 255);
    /* background: linear-gradient(to top, transparent,rgba(255, 255, 255, 0.2), transparent),
            linear-gradient(to left, transparent,rgba(255, 255, 255, 0.2), transparent); */
}

.home_header #nav .active a::before {
    content: none;
}
.home_header .nav-item:hover a::before{
    content: none;
}



.home_header {
    position: absolute;
    bottom: 5vh;
    z-index: 2;
    width: 100%;
    text-align: center;
}


ul#nav {
    display: inline-block;
}

.home_header a {
    color: rgba(255, 255, 255, 0.75);
}







/* about */

#about{
    padding: 80px 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* background: url(../img/about/about-bg.png) no-repeat;
    background-size: contain;
    background-position: -5vw 75px; */
    min-height: 100vh;
    z-index: 1;
    padding-top: 100px;
    font-size: 18px;
}

#about::before{
    content: '';
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/about/about-bg.png) no-repeat;
    background-size: contain;
    background-position: -6vw 0px;
    z-index: 1;
    opacity: 0.9;
}
.about_content{
    position: relative;
    background: rgba(5, 3, 132, 0.05);
    border-radius: 0 207px 207px 207px;
    max-width: 800px;
    padding: 50px;
    line-height: 1.8rem;
    font-weight: 500;
    font-style: italic;
    margin-left: 5vw;
    background: rgba(205, 204, 230, 0.6);
    box-shadow: 5;
    box-shadow: rgba(6, 2, 132, 0.2) 0px 5px 6px 0px;
}
/* 
.about_content::before{
    content: '';
    position: absolute;
    top: -32px;
    left: 0;
    width: 100%;
    border-bottom: 0px solid transparent;
    border-right: 0px solid transparent;
    border-top: 32px solid transparent;
    border-left: 95px solid rgba(205, 204, 230, 0.6);
} */
#message_vision {
    /* min-height: 90vh; */
    background: #fff;
    z-index: 1;
    min-height: 7in;
}

.message_container {
    position: absolute;
    top: 0;
    z-index: inherit;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    background-color: #dee2e6;
    clip-path: polygon(0 0, 100% 0, 100% 10%, 0 90%);
}

.vision_container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: inherit;
    height: 100%;
    background-color: rgba(6, 3, 132, 0.5);
    clip-path: polygon(0 90%, 100% 10%, 100% 100% , 0 100%);
    display: flex;
    align-items: flex-end;
    padding: 50px;
    justify-content: flex-end;
}


.messgae_box{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-top: 50px;
    max-height: 300px;
}
.vision_box{
    max-height: fit-content;
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}

.message_vector {
    width: 150px;
    height: 145px;
    margin: auto 0;
}
.vision_vector{
    width: 150px;
    height: 145px;
    margin: auto 0;
    display: inline-block;
}
@media (max-width: 1075px){
    .message_container{
        clip-path: polygon(0 0, 100% 0, 100% 27% , 0 77%);
    }
    .vision_container{
        clip-path: polygon(0 77%, 100% 27%, 100% 100% , 0 100%);
    }
    #message_vision{
        min-height: 7.5in;
    }
}

@media (max-width: 875px){
    .message_container{
        clip-path: polygon(0 0, 100% 0, 100% 37% , 0 67%);
    }
    .vision_container{
        clip-path: polygon(0 67%, 100% 37%, 100% 100% , 0 100%);
    }
    #message_vision{
        min-height: 7.6in;
    }
}

@media (max-width: 750px){
    .message_container{
        clip-path: polygon(0 0, 100% 0, 100% 42% , 0 62%);
    }
    .vision_container{
        clip-path: polygon(0 62%, 100% 42%, 100% 100% , 0 100%);
    }
    #message_vision{
        min-height: 8in;
    }
}

@media (max-width: 675px){
    .message_container{
        clip-path: polygon(0 0, 100% 0, 100% 45% , 0 55%);
    }
    .vision_container{
        clip-path: polygon(0 55%, 100% 45%, 100% 100% , 0 100%);
    }
    #message_vision{
        min-height: 10.5in;
    }
    
    .vision_box,
    .messgae_box {
        flex-direction: column;
        max-height: 475px;
    }
}

@media (max-width: 500px){
    #message_vision{
        min-height: 13.8in;
    }
    
    .message_vector ,
    .vision_vector{
        margin: 20px 0;
    }
}




#message_vision img {
        height: 100%;
        width: 100%;
        border: 1px solid transparent;
        border-radius: 100px;
}

.messege_text {
    max-width: 400px;
    padding: 25px;
    position: relative;
    width: 100%;
    max-height: fit-content;
    z-index: 5555;
    /* display: inline-block; */
}

p.message_vision_content {
    padding: 0 0 0 20px;
}

.messege_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background: #060384;
}

.messege_text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100px;
    background: #060384;
}

p.message_vision_header {
    font-size: 20px;
    color: #F30001;
    text-transform: uppercase;
    font-weight: 500;
}

p.message_vision_content {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
}

.vision_text {
    max-width: 400px;
    padding: 25px;
    position: relative;
    width: 100%;
    max-height: fit-content;
    display: inline-block;
}

.vision_text::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 2px;
    background: #060384;
}

.vision_text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100px;
    background: #060384;
}
/* goals */

#goals{
    position: relative;
    box-shadow: rgb(209, 182, 184) 0 5px 20px 0px;
    min-height: 100vh;
    padding-top: 100px;
}

#goals::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(222, 226, 230);
    z-index: 1;
}

#goals::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/home/2.jpg) no-repeat , linear-gradient( to bottom ,rgb(130, 129, 193), #dee2e6);
    z-index: 2;
    background-position: center;
    background-size: cover;
}
#goals .section_header p{
    position: absolute;
    width: 100%;
    z-index: 3;
}
#goals .container{
    margin-top: 50px;
}
.goal_card
{
    position: relative;
    height: 350px;
    box-shadow: 0 30px 30px rgba(0,0,0,.5);
    border-radius: 5px;
    margin: 25px 0;
    cursor: pointer;
    z-index: 3;
}

.goal_card .card_content
{
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    transition: 0.5s;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 5px;
}

.goal_card:hover .card_content
{
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
}

.goal_card .card_content h3
{
    margin: 0;
    padding: 0;
    font-size: 18px;
    text-align: center;
}

.goal_card .card_content p
{
    margin: 10px 0 0;
    padding: 0;
    opacity: 0;
    line-height: 1.2em;
    transition: 0.5s;
    text-align: justify;
    border-radius: 5px;
    line-height: 1.4rem;
}

.goal_card:hover .card_content p
{
    opacity: 1;
    transition-delay: 0.5s;
}


.imgBx
{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.imgBx img
{
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: 0.5s;
    border-radius: 5px;
}

.goal_card:hover .imgBx img
{
    opacity: 0;
}



#policy{
    padding: 80px 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    z-index: 1;
    padding-top: 100px;
    font-size: 18px;
}

#policy::before{
    content: '';
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url(../img/about/about-bg.png) no-repeat;
    background-size: contain;
    background-position: -11vw 0;
    z-index: 1;
    opacity: 0.9;
    transform: rotateY(-180deg);
}
.policy_content{
    position: relative;
    background: rgba(5, 3, 132, 0.05);
    border-radius: 0 207px 207px 207px;
    max-width: 800px;
    padding: 50px;
    line-height: 1.8rem;
    font-weight: 500;
    font-style: italic;
    margin-left: 5vw;
    background: #cdcce699;
    box-shadow: 5;
    box-shadow: rgba(6, 2, 132, 0.2) 0px 5px 6px 0px;
}


#contact {
    box-shadow: rgba(130, 128, 193, 0.71) 0 15px 20px -5px;
    z-index: 1;
    background: rgba(6, 2, 132, 0.15);
    padding-top: 150px;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: url(../img/home/5.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.5;
}

#contact *{
    z-index: 2;
    position: relative;
}


@media(max-width:992px){
        
    #contact{
        padding: 125px 0;
    }
}


.contact_info_container{
    text-align: center;
    justify-content: space-between;
}
.contact_info_section{
    padding: 30px 5px;
    
}
.contact_info_section_header{
    font-weight: 600;
    color: rgba(6, 2, 132, 1)
}
.contact_small_text{
    color: #F30001;
}
.only_dot{
    opacity: 0;
}
.contact_hello {
    display: flex;
    justify-content: space-around;
}
.contact_follow {
    display: flex;
    justify-content: space-around;
}
.fa{
    font-size: 2rem;
    padding: 5px 0px;
    color: rgb(6, 3, 132);
}
.contact_email .fa {
    font-size: 29px;
}

#contact a{
    position: relative;
}

#contact a::after{
    content: '';
    position: absolute;
    top: -1px;
    right: 8px;
    height: 20px;
    width: 20px;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: #F30001;
    border-radius: 0 0 0 15px;
    z-index: 0;
    transition: 0.3s;
    opacity: 0;
}

#contact a::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 7px;
    height: 20px;
    width: 20px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #060384;
    border-radius: 0 15px 0 0;
    z-index: 0;
    transition: 0.3s;
    opacity: 0;
}

#contact .contact_icon:hover a::before,
#contact .contact_icon:hover a::after
{
    opacity: 1;
    height: 30px;
    width: 30px;
}

/* End of contact section CSS */

.footer{
    position: sticky;
    bottom: 0px;
    background: rgba(6, 3, 132, 0.1);
    height: 170px;
    display: flex;
    align-items: center;
    z-index: 0;
}

/* animation */


/* animation */

.delay-1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.delay-2 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    animation-fill-mode: backwards;
}

.delay-3 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    animation-fill-mode: backwards;
}

.delay-4 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    animation-fill-mode: backwards;
}

.delay-5 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    animation-fill-mode: backwards;
}


.duration-1 {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}


.duration-2 {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
}

.duration-3 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.duration-4 {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.duration-5 {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}



@-webkit-keyframes slideInDown {
    0% {
        opacity: 0.1;
        -webkit-transform: translateY(-150px) scale(0.2);
        transform: translateY(-150px) scale(0.2);
    }

    50% {
        opacity: 0.4;
        -webkit-transform: translateY(50px) scale(0.8);
        transform: translateY(50px) scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0.1;
        -webkit-transform: translateY(-150px) scale(0.2);
        -ms-transform: translateY(-150px) scale(0.2);
        transform: translateY(-150px) scale(0.2);
    }

    50% {
        opacity: 0.4;
        -webkit-transform: translateY(50px) scale(0.8);
        -ms-transform: translateY(50px) scale(0.8);
        transform: translateY(50px) scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}


@-webkit-keyframes slideInUp {
    0% {
        opacity: 0.2;
        -webkit-transform: translateY(150px) scale(0.8);
        transform: translateY(150px) scale(0.8);
    }

    100% {
        opacity: 0.95;
        -webkit-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(150px) scale(0.8);
        -ms-transform: translateY(150px) scale(0.8);
        transform: translateY(150px) scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1);
        -ms-transform: translateY(0) scale(1);
        transform: translateY(0) scale(1);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}



@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0.2;
        -webkit-transform: translateX(150px) scale(0.8);
        transform: translateX(150px) scale(0.8);
    }

    100% {
        opacity: 0.95;
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(150px) scale(0.8);
        -ms-transform: translateX(150px) scale(0.8);
        transform: translateX(150px) scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) scale(1);
        -ms-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}




@-webkit-keyframes slideInRight {
    0% {
        opacity: 0.2;
        -webkit-transform: translateX(-150px) scale(0.8);
        transform: translateX(-150px) scale(0.8);
    }

    100% {
        opacity: 0.95;
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-150px) scale(0.8);
        -ms-transform: translateX(-150px) scale(0.8);
        transform: translateX(-150px) scale(0.8);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) scale(1);
        -ms-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}