.about-us-hero{
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    justify-content: initial;
    background: rgb(245, 250, 213, 0.5);
}
.about-us-hero p{
    font-size: 20px;
    font-weight: 600;
    color: #8A5B1B;
}

.about-us-hero .left{
    width: auto;
    margin-left: 130px;
}
.about-us-hero .left img{
    height: 300px;
}

.about-us-hero .right
{
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-inline: 20px;
}

.about-us-hero .right p{
    text-align: justify;
}
.about-us-hero .right h1{
    margin: 0;
    font-size: 60px;
    background: url(../img/gold_texture.jpg);
    background-position: center;
    background-size: 150%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
    /*filter: drop-shadow(3px 2px #000a);*/
}

.achievements{
    margin-top: 100px;
}

.achievements .achievements-img{
    display: flex;
    flex-direction: column;
    width: 60vw;
    margin-left: 20vw;
    /*height: 50vh;*/
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.achievements .achievements-img .vertical
{
    display: flex;
    flex-direction : row;
    width: 100%;
    height: 50vh;
    gap: 10px;
}
.achievements .achievements-img .vertical .col-1{
    height: 100%;
    width: 20vw;
    background: url(../img/img1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.achievements .achievements-img .vertical .col-2{
    height: 100%;
    width: 20vw;
    background: url(../img/img2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.achievements .achievements-img .vertical .col-3{
    height: 100%;
    width: 20vw;
    background: url(../img/img3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.achievements .achievements-img .horizontal
{
    height: 50vh;
    width: 100%;
    background: url(../img/img4.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

.contact-us .contact-container h1{
    margin: 1vh;
}

.contact-us p
{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}
.contact-us .contact-container
{
    width: 15vw;
    margin-left: 45.5vw;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;

}
.contact-us .contact-container a
{
    text-align: left;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: black;
    display: flex;
}
.contact-us .contact-container a img{
    filter: invert(0);
}

#note{
    text-align: center;
    font: 40px;
    font-weight: 800;
}
@media(max-width: 1024px){
    .about-us-hero{
        flex-direction: column;
        gap: 0px;
    }
    .about-us-hero .left img{
        height: 250px;
    }
    .about-us-hero .left{
        width: 100%;
        margin-left: 0px;
    }
    .about-us-hero .right h1{
        font-size: 45px;
        /*font-size: 60px;*/
        background: url(../img/gold_texture.jpg);
        background-position: center;
        background-size: 150%;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent
    }
    .about-us-hero p{
        font-size: 18px;
        font-weight: 600;
        color: #8A5B1B;
    }
    .about-us-hero .right
    {
    width: 80%;
    display: flex;
    flex-direction: column;
    }

    .achievements .achievements-img{
        width: 80vw;
        margin-left: 10vw;
        /*height: 20vh;*/
    }
    .achievements .achievements-img .vertical{
        height: 20vh;
        width: 100%;
    }
    .achievements .achievements-img .vertical .col-1,
    .achievements .achievements-img .vertical .col-2,
    .achievements .achievements-img .vertical .col-3{
        width: 33vw;
    }
    .achievements .achievements-img .horizontal{
        height: 15vh;    
    }
    .contact-us p
    {
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        margin: 10px 10px 30px 10px;
    }
    #note{
        text-align: center;
        font-size: 18px;
        font-weight: 800;
        margin: 0px 15px;
    }
    .contact-us .contact-container
    {
        width: 50vw;
        margin-left: 25vw;
        display: flex;
        flex-direction: column;
        align-items: left;
        gap: 20px;
    }   
    .contact-us .contact-container a
    {
        text-align: left;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        color: black;
        display: flex;
    }
    .contact-us .contact-container a img{
        height: 20px;
    }
}