/* global */

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "area-normal", sans-serif;
    background-color: #ffffff;
    color: var(--font-color);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* end of global */

@media(min-width: 1366px) {
    .home-section {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 750px;
    }

    .home-video {
        overflow: hidden;
        position: relative;
        height: 750px;
        width: 100%;
    }

    .home-video video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center 25%;
    }

    .home-content {
        position: absolute;
        top: 0;
        z-index: 1;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 100px 5%;
        box-shadow: inset 0 0 0 1000px rgba(1, 13, 23, 0.7);
        /* box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.7); */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-badge {
        width: 600px;
        margin: 40px 0;
    }

    .home-content h1 {
        margin: 10px 0;
        font-size: 60px;
        letter-spacing: 5px;
        text-align: center;
        font-weight: 200;
        color: var(--secondary-color);
        text-transform: uppercase;
        line-height: 1;
    }

    .home-content h2 {
        margin: 10px 0;
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
        line-height: 1.5;
    }

    .home-content h3 {
        margin: 40px 0 0 0;
        font-size: 25px;
        font-weight: 900;
        text-align: center;
        color: var(--gradient-blue);
    }

    .home-content h4 {
        margin: 10px 0;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
    }

    .home-buttons {
        margin: 40px 0 0 0;
    }

    .home-buttons a {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 2px;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

    .home-buttons a:nth-child(1) {
        margin: 0 10px 0 0;
        border: 2px solid var(--secondary-color);
        color: var(--secondary-color);
        background-color: transparent;
    }

    .home-buttons a:nth-child(2) {
        margin: 0 0 0 10px;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
    }

    .home-buttons a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
}

@media(max-width: 1366px) and (min-width: 1024px) {
    .home-section {
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 750px;
    }

    .home-video {
        overflow: hidden;
        position: relative;
        height: 750px;
        width: 100%;
    }

    .home-video video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center 25%;
    }

    .home-content {
        position: absolute;
        top: 0;
        z-index: 1;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 100px 5%;
        box-shadow: inset 0 0 0 1000px rgba(1, 13, 23, 0.7);
        /* box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.7); */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-badge {
        width: 600px;
        margin: 40px 0;
    }

    .home-content h1 {
        margin: 10px 0;
        font-size: 55px;
        letter-spacing: 5px;
        text-align: center;
        font-weight: 200;
        color: var(--secondary-color);
        text-transform: uppercase;
        line-height: 1;
    }

    .home-content h2 {
        margin: 10px 0;
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
        line-height: 1.5;
    }

    .home-content h3 {
        margin: 40px 0 0 0;
        font-size: 25px;
        font-weight: 900;
        text-align: center;
        color: var(--gradient-blue);
    }

    .home-content h4 {
        margin: 10px 0;
        font-size: 17px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
    }

    .home-buttons {
        margin: 40px 0 0 0;
    }

    .home-buttons a {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 2px;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

    .home-buttons a:nth-child(1) {
        margin: 0 10px 0 0;
        border: 2px solid var(--secondary-color);
        color: var(--secondary-color);
        background-color: transparent;
    }

    .home-buttons a:nth-child(2) {
        margin: 0 0 0 10px;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
    }

    .home-buttons a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
}

@media(max-width: 1024px) and (min-width: 769px) {
    .home-section {
        position: relative;
        margin: 65px 0 0 0;
        padding: 0;
        width: 100%;
        height: 750px;
    }

    .home-video {
        overflow: hidden;
        position: relative;
        height: 750px;
        width: 100%;
    }

    .home-video video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center 25%;
    }

    .home-content {
        position: absolute;
        top: 0;
        z-index: 1;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 100px 5%;
        box-shadow: inset 0 0 0 1000px rgba(1, 13, 23, 0.7);
        /* box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.7); */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-badge {
        width: 600px;
        margin: 40px 0;
    }

    .home-content h1 {
        margin: 10px 0;
        font-size: 50px;
        letter-spacing: 5px;
        text-align: center;
        font-weight: 200;
        color: var(--secondary-color);
        text-transform: uppercase;
        line-height: 1;
    }

    .home-content h2 {
        margin: 10px 0;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
        line-height: 1.5;
    }

    .home-content h3 {
        margin: 40px 0 0 0;
        font-size: 20px;
        font-weight: 900;
        text-align: center;
        color: var(--gradient-blue);
    }

    .home-content h4 {
        margin: 10px 0;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
    }

    .home-buttons {
        margin: 40px 0 0 0;
    }

    .home-buttons a {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 2px;
        font-family: "area-normal", sans-serif;
        font-size: 17px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

    .home-buttons a:nth-child(1) {
        margin: 0 10px 0 0;
        border: 2px solid var(--secondary-color);
        color: var(--secondary-color);
        background-color: transparent;
    }

    .home-buttons a:nth-child(2) {
        margin: 0 0 0 10px;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
    }

    .home-buttons a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
}

@media(max-width: 769px) {
    .home-section {
        position: relative;
        margin: 65px 0 0 0;
        padding: 0;
        width: 100%;
        height: 650px;
    }

    .home-video {
        overflow: hidden;
        position: relative;
        height: 650px;
        width: 100%;
    }

    .home-video video {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center 25%;
    }

    .home-content {
        position: absolute;
        top: 0;
        z-index: 1;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 100px 5%;
        box-shadow: inset 0 0 0 1000px rgba(1, 13, 23, 0.7);
        /* box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.7); */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .home-badge {
        width: 600px;
        margin: 40px 0;
    }

    .home-content h1 {
        margin: 10px 0;
        font-size: 35px;
        letter-spacing: 5px;
        text-align: center;
        font-weight: 200;
        color: var(--secondary-color);
        text-transform: uppercase;
        line-height: 1;
    }

    .home-content h2 {
        margin: 10px 0;
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
        line-height: 1.5;
    }

    .home-content h3 {
        margin: 30px 0 0 0;
        font-size: 20px;
        font-weight: 900;
        text-align: center;
        color: var(--gradient-blue);
    }

    .home-content h4 {
        margin: 10px 0;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        color: var(--secondary-color);
    }

    .home-buttons {
        margin: 20px 0 0 0;
    }

    .home-buttons a {
        display: block;
        padding: 10px 20px;
        border-radius: 2px;
        font-family: "area-normal", sans-serif;
        font-size: 15px;
        font-weight: 900;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.2s ease;
    }

    .home-buttons a:nth-child(1) {
        margin: 0 0 20px 0;
        border: 2px solid var(--secondary-color);
        color: var(--secondary-color);
        background-color: transparent;
    }

    .home-buttons a:nth-child(2) {
        margin: 20px 0 0 0;
        border: 2px solid var(--accent-color);
        color: var(--secondary-color);
        background-color: var(--accent-color);
    }

    .home-buttons a:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }
}