:root {
    --black: #000;
    --gray-muted: #86868B;
    --dark-gray: #515154;
}

@font-face {
    font-family: PoppinsBoldItalic;
    src: url(../fonts/Poppins-BoldItalic.ttf);
}

@font-face {
    font-family: PoppinsRegular;
    src: url(../fonts/Poppins-Regular.ttf);
}

body {
    font-family: PoppinsRegular, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

header {
    text-align: center;
    border-bottom: 1px solid #F0F2F5;
    padding-top: 15px;
    padding-bottom: 15px;
}

header .logo {
    display: inline;
}

header .logo-md {
    display: none;
}

footer {
    background: var(--black);
    text-align: center;
    padding: 30px 10px;
    color: white;
    font-size: 10px;
}

img {
    max-width: 100%;
    height: auto;
}

main.page-main {
    margin: 0;
    padding: 0;
}

.page-wrapper {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
}

.page-text {
    color: var(--black);
    font-size: 14px;
    line-height: 21px;
}

.page-right {
    padding-right: 40px;
    padding-left: 40px;
}

h1 {
    font-family: PoppinsBoldItalic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 32px;
    color: var(--black);
    line-height: 42px;
    font-weight: 800;
    text-transform: uppercase;
}

.big-title {
    font-family: PoppinsBoldItalic, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 42px;
    line-height: 68px;
    color: var(--black);
    font-style: italic;
}

.title-spacing {
    margin-top: 30px;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    header {
        padding-top: 27px;
        padding-bottom: 27px;
    }

    header .logo {
        display: none;
    }

    header .logo-md {
        display: inline;
    }

    .page-wrapper {
        flex-direction: row;
        padding-top: 100px;
        padding-bottom: 180px;
        padding-right: 60px;
        padding-left: 60px;
    }

    h1 {
        font-size: 42px;
        line-height: 55px;
    }

    .page-text {
        font-size: 16px;
        line-height: 24px;
    }

    footer {
        font-size: 12px;
    }

    .page-left {
        width: 33%;
        z-index: 2;
        padding-right: 60px;
    }

    .page-right {
        padding-right: 0;
        padding-left: 0;
    }

    .big-title {
        font-size: 82px;
        margin-bottom: 40px;
    }

    .title-spacing {
        margin-top: 90px;
        margin-bottom: 15px;
    }
}
