@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #eef1f5;
    color: #263346;
    font-family: Arial, sans-serif;
    font-size: .938rem;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 61.25rem;
    margin: 1rem auto;
    overflow: hidden;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}


ul {
    margin: 0 0 1rem 1rem;
}


.fa-location-dot {
    color: #7b858f;
}

p {
    margin-bottom: 1.5rem;
}

h1 {
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
    line-height: 1.15;
}

h3 {
    margin: 1.875rem 0 0.25rem;
    font-size: 1rem;
    line-height: 1.3;
}

h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

a.apply-button {
    display: block;
    width: fit-content;
    padding: 0.625rem 0.9375rem;
    border-radius: 999px;
    background: #0303b8;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
}

hr {
    border-style: none;
    margin: 1.75rem -2rem;
    border-top: 1px solid #d7dde5;
}

header {
    padding: 0.75rem 2rem;
    background-color: #fff;
    display: flex;
}

article {
    margin-top: 1.625rem;
    background-color: #fff;
    padding: 1.75rem 2rem 1.625rem;
}

footer {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

footer p {
    margin-bottom: 0.625rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #8a92a0;
    color: #fff;
    font-size: 0.8125rem;
}

@media only screen and (max-width: 61.188rem) {
    #wrapper {
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 48rem) {
    header {
        justify-content: center;
    }
}

@media only screen and (max-width: 40rem) {
    header {
        padding: 0.75rem 1rem;
    }

    article {
        margin-top: 1rem;
        padding: 1rem;
    }

    footer {
        padding: 1rem;
    }

    h1 {
        text-align: center;
    }

    h3 {
        margin-top: 0;
    }

    a.apply-button {
        margin: 0 auto;
    }

    p {
        margin-bottom: 1rem;
    }
}