.home{
    overflow-x: hidden;
    position: relative;
}

.content__home{
    padding: 83px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 140px;
    justify-content: center;

}

.frame{
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.basic__container{
    top: 10%;
    position: absolute;
    display: flex;
    justify-content: center;
}
.text__home__container{
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 70px 0;
}

.cartel__home{
    animation: tiltLeft 1s ease infinite;
    max-width: 20%;
    height: 100%;
    width: 100%;
}

@keyframes tiltLeft {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.text__home{
    font-size: 5vw;
    line-height: 5vw;
    color: #FFFFFF;
    text-shadow: -3px 2px 0px black;
}



.buttons_container{
    display: flex;
    gap: 120px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons_container svg{
    transition: ease-in-out all 0.4s;
}

.buttons_container svg:hover{
    transform: scale(1.25);
    cursor: pointer;
    transition: ease-in-out all 0.4s;
}

@media (max-width: 1600px) {
    .text__home{
        font-size: 6vw;
    }
}

@media (max-width: 700px) {
    .content__home{
        display: block;
    }

    .text__home__container{
        gap: 0px;
    }
    .text__home{
        font-size: 10vw;
        line-height: 12vw;
    }

    .buttons_container{
        padding-top: 20px;
        gap: 20px;
    }

    .buttons_container a svg{
        width: 180px;
        display: block;
    }

    .cartel__home{
        position: absolute;
        top: -30%;
        right: 0;
        max-width: 40%;
        height: auto;
    }

    .text__home__container{
        padding: 0;
    }

    .basic__container{
        padding: 0;
        position: relative;
        display: block;
    }
    .frame{
        display: none;
    }
    .content__home{
        gap: 0;
    }
}


@media (min-width: 2000px) {
    .home__container{
        max-width: 3000px;
        padding: 0 200px;
    }

    .text__home{
        line-height: 3vw;
    }

    .text__home__container{
        gap: 6vw;
    }
}




