@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/barlow-v12-latin-regular.eot');
    src: url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), url('../fonts/barlow-v12-latin-regular.woff') format('woff'), url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/barlow-v12-latin-500.eot');
    src: url('../fonts/barlow-v12-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-500.woff2') format('woff2'), url('../fonts/barlow-v12-latin-500.woff') format('woff'), url('../fonts/barlow-v12-latin-500.ttf') format('truetype'), url('../fonts/barlow-v12-latin-500.svg#Barlow') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/barlow-v12-latin-700.eot');
    src: url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), url('../fonts/barlow-v12-latin-700.woff') format('woff'), url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 60rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #eb6619;
}

a.link:hover {
    color: inherit;
}

p:not(:last-child) {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    padding: 1rem 0;
    font-weight: 500;
}

h2 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 500;
    padding-bottom: 0.938rem;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: 0 0 0 2rem;
}

ul li:before {
    content: "\2212";
    float: left;
    margin-left: -1rem;
    color: #eb6619;
    font-weight: 500;
}

.center {
    text-align: center;
}

.flex {
    display: flex;
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.border {
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 2rem 0 1rem;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.button a {
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    background-color: #eb6619;
    color: #fff;
    display: inline-block;
    transition: .4s;
    margin: .5rem 0 2rem;
}

.button a:hover {
    background-color: #d45c17;
}

.block {
    background-color: #F3F5F7;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

header {
    display: flex;
    padding: 2rem;
}

article {
    flex: 73%;
}

footer {
    flex: 27%;
}

@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: 58rem) {
    .flex {
        display: block;
    }

    .block {
        margin: 1rem 0 0;
    }

    article>img {
        width: 100%;
    }
}

@media only screen and (max-width: 50rem) {
    header {
        padding: 1.5rem 1rem;
        justify-content: center;
    }

    .flex {
        padding: 0 1rem 1rem;
    }

    .button {
        display: flex;
        justify-content: center;
    }

    h1,
    .block {
        text-align: center;
    }

    .contact {
        align-items: center;
    }
}

@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.7rem;
    }

    ul li {
        padding: 0 0 0 1.1rem;
    }
}