@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-ExtraLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-SemiBoldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Glancyr';
    src: url('fonts/Glancyr-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

*,*::after,*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Glancyr', sans-serif;
    font-weight: 400;
}

.wrapper {
    max-width: 65rem;
    margin: auto;
}

.row {
    display: block;
    width: 100%;
}
.col {
    float: left;
}

header, main, footer {
    padding: 1rem;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
header nav .logo {
    display: table;
}
header nav ul {
    display: flex;
    list-style: none;
    padding-top: 2rem;
    gap: 3.5rem;
}
header nav ul li a {
    color: #acacac;
    text-decoration: none;
    font-weight: 200;
    transition: opacity .2s;
}
header nav ul li a:hover {
    opacity: 0.7;
}

header nav .toggle-menu {
    background-color: transparent;
    border: none;
    color: #acacac;
    cursor: pointer;
    display: none;
    font-size: 1.5rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

main .wrapper {
    display: flex;
    justify-content: space-between;
}

main .col:nth-of-type(1) {
    color: #808080;
}
main .col:nth-of-type(1) h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-top: 4rem;
}
main .col:nth-of-type(1) h2 span {
    color: #edab29;
    display: block;
}
main .col:nth-of-type(1) p {
    font-size: 0.9rem;
    margin: 1rem 0 3rem;
    font-weight: 200;
    line-height: 1.4;
    max-width: 25rem;
}

main .col:nth-of-type(1) a {
    background: #FEA201;
    background: linear-gradient(0deg, rgba(254, 162, 1, 1) 50%, rgba(255, 215, 29, 1) 100%);
    border-radius: 0.4rem;
    color: #808080;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
}

main .col:nth-of-type(2) img {
    position: relative;
    top: -6rem;
}

footer .wrapper {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-top: -6rem;
}
footer .wrapper p {
    color: #808080;
    font-size: 0.9rem;
    font-weight: 200;
    max-width: 19rem;
    position: relative;
    bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 48rem) {
    header nav .logo img {
        width: 9rem;
    }
    header nav ul {
        gap: 2rem;
    }

    main .wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 4rem;
    }
    main .col:nth-of-type(2) img {
        top: 0;
        width: 100%;
    }

    footer .wrapper {
        margin-top: 0;
    }
}
@media (max-width: 42.5rem) {
    header nav {
        align-items: center;
        flex-direction: column;
    }
}
@media (max-width: 32.5rem) {
    header nav ul {
        background-color: #f3a000;
        box-shadow: 0px 0px 9px 0px #0000008c;
        flex-direction: column;
        flex-wrap: nowrap;
        position: fixed;
        left: 0;
        top: 0;
        height: 100dvh;
        overflow: auto;
        width: 10rem;
        transform: translateX(-100%);
        transition: transform .1s ease-out;
    }
    .toggle-active-menu {
        transform: translateX(0);
    }
    header nav ul li a {
        color: #ffffff;
        padding: 1.5rem;
    }
    header nav .toggle-menu {
        display: block;
    }

    footer .wrapper {
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}