/* Regular */

@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: local('Manrope'), local('Manrope-Regular'),
        url('assets/fonts/Manrope-Regular.ttf') format('truetype');
        /* url('assets/fonts/rubik-v7-latin_latin-ext_cyrillic_hebrew-regular.woff') format('woff'); Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Italic */
@font-face {
    font-family: 'Manrope';
    font-style: italic;
    font-weight: 400;
    src: local('Manrope Regular'), local('Manrope-Regular'),
        url('assets/fonts/Manrope-Regular.ttf') format('truetype');
        /* url('assets/fonts/rubik-v7-latin_latin-ext_cyrillic_hebrew-italic.woff') format('woff'); Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* SemiBold */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    src: local('Manrope Medium'), local('Manrope-Medium'),
        url('assets/fonts/Manrope-Medium.ttf') format('truetype');
        /* url('assets/fonts/rubik-v7-latin_latin-ext_cyrillic_hebrew-500.woff') format('woff'); Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* SemiBold Italic */
@font-face {
    font-family: 'Manrope';
    font-style: italic;
    font-weight: 500;
    src: local('Manrope Medium'), local('Manrope-Medium'),
        url('assets/fonts/Manrope-Medium.ttf') format('truetype');
        /* url('assets/fonts/rubik-v7-latin_latin-ext_cyrillic_hebrew-500italic.woff') format('woff'); Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Bold */
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 700;
    src: local('Manrope Bold'), local('Manrope-Bold'),
        url('assets/fonts/Manrope-Bold.ttf') format('truetype');
        /* url('assets/fonts/rubik-v7-latin_latin-ext_cyrillic_hebrew-700.woff') format('woff'); Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Bold Italic */
@font-face {
    font-family: 'Manrope';
    font-style: italic;
    font-weight: 700;
    src: local('Manrope Bold'), local('Manrope-Bold'),
        url('assets/fonts/Manrope-Bold.ttf') format('truetype');
        /* url('assets/fonts/rubik-v7-latin_latin-ext_cyrillic_hebrew-700italic.woff') format('woff'); Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
    font-family: "Manrope", Helvetica, Arial, sans-serif !important; /* match fonts */
    background-color: #F9F9F9; /* --brand-background */
    color: #464646; /* --brand-neutral */
}

.header {
    background-color: #5D6D79; /* --brand-primary */
    color: #FFFFFF;
    height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h2 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 0.5rem;
}

a {
    color: #5D6D79; /* --brand-primary */
}

a:hover {
    color: #374753; /* --brand-primary-dark */
    text-decoration: none;
}

.color-gray-800 {
    color: #525252 !important; /* --gray-800 */
}

.contact {
    margin-top: 2rem;
}

.contact i {
    font-size: 1.6rem;
}

/* mobile only */
@media (max-width: 768px) {
    .header {
        padding: 0 2rem;
        height: 13rem;
    }

    .header-image {
        text-align: center;
    }

    .header img {
        height: 2.4375rem;
        margin: 0.4rem 0;
    }

    .main {
        padding: 2rem;
    }
}

/* tablet and desktop */
@media (min-width: 769px) {
    .header {
        padding: 0 4rem;
    }

    .header img {
        height: 2.8125rem;
        margin: 0.65rem 0;
    }

    .main {
        padding: 2rem 4rem;
    }
}

/* desktop only */
@media (min-width: 1080px) {
    .header {
        padding: 0 8.5rem;
    }

    .main {
        padding: 2rem 8.5rem;
    }
}
