@font-face {
    font-family: "Industry-Medium";
    src: url("https://scmedia.itsfogo.com/$-$/818858b12e654c939b866d91073ca133.woff");
}

@font-face {
    font-family: "Industry-Bold";
    src: url("https://scmedia.itsfogo.com/$-$/9dd0691b247e47cc989c76d82ac72ec9.woff");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    position: relative;
}

.mobile-only {
    display: none;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
}

.brand-logo {
    margin: 1rem auto 0 auto;
    width: 10%;
}

.hero-wrapper {
    position: absolute;
    bottom: 5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-family: "Industry-Medium";
}

.hero-copy {
    margin: 0 auto 3rem auto;
    font-size: 67px;
    line-height: 1;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 74px;
    margin: 1rem auto 0 auto;
}

.btn {
    border: 1px solid transparent;
    display: inline-block;
    font-size: 20px;
    padding: 0;
    background-color: #fe4000;
    color: #fff;
    overflow: hidden;
    text-decoration: none;
    vertical-align: middle;
    line-height: 70px;
    border-radius: 3px;
    grid-column: span 2;
    width: 300px;
    text-align: center;
    height: 70px;
    vertical-align: middle;
}

.btn:hover {
    background: #ef875e;
    border-color: #ef875e;
}

@media only screen and (max-width: 1024px) {
    .mobile-only {
        display: block;
    }

    .hero-buttons {
        padding: 0 1rem;
        max-width: 100%;
        gap: 1rem;
    }
}

@media only screen and (max-width: 820px) {
    .brand-logo {
        width: 33%;
    }

    .hero {
        height: auto;
    }

    .hero-copy {
        /* font-size: 5vw; */
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
        padding: 0 0.5rem;
    }

    .btn {
        /* font-size: 3vw; */
        margin: 0;
        grid-column: span 1;
        width: auto;

    }
}

@media only screen and (max-width: 480px) {

    .brand-logo {
        margin-top: 2rem;
        width: 30%;
    }

    .hero-buttons {
        display: flex;
        margin: 16px auto 1rem auto;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 272px;
    }

    .hero-copy {
        font-size: 2rem;
        padding: 0 1rem;
        margin: 0;
    }

    .hero-wrapper {
        text-align: center;
        bottom: 0;
    }

    .btn {
        font-size: 17px;
        width: 100%;
        height: 55px;
        line-height: 55px;
        padding: 0;
    }
}