@charset "utf-8";

/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    /* IE9 Compat Modes */
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        /* Modern Browsers */
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
    /* Legacy iOS */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 400 15px/1.5em 'Roboto', Arial, sans-serif;
    background: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: transparent;
}

h1 {
    font-size: 1.3rem;
    margin: 1rem 0 2rem;
}

header {
    background: #fff;
    padding: 2rem 2rem 1rem;
}

header .flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

header .flex div {
    width: 55%;
}

header p {
    margin: 0 0 10px;
}

.icons {
    display: flex;
    column-gap: 90px;
}

i {
    margin-right: 15px;
    color: #7092be;
}

article {
    margin: 1rem 0;
}

article section {
    background: #fff;
    margin: 1rem 0;
    padding: 1rem 2rem;
}

article section.color {
    background: #a78abc;
}

article section.color :is(h2) {
    color: #fff;
}

article h2 {
    font-size: 1rem;
    color: #a78abc;
}

article ul {
    margin: .5rem 0 0 1.2rem;
}

article section.apply {
    display: flex;
    justify-content: center;
}

article section.apply a.btn {
    background: #e1c348;
    color: #fff;
    padding: .5rem 1rem;
    font-weight: bold;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: #a78abc;
    padding: 1rem;
}

footer p {
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 48rem) {

    header .flex {
        flex-direction: column-reverse;
    }

    header .flex div {
        width: 100%;
    }
}

@media only screen and (max-width: 30rem) {

    header {
        padding: 2rem 1rem 1rem;
    }

    header .flex {
        align-items: center;
    }

    header :is(p, h1) {
        text-align: center;
    }

    article section {
        padding: 1rem;
    }

    .icons {
        display: block
    }
}
