/* General container styling */
.destinations-continents {
    padding: 40px 0;
    background-color: #f9f9f9; /* Background color for the section */
}

.destinations-continents .container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-continents .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}

/* Card container for each continent item */
.destinations-continents__item {
    display: block;
    text-align: center;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

/* Hover effect for continent cards */
.destinations-continents__item:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.destinations-continents__icon {
    width: 80px;
    height: 80px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 50%;
}

.destinations-continents__label {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
}

/* Styling for small, medium, and large screens */
@media (max-width: 767px) {
    .destinations-continents .row {
        flex-direction: column;
    }

    .destinations-continents__item {
        width: 100%; /* Full-width on smaller screens */
        margin-bottom: 20px;
    }

    .destinations-continents__label {
        font-size: 16px;
    }
    .row.destination_col .col-xs-6 {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .destinations-continents__item {
        width: 45%; /* Two items per row on medium screens */
    }

    .destinations-continents__label {
        font-size: 17px;
    }
}

@media (min-width: 992px) {
    .destinations-continents__item {
        width: 94%;
        margin: 10px;
        padding: 10px;
    }
}
.destinations-list__destination {
    display: flex
;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}
.destinations-list__destination-flag {
    width: 20px;
    height: 15px;     margin-right: 10px;
}
.destinations-list__destination-link {
    padding-left: 16px;
    color: #343A40;
}