/* --- Global --- */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

:root {
    --dark: #000814;
    --blue: #0096c7;
}

body {
    background: var(--dark);
    padding: 30px 30px 0;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    body {
       font-size: 16px;
       line-height: 26px;
    }
}

h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    h1 {
       font-size: 24px;
       line-height: 34px;
    }
}

h5 {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

p strong {
    font-weight: 800;
}

p a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--blue);
    font-weight: 600;
}

.btn {
    width: auto;
    padding: 10px 25px;
    background: var(--blue);
    color: white;
    text-align: center;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
}

/* --- Header --- */

.header {
    padding: 30px 0;
}

.header__container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header__container img {
    width: auto;
    height: 80px;
}

/* --- Main Body --- */

.main {
    padding: 30px 0;
}

.main__container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: white;
}

.main__container--intro {
    max-width: 60%;
}

.main__container--map .details {
    display: flex;
    gap: 60px;
}

@media (max-width: 768px) {
    .main__container--intro {
        max-width: 100%;
    }
    .main__container--map .details {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- Footer --- */

.footer {
    margin-top: auto;
    width: 100%;
    text-align: right;
    padding: 25px 0 10px;
}

.footer p {
    color: white;
    font-size: 14px;
}

.footer p a {
    color: white;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--blue);
    font-weight: 600;
}
