/* Contact Page starts */
.contact-us{
    display: flex;
    flex-direction: column;
    
}

.contact-top{
    flex: 1; 
    padding-bottom: 8vh;
    background-color: var(--primary-beige);
}

.main-head{
    font-weight: 400;
    font-style: normal;
    font-size: 56px;
    text-align: center;
    padding: 3vh;
}

.main-sub-head{
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 4vh;
    width: 52vw !important;
    margin-bottom: 1vw;
    margin-right: auto;
    margin-left: auto;
}

.contact-cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cc{
    background-color: white;
    padding: 2vh 2vw;
    margin: 1vw;
    border-radius: 16px;
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cc .cc-head{
    font-weight: 600;
    font-size: 3.2rem;
}

.cc .cc-mid{
    font-size: 2vh;
    font-weight: 400;
}

.cc > div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.cc > div > img{
    width: 10.5%;
}

.cc .full-cover{
    justify-content: space-between;
    gap: 0;
}

.contact-mid {
    background-color: var(--primary-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-mid img{
    width: 60%;
    height: 60vh;
    margin-top: -15vh;
    border-radius: 16px;
    margin-right: auto;
    margin-left: auto;
}

.contact-mid-head{
    width: fit-content;
    text-align: center;
    font-size: 5vh;
    color: var(--primary-green);
    background-color: var(--primary-white);
    font-weight: 600;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-mid-head.overlap{
    padding-top: 0.5rem;
    margin-top: -3.5rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.contact-presence{
    background-color: rgba(255, 255, 255, 0.8) !important;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media only screen and (max-width: 900px) {
    *{
        font-size: 0.9rem;
    }
    
    .contact-top{
        flex: 1;
        padding-bottom: 4rem;
        background-color: var(--primary-beige);
    }
    
    .main-head{
        font-weight: 400;
        font-style: normal;
        font-size: 2.5rem;
        text-align: center;
        padding: 3vh;
    }
    
    .main-sub-head{
        font-size: 1.25rem;
        padding-bottom: 4vh;
        width: 90% !important;
        margin-bottom: 1vw;
    }
    
    .contact-cards{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem
    }
    
    .cc{
        background-color: white;
        padding: 5% 5%;
        margin: 0;
        border-radius: 16px;
        width: 80%;
        height: fit-content;
        display: flex;
        gap: 1rem;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .cc .cc-head{
        font-weight: 500;
        font-size: 2rem;
    }
    
    .cc .cc-mid{
        font-size: 1rem;
        font-weight: 400;
    }
}