body {
    scroll-behavior: smooth;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

.mobydyk {
    display: inline-block;
    mask: url("../../img/mobydyk-icon.svg");
    -webkit-mask: url("../../img/mobydyk-icon.svg");
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: cover;
    -webkit-mask-size: cover;
    fill: #fff;
    height: 22.4px;
    width: 30.4px;
    margin-left: 7px;
    margin-bottom: -4px;
    background: #fff;
}
.mobydyk:hover {
    fill: #E3161B;
    background: #E3161B;
}

.clr {
    clear: both;
}

.container {
    width: 100%;
    max-width: 1600px;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}
@media (max-width: 1700px) {
    .container {
        padding: 0 7.5%;
    }
}
@media (max-width: 1367px) {
    .container {
        padding: 0 5%;
    }
}

.blue {
    color: #004A90;
}
.red {
    color: #E3161B;
}


header {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    background: #fff;
    -webkit-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
    box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
}
header.scroll {
    width: 133%;
    left: -33%;
    position: fixed;
}
.Header--left {
    width: 25%;
    flex: 0 1 calc(25%);
    position: relative;
    margin: 0 auto;
    padding: 0 2.5% 0 2%;
    box-sizing: border-box;
    transition: 0.2s;
    left: 0;
}
header.scroll .Header--left {
    left: -28%;
    width: 28%;
    flex: 0 1 calc(28%);
}
.Header--left .Header--left-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
}
.Header--left .Header--logo {
    width: 40%;
    flex: 0 1 calc(40%);
    padding: 0;
    margin: 0;
    position: relative;
}
.Header--left .Header--logo img {
    width: 100%;
    height: auto;
    max-height: 140px;
}
.Header--left .Header--trophies {
    width: 60%;
    flex: 0 1 calc(60%);
    padding: 12px 0 12px 5%;
    box-sizing: border-box;
}
.Header--left .Header--trophy {
    display: inline-block;
    margin: 5px;
    padding: 0;
    text-align: center;
}
.Header--left .Header--trophy-icon {
    color: #acacac;
    font-size: 1.5rem;
    transition: 0.2s;
}
.Header--left .Header--trophy-year {
    color: #acacac;
    font-size: 0.6rem;
}
@media (max-width: 1800px) {
    .Header--left .Header--trophy-icon {
        font-size: 0.95rem;
    }
    .Header--left .Header--trophy-year {
        font-size: 0.55rem;
    }
}
@media (max-width: 1500px) {
    .Header--left .Header--trophy-icon {
        font-size: 0.85rem;
    }
    .Header--left .Header--trophy-year {
        font-size: 0.5rem;
    }
}
@media (max-width: 1400px) {
    .Header--left .Header--logo {
        width: 33%;
        flex: 0 1 calc(33%);
    }
    .Header--left .Header--trophies {
        width: 66%;
        flex: 0 1 calc(66%);
    }
}
.Header--left .Header--trophy:hover .Header--trophy-icon {
    color: #e9cb12;
}
.Header--right {
    width: 75%;
    flex: 0 1 calc(75%);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    transition: 0.2s;
}
header.scroll .Header--right {
    width: 105%;
    flex: 0 1 calc(105%);
    left: 0;
}
.Header--right .Header--top-navigation {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.Header--right .Header--top-navigation .Header--top-panel {
    width: auto;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    position: relative;
}
.Header--right .Header--top-navigation .Header--search,
.Header--right .Header--top-navigation .Header--partners {
    border-left: 2px solid #cacaca;
}
.Header--right .Header--top-navigation .Header--search {
    padding: 12px 4% 12px 2.5%;
}
.Header--right .Header--top-navigation .Header--search .Input--with-icon {
    position: relative;
}
.Header--right .Header--top-navigation .Header--search .Input--with-icon button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: transparent;
    color: #666;
    cursor: pointer;
    border: 0;
    font-size: 1rem;
    transition: 0.2s;
}
.Header--right .Header--top-navigation .Header--search .Input--with-icon button:hover {
    color: #004A90;
}
.Header--right .Header--top-navigation .Header--search input[type='text'] {
    padding: 6px 32px 6px 0;
    border: 0;
    border-bottom: 1px solid #acacac;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    outline: none;
}
.Header--right .Header--top-navigation .Header--partners {
    padding: 6px 2.5% 2px 2.5%;
}
.Header--right .Header--top-navigation .Header--partners a {
    text-decoration: none;
    padding: 0;
    margin: 0;
}
.Header--right .Header--top-navigation .Header--partners img {
    height: 40px;
    width: auto;
    padding: 0;
    margin: 0 20px;
}
.Header--right .Header--top-navigation .Header--socials {
    padding: 6px 2.5%;
}
.Header--right .Header--top-navigation .Header--socials a {
    color: #acacac;
    font-size: 1.3rem;
    text-decoration: none;
    transition: 0.2s;
    margin: 0 8px;
}
.Header--right .Header--top-navigation .Header--socials a.Icon--instagram:hover {
    color: #c13584;
}
.Header--right .Header--top-navigation .Header--socials a.Icon--facebook:hover {
    color: #4267B2;
}
.Header--right .Header--top-navigation .Header--socials a.Icon--youtube:hover {
    color: #FF0000;
}
.Header--right .Header--main-navigation {
    width: 100%;
    background: #004A90;
    color: #fff;
    margin: 0 auto;
    position: relative;
    padding: 26px 5% 26px 6%;
    box-sizing: border-box;
    clip-path: polygon(3% 0%, 100% 0, 100% 100%, 0 100%);
    transition: 0.2s;
}
.Header--right .Header--main-navigation nav {
    width: 100%;
    position: relative;
}
.Header--right .Header--main-navigation nav ul {
    list-style: none;
}
.Header--right .Header--main-navigation nav ul li {
    margin: 0 16px;
    display: inline-block;
}
.Header--right .Header--main-navigation nav ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    box-sizing: border-box;
}
.Header--right .Header--main-navigation nav ul li a:hover,
.Header--right .Header--main-navigation nav ul li a.active {
    color: #E3161B;
    border-bottom: 2px solid #E3161B;
}
@media (max-width: 1800px) {
    .Header--right .Header--main-navigation {
        padding: 30px 3% 30px 4%;
    }
    .Header--right .Header--main-navigation nav ul li {
        margin: 0 8px;
    }
    .Header--right .Header--main-navigation nav ul li a {
        font-size: 0.95rem;
    }
}
@media (max-width: 1500px) {
    .Header--right .Header--main-navigation {
        padding: 34px 4% 34px 5.5%;
    }
    .Header--right .Header--main-navigation nav ul li {
        margin: 0 8px;
    }
    .Header--right .Header--main-navigation nav ul li a {
        font-size: 0.85rem;
    }
}
@media (max-width: 1300px) {
    .Header--right .Header--main-navigation {
        padding: 30px 1% 30px 2%;
    }
    .Header--right .Header--main-navigation nav ul li {
        margin: 0 5.5px;
    }
    .Header--right .Header--main-navigation nav ul li a {
        font-size: 0.8rem;
    }
}


#main {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0;
    position: relative;
    background: #ccc;
    background-size: cover;
    padding-top: 100px;
    box-sizing: border-box;
}
#main .splide__arrow {
    z-index: 3;
}
#main .splide__pagination {
    z-index: 5;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
}
#main .Main--slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
#main .Main--slider .splide__track {
    width: 100%;
    height: 100%;
}
#main .Main--slider ul,
#main .Main--slider ul li {
    width: 100%;
    height: 100%;
}
#main .splide__pagination {
    width: auto !important;
    height: auto !important;
    max-height: 100px;
}
#main .splide__pagination li {
    width: auto !important;
    height: auto !important;
    max-width: 50px;
    margin: 0 5px;
}
#main .Main--slider-slide {
    position: relative;
    width: 72.5%;
    height: 100%;
    background: rgba(20, 93, 162, 0.5);
    color: #fff;
    clip-path: polygon(0% 100%, 80% 100%, 100% 0%, 0% 0%);
    margin: 0;
    padding: 0;
}
#main .Main--slider-slide .Slide--title {
    position: absolute;
    top: 50%;
    left: 24%;
    transform: translateY(-50%);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    text-transform: uppercase;
    z-index: 3;
    padding-right: 15%;
}
#main .Main--slider-slide .Slide--title h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0;
}
#main .Main--slider-slide .Slide--title h2 span {
    font-size: 4.1rem;
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}
@media (max-width: 1500px) {
    #main .Main--slider-slide .Slide--title {
        left: 20%;
    }
    #main .Main--slider-slide .Slide--title h2 {
        font-size: 1.65rem;
    }
    #main .Main--slider-slide .Slide--title h2 span {
        font-size: 4rem;
    }
}
@media (max-width: 1300px) {
    #main .Main--slider-slide .Slide--title {
        left: 15%;
    }
    #main .Main--slider-slide .Slide--title h2 {
        font-size: 1.45rem;
    }
    #main .Main--slider-slide .Slide--title h2 span {
        font-size: 3rem;
    }
}
#main .Main--slider-slide .Slide--title .Button {
    background: #2180DA;
    color: #fff;
    text-decoration: none;
    padding: 16px 42px;
    border-radius: 5px;
    display: inline-block;
    transition: 0.2s;
}
#main .Main--slider-slide .Slide--title .Button:hover {
    background: #004A90;
}
#main .Main--recent-news {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    background: #fff;
}
#main .Main--recent-news a {
    color: #333;
    text-decoration: none;
}
#main .Main--recent-news .Main--recent-news-title {
    width: 36%;
    flex: 0 1 calc(36%);
    background: #E3161B;
    clip-path: polygon(0% 100%, 95% 100%, 100% 0%, 0% 0%);
    padding: 14px 5%;
    box-sizing: border-box;
    text-align: right;
}
#main .Main--recent-news .Main--recent-news-title h3 {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}
#main .Main--recent-news .Main--recent-news-article {
    width: 64%;
    flex: 0 1 calc(64%);
    padding: 4px 2%;
    box-sizing: border-box;
    font-size: 1rem;
    color: #333;
}
#main .Main--recent-news .Main--recent-news-date {
    display: inline-block;
    font-weight: 500;
}
#main .Main--recent-news .Main--recent-news-date:after {
    content: '/';
    padding-left: 40px;
}
#main .Main--recent-news .Main--recent-news-content {
    display: inline-block;
    padding-left: 2%;
    box-sizing: border-box;
}
#main .Main--recent-news .Main--recent-news-content i {
    font-size: 1.4rem;
    position: relative;
    top: 2px;
    color: #004A90;
}
#main .Main--recent-news .Main--recent-news-content h4 {
    display: inline-block;
    margin-left: 20px;
    font-size: 1rem;
}
@media (max-width: 1367px) {
    #main .Main--recent-news .Main--recent-news-title h3 {
        font-size: 1.2rem;
    }
    #main .Main--recent-news .Main--recent-news-content i {
        font-size: 1.3rem;
    }
}

#nextMatch {
    width: 100%;
    height: auto;
    padding: 5% 0 6% 0;
    margin: 0 auto;
    position: relative;
    background: #f7f7f7;
}
.Next-match--field {
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: 400px;
    padding: 5% 7%;
    box-sizing: border-box;
    margin: 0 auto;
    background: url('../../img/bg_hriste.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
}
.Next-match--field .Next-match--team {
    width: 32%;
    flex: 0 1 calc(32%);
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.Next-match--field .Next-match--team.Team--away {
    text-align: right;
}
.Next-match--field .Next-match--info {
    width: 30%;
    flex: 0 1 calc(30%);
    padding: 0;
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.Next-match--field .Next-match--info .Match--venue {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 10px;
}
.Next-match--field .Next-match--info .Match--date {
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 10px;
}
.Next-match--field .Next-match--info .Match--time {
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #444;
}
.Next-match--field .Next-match--team .Team {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 6%;
    padding: 0;
    margin: 0;
    margin-top: -15%;
    flex-wrap: wrap;
}
.Next-match--field .Next-match--team .Team .Team--badge {
    width: 100%;
    flex: 0 1 calc(100%);
    padding: 0;
    margin: 0 0 2.5% 0;
}
.Next-match--field .Next-match--team .Team .Team--badge img {
    width: 100%;
    max-width: 100px;
    height: auto;
}
.Next-match--field .Next-match--team .Team .Team--name {
    width: 100%;
    flex: 0 1 calc(100%);
    padding: 0;
    margin: 3.5% 0 0 0;
    font-size: 1.3rem;
    color: #444;
}
@media (max-width: 1367px) {
    .Next-match--field .Next-match--info .Match--venue {
        font-size: 1.2rem;
    }
    .Next-match--field .Next-match--info .Match--date {
        font-size: 2rem;
    }
    .Next-match--field .Next-match--info .Match--time {
        font-size: 1.2rem;
    }
    .Next-match--field .Next-match--team .Team .Team--name {
        font-size: 1.25rem;
    }
}


#badmintonTv {
    width: 100%;
    height: auto;
    padding: 4% 0 6% 0;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
#badmintonTv h2 {
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 4%;
    text-align: center;
}

#badmintonTv .splide__slide {
    margin: 70px 10px 0 10px !important;
}
#badmintonTv .splide__slide .Tv--slider-header {
    display: none;
}
#badmintonTv .splide__slide.is-active.is-visible {
    margin-top: 0 !important;
}
#badmintonTv .splide__slide.is-active.is-visible .Tv--slider-header {
    display: flex;
}
#badmintonTv .splide__slide.is-active.is-visible iframe {
    height: 475px;
}
.splide__arrow {
    background: transparent !important;
    width: 3rem !important;
    height: 3rem !important;
}
.splide__arrow svg {
    fill: #004A90 !important;
    width: 3rem !important;
    height: 3rem !important;
}
.Tv--slider-header {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    background: #E3161B;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 300;
}
.Tv--slider-header .Tv--slider-post {
    width: 65%;
    flex: 0 1 calc(65%);
    background: #004A90;
    clip-path: polygon(0% 100%, 95% 100%, 100% 0%, 0% 0%);
    padding: 8px 5% 8px 6.5%;
    box-sizing: border-box;
    text-align: left;
}
.Tv--slider-header .Tv--slider-title, .Tv--slider-header .Tv--slider-date {
    display: inline-block;
}
.Tv--slider-header .Tv--slider-date {
    text-align: right;
}
.Tv--slider-header .Tv--slider-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    width: 65%;
}
.Tv--slider-header .Tv--slider-url {
    width: 35%;
    flex: 0 1 calc(35%);
    text-align: center;
}
.Tv--slider-header .Tv--slider-url a {
    color: #fff;
    text-decoration: none;
}
.Tv--slider-header .Tv--slider-url span {
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.8;
}


#shop {
    width: 100%;
    height: auto;
    background: url('../../img/badminton-shop.jpg') no-repeat 50% 40%;
    background-size: cover;
    padding: 0;
    margin: 0 auto;
    position: relative;
}
.Shop--content {
    width: 100%;
    padding: 70px 6%;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 5%;
}
.Shop--content .Shop--logo {
    width: 20%;
    flex: 0 1 calc(20%);
    padding: 0;
    margin: 0 auto;
}
.Shop--content .Shop--logo img {
    width: 100%;
    height: auto;
}
.Shop--content .Shop--text {
    width: 55%;
    flex: 0 1 calc(55%);
    padding: 0;
    margin: 0 auto;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4rem;
}
.Shop--content .Shop--button {
    width: 20%;
    flex: 0 1 calc(20%);
    padding: 0;
    margin: 0 auto;
}
.Shop--content .Shop--button a {
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 22px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s;
}
.Shop--content .Shop--button a:hover {
    background: #fff;
    color: #004A90;
}


#news {
    width: 100%;
    height: auto;
    padding: 5% 0 6% 0;
    margin: 0 auto;
    position: relative;
    background: #fff;
}
#news h2 {
    font-size: 2rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 3%;
}
.News--wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 6%;
    position: relative;
}
.News--wrapper .News--box {
    width: 30%;
    flex: 0 1 calc(30%);
    margin: 0 auto;
    padding: 0;
    background: #f6f6f6;
    position: relative;
}
.News--wrapper .News--box .News--image {
    width: 100%;
    padding: 0;
    margin: 0;
}
.News--wrapper .News--box .News--image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.News--wrapper .News--box .News--box-content {
    width: 100%;
    padding: 4% 6%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
}
.News--wrapper .News--box .News--box-content h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin: 10px auto 20px auto;
}
.News--wrapper .News--box .News--box-content h4 a {
    color: #333;
    text-decoration: none;
}
.News--wrapper .News--box .News--box-content .News--box-date {
    text-transform: uppercase;
    color: #004A90;
    font-size: 1rem;
}
.News--wrapper .News--box .News--box-content .News--box-description {
    font-size: 0.95rem;
    line-height: 1.7;
}
.News--wrapper .News--box .News--box-content .News--box-description a {
    color: #333;
    text-decoration: none;
}


#sponsors {
    width: 100%;
    height: auto;
    padding: 5% 0;
    margin: 0 auto;
    position: relative;
    background: #f7f7f7;
}
.Sponsors--splide {
    width: 100%;
    padding: 0;
}
.Sponsors--splide .splide__arrow--prev {
    left: -3%;
}
.Sponsors--splide .splide__arrow--next {
    right: -3%;
}
.Sponsors--splide ul {
    align-items: center;
}
.Sponsors--splide .splide__slide {
    text-align: center;
}
.Sponsors--splide li img {
    height: auto;
    width: 75%;
    object-fit: cover;
    text-align: center;
}
#sponsors .splide__pagination {
    display: none;
}


#fanzone {
    width: 100%;
    height: auto;
    padding: 5% 0;
    margin: 0 auto;
    position: relative;
    background: #152953;
}
.Fanzone--links {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 5%;
    margin: 0 auto;
    padding: 0;
    width: 85%;
}
.Fanzone--links .Fanzone--link {
    width: 45%;
    flex: 0 1 calc(45%);
    margin: 0 auto;
    padding: 0;
}
.Fanzone--links .Fanzone--link img {
    width: 100%;
    height: auto;
}


footer {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 auto;
    position: relative;
    background: #f7f7f7;
}
.Footer--wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.Footer--wrapper .Footer--company-info {
    background: #141414;
    clip-path: polygon(0% 100%, 92.5% 100%, 100% 0%, 0% 0%);
    position: relative;
    width: 45%;
    flex: 0 1 calc(45%);
    padding: 5% 3% 5% 6%;
    box-sizing: border-box;
}
.Footer--wrapper .Footer--links {
    width: 55%;
    flex: 0 1 calc(55%);
    padding: 5% 0;
}
.Footer--wrapper .Footer--company-info .Company--info {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    gap: 5%;
}
.Footer--wrapper .Footer--company-info .Company--logo {
    width: 17.5%;
    flex: 0 1 calc(17.5%);
    margin: 0 auto;
    padding: 0;
}
.Footer--wrapper .Footer--company-info .Company--logo img {
    width: 100%;
    height: auto;
}
.Footer--wrapper .Footer--company-info .Company--title {
    width: 77.5%;
    flex: 0 1 calc(77.5%);
    margin: 0 auto;
    padding: 0;
}
.Footer--wrapper .Footer--company-info .Company--title h2 {
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.6;
    font-weight: 600;
}
@media (max-width: 1367px) {
    .Footer--wrapper .Footer--company-info .Company--title h2 {
        font-size: 1.15rem;
    }
}
.Footer--wrapper .Footer--company-info .Company--description {
    color: #e4e4e4;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 20px;
    width: 90%;
}
.Footer--wrapper .Footer--company-info .Company--contact {
    width: 95%;
    display: flex;
    margin: 20px auto;
    padding: 0;
    gap: 6%;
    align-items: center;
}
.Footer--wrapper .Footer--company-info .Company--contact .Contact--icon {
    width: 35px;
    flex: 0 1 calc(35px);
    margin: 0;
    padding: 0;
    color: #e4e4e4;
    font-size: 1.5rem;
}
.Footer--wrapper .Footer--company-info .Company--contact .Contact--info {
    width: calc(100% - 35px);
    flex: 0 1 calc(100% - 35px);
    margin: 0;
    padding: 0;
}
.Footer--wrapper .Footer--company-info .Company--contact .Contact--info a {
    color: #e4e4e4;
    text-decoration: none;
}
.Footer--wrapper .Footer--company-info .Company--contact .Contact--info a:hover {
    text-decoration: underline;
}
.Footer--wrapper .Footer--company-info .Company--socials {
    width: 95%;
    margin: 40px 0 15px 0;
    padding: 0;
}
.Footer--wrapper .Footer--company-info .Company--socials a {
    display: inline-block;
    font-size: 1.4rem;
    color: #e4e4e4;
    text-decoration: none;
    transition: 0.2s;
    margin: 0 15px;
}
.Footer--links .Footer--links-wrapper {
    width: 100%;
    display: flex;
    margin: 0;
    padding: 2% 5% 3% 5%;
    box-sizing: border-box;
    gap: 5%;
}
.Footer--links .Footer--links-wrapper .Footer--news {
    width: 47.5%;
    flex: 0 1 calc(47.5%);
}
.Footer--links .Footer--links-wrapper .Footer--feed {
    width: 47.5%;
    flex: 0 1 calc(47.5%);
}
.Footer--links .Footer--links-wrapper h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
}
.Footer--links .Footer--links-wrapper .Footer--news .Footer--news-card a {
    color: #333;
    text-decoration: none;
}
.Footer--links .Footer--links-wrapper .Footer--news .Footer--news-card img {
    width: 100%;
    height: auto;
}
.Footer--links .Footer--links-wrapper .Footer--news .Footer--news-card h4 {
    font-size: 1.25rem;
    color: #333;
    margin: 15px auto;
}
.Footer--links .Footer--links-wrapper .Footer--news .Footer--news-card .Footer--news-date {
    color: #004A90;
    font-size: 1rem;
    text-transform: uppercase;
}
.Footer--links .Footer--links-wrapper .Footer--feed .Instagram--feed {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.Footer--links .Footer--links-wrapper .Footer--feed .Instagram--feed .Instagram--feed-img {
    width: 32%;
    flex: 0 1 calc(32%);
    margin: 1% 0;
    padding-bottom: 32%;
    position: relative;
}
.Footer--links .Footer--links-wrapper .Footer--feed .Instagram--feed .Instagram--feed-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}
.Footer--links .Footer--links-wrapper .Footer--feed .Instagram--feed .Instagram--feed-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.Footer-nav {
    width: 100%;
    position: relative;
    background: #004A90;
    padding: 2.5% 8%;
    box-sizing: border-box;
}
.Footer-nav ul {
    text-align: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.Footer-nav ul li {
    display: inline-block;
}
.Footer-nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 0.9rem;
}
.Footer-nav ul li a:hover {
    text-decoration: underline;
}
.Footer-nav ul li .Footer--nav-backlink {
    margin-left: 20px;
}
.Footer-nav ul li .Footer--nav-backlink i {
    margin-left: 5px;
}

.Footer--copyright {
    width: 100%;
    position: relative;
    background: #171717;
    display: flex;
    padding: 1.5% 8%;
    box-sizing: border-box;
}
.Footer--copyright .Footer--copyright-left {
    width: 75%;
    flex: 0 1 calc(75%);
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
}
.Footer--copyright .Footer--copyright-right {
    width: 25%;
    flex: 0 1 calc(25%);
    color: #fff;
    text-align: right;
}


.player-header {
    width: 100%;
    display: flex;
    position: relative;
    height: auto;
    padding: 150px 0 0 0;
    box-sizing: border-box;
    margin: 0;
    align-items: center;
}
.player-header .player-name {
    background: #fff;
    color: #000;
    width: 52%;
    position: relative;
    flex: 0 1 calc(52%);
    padding: 100px 10% 5% 10%;
    box-sizing: border-box;
    z-index: 2;
}
.player-header .player-name h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin: 0;
}
.player-header .player-name .page-nav {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.player-header a {
    color: #000;
    text-decoration: none;
}
.player-header .player-pic {
    width: 48%;
    flex: 0 1 calc(48%);
    height: 100%;
    min-height: 300px;
    clip-path: polygon(7% 0%, 100% 0, 100% 100%, 0 100%);
    padding: 100px 10% 5% 10%;
    box-sizing: border-box;
    background: url('../../img/main-bg.jpg') no-repeat center 20%;
    background-size: cover;
}

.player-content {
    width: 100%;
    margin: 0;
    padding: 5% 0;
    box-sizing: border-box;
    position: relative;
}
.player-content .player-summary {
    display: flex;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}
.player-content .player-summary .player-info {
    width: 50%;
    flex: 0 1 calc(50%);
    padding: 2.5% 0;
    box-sizing: border-box;
    margin: 0;
}
.player-content .player-summary .player-info .picture-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    gap: 8%;
}
.player-content .player-summary .player-info .picture-wrapper .player-photo {
    width: 46%;
    flex: 0 1 calc(46%);
    margin: 0;
    padding: 0;
    position: relative;
}
.player-content .player-summary .player-info .picture-wrapper .player-photo:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.player-content .player-summary .player-info .picture-wrapper .player-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-content .player-summary .player-info .picture-wrapper .player-name {
    width: 46%;
    flex: 0 1 calc(46%);
    margin: 0;
    padding: 0;
    position: relative;
    padding-top: 4%;
}
.player-content .player-summary .player-info .picture-wrapper .player-name .num {
    font-size: 3.25rem;
    color: #004A90;
    margin-bottom: 10px;
}
.player-content .player-summary .player-info .picture-wrapper .player-name .name {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: bold;
    text-transform: uppercase;
}
.player-content .player-summary .player-info .picture-wrapper .player-name .nationality {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 15px;
}
.player-content .player-summary .player-summary-info {
    background: #f6f6f6;
    clip-path: polygon(7% 0%, 100% 0, 100% 100%, 0 100%);
    width: 50%;
    flex: 0 1 calc(50%);
    padding: 2% 2% 1% 8%;
    box-sizing: border-box;
}
.player-content .player-summary .player-summary-info h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.player-content .player-summary .player-summary-info img {
    height: auto !important;
}
.player-content .player-summary .player-summary-info .summary-row {
    display: flex;
    width: 100%;
    margin: 15px auto;
}
.player-content .player-summary .player-summary-info .summary-row .row-title {
    width: 175px;
    flex: 0 1 calc(175px);
    font-weight: 500;
}
.player-content .player-summary .player-summary-info .summary-row .row-info {
    width: calc(100% - 175px);
    flex: 0 1 calc(100% - 175px);
}
.player-content .player-summary .player-summary-info .summary-row .bwf-button {
    padding: 14px 36px;
    box-sizing: border-box;
    border: 2px solid #004A90;
    color: #004A90;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 30px;
    display: inline-block;
}

.player-content .player-row {
    width: 100%;
    margin: 2% auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    gap: 6%;
}
.player-content .player-col {
    width: 47%;
    flex: 0 1 calc(47%);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.player-content .player-col h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.player-content .player-col p {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
}
.player-content .player-col table {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-spacing: 0;
    border: 0;
}
.player-content .player-col table tbody tr {
    background: #f7f7f7;
}
.player-content .player-col table th {
    color: #888;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    padding: 14px 6px;
}
.player-content .player-col table td {
    color: #333;
    text-transform: uppercase;
    padding: 14px 8px;
    box-sizing: border-box;
    font-size: 0.95rem;
}
.player-content .player-col table tr td:nth-of-type(2) {
    padding-left: 20px;
}
.player-content .player-col table tbody tr:first-of-type td {
    padding-top: 18px;
}
.player-content .player-col table tr:last-of-type td {
    border-bottom: 2px solid #888;
    padding-bottom: 20px;
}
.player-content .player-col table.trophies tr:last-of-type td {
    border-bottom: 0;
}
.player-content .player-col table td img {
    width: 90%;
    height: auto;
}
.player-content .player-col table td .score-result {
    padding: 6px 16px;
    box-sizing: border-box;
    background: #222;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
}


.page-header {
    width: 100%;
    display: flex;
    position: relative;
    height: auto;
    padding: 150px 0 0 0;
    box-sizing: border-box;
    margin: 0;
    align-items: center;
}
.page-header .page-name {
    background: #fff;
    color: #000;
    width: 52%;
    position: relative;
    flex: 0 1 calc(52%);
    padding: 100px 10% 5% 10%;
    box-sizing: border-box;
    z-index: 2;
}
.page-header .page-separator,
.player-header .page-separator {
    display: inline-block;
    margin: 0 8px;
}
.page-header .page-name h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    margin: 0;
}
.page-header .page-name .page-nav {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.page-header .page-pic {
    width: 48%;
    flex: 0 1 calc(48%);
    height: 100%;
    min-height: 300px;
    clip-path: polygon(7% 0%, 100% 0, 100% 100%, 0 100%);
    box-sizing: border-box;
    background: #ccc;
    position: relative;
}
.page-header .page-pic.map {
    clip-path: none;
}
.page-header .page-pic iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    min-height: 300px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0;
}
.page-header a {
    color: #000;
    text-decoration: none;
}
@media (max-width: 1367px) {
    .page-header .page-name .page-nav {
        font-size: 0.95rem;
    }
    .page-header .page-pic {
        width: 40%;
        flex: 0 1 calc(40%);
        min-height: 225px;
    }
    .page-header .page-name {
        padding: 60px 10% 4% 10%;
        width: 60%;
        flex: 0 1 calc(60%);
    }
    .page-header .page-name h1 {
        font-size: 2rem;
    }
}

.page-wrapper {
    width: 100%;
    margin: 3% auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    gap: 6%;
}
.page-content {
    width: 70%;
    flex: 0 1 calc(70%);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.page-sidebar {
    width: 24%;
    flex: 0 1 calc(24%);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
.page-content .text-left {
    text-align: left;
}
.page-content .text-center {
    text-align: center;
}
.page-content .partners-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    gap: 2.5%;
    flex-wrap: wrap;
    align-items: center;
}
.page-content .partner {
    text-align: center !important;
    padding: 0;
    box-sizing: border-box;
    margin: 1% auto;
    display: inline-block;
    width: 15%;
    flex: 0 1 calc(15%);
}
.page-content .partners-wrapper {
    gap: 6%;
}
.page-content .partner.main {
    width: 47%;
    flex: 0 1 calc(47%);
    margin: 2.5% auto;
}
.page-content .partner p {
    text-align: center !important;
    font-weight: 600;
}
.page-content .partner img {
    width: 100%;
    height: auto;
}
.page-content ul {
    margin: 1% auto;
    list-style: none;
}
.page-content ul li {
    padding: 10px 0;
    box-sizing: border-box;
}
.page-content ul li:before {
    content: "\2022";
    color: #004A90;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.page-content h2 {
    font-size: 1.75rem;
    text-transform: uppercase;
}
.page-content h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
}
.page-content h4 {
    font-size: 1.25rem;
    color: #777;
    text-transform: uppercase;
}
.page-content h5 {
    font-size: 1.1rem;
    color: #004A90;
    text-transform: uppercase;
}
.page-content p {
    text-align: justify;
    line-height: 1.75;
}
.page-content a {
    text-decoration: none;
    color: #004A90;
}
.page-content a:hover {
    text-decoration: underline;
}
@media (max-width: 1367px) {
    .page-content h2 {
        font-size: 1.65rem;
    }
    .page-content h3 {
        font-size: 1.3rem;
    }
    .page-content h4 {
        font-size: 1.15rem;
    }
    .page-content h5 {
        font-size: 1rem;
    }
    .page-content p {
        font-size: 0.9rem;
    }
    .Footer--links .Footer--links-wrapper .Footer--news .Footer--news-card h4 {
        font-size: 1.1rem;
    }
    .Footer--links .Footer--links-wrapper .Footer--news .Footer--news-card .Footer--news-date {
        font-size: 0.9rem;
    }
}


.page-content .col-wrapper {
    display: flex;
    margin: 1.5% 0;
    padding: 0;
    gap: 5%;
}
.page-content .col-wrapper.flex-wrap {
    flex-wrap: wrap;
    gap: 1%;
}
.page-content .col-wrapper.flex-wrap .col-2 {
    width: 49.5%;
    flex: 0 1 calc(49.5%);
}
.page-content .col-wrapper.flex-wrap .col-3 {
    width: 32.6%;
    flex: 0 1 calc(32.6%);
}
.page-content .col-wrapper.articles {
    flex-wrap: wrap;
}
.page-content .col-wrapper.articles .col-3 {
    margin-bottom: 4%;
    background: #f1f1f1;
}
.page-content .load-more-wrapper {
    text-align: center;
    margin: 2% auto;
}
.page-content .load-more-wrapper a {
    color: #004A90;
    border: 2px solid #004A90;
    padding: 14px 32px;
    box-sizing: border-box;
    text-decoration: none;
    border-radius: 5px;
}
.page-content .gray-wrapper {
    width: 100%;
    margin: 5% auto;
    padding: 2.5% 2%;
    position: relative;
    background: #f1f1f1;
    left: -2%;
}
.page-content .gray-wrapper a {
    color: #E3161B;
}
.page-content .col-wrapper .col-2 {
    width: 47.5%;
    flex: 0 1 calc(47.5%);
    padding: 0;
    margin: 0;
}
.page-content .col-wrapper .col-3 {
    width: 30%;
    flex: 0 1 calc(30%);
    padding: 0;
    margin: 0;
}
@media (max-width: 1500px) {
    .page-content .col-wrapper .col-3.news-col {
        width: 47.5%;
        flex: 0 1 calc(47.5%);
    }
}
.page-content .col-wrapper .col-2-3 {
    width: 65%;
    flex: 0 1 calc(65%);
    padding: 0;
    margin: 0;
}
.page-content .col-wrapper .border-right {
    border-right: 2px solid #004A90;
    padding-right: 5%;
}
.page-content img {
    max-width: 100% !important;
    height: auto !important;
}
.page-content .col-wrapper .img-float img {
    float: left;
    padding: 0 6% 2.5% 0;
    max-width: 25% !important;
    min-width: 25%;
    height: auto;
}
.page-content .news-card a {
    color: #333;
    text-decoration: none;
}
.page-content .news-card img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
}
.page-content .news-card h4 {
    font-size: 1.25rem;
    color: #333;
    margin: 15px auto 5px auto;
}
.page-content .news-card .news-card-content {
    padding: 1.5% 4%;
    box-sizing: border-box;
}
.page-content .news-card .news-date {
    color: #004A90;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 10px;
}
.page-content .news-card .news-perex {
    color: #000;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    margin-top: 4px;
}
@media (max-width: 1367px) {
    .page-content .news-card h4 {
        font-size: 1.15rem;
    }
    .page-content .news-card .news-date {
        font-size: 0.95rem;
    }
}

.page-sidebar h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
}
.page-sidebar .category {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 2px auto;
    padding: 0;
    background: #00affb;
}
.page-sidebar a {
    text-decoration: none;
}
.page-sidebar .category .num {
    width: 40px;
    flex: 0 1 calc(40px);
    text-align: center;
    border-left: 2px solid #00affb;
    padding: 10px 6px;
    box-sizing: border-box;
    background: #dfdfdf;
    color: #000;
    font-weight: 600;
}
.page-sidebar .category .category-name {
    width: calc(100% - 40px);
    flex: 0 1 calc(100% - 40px);
    font-weight: 600;
    padding: 10px 18px 10px 26px;
    box-sizing: border-box;
    background: #dfdfdf;
    color: #000;
}
@media (max-width: 1500px) {
    .page-sidebar .category .num {
        padding: 12px 6px;
        font-size: 0.85rem;
    }
    .page-sidebar .category .category-name {
        font-size: 0.85rem;
        padding: 12px 18px 12px 26px;
    }
}

@media (max-width: 1300px) {
    .page-sidebar .category .num {
        padding: 8px 3px;
        font-size: 0.75rem;
    }
    .page-sidebar .category .category-name {
        font-size: 0.75rem;
        padding: 8px 14px 8px 20px;
    }
}

.page-sidebar .category.active .category-name,
.page-sidebar .category.active .num {
    background: #00affb;
    color: #fff;
}
.page-sidebar .category:hover .num {
    background: #00affb;
    color: #fff;
}
.page-sidebar .category:hover .category-name {
    clip-path: polygon(7% 0%, 100% 0, 100% 100%, 0 100%);
    background: #0178cf;
    color: #fff;
}
.page-sidebar label.search {
    width: 100%;
    position: relative;
}
.page-sidebar .search input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    border: 1px solid #aaa;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
}
.page-sidebar .search button {
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #444;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.page-sidebar .article {
    width: 100%;
    margin: 20px auto;
    padding: 0;
    padding-bottom: 4%;
    border-bottom: 1px solid #dfdfdf;
}
.page-sidebar .article:nth-of-type(3) {
    border-bottom: 0;
}
.page-sidebar .article a {
    text-decoration: none;
}
.page-sidebar .article a .date {
    color: #777;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}
.page-sidebar .article a .title {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
}

.page-content .content-table table {
    width: 100%;
    padding: 0;
    border: 0;
    border-spacing: 0;
    position: relative;
}
.page-content .content-table table tr td {
    padding: 10px 14px;
    box-sizing: border-box;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    transition: 0.2s;
    height: 50px;
}
.page-content .content-table table tr td a {
    display: inline-block;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 45px;
    width: 100%;
    height: 100%;
    line-height: 30px;
}
.page-content .content-table.small-table table tr td {
    height: inherit;
    text-transform: inherit;
}
.page-content .content-table h3 {
    color: #004A90;
}
.page-content .content-table.small-table table td:first-of-type {
    padding-left: 25px !important;
    padding-right: 25px !important;
}
.page-content .content-table table tr td a {
    color: #000;
}
.page-content .content-table table tr:hover td a {
    color: #fff;
}
.page-content .content-table table tr td a:hover {
    text-decoration: none;
    color: #fff;
}
.page-content .content-table table td img {
    width: 50px;
    height: 50px !important;
    display: block;
    object-fit: cover;
    object-position: 50% 25%;
}
.page-content .content-table.small-table table tr td img {
    display: inline-block;
    width: 35px;
    height: auto !important;
    margin-right: 7px;
}
.page-content .content-table.small-table table tr td a {
    width: auto;
}
.page-content .content-table.small-table table tr td a:hover {
    color: #000;
    text-decoration: underline;
}
.page-content .content-table table td .number {
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    box-sizing: border-box;
    margin-right: 10px;
}
.page-content .content-table table td .wins {
    background: #dfdfdf;
    border-radius: 10px;
    padding: 6px 12px;
    box-sizing: border-box;
    transition: 0.2s;
}
.page-content .content-table table tr td:first-of-type {
    padding: 0;
}
.page-content .content-table table tr:hover {
    -webkit-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
    box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
}
.page-content .content-table table tr:hover td {
    background: #0178cf;
    border-bottom: 1px solid #0178cf;
    color: #fff;
}
.page-content .content-table.small-table table tr:hover td a {
    color: #000;
}
.page-content .content-table.small-table table tr:hover {
    -webkit-box-shadow: 2px 5px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 2px 5px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 2px 5px 5px 0px rgba(0,0,0,0.2);
}
.page-content .content-table.small-table table tr:hover td {
    background: #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    color: #222;
}
.page-content .gray-wrapper .content-table.small-table table tr:hover td {
    background: rgba(0, 175, 251, 0.3);
    border-bottom: 1px solid rgba(0, 175, 251, 0.3);
    color: #222;
}
.page-content .content-table table tr:hover td .wins {
    background: #00affb;
    color: #fff;
}
.page-content .classic-table table {
    width: 100%;
    padding: 0;
    border: 0;
    border-spacing: 0;
    position: relative;
}
.page-content .classic-table table tr td {
    padding: 18px 14px;
    box-sizing: border-box;
    font-size: 1rem;
    border-bottom: 1px solid #fff;
    position: relative;
}
.page-content .club-color {
    width: 65px;
    padding: 5px 0;
    box-sizing: border-box;
    margin: 0 auto;
    margin-right: 10px;
    display: inline-block;
}
.page-content .club-color.red {
    background: #E3161B;
}
.page-content .club-color.blue {
    background: #004A90;
}

.player-flag {
    width: 25px !important;
    height: auto !important;
    max-width: 25px !important;
    max-height: 25px !important;
    display: inline-block;
    position: relative;
    top: 3px;
    margin-right: 5px;
}
.detail-flag img {
    max-width: 50px !important;
    height: auto !important;
    display: block;
    margin-top: 10px;
}


@media (min-width: 1101px) {
    .mobile-header {
        display: none;
    }
    .mobile-nav {
        display: none;
    }
}


@media (max-width: 1100px) {
    header {
        display: none;
    }

    .mobile-header button .hamburger-inner,
    .mobile-header button .hamburger-inner:before,
    .mobile-header button .hamburger-inner:after {
        background-color: #fff;
    }

    .mobile-header button.is-active .hamburger-inner,
    .mobile-header button.is-active .hamburger-inner:before,
    .mobile-header button.is-active .hamburger-inner:after {
        background-color: #fff;
    }

    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0 auto;
        background: #fff;
        -webkit-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
        -moz-box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
        box-shadow: 2px 5px 10px 0px rgba(0,0,0,0.4);
        z-index: 1000;
    }
    .mobile-header .header-wrapper {
        display: flex;
        gap: 2%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0;
        position: relative;
    }
    .mobile-header .header-wrapper .header-col {
        padding: 12px 5%;
        box-sizing: border-box;
    }
    .mobile-header .header-wrapper .header-col.main-logo {
        width: 60%;
        flex: 0 1 calc(60%);
        margin: 0;
    }
    .mobile-header .header-wrapper .header-col.main-logo a {
        text-decoration: none;
    }
    .mobile-header .header-wrapper .header-col.main-logo img {
        height: 80px;
        width: auto;
    }
    .mobile-header .header-wrapper .header-col.nav-button {
        width: 38%;
        flex: 0 1 calc(38%);
        background: #004A90;
        margin: 0 auto;
        position: relative;
        clip-path: polygon(15% 0%, 100% 0, 100% 100%, 0 100%);
        text-align: right;
    }
    .mobile-header .header-wrapper .header-col.nav-button button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15%;
    }

    .mobile-nav {
        width: 100%;
        height: 100vh;
        position: fixed;
        overflow-y: scroll;
        top: 0;
        right: -105%;
        transition: 0.75s;
        background: #004A90;
        text-align: center;
        padding: 120px 12.5% 80px 10%;
        box-sizing: border-box;
        z-index: 999;
        color: #fff;
        font-size: 0.75rem;
    }
    .mobile-nav.expanded {
        right: 0;
    }
    .mobile-nav img {
        height: 120px;
        width: auto;
    }
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 25px auto 40px auto;
    }
    .mobile-nav ul li {
        display: block;
        margin: 22px auto;
    }
    .mobile-nav ul li a {
        display: block;
        padding: 6px 6px;
        box-sizing: border-box;
        font-size: 1.25rem;
        text-transform: uppercase;
        text-decoration: none;
        color: #fff;
    }
    .mobile-nav ul li .mobile-subnav li a {
        font-size: 0.8rem;
        color: #ccc;
    }


    #main {
        padding-top: 40px;
    }

    #main .Main--slider-slide {
        width: 100%;
        height: 100%;
        background: rgba(20, 93, 162, 0.65);
        clip-path: none;
        text-align: center;
    }
    #main .Main--slider-slide .Slide--title {
        position: absolute;
        top: 42%;
        left: 0;
        right: 0;
        transform: translateY(-42%);
        width: 100%;
        padding: 0 10%;
        box-sizing: border-box;
        margin: 0;
    }
    #main .Main--slider-slide .Slide--title h2 {
        font-size: 1.3rem;
    }
    #main .Main--slider-slide .Slide--title h2 span {
        font-size: 2.75rem;
    }
    #main .Main--slider-slide .Slide--title .Button {
        padding: 12px 36px;
    }
    .splide__arrow svg {
        color: #fff !important;
        fill: #fff !important;
        width: 2.4rem !important;
        height: 2.4rem !important;
    }
    #main .splide__pagination {
        bottom: 28%;
        max-height: 50px;
    }

    #main .Main--recent-news {
        display: block;
    }
    #main .Main--recent-news .Main--recent-news-title {
        width: 100%;
        flex: none;
        clip-path: none;
        padding: 8px 5%;
        text-align: center;
    }
    #main .Main--recent-news .Main--recent-news-article {
        width: 100%;
        flex: none;
        text-align: center;
    }
    #main .Main--recent-news .Main--recent-news-date {
        display: block;
        margin-top: 15px;
    }
    #main .Main--recent-news .Main--recent-news-date:after {
        display: none;
        padding-left: 0;
    }
    #main .Main--recent-news .Main--recent-news-content i {
        font-size: 1.1rem;
    }
    #main .Main--recent-news .Main--recent-news-content {
        display: block;
        padding: 0;
    }
    #main .Main--recent-news .Main--recent-news-content h4 {
        font-size: 0.8rem;
        margin-left: 6px;
    }


    .Next-match--field {
        width: 100%;
        max-height: 1600px;
        background: url('../../img/bg_hriste_mobile.png') no-repeat center center;
        background-size: cover;
        gap: 4%;
        display: block;
        text-align: center;
    }
    .Next-match--field .Next-match--team {
        width: 100%;
        flex: none;
    }
    .Next-match--field .Next-match--team .Team {
        margin: 0;
    }
    .Next-match--field .Next-match--team .Team .Team--badge img {
        max-width: 65px;
    }
    .Next-match--field .Next-match--team .Team .Team--name {
        font-size: 1.1rem;
        margin-top: 5px;
    }
    .Next-match--field .Next-match--info {
        width: 100%;
        flex: none;
        margin: 60px auto 50px auto;
    }
    .Next-match--field .Next-match--info .Match--venue,
    .Next-match--field .Next-match--info .Match--time {
        font-size: 1.05rem;
    }
    .Next-match--field .Next-match--info .Match--date {
        font-size: 1.5rem;
    }
    .Next-match--field .Next-match--team.Team--away {
        text-align: center;
    }

    #badmintonTv h2 {
        font-size: 1.65rem;
    }
    .Tv--slider-header .Tv--slider-post {
        width: 100%;
        flex: 0 1 calc(100%);
        clip-path: none;
        text-align: center;
    }
    .Tv--slider-header .Tv--slider-title h4 {
        margin: 10px;
        font-size: 1.2rem;
        text-align: center;
    }
    .Tv--slider-header .Tv--slider-date {
        text-align: center;
        font-size: 0.9rem;
    }
    .Tv--slider-header .Tv--slider-url {
        display: none;
        clip-path: none;
    }
    .splide__arrow svg {
        color: #004A90 !important;
        fill: #004A90 !important;
    }

    .Shop--content {
        display: block;
        padding: 30px 7.5%;
    }
    .Shop--content .Shop--logo,
    .Shop--content .Shop--text,
    .Shop--content .Shop--button {
        width: 100%;
        flex: none;
        text-align: center;
        margin-bottom: 20px;
    }
    .Shop--content .Shop--logo img {
        max-width: 175px;
        height: auto;
    }
    .Shop--content .Shop--text {
        font-size: 1.25rem;
        font-weight: 500;
    }
    .Shop--content .Shop--button {
        margin-top: 45px;
    }

    .Sponsors--splide .splide__arrow--prev {
        left: 0;
    }
    .Sponsors--splide .splide__arrow--next {
        right: 0;
    }

    .Footer--wrapper {
        display: block;
    }
    .Footer--wrapper .Footer--company-info {
        width: 100%;
        flex: 0 1 calc(100%);
        clip-path: none;
        padding: 5%;
    }
    .Footer--wrapper .Footer--links {
        width: 100%;
    }
    .Footer--links .Footer--links-wrapper {
        display: block;
    }
    .Footer--links .Footer--links-wrapper .Footer--news {
        width: 100%;
        flex: 0 1 calc(100%);
        text-align: center;
        padding: 3% 7.5%;
        box-sizing: border-box;
    }
    .Footer--links .Footer--links-wrapper .Footer--feed {
        width: 100%;
        flex: 0 1 calc(100%);
        padding: 3% 7.5%;
        box-sizing: border-box;
    }
    .Footer--links .Footer--links-wrapper .Footer--feed h3 {
        text-align: center;
    }

    .Footer-nav {
        display: none;
    }

    .Footer--copyright {
        display: block;
        text-align: center;
    }
    .Footer--copyright .Footer--copyright-left {
        width: 100%;
        margin-top: 10px;
    }
    .Footer--copyright .Footer--copyright-right {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 10px;
        text-align: center;
    }


    .page-header,
    .player-header {
        display: block;
        padding: 110px 0 0 0;
        margin-bottom: 30px;
    }
    .page-header .page-name,
    .player-header .player-name {
        padding: 50px 7.5% 35px 7.5%;
        width: 100%;
    }
    .page-header .page-pic,
    .player-header .player-pic {
        width: 100%;
        min-height: 160px;
        clip-path: none;
    }
    .page-header .page-name .page-nav,
    .player-header .player-name .page-nav {
        font-size: 0.85rem;
    }
    .page-header .page-name h1,
    .player-header .player-name h1 {
        font-size: 1.8rem;
    }
    .page-header .page-pic iframe {
        min-height: 160px;
    }

    .page-wrapper {
        flex-wrap: wrap;
    }
    .page-content {
        width: 100%;
        flex: 0 1 calc(100%);
    }
    .page-content .col-wrapper .col-3.news-col {
        width: 100%;
        flex: 0 1 calc(100%);
    }

    .page-sidebar {
        width: 100%;
        flex: 0 1 calc(100%);
        margin-top: 30px;
    }

    .page-content .col-wrapper {
        flex-wrap: wrap;
    }
    .page-content .col-wrapper .col-3 {
        width: 100%;
        flex: 0 1 calc(100%);
    }
    .page-content .col-wrapper .col-2 {
        width: 100%;
        flex: 0 1 calc(100%);
    }
    .page-content h2 {
        font-size: 1.5rem;
    }
    .club-logo {
        display: none;
    }

    .content-table {
        width: auto;
        overflow-x: auto;
    }
    .content-table table {
        min-width: 700px;
    }

    .player-content .player-summary {
        display: block;
    }
    .player-content .player-summary .player-info {
        width: 100%;
    }
    .player-content .player-summary .player-summary-info {
        width: 100%;
        clip-path: none;
        margin-top: 30px;
    }
    .page-content p {
        text-align: left;
    }
    .page-content .col-wrapper .col-2-3 {
        width: 100%;
        flex: 0 1 calc(100%);
    }

    .page-content .partner {
        width: 25%;
        flex: 0 1 calc(25%);
    }

    .mobile-nav-search {
        margin: 35px auto;
        position: relative;
    }
    .mobile-nav-search button {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        background: transparent;
        color: #fff;
        cursor: pointer;
        border: 0;
        font-size: 1rem;
        transition: 0.2s;
    }
    .mobile-nav-search button:hover {
        color: #fff;
    }
    .mobile-nav-search input[type='text'] {
        padding: 10px 32px 10px 0;
        border: 0;
        border-bottom: 1px solid #fff;
        background: transparent;
        font-size: 0.85rem;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        width: 82%;
        outline: none;
    }

    .page-sidebar .category .num {
        padding: 12px 6px;
        font-size: 0.85rem;
    }
    .page-sidebar .category .category-name {
        font-size: 0.85rem;
        padding: 12px 18px 12px 24px;
    }


    .mobile-trophies {
        width: 95%;
        padding: 0;
        box-sizing: border-box;
        text-align: center;
        margin: 20px auto 0 auto;
    }
    .mobile-trophy {
        display: inline-block;
        margin: 6px;
        padding: 0;
        text-align: center;
    }
    .mobile-trophy-icon {
        color: #e9cb12;
        font-size: 1.2rem;
        transition: 0.2s;
        padding: 0;
    }
    .mobile-trophy-year {
        color: #eee;
        font-size: 0.6rem;
        padding: 0;
    }
}