#homeSlider .owl-item.active h2,
#homeSlider .owl-item.active p,
#homeSlider .owl-item.active .btn a {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.4s;
}

.ms-caption {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

@media (min-width: 900px) {
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        padding: 2px 30px;
    }
}


/*main slider*/

@media (min-width: 600px) {
    #homeSlider .owl-dot.active {
        background-color: var(--the-orange) !important;
        display: inline-block;
        width: 7px;
        height: 100px;
        transition: 700ms;
    }
    #homeSlider .owl-dot {
        background-color: var(--the-white) !important;
        height: 100px;
        width: 7px;
        display: inline-block;
        transition: 700ms;
    }
    #homeSlider .owl-dots {
        display: flex;
        gap: 1em;
        position: absolute;
        top: 30%;
        right: 5%;
        flex-direction: column;
        transition: 700ms;
    }
}

.country-flags {
    display: flex;
    gap: 10px;
}

.country-logo img {
    width: 30px;
}

.country {
    margin-right: 10px;
}

.country img {
    width: 50px;
    height: auto;
}

.custom-dropdown {
    position: relative;
    width: 200px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

.selected-option,
.options div {
    display: flex;
    align-items: center;
    padding: 5px;
}

.option-image {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
}

.options div:hover {
    background-color: #f0f0f0;
}

.options.show {
    display: block;
}