@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Patrick Hand';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/patrick-hand-v25-latin-regular.eot');
    src: url('../fonts/patrick-hand-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/patrick-hand-v25-latin-regular.woff2') format('woff2'), url('../fonts/patrick-hand-v25-latin-regular.woff') format('woff'), url('../fonts/patrick-hand-v25-latin-regular.ttf') format('truetype'), url('../fonts/patrick-hand-v25-latin-regular.svg#PatrickHand') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Saira';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/saira-v23-latin-regular.eot');
    src: url('../fonts/saira-v23-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/saira-v23-latin-regular.woff2') format('woff2'), url('../fonts/saira-v23-latin-regular.woff') format('woff'), url('../fonts/saira-v23-latin-regular.ttf') format('truetype'), url('../fonts/saira-v23-latin-regular.svg#Saira') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Saira', "Arial", sans-serif;
    font-size: .938rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: url("../images/bg.png") center/cover no-repeat;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    padding-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: normal;
    padding-bottom: .5rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: normal;
}

h3 {
    font-size: 4rem;
    line-height: 1;
    font-family: 'Patrick Hand';
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    padding: 1.25rem 0 2.5rem;
}

h4 {
    font-size: 1rem;
    font-weight: normal;
}

h4 span {
    font-size: 1.7rem;
    font-family: 'Patrick Hand';
    text-transform: uppercase;
}

.flex {
    display: flex;
    gap: 2rem 5rem;
}

.flex>div {
    flex: 50%;
}

.item {
    display: flex;
    align-items: start;
    gap: 2rem;
    padding-top: 1.25rem;
}

.item>div {
    padding-top: .3rem;
    flex: 0 0 4rem;
    display: flex;
    justify-content: center;
}

.item>p {
    padding: 0;
}

.button a {
    padding: 10px 30px;
    background-color: #fff;
    color: #0E4739;
    border: 1px solid #fff;
    border-radius: 2rem;
    font-size: 1.2rem;
    transition: .3s;
    display: inline-block;
}

.button a:hover {
    background-color: transparent;
    color: #fff;
}

.small {
    font-size: .75rem;
}

header {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 1.25rem 2rem;
}

article {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

footer {
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}


@media only screen and (max-width: 59.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 55rem) {
    header {
        align-items: center;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer p br {
        display: none;
    }

    .flex {
        flex-direction: column;
    }

    h3 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 35rem) {

    header,
    article,
    footer {
        padding: 1.25rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h3 {
        font-size: 2.25rem;
        line-height: 1.1;
        padding: 0 0 1.25rem;
    }

    .item {
        gap: 1.25rem;
    }
}