.see-all-destinations2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px !important;
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
    
}

.see_all_destinations2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1366px;
    height: 100%;
    /* margin-top: 40px; */
    margin-bottom: 40px;
    background-size: 100%; 
    background-repeat: no-repeat;
    
}

.see_all_destinations2 #img_desti{
    width: 100%;
    height: auto;
}

.see_all_destinations2 .destiny_content{
    width: 100%;
    max-width: 440px;
    height: 88%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
}

.see_all_destinations2 .destiny_content h2{
    font-size: 34px;
    color: #fff;
    font-family: 'Alright Sans Black';
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
    
}










/* Estilos CSS modificados */
.see_all_destinations2 .dropdown {
    position: relative;
    display: inline-block;
}

.see_all_destinations2 .dropdown-btn {
    background-color: transparent;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-family: 'Alright Sans Black';
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.see_all_destinations2 .dropdown-btn img{
    margin-left: 6px;
}

/* .see_all_destinations2 .dropdown-btn:hover {
    background-color: #f9f9f9;
} */

.see_all_destinations2 .dropdown-btn:focus{
    outline: none;
}

.see_all_destinations2 .region-list {
    /* display: none; */
    opacity: 0;
    position: absolute;
    background-color: #fff;
    width: 400px;
    list-style-type: none;
    padding: 20px 10px;
    top: 10px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.see_all_destinations2 .region-list.active {
    /* display: block; */
    opacity: 1;
    z-index: 1000;
}

.see_all_destinations2 .region-list .continent {
    cursor: pointer; /* Hacer que los continentes sean clicables */
    margin-bottom: 10px;
}

.see_all_destinations2 .region-list .continent:last-child {
    border-bottom: none;
}

.see_all_destinations2 .dropdown-heading {
    text-align: center;
    background: #E6E6E6;
    color: #BA0C2F;
    font-family: 'Alright Sans Black';
    font-size: 16px;
    text-transform: uppercase;
    padding: 5px 0px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.see_all_destinations2 .dropdown-heading #img_dis{
    margin-right: 10px;
    width: 7px;
}

.see_all_destinations2 .region-list .continent .dropdown-heading #img_act{
    display: none;
    margin-right: 10px;
    width: 11px;
    height: 7px;
}

.see_all_destinations2 .region-list .continent.active .dropdown-heading #img_act{
    display: block !important;
}

.see_all_destinations2 .region-list .continent.active .dropdown-heading #img_dis{
    display: none !important;
}


.see_all_destinations2 .dropdown-heading #space_drop{
    margin-left: 10px;
    width: 7px;
}

.see_all_destinations2 .region-list .continent.active .dropdown-heading{
    background: #BA0C2F !important;
    color: #fff;
}

.see_all_destinations2 .country-list {
    display: none;
    /* opacity: 0;
    height: 0px; */
}

.see_all_destinations2 .country-list.active {
    display: flex; /* Mostrar la lista de países cuando esté activa */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    /* opacity: 1;
    height: auto;
    transition: all 0.5s ease-in-out; */
}

.see_all_destinations2 .country-list li {
    margin-bottom: 5px;
}

.see_all_destinations2 .country-list li a{
    font-size: 14px;
}

.see_all_destinations2 .country-list li a:hover{
    color: #BA0C2F;
    font-weight: bold;
}

/* Mostrar el cursor de la mano al pasar el ratón por encima de un continente */
.see_all_destinations2 .continent:hover {
    background-color: #f9f9f9;
}


@media (max-width: 768px){
    .see_all_destinations2 .destiny_content h2{
        font-size: 26px;
    }
    .see_all_destinations2 .dropdown-btn{
        font-size: 16px;
    }
    .see_all_destinations2 #img_desti{
        min-width: 680px !important;
        position: static !important;
    }
    .see_all_destinations2{
        min-height: 250px !important;
    }
}

@media (max-width: 500px){
    .see_all_destinations2 .region-list{
        width: 300px;
    }
    .see_all_destinations2 .dropdown {
        display: flex;
        justify-content: center;
    }
    .see_all_destinations2 .destiny_content{
        height: 80%;
    }
}