/*********************
START: WHY ABOUT
*********************/
.why--about ul li {
    margin: 8px;
    flex-basis: calc(25% - 16px);
    min-height: 200px;
}

.why--about ul li .why--listContent {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start !important;
    min-height: 198px !important;
}

.why--about ul li .why--listContent h3 {
    margin-block-end: 0.5rem;
	font-family: var(--font-family) !important;
}

.why--about ul li .why--listContent {
    font-size: var(--text-sm);
}

/*********************
END: WHY ABOUT
*********************/

/*********************
START: COACHES
*********************/
.coaches {
    position: relative;
    background-color: var(--box-color);
    padding-block: 5rem;
}

.coaches::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../img/icons/effet.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.coaches--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-end: 2rem;
}

.coaches--list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.coaches--list ul li{
    border: 1px solid var(--text-color);
    background-color: var(--baseLight-color);
    border-radius: 30px;
    padding: 1rem;
    margin: 8px;
    flex-basis: calc(33.33% - 16px);
}

.coaches--list ul li img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3.75;
    border-radius: 30px;
}

.coaches--list ul li h4{
    margin-block: 0.75rem 0.5rem;
    font-weight: 600;
	font-family: var(--font-family) !important;
}

.coaches--list ul li p{
    margin-block-end: 3rem;
}

/*********************
END: COACHES
*********************/


/*********************
START: HONORS
*********************/
.honors--title{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.honors--title .title{
    margin-block: 1rem 3rem;
}

.honors--content ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.honors--content ul li{
    margin: 8px;
    flex-basis: calc(20% - 16px);
}

.honors--content ul li > div{
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    border: 1px solid rgba(205, 58, 38, 0.7);
}

.honors--content ul li > div h6{
    color: var(--primary-color);
	font-family: var(--font-family) !important;
}
/*********************
END: HONORS
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
    .coaches--list ul li p{
        font-size: var(--text-lg);
    }

    .honors--content ul li > div h6{
        font-size: var(--text-5xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .honors--content ul li > div h6{
        font-size: var(--text-4xl);
    }
}

@media screen and (max-width: 1319px) {
    .honors--content ul li > div{
        width: 210px;
        height: 210px;
    }

    .honors--content ul li > div h6{
        font-size: var(--text-4xl);
    }
}

@media screen and (max-width: 1200px) {
    .why--about ul li {
        flex-basis: calc(50% - 16px);
        min-height: 170px;
    }

    .why--about ul li .why--listContent {
        min-height: 148px !important;
    }

    .honors--content ul li > div{
        width: 170px;
        height: 170px;
    }
}

@media screen and (max-width: 992px) {
    .coaches--title {
        flex-direction: column;
        align-items: flex-start
    }

    .coaches--title>a.btn {
        margin-block-start: 1rem;
    }

    .honors--content ul li{
        flex-basis: calc(33.33% - 16px);
    }

    .honors--content ul li > div {
        width: 200px;
        height: 200px;
    }

    .honors--content ul li > div h6{
        font-size: var(--text-3xl);
    }
	
	    .coaches--list ul li{
        flex-basis: calc(50% - 16px);
    }
}

@media screen and (max-width: 768px) {

    .why--about ul li {
        flex-basis: calc(100% - 16px);
        min-height: 150px;
    }

}

@media screen and (max-width: 576px) {
    .why--about ul li .why--listContent {
        min-height: 148px !important;
    }

    .honors--content ul li > div {
        width: 180px;
        height: 180px;
    }

    .honors--content ul li > div h6{
        font-size: var(--text-2xl);
    }
}

@media screen and (max-width: 425px) {
    .coaches--list ul li{
        flex-basis: calc(100% - 16px);
    }

    .honors--content ul li > div {
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width: 375px) {
    .honors--content ul li > div {
        width: 140px;
        height: 140px;
    }
}

@media screen and (max-width: 320px) {
    .honors--content ul li > div {
        width: 120px;
        height: 120px;
    }
}

/*********************
END: MEDIA
*********************/