section.elite-team .container-wrap {
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
}

section.elite-team .container-wrap h2 {
    text-align: center;
    max-width: 712px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--white-color);
}

section.elite-team .container-wrap h2 span {
    color: var(--color-primary);
    font-weight: 700;
}

section.elite-team .container-wrap p {
    color: var(--white-color);
    text-align: center;
    padding: 30px 0 50px;
    line-height: 1.9;
    max-width: 1140px;
    margin: 0 auto;
}

section.elite-team img.trainer-img {
    width: 100%;
}

.management-visit {
    row-gap: 15px;
    height: 100%;
}

.management-visit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-hexagon1 {
    position: relative;
}

.team-hexagon1 .hexagon {
    position: relative;
    width: 300px;
    height: 250px;
    background: #FEC307;
    padding: 5px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.team-hexagon1 .hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit;
    object-position: top center;
}

/* ✅ MOVE HERE */
.team-hexagon1::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -195px;
    width: 193px;
    height: 164px;
    background: url("../images/left.svg") no-repeat center;
    background-size: contain;
}

.team-hexagon1::after {
    content: "";
    position: absolute;
    top: 120px;
    right: -195px;
    width: 193px;
    height: 164px;
    background: url("../images/right.svg") no-repeat center;
    background-size: contain;
}

.team-hexagon1.team-hexagon2 {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 370px;
}

.team-hexagon1.team-hexagon2::before,
.team-hexagon1.team-hexagon2::after {
    display: none;
}

@media(max-width: 991px) {
    .team-hexagon1 .hexagon {
        width: 250px;
        height: 200px;
    }

    .team-hexagon1.team-hexagon2 {
        gap: 300px;
    }
}

@media(max-width: 767px) {
    section.elite-team .container-wrap p {
        padding: 0 0 20px;
        margin: 0
    }

    .team-hexagon1 .hexagon {
        width: 180px;
        height: 150px;
    }

    .team-hexagon1.team-hexagon2 {
        gap: 200px;
    }

    .team-hexagon1::before {
        top: 108px;
        left: -173px;
        height: 140px;
    }

    .team-hexagon1::after {
        top: 108px;
        right: -173px;
        height: 140px;
    }
}

@media(max-width:575px) {

    .team-hexagon1::before,
    .team-hexagon1::after {
        display: none;
    }

    .team-hexagon1.team-hexagon2 {
        gap: 20px;
        align-items: center;
        flex-direction: column;
        margin-top: 20px;
    }
}