body {
    background: linear-gradient(172.17deg, #4E4E4E -6.28%, #111217 100.93%);
    background-size: cover;
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Poppins';
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    min-height: 100vh;
    height: fit-content;
    box-sizing: border-box;
}

.header {
    height: 120px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 130px;
    padding-left: 73px;
}

.logo-container {
    width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-section {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 570px;
    height: calc(100% - 300px);
}

.hero-section .content {
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 110px 0 77px;
}

.hero-section .content .text {
    width: 50%;
}

.hero-section .content .resources {
    position: relative;
    width: 50%;
}

.hero-section .content .resources .container {
    position: absolute;
    top: -60px;
    right: 0;
    height: 642px;
    width: 535px;
}

.hero-section .content .resources .container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-section .content .text .title {
    margin-top: 100px;
    font-weight: 700;
    font-size: 58px;
    line-height: 57px;
}

.hero-section .content .text .subtitle {
    margin-top: 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

.hero-section .content .text .stores {
    display: flex;
    flex-direction: row;
    gap: 15px;
    height: 60px;
    margin-top: 25px;
}

.hero-section .content .text .stores img {
    cursor: pointer;
}

.button-container {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 44px;
    padding-left: 72px;
}

button {
    background: linear-gradient(106.65deg, #E04317 26.94%, #371A19 103.05%);
    color: white;
    font-family: 'Poppins';
    width: 173px;
    height: 32px;
    border-radius: 70px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 11px;
    line-height: 170%;
    letter-spacing: 0%;
}

button.margin-r {
    margin-right: 16px;
}

.footer {
    border-top: 1px solid #ffffff2d;
    box-sizing: border-box;
    min-height: 128px;
    height: fit-content;
    padding: 15px 226px 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.footer .contact {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer .contact .address {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    margin-top: 6px;
}

.footer .contact .address img {
    margin-top: 6px;
}

.footer .legals {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a {
    color: #E04317;
}

a img {
    margin-right: 12px;
}

@media (max-width: 1220px) {
    body {
        overflow-y: auto;
        height: max-content;
    }

    .hero-section .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .hero-section .content .text,
    .hero-section .content .resources {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
    }

    .hero-section .content .resources .container {
        position: relative;
        top: 0;
        right: 0;
        height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .hero-section .content .text .title {
        margin-top: 20px;
        font-size: 32px;
        line-height: 36px;
    }

    .hero-section .content .text .subtitle {
        font-size: 16px;
    }

    .hero-section .button-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .footer {
        justify-content: center;
        gap: 40px;
        padding: 15px 20px;
        flex-wrap: nowrap;
    }
}

@media(max-width: 820px) {
    .footer {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .footer .contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer .legals {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 321px;
    }
}

@media(max-width:400px) {
    .hero-section .content .text .stores {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        margin-bottom: 100px;
    }
}

.page {
    background-color: white;
    margin: 1% 4%;
    padding: 45px;
    border-radius: 20px;
    color: black;
    text-align: center;
}

.page .title {
    font-weight: 800;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
}