﻿@font-face {
    font-family: "Montserrat";
    src: url('./Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('embedded-opentype'), /* Internet Explorer */
    url('./Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('woff2'), /* Super Modern Browsers */
    url('./Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('woff'), /* Pretty Modern Browsers */
    url('./Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype'), /* Safari, Android, iOS */
    url('./Fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('svg'); /* Legacy iOS */
}

 .footer-content {
    margin-left: 135px;
    margin-right: 135px;
    margin-bottom: 80px;
}

.footer {
    background-color: #F4FAFe;
    min-height: 444px;
    margin-top: auto;
}

.footer-content .row1, .footer-content .row2 {
    display: flex;
    flex-direction: row;
}

.footer-content .row2 {
    margin-top: 100px;
}

.logo-container {
    width: 25%;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.footer .logo {
    height: 31px;
    width: 139px;
}

.footer .linkedin-logo-container {
    margin-top: 20px;
    height: 30px;
    width: 30px;
}

.why-allied-section {
    width: 75%;
    margin-top: 60px;
}

.why-allied-section .heading {
    font-family: 'roc-grotesk', Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    margin-top: 0;
}

.why-allied-section .why-text {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 25px;
}

.footer .copyright {
    width: 25%;
    display: flex;
    justify-content: left;
}

.footer .footer-links {
    width: 25%;
    display: flex;
    text-align: left;
    justify-content: left;
    white-space: nowrap;
}

.a:link, .a:visited {
    color: #3EC0FB;
}

.footer .awards {
    width: 50%;
    display: flex;
    justify-content: right;
}

.compliance-awards {
    max-width: 280px;
    height: auto;
}

.contact-button-container {
    padding-top: 25px;
}

.contact-button {
    margin: 0;
    background-color: rgb(71, 217, 254);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(62, 192, 251);
    border-image: initial;
    border-radius: 13px;
    padding: 8px 0;
    color: rgb(255, 255, 255);
    font-family: Montserrat;
    font-size: 13px;
    width: 139px;
    cursor: pointer;
    box-sizing: border-box;
}

.a:link, .a:visited {
    color: #3EC0FB;
    text-decoration: underline;
}

/* --- Responsive --- */

@media only screen and (max-width: 992px) {
    .footer-content {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .footer-content .row1 {
        flex-direction: column;
    }

    .footer-content .row2 {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .logo-container {
        width: 100%;
        margin-top: 30px;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .footer .linkedin-logo-container {
        margin-top: 0;
    }

    .why-allied-section {
        width: 100%;
        margin-top: 30px;
    }

    .footer .copyright {
        width: 100%;
        justify-content: center;
    }

    .footer .footer-links {
        width: 100%;
        justify-content: center;
    }

    .footer .awards {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

    .contact-button {
        width: 139px;
    }

    .contact-button-container {
        padding-top: 0;
    }

    .footer-content .row2 {
        margin-top: 40px;
    }

}

@media only screen and (max-width: 576px) {
    .footer-content {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 40px;
    }

    .footer {
        min-height: auto;
    }

    .contact-button {
        width: 139px;
    }

    .logo-container {
        flex-direction: column;
        align-items: flex-start;
    }
}