/* PAGE HEADER */
.header {
    background-image: url(../img/Contact/contactBG.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* CONTACT DETAILS */
.contact-details {
    display: flex;
    gap: 50px;
    margin: 70px 100px 30px 100px;
}

.email,
.contact,
.address {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fa-envelope,
.contact-icon,
.fa-location-dot {
    color: #50B848;
    font-size: 35px;
}

.email-text,
.contact-number,
.address-text {
    font-size: 20px;
    font-weight: 500;
}

.email-text {
    overflow-wrap: break-word;
    max-width: 100%;
}

.email-text a,
.contact-number a {
    text-decoration: none;
    color: black;
}

/* MAP */
.map-container {
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
}

/* MOBILE LAYOUT */
@media(max-width:1050px) {
    .contact-details {
        display: flex;
        gap: 50px;
        margin: 50px 50px 20px 50px;
        display: block;
    }
}