body {
    overflow-x: hidden;
}



body>header #header_ts {
    position: absolute;
    background-color: #13385900;
    transition: 0.5s background-color ease-out;
    width: 100vw !important;
    height: 90px;
    z-index: 100;
}

body>header.menu_visible #header_ts {
    background-color: #1338597F;
    transition: 0.5s background-color ease-out;
}

body>header #menu_container_desktop {
    overflow: hidden;
    position: relative;
}

#desktop_menu {
    position: absolute;
    right: -30em;
    opacity: 0;
    transition: 1s all ease-out;
}

body>header.menu_visible #desktop_menu {
    right: 0rem;
    opacity: 1;
    transition: 1s all ease-out;
}

body>header #menu_container_mobile {
    transition: 1s all ease-out;
    display: none;
}

@media screen and (max-width:767px) {
    body>header #header_ts {
        height: auto;
    }


    body>header.menu_visible #menu_container_mobile {
        display: block;
    }
}

footer a {
    color: white;
    transition: 0.25s all ease-out;
}

footer a:hover {
    color: white;
    transition: 0.25s all ease-out;
    opacity: 0.5;
}

.swiper-pagination {
    text-align: left !important;
    padding: 0 16vw;
}

.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 8vh !important;
    left: 0 !important;
}

.swiper-pagination-bullet {
    background: white !important;
    border-radius: 0 !important;
    width: 40px !important;
    height: 2px !important;
    opacity: 1 !important;
    margin: 0 9px !important;
}

.swiper-pagination-bullet-active {
    height: 10px !important;
}

@media screen and (max-height:767px) {
    .swiper-pagination-bullet {
        width: 30px !important;
        height: 2px !important;
        margin: 0 6px !important;
    }

    .swiper-pagination-bullet-active {
        height: 10px !important;
    }

}