@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

::-webkit-scrollbar {
    width: 0.5em;
}

::-webkit-scrollbar-track {
    background: linear-gradient(#00093c, #2d0b00);
} 

::-webkit-scrollbar-thumb {
    background:aqua;
}

::-webkit-scrollbar-thumb:hover {
    background:linear-gradient(red, blue);
}


html {
    scroll-behavior: smooth;
}

.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url(Images/disrelief5.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

nav {
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}


nav img {
    width: 80px;
} 

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: aqua;
    text-decoration: none;
    font-size: 16px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.dropdown__menu {
    display: none;
    transition: 0.5s ease-in;
}

.nav-links ul li:hover .dropdown__menu {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: black;
    opacity: 0.8;
    z-index: 99;
}

.nav-links ul li:hover  .dropdown__menu ul {
    display: block;
    margin: 10px;
}

.dropdown__menu ul li {
    width: 100px;
    padding: 10px;
}

.fa {
    float: right;
    margin-left: 10px;
    padding-top: 3px;
}

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    justify-content: center;
}

.text-box h1 {
    font-size: 52px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

.gallery-container .title {
    width: 50%;
    padding-bottom: 50px;
}

.gallery-container .title h2 {
    font-size: 3rem;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
}

.gallery-container .title h2 span {
    font-weight: 100;
}

.gallery-container .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gallery-container .box .dream {
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.gallery-container .box .dream img {
    width: 100%;
    padding-bottom: 15px;
    border-radius: 5px;
}

.section {
    width: 100%;
}

.section .container {
    width: 80%;
    display: block;
    margin: 0px auto;
    padding: 50px 0;
}

.container .title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.container .title h1 {
    text-transform: uppercase;
    font-size: 35px;
    color: #f70202;
}

.container .title h1::after {
    content: "";
    height: 5px;
    width: 100px;
    background-color: #0ce5ec;
    border-radius: 25px;
    display: block;
    margin: auto;
}

.content {
    float: left;
    width: 55%;
}

.image-section {
    float: right;
    width: 40%;
}

.image-section img {
    width: 100%;
    height: auto;
}

.content .article p {
    color: #000;
    font-size: 17px;
    margin-top: 20px;
    line-height: 1.5;
}

.container .social {
    width: 100%;
    clear: both;
    margin-top: 50px;
    text-align: center;
    display: inline-block;
}

.container .social i {
    color: rgb(255, 255, 255);
    font-size: 22px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    background-color: #f28f92;
    margin: 0px;
}

.container .social i:hover {
    color: #fff;
    background-color: #04dffc;
    transition: 0.5s ease-in-out;
    transform: scale(1.2);
}

nav .fas {
    display: none;
}



.gotopbtn {
    position: fixed;
    width: 50px;
    height: 50px;
    background: #c0392b;
    bottom: 40px;
    right: 50px;
    text-align: center;
    text-decoration: none;
    line-height: 50px;
    color: #ffffff;
}


.section-donation .container {
    width: 80%;
    display: block;
    margin: 0px auto;
    padding: 50px 0;
}

.container-donation .title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.container-donation .title h1 {
    text-transform: uppercase;
    font-size: 35px;
    color: #f70202;
}

.container-donation .title h1::after {
    content: "";
    height: 5px;
    width: 100px;
    background-color: #0ce5ec;
    border-radius: 25px;
    display: block;
    margin: auto;
}

.image-donation {
    margin: auto;
    align-items: center;
    justify-content: center;
    width: 70%;

}

.image-donation img {
    width: 100%;
    height: auto;
}

footer {
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3) {
    flex-basis: 15%;
}

.logo {
    width: 80px;
    margin-bottom: 30px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li {
    list-style: none;
    margin-bottom: 12px;
}

ul li a {
    text-decoration: none;
    color: #fff;
}

form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

form .far {
    font-size: 18px;
    margin-right: 10px;
}

form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

form button .fas {
    font-size: 16px;
    color: #ccc;
}

.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: white;
    margin-right: 15px;
    cursor: pointer;
}

hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}



/* ================================ MEDIA QUERIES (TABLETS) ============================= */

@media (max-width:700px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s ease-in;
    }

    nav .fas {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 30px;
    }

    .section .container {
        width: 80%;
        display: block;
        margin: auto;
    }

    .content {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }

    .image-section {
        float: none;
        width: 100%;
        margin-top: 50px;
    }
    .image-section img {
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }

    .container .title h1 {
        text-align: center;
        font-size: 30px;
    }

    .container .social i {
        font-size: 19px;
        height: 35px;
        width: 35px;
        line-height: 35px;
    }

    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }
    
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }

}
