.carousel-container{
    background-position: bottom;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.carousel-title{
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
    display: grid;
    gap: 3rem;
}

.carousel-title h1{
    font-family: "Zain", Sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 52px;
    color: var(--verde-neon);
}

.carousel-title span{
    font-family: "Zain", Sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
    padding: 0 20%;
}

.carousel-title p{
    font-family: "Fustat", Sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

.carousel-btns{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btns button{
    background-color: var(--verde-neon);
    color: var(--verde-oscuro);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--verde-neon);
    border-radius: 100px 100px 100px 100px;
    margin-bottom: 2rem;
}

.carousel-btns button:hover{
    background-color: var(--verde-oscuro);
    color: var(--blanco);
    border-color: var(--verde-neon);
}

.img_rates{
    width: 25rem !important;
    height: 30rem !important;
    justify-self: center;
}

.carousel-footer-img{
    display: grid;
    justify-content: center;
    align-content: center;
}

.carousel-footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 3rem;
}

.carousel-footer-text{
    display: grid;
    justify-content: center;
    align-content: center;
    padding: 10%;
}

.carousel-footer-text span{
    font-family: "Fustat", Sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 56px;
}


@media(max-width: 700px){

    .carousel-title span{
        padding: 0;
    }
    
    .carousel-btns{
        gap: 0rem;
        flex-direction: column;
    }

    .img_rates{
        width: 100% !important;
        height: 100% !important;
    }
    
    .carousel-footer-text{
       text-align: center;
    }
    
    .carousel-footer{
        grid-template-columns: 1fr;
    }
    
}
