
.main-breadcrumb .container .col-12 {
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-breadcrumb .container .left {
    display: flex;
    align-items: center;
}
.main-breadcrumb .container .left select {
    width: 200px;
    margin-left: 20px;
}
.main-breadcrumb .container .right ul {
    display: flex;
    align-items: center;
}
.main-breadcrumb .container .right ul li {
    margin: 0px 10px;
}
.main-breadcrumb .container .right ul li a {
    color: var(--color-grey);
    font-weight: 500;
}
.main-breadcrumb .container .right ul li a.active {
    color: var(--color-red);
}
.main-breadcrumb .container .right ul li a:hover {
    color: var(--color-back-1);
}

.athletes .athletes-slider .background {
    width: 100%;
    height: 570px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.athletes .athletes-slider figure {
    position: relative;
}
.athletes .athletes-slider .detail {
    bottom: 0;
    width: 100%;
    font-weight: bold;
    padding: 25px;
    position: absolute;
    background: linear-gradient(0deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,0) 100%);
}
.athletes .athletes-slider .detail a {  
    color: var(--color-white-1);
}
.athletes .athletes-slider .detail a:hover {
    color: var(--color-yellow-1);
}
.athletes .athletes-slider .slick-dots {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 35px;
}
.athletes .athletes-slider .slick-dots li {
    display: flex;
    align-items: center;
    margin: 0px 5px;
}
.athletes .athletes-slider .slick-dots button {
    border: none;
    color: transparent;
    width: 10px;
    height: 10px;
}
.athletes .athletes-slider .slick-dots .slick-active button {
    background-color: var(--color-white-1);
    width: 15px;
    height: 15px;
}

.athletes .athletes-list figure .thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.athletes .athletes-list figure .thumbnail {
    overflow: hidden;
}
.athletes .athletes-list figure .thumbnail:hover img {
    -webkit-transform: scale(1.09) rotate(0.5deg);
    transform: scale(1.09) rotate( 0.5deg);
}
.athletes .athletes-list figure .detail {
    padding: 10px;
}
.athletes .athletes-list figure .detail .name {
    font-size: 16px;
    font-weight: bold;
}
.athletes .athletes-list figure .detail .name,
.athletes .athletes-list figure .detail .nationality {
    text-align: center;
    color: var(--color-back-1);
}

.athletes .show-more {
    margin-top: 50px;
    cursor: pointer;
    width: fit-content;
    padding: 12px 50px;
    color: var(--color-white-1);
    background-color: var(--color-back-1);
}
.athletes .show-more:hover {
    color: var(--color-yellow-1);
}

/* @World Champions */
.athletes.world-champions .athlete-title {
    display: flex;
}
.athletes.world-champions .athlete-title .bg {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.athletes.world-champions .athlete-title .text {
    margin-left: 10px;
    color: var(--color-yellow-1);
}

.athletes.world-champions .champion-list figure .top {
    padding: 10px;
    text-align: center;
    /* color: var(--color-back-1); */
    color: var(--color-white-1);
    background-color: var(--color-yellow-1);
}
.athletes.world-champions .champion-list figure .thumbnail img {
    width: 100%;
    object-fit: cover;
}
.athletes.world-champions .champion-list figure .thumbnail {
    overflow: hidden;
}
.athletes.world-champions .champion-list figure .thumbnail:hover img {
    -webkit-transform: scale(1.09) rotate(0.5deg);
    transform: scale(1.09) rotate( 0.5deg);
}
.athletes.world-champions .champion-list figure .detail .name {
    padding: 10px 0px;
    font-weight: bold;
    color: var(--color-back-1);
}
.athletes.world-champions .champion-list figure .detail .country {
    font-size: .9rem;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    color: var(--color-back-1);
}
.athletes.world-champions .champion-list figure .detail hr {
    margin: 0px;
    color: var(--color-back-1);
}

/* laptop 1900 */
@media (min-width: 1600.9px) and (max-width: 1900px) {
}
/* laptop 1600 */
@media (min-width: 1445.9px) and (max-width: 1600px) {
    .athletes .athletes-list .col-2 {
        flex: 0 0 auto;
        width: 25%;
    }
}
/* laptop 1400 */
@media (min-width: 1280px) and (max-width: 1445px) {
    .athletes .athletes-list .col-2 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
/* ipad pro */
@media (min-width: 769px) and (max-width: 1280px) {
    .athletes .athletes-list .col-2 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .athletes.world-champions .champion-list .col-3 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}
/* ipad */
@media (min-width: 576.9px) and (max-width: 769px) {
    .athletes .athletes-list .col-2 {
        flex: 0 0 auto;
        width: 50%;
    }
    .main-breadcrumb .container .right {
        display: none;
    }
    .athletes.world-champions .champion-list .col-3 {
        flex: 0 0 auto;
        width: 50%;
    }
}
/* mobile */
@media (max-width: 576px) {
    .athletes .athletes-list .col-2 {
        flex: 0 0 auto;
        width: 100%;
    }
    .athletes .athletes-slider .background {
        height: 200px;
    }
    .main-breadcrumb .container .right {
        display: none;
    }
    .athletes.world-champions .champion-list .col-3 {
        flex: 0 0 auto;
        width: 100%;
    }
    .athletes .athletes-slider .slick-dots {
        display: none !important;
    }
}