@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.eot');
    src: url('../fonts/poppins-v20-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/poppins-v20-latin-600.woff2') format('woff2'), url('../fonts/poppins-v20-latin-600.woff') format('woff'), url('../fonts/poppins-v20-latin-600.ttf') format('truetype'), url('../fonts/poppins-v20-latin-600.svg#Poppins') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 0.938rem;
    line-height: 1.5rem;
    background: #ebebeb;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p:not(footer > p) {
    margin: 0 0 1rem;
}

.margin {
    margin-bottom: 0;
}

.nowrap {
    white-space: nowrap;
}

.text_bigger {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 2rem 0 0.625rem;
}

.logo_white {
    display: flex;
}

.color,
a.link {
    color: #ED7D31;
}

ul {
    margin: 0 0 1rem 1rem;
    list-style-type: square;
}

h1 {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 4.375rem;
    font-weight: 600;
    line-height: .8;
    letter-spacing: 0.25rem;
    margin: 1.875rem 0;
}

span.small {
    font-size: 0.35em;
}

span.medium {
    font-size: 0.54em;
}

.text_big {
    font-size: 1.6em;
}

h2 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.info p {
    margin: 0;
}

.info i {
    margin-right: 0.625rem;
}

.block {
    color: #fff;
    background-color: #ED7D31;
    padding: 1.5rem 2rem;
}

.block>p:last-of-type {
    margin: 0;
}

.image_container {
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.text {
    padding-bottom: 1rem;
}

.text p {
    margin: 0 0 0.3125rem;
}

.flex_text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex_text p {
    font-size: 1.1em;
}

.flex_text>p:first-of-type {
    width: 13.125rem;
}

.flex_text>p:last-of-type {
    width: calc(100% - 15rem);
}

.container {
    background: #fff;
    margin: 0 0 0.5rem;
    padding: 1rem 2rem;
}

footer .block {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}

@media only screen and (max-width: 49.9375rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    h1 {
        font-size: 2.125rem;
        line-height: 1.4;
        letter-spacing: normal;
        text-align: center;
    }

    span.medium {
        display: block;
    }

    .info {
        align-items: center;
    }

    .block {
        padding: 1rem;
    }

    header .block {
        text-align: center;
    }

    .logo_white {
        justify-content: center;
    }

    .text {
        padding-bottom: 0;
    }

    .flex_text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 0.625rem;
    }

    .flex_text p {
        text-align: center;
    }

    .flex_text>p:first-of-type,
    .flex_text>p:last-of-type {
        width: auto;
    }

    .container {
        padding: 1rem;
    }
}

@media only screen and (max-width: 45rem) {
    footer .block {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}