:root {
    background-color: rgb(var(--black-01)) !important;
}


body {
    overflow-x: hidden;
}

.background1 {
    position: absolute;
    top: 1000px;
    width: 100vw;
    height: 1500px;
    z-index: -1;
    overflow-x: hidden;
}
.background1 > div {
    width: 200vw;    
    height: 750px;  
    margin-top: 10vh;  
    margin-left: -20vw;
    transform: rotateZ(-10deg);
    background: rgb(var(--beige-01));
}






.hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.hero .content {
    max-width: 300px;
    width: fit-content;
    text-align: center;
}
.hero .content h1 {
    font-size: 50px;
    transform: translateY(-50vh);
}
.hero .content p {
    opacity: 0.9;
    font-size: 14px;
    transform: translateY(-50vh);
}
.hero_part_container {
    overflow: hidden;
}







.articles {
    display: grid;
    grid-auto-flow: column;
    justify-content: left;
    width: 100%;
    overflow-x: scroll;
    gap: 15px;
    padding-bottom: 10px;
}
.articles::-webkit-scrollbar {
    height: 10px;
    border-radius: 10000px;
}
.articles::-webkit-scrollbar-track {
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10000px;

}
.articles::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    width: 2px;
    border-radius: 10000px;

}
.articles::-webkit-scrollbar-thumb:hover {
    background: rgb(var(--beige-02));
}
.article {
    width: 300px;
    background-color: rgb(var(--blue-01));
    display: grid;        
    grid-template: 150px auto 1fr / 1fr;
    border-radius: 20px;
    /* position: relative;
    top: -50vh; */
    transform: translateY(-500px);
    overflow: hidden;
}
.article:first-of-type {
    margin-left: 7.5vw;
}
.article:last-of-type {
    margin-right: 7.5vw;
}
.article .background_image{
    grid-row: 1/3;
    grid-column: 1;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.article .background_gradient{
    grid-row: 1/3;
    grid-column: 1;
    background: linear-gradient(0deg, rgba(34,51,59,1) 20%, rgba(34,51,59,0.5) 40%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}
.article h4 {
    grid-row: 2;
    grid-column: 1;
    padding: 0 20px;
    z-index: 3;
}
.article p {
    grid-row: 3;
    grid-column: 1;
    padding: 20px;
    font-size: 12px;
    opacity: 0.8;
    font-weight: 200;
}







.faq {
    padding:200px 7.5vw;    
    padding: 7.5vw;
}
.faq h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}
.faq .content {
    display: grid;
    grid-template: 1fr / 1fr 1fr;
    max-width: 1400px;
    gap: 20px;
    width: 100%;    
    margin: 0 auto

}
.faq .content > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq .content .right {
    margin-top: 100px;
}
.faq .category {
    background-color: rgb(var(--blue-01));
    padding: 40px;
    height: fit-content;
}
.faq .category h4 {
    font-size: 25px;
    margin-bottom: 20px;
}
.faq .questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq .question {
    background-color: rgba(255, 255, 255, 0.1);
}
.faq .question .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
}
.faq .question .answer {
    padding: 0 10px 10px;
    opacity: 0.9;
    font-weight: 200;
    display: none;
    font-size: 14px;
}
.faq .question.active .answer {
    display: block;
}




.general {
    grid-row: 1/3;
    grid-column: 1;
}
.shop {
    grid-row: 2/4;
    grid-column: 2;
}
.branding {
    grid-row: 3/5;
    grid-column: 1;
}
.marketing {
    grid-row: 4/6;
    grid-column: 2;
}








.cta {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta .content {
    max-width: 500px;
    width: 80%;
}

.cta h2 {
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta p {
    opacity: 0.8;
    font-size: 14px;
}
.cta button {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 30px;
    background-color: rgb(var(--beige-02));
}





.footer_links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    font-size: 12px;
    color: rgba(255,255,255, 0.7);
}












@media (max-width: 799px) { 
    .background1 > div {
        height: 1000px;  
        margin-top: 10vh;  
        margin-left: -40vw;
        transform: rotateZ(-10deg);
        background: rgb(var(--beige-01));
    }


    .body {
        z-index: 3;
        padding: 0 5vw;
        max-width: 1200px;
        width: calc(100% - 10vw);
        margin: 0 auto;
    }

/* 
    .background1 {
        height: 250vh;
    } */
    



    .hero {
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .hero .content {
        max-width: 300px;
        width: 100%;
        text-align: center;
    }
    .hero .content h1 {
        font-size: 35px;
    }
    .hero .content p {
        opacity: 0.9;
        font-size: 14px;
    }




    .articles {
        display: grid;
        grid-auto-flow: column;
        justify-content: left;
        width: 100%;
        overflow-x: scroll;
        gap: 15px;
        padding-bottom: 10px;
    }
    .articles::-webkit-scrollbar {
        height: 10px;
        border-radius: 10000px;
    }
    .articles::-webkit-scrollbar-track {
        width: 2px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10000px;
    
    }
    .articles::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        width: 2px;
        border-radius: 10000px;
    
    }
    .articles::-webkit-scrollbar-thumb:hover {
        background: rgb(var(--beige-02));
    }
    .article {
        width: 250px;
        background-color: rgb(var(--blue-01));
        display: grid;
        grid-template: 150px auto 1fr / 1fr;
        border-radius: 20px;
        overflow: hidden;
    }
    .article:first-of-type {
        margin-left: 7.5vw;
    }
    .article:last-of-type {
        margin-right: 7.5vw;
    }
    .article .background_image{
        grid-row: 1/3;
        grid-column: 1;
        background-position: center;
        background-size: cover;
        z-index: 1;
    }
    .article .background_gradient{
        grid-row: 1/3;
        grid-column: 1;
        background: linear-gradient(0deg, rgba(34,51,59,1) 20%, rgba(34,51,59,0.5) 40%, rgba(0,0,0,0.2) 100%);
        z-index: 2;
    }
    .article h4 {
        grid-row: 2;
        grid-column: 1;
        padding: 0 20px;
        z-index: 3;
    }
    .article p {
        grid-row: 3;
        grid-column: 1;
        padding: 20px;
        font-size: 12px;
        opacity: 0.8;
        font-weight: 200;
    }
    
    
    
    
    
    
    
    .faq {
        padding: 100px 0px 0px;    
    }
    .faq h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 40px;
    }
    .faq .content {
        display: grid;
        grid-template: auto auto / 1fr;
        max-width: 1400px;
        gap: 20px;
        width: 100%;    
        margin: 0 auto
    
    }
    .faq .content > div {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .faq .content .right {
        margin-top: 0px;
    }
    .faq .category {
        background-color: rgb(var(--blue-01));
        padding: 30px 20px;
        height: fit-content;
    }
    .faq .category h4 {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .faq .questions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .faq .question {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .faq .question .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        font-size: 14px;
    }
    .faq .question .answer {
        padding: 0 10px 10px;
        opacity: 0.8;
        font-weight: 200;
        display: none;
        font-size: 14px;
    }
    .faq .question.active .answer {
        display: block;
    }
    
    
    
    
    .general {
        grid-row: 1/3;
        grid-column: 1;
    }
    .shop {
        grid-row: 2/4;
        grid-column: 2;
    }
    .branding {
        grid-row: 3/5;
        grid-column: 1;
    }
    .marketing {
        grid-row: 4/6;
        grid-column: 2;
    }
    










    .cta {
        height: 400px;
    }
    .cta .content {
        max-width: 500px;
        width: 80%;
    }
    
    .cta h2 {
        font-size: 25px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    .cta p {
        opacity: 0.8;
        font-size: 14px;
    }
    .cta button {
        margin-top: 20px;
        font-size: 14px;
        padding: 10px 30px;
        background-color: rgb(var(--beige-02));
    }

}












/* Animation */
.hero_part_container h1 {
    animation: vertical_slide_in 1s ease-out forwards;
}
.hero_part_container p {
    animation: vertical_slide_in 1s ease-out 0.2s forwards;
}

.article {
    animation: high_vertical_slide_in 1s ease-out forwards;
}