/*
|--------------------------------------------------------------------------
| Liste région
|--------------------------------------------------------------------------
*/
.kmg-region{

    margin-bottom:50px;

}

.kmg-region-separator{

    display:flex;

    align-items:center;

    margin-bottom:30px;

}

.kmg-region-separator::before,
.kmg-region-separator::after{

    content:'';

    flex:1;

    height:1px;

    background:#E18C08;

}

.kmg-region-title{

    padding:0 20px;

    font-size:24px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    color: #000000;

}
/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/
.kmg-club-card-logo{
    background-color: #000000;
    padding: 5px;
    border-radius: 8px 8px 0px 0px;
}

.kmg-club-card-logo img{

    width:100%;

    height:100%;

    object-fit:cover;

}
.kmg-card-content p i{
    margin-right: 5px;
    color: #E18C08;
}
/*
|--------------------------------------------------------------------------
| Détail club
|--------------------------------------------------------------------------
*/
.kmg-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.kmg-profile-header {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow:
            0 8px 25px rgba(0,0,0,0.6),
            0 0 12px rgba(225,140,8,0.25);
}
.kmg-profile-photo {
    width: 35%;
}
.kmg-profile-info {
    width: 40%;
}
.kmg-profile-title i, .kmg-profile-infos-club i {
    color: #E18C08;
    margin-right: 10px;
    font-size: 20px;
    margin-top: 2px;
}
.contact i {
    color: #E18C08;
    margin: 10px 18px 10px 3px;
    font-size: 20px;
}
.kmg-email a:hover, .kmg-phone a:hover, .kmg-website a:hover, .kmg-profile-infos-club a:hover {
    color: #E18C08;
}
.kmg-social{
    display:flex;
    gap:15px;
    align-items:center;
    margin-top: 20px;
}

.kmg-social-link i {
    font-size:25px;
    color:#ffffff;
}

.kmg-social-link{
    width : 40px;
    height: 40px;
    display:flex;
    align-items:center;
    justify-content: center;
    background-color: #E18C08;
    text-decoration:none;
    transition:all .3s ease;
    border-radius: 8px;
}

.kmg-profile-content {
    display: flex;
    flex-wrap:wrap;
    gap: 30px;
    width: 100%;
}
.kmg-profile-infos-club {
    flex:1;
    width: 50%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow:
            0 8px 25px rgba(0,0,0,0.6),
            0 0 12px rgba(225,140,8,0.25);
}
.kmg-profile-title {
    border-bottom :1px solid var(--kmg-border);
    margin-bottom: 15px;
    display: flex;
}
.contact{
    display: flex;
    margin-bottom: 20px;
}
.kmg-opening-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:3px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.kmg-opening-row:last-child{
    border-bottom:none;
}

/*
|--------------------------------------------------------------------------
| Shortcode cards
|--------------------------------------------------------------------------
*/
.kmg-instructor-card-top {

    background-color: black;

    display: flex;

    flex-direction: row;

    height: auto;

    border-radius: 8px 8px 0px 0px;
}

.kmg-instructor-col-left {
    background-color: white;
    width :75%;
    border-radius: 8px 0px 0px 0px;
}

.kmg-instructor-col-right{
    width :25%;
    padding: 3%;
    display: flex;
    flex-direction: column;
}

.kmg-instructor-col-left img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    border-radius: 8px 0px 0px 0px;

}
.kmg-instructor-icon-kmg {
    margin-bottom: 1%;
}

.kmg-instructor-country-flag {
    margin-bottom: 10px;
}

.kmg-instructor-grade img {
    width:100%;
    height: 100%;
    object-fit:contain;
}

@media (max-width: 980px) {

    .kmg-social {
        justify-content: center!important;
    }
    .kmg-instructor-card-top {
        height: 245px!important;
    }
}

@media (max-width:767px){

    .kmg-profile-header{

        flex-direction:column;

        text-align:center;

    }

    .kmg-profile-photo{

        width:100%;

    }

    .kmg-profile-photo img{

        max-width:280px;

        margin:auto;

        display:block;

    }

    .kmg-profile-info{

        width:100%;

    }
    .kmg-profile-content {
        gap:20px
    }

}