@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}
.menu-icon {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
nav a:hover,
nav a.active {
    color: #0ef;
}
section {
    background: #000000;
    color: #fff;
}

@media (min-width: 320px) and (max-width: 600px) {
    /* nav */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #000000;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 100;
        height: 60px;
        padding: 20px;
    }
    .menu-icon {
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
        z-index: 200;
    }
    nav {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background: #11141a;
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease-in-out;
    }
    nav.show {
        right: 0;
    }
    nav a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        padding: 10px 0;
        transition: 0.3s;
    }

    nav a:hover {
        color: #0ef;
    }

    /* home */
    .mobilePadding {
        padding-left: 4.444vw;
        padding-right: 4.444vw;
        padding-top: 80px;
    }
    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
    }
    .home-box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .home-img {
        width: 290px;
        height: auto;

    }
    h1.home-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 8vw;
        text-align: center;
        margin-top: 20px;
    }
    h2.home-subtitle {
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        margin-top: 10px;
        text-align: center;
        font-size: 4.8vw;
        letter-spacing: 8px;
    }
    p.home-desc {
        color: #aba9a8;
        margin-top: 10px;
        font-size: 3.733vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 5.333vw;
        text-align: center;

    }
    /* about */
    .about-grid-container {
        display: grid;
        grid-template-columns: 1fr;
    }
    .about-box {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .about-mobilePadding {
        padding-left: 4.444vw;
        padding-right: 4.444vw;
        padding-top: 20px;
    }

    p.about-desc {
        color: #fff;
        text-align: justify;
        margin-top: 20px;
        font-size: 3.733vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 5.333vw;
    }
    .about-img {
        margin-top: 20px;
        width: 290px;
        height: auto;
        padding-bottom: 20px;
    }
    /* background */
    .background-box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .background-mobilePadding {
        padding-left: 4.444vw;
        padding-right: 4.444vw;
        padding-top: 30px;
    }
    h1.background-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 8vw;
        text-align: center;
        margin-top: 20px;
    }
    .background-img {
        margin-top: 20px;
        width: 290px;
        height: auto;
    }
    p.background-desc {
        color: #fff;
        text-align: justify;
        margin-top: 20px;
        font-size: 3.733vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 5.333vw;
        padding-bottom: 20px;
    }
    /* contact */
    .contact-box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .contact-mobilePadding {
        padding-left: 4.444vw;
        padding-right: 4.444vw;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contact-img {
        margin-top: 20px;
        width: 290px;
        height: auto;
    }
    p.contact-desc {
        color: #fff;
        text-align: center;
        margin-top: 20px;
        font-size: 3.733vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 5.333vw;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    /* header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 120px;
        background: #11141a;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 100;
    }
    nav a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        margin-left: 35px;
        transition: .3s;
        font-family: 'Ubuntu', sans-serif;
    }

    .nav {
        display: flex;
        gap: 35px;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #0000;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }

    .menu-icon {
        display: none;
    }

    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    /* home */
    .tabPadding {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        padding-top: 160px;
    }

    .home-box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .home-img {
        width: auto;
        height: auto;

    }

    h1.home-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 6.25vw;
        text-align: center;
        margin-top: 20px;
    }

    h2.home-subtitle {
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        margin-top: 10px;
        text-align: center;
        font-size: 3.125vw;
        letter-spacing: 8px;
    }

    p.home-desc {
        color: #aba9a8;
        margin-top: 10px;
        font-size: 2.344vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 3.646vw;
        text-align: center;
    }

    /* about */
    .about-grid-container {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-box {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .about-tabPadding {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        padding-top: 20px;
    }

    p.about-desc {
        color: #fff;
        text-align: justify;
        margin-top: 20px;
        font-size: 2.344vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 3.646vw;
    }

    .about-img {
        margin-top: 20px;
        width: auto;
        height: auto;
        padding-bottom: 20px;
    }

    /* background */
    .background-box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .background-tabPadding {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        padding-top: 30px;
    }

    h1.background-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 6.25vw;
        text-align: center;
        margin-top: 20px;
    }

    .background-img {
        margin-top: 20px;
        width: auto;
        height: auto;
    }
    p.background-desc {
        color: #fff;
        text-align: justify;
        margin-top: 20px;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        padding-bottom: 20px;
        font-size: 2.344vw;
        line-height: 3.646vw;
    }

    /* contact */
    .contact-box {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .contact-tabPadding {
        padding-left: 3.125vw;
        padding-right: 3.125vw;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .contact-img {
        margin-top: 20px;
        width: auto;
        height: auto;
    }
    p.contact-desc {
        color: #fff;
        text-align: center;
        margin-top: 20px;
        font-size: 2.344vw;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 3.646vw;
    }
}

@media (min-width: 1025px) and (max-width: 1250px) {
    /* header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 120px;
        background: #11141a;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 100;
    }
    nav a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        margin-left: 35px;
        transition: .3s;
        font-family: 'Ubuntu', sans-serif;
    }
    .nav {
        display: flex;
        gap: 35px;
    }
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #0000;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }
    .grid-container {
        display: grid;
        grid-template-columns: 400px auto;
        gap: 20px;

    }
    .menu-icon {
        display: none;
    }
    .desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 150px;
    }
    .home-img {
        width: 100%;
        height: auto;
    }
    h1.home-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 70px;
        text-align: left;
    }
    h2.home-subtitle {
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        margin-top: 50px;
        margin-left: 20px;
        font-size: 30px;
        letter-spacing: 8px;
    }
    p.home-desc {
        color: #aba9a8;
        margin-left: 20px;
        margin-top: 30px;
        font-size: 30px;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
    }

    /* about */
    .about-grid-container {
        display: grid;
        grid-template-columns: 550px auto !important;
        gap: 30px;

    }
    .about-img {
        width: 100%;
        height: auto;
        margin-top: 90px;
    }
    p.about-desc {
        color: #fff;
        text-align: justify;
        margin-top: 20px;
        font-size: 30px;
        font-weight: 200;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
    }
    .box-about {
        margin-top: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 100px;

    }
    /* background */
    .background-desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 100px;
        padding-bottom: 50px;

    }
    h1.background-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 70px;
        text-align: center !important;
        padding-bottom: 50px;
    }
    .background-grid-container {
        display: grid;
        grid-template-columns: 600px auto;
        gap: 20px;

    }
    p.background-desc {
        color: #fff;
        margin-left: 20px;
        margin-top: 30px;
        font-size: 30px;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
    }

    /* contact */
    .contact-grid-container {
        display: grid;
        grid-template-columns: 500px auto !important;
        gap: 60px;
        padding-bottom: 30px;

    }
    .contact-img {
        width: 400px;
        height: auto;

    }
    .contact-desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 100px;
        padding-bottom: 50px;

    }
    p.contact-desc {
        color: #fff;
        text-align: justify;
        margin-top: 40px;
        font-size: 30px;
        font-weight: 200;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
        margin-left: 30px;
    }
}

@media (min-width: 1251px) {
    /* header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 120px;
        background: #11141a;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        z-index: 100;
    }
    nav a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        margin-left: 35px;
        transition: .3s;
        font-family: 'Ubuntu', sans-serif;
    }
    .nav {
        display: flex;
        gap: 35px;
    }
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #0000;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }
    .grid-container {
        display: grid;
        grid-template-columns: 400px auto;
        gap: 20px;

    }
    .menu-icon {
        display: none;
    }
    .desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 150px;
    }
    .home-img {
        width: 100%;
        height: auto;
    }
    h1.home-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 70px;
        text-align: left;
    }
    h2.home-subtitle {
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        margin-top: 50px;
        margin-left: 20px;
        font-size: 30px;
        letter-spacing: 8px;
    }
    p.home-desc {
        color: #aba9a8;
        margin-left: 20px;
        margin-top: 30px;
        font-size: 30px;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
    }
    /* about */
    .about-grid-container {
        display: grid;
        grid-template-columns: 700px auto;
        gap: 60px;

    }
    .about-img {
        width: 100%;
        height: auto;
        margin-top: 90px;
    }
    p.about-desc {
        color: #fff;
        text-align: justify;
        margin-top: 20px;
        font-size: 30px;
        font-weight: 200;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
    }
    .box-about {
        margin-top: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 100px;

    }
    /* background */
    .background-desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 100px;
        padding-bottom: 50px;

    }
    h1.background-title {
        color: #fff;
        font-family: 'Emblema One', sans-serif;
        font-weight: 400;
        font-size: 70px;
        text-align: center !important;
        padding-bottom: 50px;
    }
    .background-grid-container {
        display: grid;
        grid-template-columns: 600px auto;
        gap: 20px;

    }
    p.background-desc {
        color: #fff;
        margin-left: 20px;
        margin-top: 30px;
        font-size: 30px;
        font-weight: 300;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
    }
    /* contact */
    .contact-grid-container {
        display: grid;
        grid-template-columns: 700px auto;
        gap: 60px;
        padding-bottom: 30px;
    }
    .contact-img {
        width: 500px;
        height: auto;
    }
    .contact-desktopPadding {
        padding-left: 4.685vw;
        padding-right: 4.685vw;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    p.contact-desc {
        color: #fff;
        text-align: justify;
        margin-top: 40px;
        font-size: 30px;
        font-weight: 200;
        font-family: 'Ubuntu', sans-serif;
        line-height: 40px;
        margin-left: 30px;
    }
}