#ContactPage{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
    padding-block: 50px 76px;
}
.ContactTitle{
    width: 100%;
    font-size: 2rem;
    line-height: 2rem;
    color: var(--Text-Primary);
    font-weight: 600;
}
.contactdetails{
    background-color: var(--Surface);
    border: 1px solid var(--Border);
    border-radius: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.topText{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}
.getintouch{
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: var(--Text-Primary);
    font-weight: 400;
}
.connectiontext{
    width: 100%;
    font-size: 1rem;
    color: var(--Text-Secondary);
    font-weight: 400;
}
.contactinfo{
    background-color: var(--Border);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}
.contactEmail{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.emailicon{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--Text-Primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contactEnvelopeImg{
    height: 70%;
    pointer-events: none;
}
.emaiIdcontact{
    flex-grow: 1;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: var(--primary);
    font-weight: 400;
}
.wewillgettoyou{
    width: 100%;
    font-size: 1.3rem;
    color: var(--Text-Secondary);
    font-weight: 400;
}

@media (max-width: 700px) {
    .contactEmail{
        gap: 15px;
    }
    .emailicon{
        height: 60px;
        width: 60px;
    }
    .emaiIdcontact{
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
    .wewillgettoyou{
        font-size: 1rem;
    }
}
@media (max-width: 550px) {
    .contactEmail{
        gap: 10px;
    }
    .emailicon{
        height: 50px;
        width: 50px;
    }
    .emaiIdcontact{
        font-size: 1rem;
        line-height: 1rem;
    }
}