/* @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap'); */

* {
    padding: 0;
    margin: 0;
    /* overflow-x: hidden; */
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}



.body-container{
    position: relative;
}


.navbar{
    width: 68%;
    margin: auto;
} 

.navbar-container{
    background-color: #0d4e86;
    z-index: 10;
}


/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .ewa-content {
    padding-top: 60px;
}

.header-content {
    margin: auto;
    width: 68%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    width: 80%;
}

.slogan {
    width: 100%;
}

.slogan-content {
    font-style: italic;
    text-align: center;
    font-size: 16px;
    color: #939393;
   
}

.logos {
    display: flex;
}


/* END HEADER */

/* HERO IMAGE */
.hero-image {
    background-image: url('/assets/images/hero-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-article-result {
    background-image: url('/assets/images/hero-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    padding: 20px;
}




/* LATEST NEWS */
.news {
    /* Create the parallax scrolling effect */
    background-image: url('/assets/images/diamond.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-color: rgba(255, 255, 255, 0.95);
    /* background-size: cover; */
    border-bottom: #b3b3b3;
    position: relative;
}


/*
.news-section {
    border-radius: 15px;
    background: white;
    padding: 50px;
    margin: auto;
    top: -150px;
    box-shadow: 5px 2px 18px #888888;
} */


/* PARTNER LOGOS */
.partners {
    padding: 40px 20px;
    background-color: #e0e0e0;
}

.partners-logos {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



.partners-logos img {
    -webkit-mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.2) 50%, #000 75%);
    mask-image: linear-gradient(45deg, #000 25%, rgba(0, 0, 0, 0.2) 50%, #000 75%);
    -webkit-mask-size: 800%;
    mask-size: 800%;
    -webkit-mask-position: 0;
    mask-position: 0;
    margin: 5px 10px;
}

.partners-logos img:hover {
    transition: mask-position 2s ease, -webkit-mask-position 1s ease;
    -webkit-mask-position: 120%;
    mask-position: 120%;
    opacity: 1;
}



/* ---------- SCROLLBARS ---------- */

::-webkit-scrollbar {
    width: 5px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #a5aaad;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #4f35a1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a5aaad;
}



/* FOOTER ANIMATION */
/* * {
    font-family: "Poppins", sans-serif;
} */


.footer-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 120px;
    position: relative;
}

.footer {
    position: absolute;
    width: 100%;
    background: #0d4e86;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon,
.menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
    list-style: none;
}

.social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
.social-icon__link:hover {
    transform: translateY(-10px);
    color: #fff;

}

.menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
}

.menu__link:hover {
    opacity: 1;
    color: yellow;
}

.footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    /* background: url("https://i.ibb.co/wQZVxxk/wave.png"); */
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    /* animation: animateWaves 4s linear infinite; */
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    /* animation: animate 4s linear infinite !important; */
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    /* animation: animateWaves 3s linear infinite; */
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    /* animation: animate 3s linear infinite; */
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}

@keyframes animate {
    0% {
        background-position-x: -1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}


.footer-dost-logo{
    height: 60px;
}







 /* Small Devices, Tablets */
 @media only screen and (max-width : 768px) {
    .header-content{
        display: flex;
        justify-content: center;
    }
    .slogan{
        display: none;
    }
    .logos{
        display: none;
    }

    
    .navbar{
        width: 100%;
    }
 }
