.team h3{
    font-family: 'FFShamelFamily-SansOneBold';
    font-weight: 400;
    font-size: 32px;
    line-height: 24px;
    letter-spacing: 0.2px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 70px;
    color: rgba(23, 158, 218, 1)!important;

}
.team h3::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 420px;
    height: 7px;
    background-color: rgba(23, 158, 218, 1);
}

.card-team {
    text-align: center;
    border: none;
    position: relative;
    width: 285px;
    height: 283px;

}

.card-team-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    width: 285px;
    height: 283px;
}

.card-team-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.card-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(23, 158, 218, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.card-team-img-container:hover .card-team-overlay {
    opacity: 1;
}

.card-team-title {
    font-family: 'FFShamelFamily-SansOneBold';
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1px;
    text-align: center;
    color: rgba(255, 255, 255, 1);


}

.card-team-text {
    margin: 0;
    font-family: 'FFShamelSans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.2px;
    text-align: center;

}

.owl-theme .owl-nav {
    margin-top: 30%;
    position: relative;
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #179EDA;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 3rem;
    z-index: 2;
    cursor: pointer;
    border: 3px solid rgba(23, 158, 218, 1)
}

.owl-theme .owl-nav .owl-prev {
    left: 10px;
}

.owl-theme .owl-nav .owl-next {
    right: 10px;

}
.owl-carousel .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: relative;
    top: 0;
}

.owl-carousel button.owl-dot {
    position: relative;
    top: -30%;
}

@media (max-width: 768px) {
    .card-team {
        width: 100%;
        height: 283px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card-team-img-container {
        width: 234px;
        height: 283px;
        border-radius: 25px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f8f8f8;
        margin: 0 auto;
    }

    .card-team-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .team h3 {
        font-size: 22px;
        text-align: center;
    }

    .team h3::before {
        width: 50%;
        max-width: 250px;
    }
}
