.home{
    min-height: calc(100vh - 106px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.cta{
    display: flex;
    flex-direction: column;
    width: 25%;
    gap: 25px;
}

#home-tittle{
    color: #fff;
}

#home-tittle > h1{
    font-size: 30px;
    font-weight: 200;
}

#home-tittle > span{
    font-size: 60px;
    font-weight: 600;
}
#cta_description{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

#btn_cta{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#btn_cta > a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    border: 2px solid #fff;
    padding: 10px;
}

#btn_cta > a:hover{
    transition: 0.7s;
    color: black;
}

.social-media-buttons{
    display: flex;
    justify-content: center;
}

a > i{
    color: #fff;
    font-size: 20px;
}

a > i:hover{
    transition: 0.7s;
    color: black;
}

.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
}

.banner > img{
    width: 90%;
}

@media screen and (max-width: 1000px){

    .cta{
        width: calc(50% - 12px);
    }

    .banner{
        width: calc(50% - 12px);
    }

    .banner > img{
        width: 100%;
    }
}

@media screen and (max-width: 1000px){
    .home{
        background-image: url(imgs/varios-vegetais-em-uma-tabela-preta-com-espaco-para-uma-mensagem.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .cta{
        width: 100%;
    }
    .banner{
        display: none;
    }
}