@font-face {
    font-family: 'Roboto Condensed';  /* The name you will use for this font */
    src: url('../fonts/RobotoCondensed-Regular.ttf') format('truetype'), url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'), url('../fonts/RobotoCondensed-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Roboto Condensed600';  /* The name you will use for this font */
    src: url('../fonts/RobotoCondensed-SemiBold.ttf') format('truetype'), url('../fonts/RobotoCondensed-SemiBold.woff2') format('woff2'), url('../fonts/RobotoCondensed-SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'Oswald';  /* The name you will use for this font */
    src: url('../fonts/Oswald-Regular.ttf') format('truetype'), url('../fonts/Oswald-Regular.woff2') format('woff2'), url('../fonts/Oswald-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Oswald600';  /* The name you will use for this font */
    src: url('../fonts/Oswald-SemiBold.ttf') format('truetype'), url('../fonts/Oswald-SemiBold.woff2') format('woff2'), url('../fonts/Oswald-SemiBold.woff') format('woff');
}
html, body {
    height: 100%;
    margin: 0;
}
.container-al {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.content {
    flex: 1; /* This makes the content take up the remaining space */
}
.contact-bg {
    width: 100%;
    height: fit-content;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url("../images/contactus.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-us-head {
    font-family: "Oswald600", serif;
    color: #38bb73;
    font-size: 33px;
    line-height: 42px;
    letter-spacing: 0.4px;
    font-weight: 600;
    text-align: center;
}

.contact-us-para {
    font-family: "Oswald", serif;
    color: #000;
    font-size: 19px;
    line-height: 34px;
    letter-spacing: 0.4px;
    text-align: center;
}

.contact-card {
    background-color: rgb(247, 247, 247);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
    min-height: 136px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phone-head {
    font-family: "Roboto Condensed600", serif;
    color: #000000;
    font-size: 19px;
    line-height: 34px;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.phone-nb {
    font-family: "Roboto Condensed", serif;
    color: #000;
    font-size: 19px;
    line-height: 34px;
    letter-spacing: 0.4px;
}

.email-al {
    color: #000;
}

.email-al:hover {
    color: #000;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(209, 209, 209, 0.1);
}

@media (max-width: 768px) {
    .contact-col-al {
        padding-top: 1rem;
    }

}

@media (max-width: 576px) {
    .contact-us-head {
        font-size: 30px;
        line-height: 39px;
    }

    .contact-us-para {
        font-size: 17px;
        line-height: 30px;
    }

    .phone-head {
        font-size: 17px;
        line-height: 30px;
    }

    .phone-nb {
        font-size: 17px;
        line-height: 30px;
    }

    .contact-card {
        min-height: 130px;
    }
}