*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #FCF7FF;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 2em;
    background-color: #FAF3F0;
}

header nav .hamburger{
    display: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #068D9D;
}

header nav .logo{
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav .logo img{
    width: 100px;
    height: 80px;
}

header nav .nav-links .nav-menu{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

header nav .nav-links .nav-menu li a{
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
    color: #068D9D;
    transition: all 0.4s ease;
}

header nav .nav-links .nav-menu li a:hover{
    font-weight: 500;
    transform: scale(1.04);
    color: #102542;
}

/* Navbar Ends */

/* Home Page Starts */

.main-content{
    flex: 1;
}

.main-content .home-section-1{
    padding: 4em 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    background-color: #068D9D;
    width: 100%;
}

.main-content .home-section-1 .left{
    align-self: flex-start;
    width: 50%;
}

.main-content .home-section-1 .left h1{
    font-family: 'Playball', cursive;
    font-size: 6vw;
    margin-bottom: 30px;
    color: #102542;
}

.main-content .home-section-1 .left p{
    padding-right: 3em;
    color: white;
    font-size: 1.5vw;
    margin-bottom: 2.5em;
}

.main-content .home-section-1 .left h4{
    display: flex;
    justify-content: space-between;
    color: #102542;
    background-color: white;
    border-radius: 10px;
    width: 330px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-content .home-section-1 .left h4 span, .main-content .home-section-1 .left h4 a{
    padding: 10px 20px;
}

.main-content .home-section-1 .left h4 a{
    background-color: #102542;
    color: white;
    text-decoration: none;
    border-radius: 0 10px 10px 0;
}

.main-content .home-section-1 .right{
    width: 50%;
    display: flex;
    
}

.main-content .home-section-1 .right img{
    width: 90%;
    transform: rotate(5deg);
    border-radius: 4em;
    border: 3px dashed white;
    margin: auto;
}

.main-content .home-section-2{
    padding: 4em 3em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    justify-items: center;
    gap: 2em;
}

.main-content .home-section-2 .section-2-left, .main-content .home-section-2 .section-2-right{
    padding: 2em;
    border: 4px dashed #068D9D;
    border-radius: 2em;
}

.main-content .home-section-2 .section-2-left h1, .main-content .home-section-2 .section-2-right h1{
    font-family: 'Playball', cursive;
    font-size: 4vw;
    margin-bottom: 30px;
    color: #068D9D;
}

.main-content .home-section-2 .section-2-left p, .main-content .home-section-2 .section-2-right p{
    font-size: 1.2vw;
    font-weight: 500;
    color: #102542;
}

.main-content .home-section-2 .section-2-left .buttons, .main-content .home-section-2 .section-2-right .buttons{
    margin-top: 1em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
}

.main-content .home-section-2 .section-2-left .buttons a, .main-content .home-section-2 .section-2-right .buttons a{
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    width: 150px;
    color: white;
    border-radius: 8px;
    border: 2px solid #102542;
    background-color: #102542;
    transition: all 0.4s ease;
}

.main-content .home-section-2 .section-2-left .buttons a:hover, .main-content .home-section-2 .section-2-right .buttons a:hover{
    background-color: white;
    color: #102542;
    transform: scale(1.01);
}

.main-content .home-section-3{
    padding: 4em 3em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2em;
    background-color: #068D9D;
}

.main-content .home-section-3 .container{
    width: 500px;
    height: 35vw;
    padding: 2em;
    color: #102542;
    border: 4px dashed #102542;
    border-radius: 2em;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-content .home-section-3 .container h2{
    color: #102542;
    text-align: center;
    font-size: 3.5vw;
    font-family: 'Playball', cursive;
    margin-bottom: 30px;
}

.main-content .home-section-3 .container  p{
    font-size: 1.5vw;
    font-weight: 600;
    text-align: center;
}

/* Home Page Ends */

/* About Page Starts */

.main-content .about-section-1{
    padding: 3em;
    background-color: #068D9D;
}

.main-content .about-section-1 h1{
    font-family: 'Playball', cursive;
    font-size: 6vw;
    margin-bottom: 30px;
    color: #102542;
}

.main-content .about-section-1 .about-section-1-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 100%;
}

.main-content .about-section-1 .about-section-1-container .left{
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 50%;
}

.main-content .about-section-1 .about-section-1-container .left p{
    padding-right: 2em;
    font-size: 1.4vw;
    color: white;
}

.main-content .about-section-1 .about-section-1-container .right{
    align-self: flex-start;
    width: 50%;
}

.main-content .about-section-1 .about-section-1-container .right img{
    width: 100%;
    border-radius: 3em 0 3em 0; 
    border: 3px dashed white;
}

.main-content .about-section-2{
    padding: 0 3em 4em 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    width: 100%;
    background-color: #068D9D;
}

.main-content .about-section-2 .left, .main-content .about-section-2 .right{
    width: 50%;
}

.main-content .about-section-2 .left img{
    width: 100%;
    border: 3.5px dashed #FCF7FF;
    border-radius: 0 3em 0 3em; 
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-content .about-section-2 .right{
    align-self: flex-start;
}

.main-content .about-section-2 .right h2{
    font-family: 'Playball', cursive;
    font-size: 6vw;
    margin-bottom: 30px;
    color: #102542;
}

.main-content .about-section-2 .right p{
    font-size: 1.5vw;
    font-weight: 500;
    color: #FCF7FF;
}

.main-content .about-section-3{
    padding: 4em 3em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content .about-section-3 h2, .main-content .about-section-4 h2{
    font-family: 'Playball', cursive;
    font-size: 6vw;
    margin-bottom: 1em;
    color: #102542;
}

.main-content .about-section-3 .team-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    justify-items: center;
    gap: 2em 1em;
    max-width: 1400px;
    width: 100%;
}

.main-content .about-section-3 .team-container .member, .main-content .about-section-4 .team-container .member{
    width: 100%;
    padding: 1.3em;
    border: 4px dashed #068D9D;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 300px;
}

.main-content .about-section-3 .team-container .member img, .main-content .about-section-4 .team-container .member img{
    width: 100%;
    height: 220px;
    border-radius: 1em;
    margin-bottom: 20px;
}

.main-content .about-section-3 .team-container .member div, .main-content .about-section-4 .team-container .member div{
    color: #102542;
    font-weight: 500;
    font-size: 1.6vw;
}

.main-content .about-section-3 .team-container .member div .designation, .main-content .about-section-4 .team-container .member div .designation{
    font-size: 1.3vw;
    margin-top: 10px;
    color: #068D9D;
}

.main-content .about-section-4{
    padding: 0 3em 4em 3em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content .about-section-4 .team-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2em 1em;
    max-width: 1400px;
    width: 100%;
}

.main-content .about-section-4 .team-container .member{
    max-width: 300px;
}

.main-content .about-section-5{
    padding: 4em 3em;
    background-color: #068D9D;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    justify-items: center;
    text-align: center;
    gap: 3em 1em;
}

.main-content .about-section-5 .elements h3{
    font-family: 'Playball', cursive;
    font-size: 3.5vw;
    margin-bottom: 0.8em;
    color: #102542;
}

.main-content .about-section-5 .elements .advisor-container .advisor{
    margin-bottom: 1.5em;
} 

.main-content .about-section-5 .elements .advisor-container .advisor h4, .main-content .about-section-5 .elements div h4{
    font-size: 1.8vw;
    font-weight: 600;
    color: #102542; 
}

.main-content .about-section-5 .elements .advisor-container .advisor p, .main-content .about-section-5 .elements div p, .main-content .about-section-5 .elements p{
    font-weight: 500;
    font-size: 1.3vw;
}

/* About Page Ends */

/* Causes Page Starts */

.main-content .causes-section-1{
    padding: 1em 3em 4em 3em;
}

.main-content .causes-section-1 h1{
    font-family: 'Playball', cursive;
    font-size: 6vw;
    margin-bottom: 30px;
    color: #102542;
}

.main-content .causes-section-1 .causes-section-1-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
    justify-items: center;
    gap: 1em;
    margin: auto;
    max-width: 1500px;
    width: 100%;
}

.main-content .causes-section-1 .causes-section-1-container .campaign{
    padding: 1em;
    background-color: #068D9D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 1em;
}

.main-content .causes-section-1 .causes-section-1-container .campaign img{
    width: 100%;
    height: 200px;
    margin-bottom: 1.5em;
    border-radius: 1em;
}

.main-content .causes-section-1 .causes-section-1-container .campaign h4{
    font-family: 'Playball', cursive;
    font-size: 1.8vw;
    margin-bottom: 0.5em;
    color: #102542;
}

.main-content .causes-section-1 .causes-section-1-container .campaign  p{
    font-size: 1.3vw;
    font-weight: 500;
    margin-bottom: 2em;
    text-align: center;
}

.main-content .causes-section-1 .causes-section-1-container .campaign .btn{
    display: block;
    color: #102542;
    background-color: #FCF7FF;
    padding: 10px 20px;
    width: 150px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border: 3px solid white;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 1em;
}

.main-content .causes-section-1 .causes-section-1-container .campaign .btn:hover{
    color: #FCF7FF;
    background-color: #068D9D;
}

/* Causes Page Ends */

/* Contact Page Starts */

.main-content .contact-section-1{
    padding: 4em 3em;
    background-color: #068D9D;
}

.main-content .contact-section-1 h1{
    text-align: center;
    font-family: 'Playball', cursive;
    font-size: 5vw;
    margin-bottom: 30px;
    color: #102542;
}

.main-content .contact-section-1 .contact-section-1-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2em;
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.main-content .contact-section-1 .contact-section-1-container .box{
    max-width: 700px;
    width: 100%;
    color: #FCF7FF;
    background-color: #102542;
    padding: 3em;
    border-radius: 1em;
}

.main-content .contact-section-1 .contact-section-1-container .box h2{
    font-size: 3vw;
    font-weight: 500;
    margin-bottom: 30px;
}

.main-content .contact-section-1 .contact-section-1-container .box p{
    margin-bottom: 1.5em;
    font-size: 1.3vw;
}

.main-content .contact-section-1 .contact-section-1-container .box .buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-content .contact-section-1 .contact-section-1-container .box .contact-btn, .main-content .contact-section-1 .contact-section-1-container .box .buttons .contact-btn{
    display: block;
    color: #102542;
    background-color: #FCF7FF;
    padding: 10px 20px;
    width: 130px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border: 3px solid white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.main-content .contact-section-1 .contact-section-1-container .box .contact-btn:hover, .main-content .contact-section-1 .contact-section-1-container .box .buttons .contact-btn:hover{
    color: #FCF7FF;
    background-color: #102542;
}

.main-content .contact-section-2{
    padding: 4em 3em;
}

.main-content .contact-section-2 .contact-section-2-container{
    width: 100%;
    padding: 2em;
    border: 4px dashed #068D9D;
    border-radius: 1em;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2em;
}

.main-content .contact-section-2 .contact-section-2-container .form{
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-self: flex-start;
    justify-self: flex-start;
    width: 100%;
}

.main-content .contact-section-2 .contact-section-2-container .form h2{
    font-size: 4vw;
    font-family: 'Playball', cursive;
    margin-bottom: 20px;
    color: #068D9D;
}

.main-content .contact-section-2 .contact-section-2-container .form form{
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
}

.main-content .contact-section-2 .contact-section-2-container .form form input, .main-content .contact-section-2 .contact-section-2-container .form form textarea{
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 1.2rem;
    width: 100%;
    color: #FCF7FF;
    background-color: #068D9D;
    resize: none;
}

.main-content .contact-section-2 .contact-section-2-container .form form input[type=submit]{
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-content .contact-section-2 .contact-section-2-container .form form input[type=submit]:hover{
    background-color: #007e8b;
}

.main-content .contact-section-2 .contact-section-2-container .form form input:focus, .main-content .contact-section-2 .contact-section-2-container .form form textarea:focus{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-content .contact-section-2 .contact-section-2-container .form form input::placeholder, .main-content .contact-section-2 .contact-section-2-container .form form textarea::placeholder{
    color: #FCF7FF;
}

.main-content .contact-section-2 .contact-section-2-container .map{
    width: 100%;
    height: 100%;
}

.main-content .contact-section-2 .contact-section-2-container .map iframe{
    width: 100%;
    height: 100%;
    border-radius: 1em;
}

/* Contact Page Ends */

/* Footer Starts */

footer .trust-content{
    background-color: #FAF3F0;
    padding: 4em 3em 2em 3em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-start;
    justify-items: center;
    gap: 2em 1em;
}

footer .trust-content .div-1 p, footer .trust-content .div-2 p{
    font-size: 1.3vw;
    font-weight: 500;
}

footer .trust-content .div-1 .socials{
    margin-top: 1.5em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

footer .trust-content .div-1 .socials a{
    text-decoration: none;
}

footer .trust-content .div-1 .socials a i{
    font-size: 1.5vw;
    color: #FCF7FF;
    background-color: #102542;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

footer .trust-content .div-1 .socials a i:hover{
    transform: scale(1.1);
}

footer .trust-content .div-1 h2, footer .div-2 h2, footer .div-3 h2{
    color: #102542;
    font-size: 2.5vw;
    font-family: 'Playball', cursive;
    margin-bottom: 20px;
}

footer .trust-content .div-3 ul{
    list-style: none;
}

footer .trust-content .div-3 ul li{
    margin-bottom: 8px;
}

footer .trust-content .div-3 ul li a{
    display: block;
    color: #102542;
    font-size: 1.4vw;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .trust-content .div-3 ul li a:hover{
    transform: translateX(2px);
}

footer .copyright{
    padding: 10px;
    font-size: 1.5vw;
    text-align: center;
    color: #FAF3F0;
    background-color: #102542;
}

/* Footer Ends */

/* Responsive CSS Styles */

@media (max-width: 1130px) {
    .main-content .contact-section-1 .contact-section-1-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 1025px) {

    .main-content .home-section-1 .left h1{
        font-size: 4rem;
    }
    
    .main-content .home-section-1 .left p{
        font-size: 1.1rem;
    }
    
    .main-content .home-section-1 .right img{
        width: 100%;
    }
    
    .main-content .home-section-2 .section-2-left h1, .main-content .home-section-2 .section-2-right h1{
        font-size: 3rem;
    }
    
    .main-content .home-section-2 .section-2-left p, .main-content .home-section-2 .section-2-right p{
        font-size: 1rem;
    }

    .main-content .home-section-3{
        gap: 1em;
    }

    .main-content .home-section-3 .container{
        height: fit-content;
        padding: 1em;
    }

    .main-content .home-section-2 .section-2-left p, .main-content .home-section-2 .section-2-right p{
        text-align: center;
    }
    
    .main-content .home-section-3 .container  p{
        font-size: 1.1rem;
    }
    
    .main-content .about-section-1 h1{
        font-size: 4rem;
    }
    
    .main-content .about-section-1 .about-section-1-container{
        flex-direction: column;
        gap: 3em;
    }

    .main-content .about-section-1 .about-section-1-container .left, .main-content .about-section-1 .about-section-1-container .right{
        width: 100%;
        display: flex;
    }
    
    .main-content .about-section-1 .about-section-1-container .left p,  .main-content .about-section-2 .right p{
        padding-right: 0;
        font-size: 1.1rem;
    }
    
    .main-content .about-section-1 .about-section-1-container .right img{
        margin: auto;
        width: 70%;
        border-radius: 3em 0 3em 0; 
    }
    
    .main-content .about-section-2{
        flex-direction: column;
        gap: 3em;
    }
    
    .main-content .about-section-2 .left{
        width: 100%;
        display: flex;
        order: 1;
    }

    .main-content .about-section-2 .right{
        width: 100%;
    }
    
    .main-content .about-section-2 .left img{
        margin: auto;
        width: 70%;
    }
    
    .main-content .about-section-2 .right{
        align-self: flex-start;
    }

    .main-content .about-section-2 .right h2{
        font-size: 3rem;
        text-align: center;
    }
    
    .main-content .about-section-3 .team-container .member img, .main-content .about-section-4 .team-container .member img{
        width: 100%;
        height: 220px;
        border-radius: 1em;
        margin-bottom: 20px;
    }
    
    .main-content .about-section-3 .team-container .member div, .main-content .about-section-4 .team-container .member div{
        font-size: 1.6rem;
    }
    
    .main-content .about-section-3 .team-container .member div .designation, .main-content .about-section-4 .team-container .member div .designation{
        font-size: 1.3rem;
    }
    
    .main-content .about-section-5 .elements h3{
        font-size: 2.5rem;
    }
    
    .main-content .about-section-5 .elements .advisor-container .advisor h4, .main-content .about-section-5 .elements div h4{
        font-size: 1.4rem;
    }
    
    .main-content .about-section-5 .elements .advisor-container .advisor p, .main-content .about-section-5 .elements div p, .main-content .about-section-5 .elements p{
        font-size: 1rem;
    }

    .main-content .about-section-3 .team-container{
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 900px) {

    .main-content .home-section-2{
        grid-template-columns: repeat(1, 1fr);
    }
    
    .main-content .causes-section-1 h1{
        font-size: 3rem;
    }

    .main-content .causes-section-1 .causes-section-1-container{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-content .causes-section-1 .causes-section-1-container .campaign h4{
        font-size: 2rem;
    }
    
    .main-content .causes-section-1 .causes-section-1-container .campaign  p{
        font-size: 1.1rem;
    }
    
}

@media (max-width: 768px) {
    header nav .hamburger{
        display: block;
    }
    
    header nav .nav-links{
        display: none;
        position: absolute;
        text-align: center;
        right: 0;
        left: 0;
        top: 90px;
        background-color: #FAF3F0;
        z-index: 9;
    }

    header nav .nav-links .nav-menu{
        display: block;
    }

    header nav .nav-links .nav-menu li{
        padding: 0.5em;
    }

    header nav .nav-links.mobile-view{
        display: block;
    }

    .main-content .home-section-1{
        flex-direction: column;
        gap: 3em;
    }

    .main-content .home-section-1 .left, .main-content .home-section-1 .right{
        width: 100%;
    }

    .main-content .home-section-1 .left p{
        padding-right: 0;
    }

    .main-content .home-section-1 .left h4{
        margin: auto;
    }

    .main-content .home-section-1 .right img{
        transform: rotate(0deg);
        width: 100%;
        border-radius: 1em;
    }

    .main-content .home-section-3{
        flex-direction: column;
    }

    .main-content .home-section-3 .container{
        margin: auto;
    }

    .main-content .home-section-3 .container{
        width: fit-content;
        height: fit-content;
    }

    .main-content .about-section-1 .about-section-1-container .right img, .main-content .about-section-2 .left img{
        width: 100%;
        border-radius: 10px;
    }

    .main-content .about-section-3 .team-container, .main-content .about-section-4 .team-container, .main-content .about-section-5{
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content .about-section-3 h2, .main-content .about-section-4 h2{
        font-size: 3rem;
        text-align: center;
    }

    .main-content .contact-section-2 .contact-section-2-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .main-content .contact-section-2 .contact-section-2-container .map iframe{
        height: 60vw;
    }

    .main-content .contact-section-1 h1{
        font-size: 4rem;
        text-align: center;
    }
    
    .main-content .contact-section-1 .contact-section-1-container .box h2, .main-content .contact-section-2 .contact-section-2-container .form h2{
        font-size: 3rem;
    }
    
    .main-content .contact-section-1 .contact-section-1-container .box p{
        font-size: 1.3rem;
    }

    footer .trust-content{
        padding: 2em;
        grid-template-columns: repeat(2, 1fr);
        justify-items: flex-start;
    }    

    footer .trust-content .div-1 h2, footer .div-2 h2, footer .div-3 h2{
        font-size: 2.2rem;
    }

    footer .trust-content .div-1 p, footer .trust-content .div-2 p{
        font-size: 1rem;
    }
    
    footer .trust-content .div-1 .socials a i{
        font-size: 1rem;
    }
    
    footer .trust-content .div-3 ul li a{
        font-size: 1rem;
    }
    
    footer .copyright{
        font-size: 1rem;
    }
}

@media (max-width: 575px) {

    .main-content .home-section-1 .left h1{
        text-align: center;
        font-size: 3.5rem;
    }

    .main-content .causes-section-1, .main-content .about-section-3, .main-content .about-section-4, .main-content .about-section-5{
        padding: 2em;
    }

    footer .trust-content{
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        text-align: center;
    }  

    footer .trust-content .div-1 .socials{
        justify-content: center;
    }
}

@media (max-width: 500px) {

    .main-content .home-section-1, .main-content .home-section-2, .main-content .home-section-3{
        padding: 2em;
    }

    .main-content .home-section-2 .section-2-left, .main-content .home-section-2 .section-2-right{
        padding: 1em;
    }

    .main-content .home-section-3 .container h2{
        font-size: 2rem;
        text-align: center;
    }

    .main-content .about-section-3 .team-container, .main-content .about-section-4 .team-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .main-content .causes-section-1 h1{
        text-align: center;
    }

    .main-content .causes-section-1 .causes-section-1-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .main-content .contact-section-1, .main-content .contact-section-2{
        padding: 2em;
    }

    .main-content .contact-section-1 h1{
        font-size: 3rem;
    }

    .main-content .contact-section-1 .contact-section-1-container .box{
        padding: 2em;
    }

    .main-content .contact-section-1 .contact-section-1-container .box .contact-btn{
        margin: 0 auto;
    }

    .main-content .contact-section-1 .contact-section-1-container .box .buttons{
        flex-direction: column;
        gap: 1em;
    }

    .main-content .contact-section-2 .contact-section-2-container{
        padding: 1.5em;
    }

    .main-content .contact-section-2 .contact-section-2-container .form h2{
        text-align: center;
    }

    .main-content .contact-section-2 .contact-section-2-container .map iframe{
        height: 70vw;
    }
}

@media (max-width: 426px) {

    header nav{
        padding: 0.5em 1em;
    }

    .main-content .home-section-1 .left h1{
        font-size: 2.3rem;
    }

    .main-content .home-section-1 .left h4{
        width: 250px;
        font-size: 1rem;
        text-align: center;
        align-items: center;
    }

    .main-content .home-section-1 .left h4 a{
        padding: 1.5em 1em;
    }

    .main-content .home-section-2 .section-2-left h1, .main-content .home-section-2 .section-2-right h1{
        font-size: 2rem;
        text-align: center;
    }

    .main-content .home-section-2 .section-2-left .buttons, .main-content .home-section-2 .section-2-right .buttons{
        flex-direction: column;
        margin-bottom: 10px;
    }

    .main-content .about-section-1, .main-content .about-section-2{
        padding: 2em;
    }

    .main-content .about-section-1 h1{
        font-size: 3rem;
        text-align: center;
    }

    .main-content .about-section-1 .about-section-1-container .left p,  .main-content .about-section-2 .right p{
        font-size: 1rem;
    }

    .main-content .about-section-2 .right h2{
        font-size: 2.5rem;
    }

    .main-content .about-section-5{
        grid-template-columns: repeat(1, 1fr);
    }

    .main-content .about-section-5 .elements h3{
        margin-bottom: 10px;
    }

    .main-content .contact-section-2, .main-content .contact-section-1, .main-content .causes-section-1{
        padding: 2em 1em;
    }

    .main-content .contact-section-1 h1{
        font-size: 3rem;
    }

    .main-content .contact-section-1 .contact-section-1-container .box{
        padding: 1em;
    }

    .main-content .contact-section-2 .contact-section-2-container{
        padding: 1em;
    }

    .main-content .contact-section-1 .contact-section-1-container .box h2, .main-content .contact-section-2 .contact-section-2-container .form h2{
        font-size: 2rem;
        text-align: center;
    }
}