@font-face {

    font-family: 'Helvetica-bold';

    src: url('fonts/HelveticaNowDisplay-Bold.woff') format('woff');

    font-weight: bold;

    font-style: normal;

}

@font-face {

    font-family: 'Helvetica-Light';

    src: url('fonts/HelveticaNowDisplay-Light.woff') format('woff');

    font-weight: 400;

    font-style: normal;

}





*{

    margin: 0;

    padding: 0;

}



.text-white{

    color: #fff;

}

.logo{
    width: 64px;
    position: absolute;
    top: 3rem;
    left: 5rem;
}

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

section{

    height: 100vh;

    background-image: url("bg.webp");

    background-size: cover;

    display: flex;

    justify-content: center;

    position: relative;
}


.arrow {
    position: absolute;
    bottom: 0;
    right: 6rem;
    max-width: 400px;
}

.arrow img{
    object-fit: contain;
    width: 100%;
}

.text-area{
    display: grid;
    max-width: 530px;
    width: 100%;
    padding: 3rem;
    margin-left: auto;
    margin-right: 5rem;
    margin-top: auto;
    margin-bottom: 2rem;
    gap: 1rem;
}

.text-footer{
    max-width: 200px;
    width: 100%;
    padding: 1rem;
    margin-left: 5rem;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 4rem;
}

h1{

    font-size: 52px;
    font-family: 'Helvetica-bold';
    line-height: 1em;
    margin-bottom: 0.5rem;
}




p{

    font-family: 'Helvetica-Light';

    font-size: 15px;

}

.flex{
    display: flex;
}

.flex-wrap-reverse{
    flex-wrap: wrap-reverse;
}


@media(max-width:768px) {
    .text-footer{
        position: absolute;
        margin: auto;
        bottom: 0;
        left: 2rem;
    }
}
@media(max-width:460px) {
    .text-area {
        max-width: 100%;
        margin-right: 0;
    }



    section{
        background-position-x: 30%;
    }
}