.destinations-container {
    font-family: Inter;
    background: #440F62CC;
    border-radius: 20px;
    padding: 5px 10px;
    min-height: 100px;
}

#top-destinations-tabs {
    width: 100%;
    padding: 0;
}

#top-destinations-tabs a {
    width: 100%;
    padding: 5px 0;
}

#top-destinations-tabs li {
    float: left;
    list-style: none;
    margin-right: 30px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    outline: none;
}

#top-destinations-tabs li a {
    cursor: pointer;
    color: #37B3DA;
    padding: 5px 7px 8px;
    display: block;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

#top-destinations-tabs li a.inactive {
    padding: 5px 8px 8px;
    color: #FFFFFF;
    outline: none;
}

#top-destinations-tabs li a:hover, #top-destinations-tabs li a.inactive:hover {
    color: #5685bc;
    outline: none;
}

.tab-destination-container {
    clear: both;
    width: 100%;
    text-align: left;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

.tab-destination-container a {
    color: #FFFFFF;
}

.tab-destination-item {
    font-family: Inter;
    border: 2px solid;
    border-radius: 25px;
    width: max-content;
    padding: 6px 10px 6px 10px;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.tab-destination-item:hover {
    color: #5685bc;
    cursor: pointer;
}

.tab-destination-container h2 {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 10px;
    color: #5685bc;
}

.tab-destination-container p {
    margin: 10px 15px;
    line-height: 1.3;
    font-size: small;
}

.tab-destination-container ul {
    margin-left: 25px;
    font-size: small;
    line-height: 1.4;
    list-style-type: disc;
}

.tab-destination-container li {
    padding-bottom: 5px;
    margin-left: 5px;
}

.container-destinations .title-h2 {
    margin-bottom: -3px;
}

@media (max-width: 425px) {
    .tab-destination-item {
        padding: 4px 8px 4px 8px;
        margin-right: 6px;
        margin-top: 10px;
        font-size: 13px;
        border: 1px solid;
    }

    #top-destinations-tabs {
        display: grid;
        grid-template-columns: auto auto auto;
        overflow-x: scroll;
        border-bottom: 1px solid #37B3DA;
        gap: 10px;
    }

    #top-destinations-tabs li {
        margin-right: 0;
        width: max-content;
    }

    #top-destinations-tabs li a {
        font-size: 14px;
        text-decoration: none;
        width: max-content;
    }

    .tab-destination-container {
        padding: 0 0 10px 0;
    }
}
