/*+++++++++++++++++++++++++++++++++++++++++++++++
    Home Carousels Styles | Tech Carousel
************************************************/
.econotec-home__tech-carousel {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

.econotec-home__tech-carousel .owl-stage {
    display: flex;
    gap: 0px;
}

.econotec-home__tech-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.econotec-home__tech-container .owl-custom-nav {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    display: none !important;
}

@media (max-width: 399px) {
    .econotec-home__tech-container .owl-custom-nav {
        display: none !important;
    }
}

.econotec-home__tech-container .owl-custom-prev,
.econotec-home__tech-container .owl-custom-next {
    pointer-events: auto;
    background-color: transparent;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.econotec-home__tech-container .owl-custom-prev:hover,
.econotec-home__tech-container .owl-custom-next:hover {
    background-color: transparent;
}

.econotec-home__tech-container .owl-dots{
    background-color: #212121;
    margin-top: 20px;
    max-width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px;
    border-radius: 20px;
}

.econotec-home__tech-container .owl-dots .owl-dot span {
    background-color: var(--primary-color-mode1) !important;
}

.econotec-home__tech-container .owl-dots .owl-dot:hover span{
    background-color: var(--secondary-color-mode1) !important;
}

.econotec-home__tech-container .owl-dots .owl-dot.active span {
    background-color: var(--secondary-color-mode1) !important;
}

.econotec-home__tech-container .owl-nav{
    position: absolute;
    left: 0;
    right: 0;
    width: 110%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translate(-5%, -50%);
    margin: auto;
}

.econotec-home__tech-container .owl-nav .owl-next:hover,
.econotec-home__tech-container .owl-nav .owl-prev:hover
{
    background-color: transparent;
}