@font-face {
    font-family: "Candara";
    src: url("../fonts/Candara_Bold.ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Impact";
    src: url("../fonts/impact.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body{
    margin: 0;
	overflow-x: hidden;
}

html {
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
    color: #262223;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.05em;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

p,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.page-header{
    position: relative;
    background-color: #262223;
    margin-bottom: 30px;
}
.page-header::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    bottom: 0;
}
.header-achievement{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px;
    gap: 10px;
}
.navigation-list{
    background: #262223;
    display: flex;
    align-items: flex-start;
    border: 5px solid #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    padding: 30px 50px;
    gap: 40px;
}

.navigation-list__item-link{
    text-transform: uppercase;
    color: #FFFFFF;
}

.social-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.social-list__item{
    width: 40px;
    height: 40px;
    background: #262223;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.social-list__item-link{
    display: flex;
}

.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header__wrapper{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.site-logo{
    display: flex;
    align-items: flex-end;
}

.site-logo__text{
    font-family: 'Candara';
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    min-width: 97px;
}

.site-logo__text--brown{
    color: #262223;
}

.page-header__container{
    width: 100%;
}

.site-logo__title{
    margin-bottom: 31px;
}

.page-footer{
    background-color: #262223;
}

.page-footer__wrapper{
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-navigation{
    padding: 0;
    border: none;
    box-shadow: none;
}

.club-news__wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.club-news__item{
    position: relative;
    height: 100%;
}

.club-news__item:first-child{
    grid-row: 1/3;
    grid-column: 1/3;
    height: auto;
}

.club-news__item-text{
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.club-news__item-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.31%, #000000 100%);
    bottom: 0;
}

.section{
    margin-bottom: 30px;
}

.page-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    text-transform: uppercase;
    color: #262223;
    text-align: center;
    margin-bottom: 15px;
}

.tabs-title__item{
    font-size: 16px;
    line-height: 24px;
    color: #262223;
    opacity: 0.6;
    text-transform: uppercase;
    cursor: pointer;
}
.tabs-title__item.active{
    opacity: 1;
}

.tabs-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.club-matches-tabs__tab{
    display: none;
}

.club-matches-tabs__tab.active{
    display: block;
}

.matches-slider-item{
    padding-top: 15px;
    padding-bottom: 15px;
}

.matches-slider-item__wrapper{
    background: #FFFFFF;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.matches-slider-item__header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262223;
    padding: 13px 0;
    margin-bottom: 20px;
}

.matches-slider-item__header-text{
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.matches-slider-item__main-date{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 17px;
}

.matches-slider-item__main-date-text{
    color: #262223;
    opacity: 0.6;
}

.matches-teams__item-img{
    max-width: 76px;
    max-height: 55px;
}

.matches-teams__item-img img{
    width: 100%;
    height: 100%;
    max-height: 55px;
    object-fit: contain;
}

.matches-teams{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.matches-slider-item__main{
    padding: 0 23px;
    padding-bottom: 31px;
}

.matches-slider-item__main-count-title{
    font-weight: 700;
font-size: 40px;
line-height: 59px;
}

.matches-slider-item__main-count{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.matches-teams__item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.slick-slide {
    margin: 0 7px;
}

.slick-list {
    margin: 0 -7px;
}

.club-matches__slider .slick-arrow,
.club-matches__slider_2 .slick-arrow,
.club-video__slider .slick-arrow,
.club-matches__slider_mob .slick-arrow,
.club-video__slider_mob .slick-arrow,
.socials-kid-slider-mob .slick-arrow,
.socials-kid-slider .slick-arrow{
    position: absolute;
    color: transparent;
    background: #FFFFFF;
    border: 5px solid #262223;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 0;
    left: 30px;
}

.club-matches__slider .slick-arrow::before,
.club-matches__slider_2 .slick-arrow::before,
.club-video__slider .slick-arrow::before,
.club-matches__slider_mob .slick-arrow::before,
.club-video__slider_mob .slick-arrow::before,
.socials-kid-slider-mob .slick-arrow::before,
.socials-kid-slider .slick-arrow::before{
    position: absolute;
    content: "";
    background-image: url("../img/arrow.png");
    width: 74px;
    height: 14px;
    background-size: cover;
    top: calc(50% - 7px);
    left: 17px;
}


.club-matches__slider .slick-arrow.slick-next,
.club-matches__slider_2 .slick-arrow.slick-next,
.club-video__slider .slick-arrow.slick-next,
.club-matches__slider_mob .slick-arrow.slick-next,
.club-video__slider_mob .slick-arrow.slick-next,
.socials-kid-slider-mob .slick-arrow.slick-next,
.socials-kid-slider .slick-arrow.slick-next{
    width: 44px;
    height: 44px;
    top: -50px;
    left: 76px;
}

.club-matches__slider .slick-arrow.slick-prev,
.club-matches__slider_2 .slick-arrow.slick-prev,
.club-matches__slider_mob .slick-arrow.slick-prev,
.club-video__slider .slick-arrow.slick-prev,
.club-video__slider_mob .slick-arrow.slick-prev,
.socials-kid-slider .slick-arrow.slick-prev,
.socials-kid-slider-mob .slick-arrow.slick-prev{
    top: -66px;
    left: 55px;
}

.club-matches__slider .slick-prev.slick-arrow::before,
.club-matches__slider_2 .slick-prev.slick-arrow::before,
.club-matches__slider_mob .slick-prev.slick-arrow::before,
.club-video__slider .slick-prev.slick-arrow::before,
.club-video__slider_mob .slick-prev.slick-arrow::before,
.socials-kid-slider .slick-prev.slick-arrow::before{
    transform: rotate(180deg);
    right: 10px;
    left: auto;
}

.tournament-tabs{
    width: 100%;
}

.team-table{
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}
.team-table__head{
    background-color: #262223;
}
.team-table__head td{
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 13px 0;
    text-align: center;
}
.team-table__head .team-table__head-first{
    padding-left: 55px;
    text-align: left;
}
.team-table__head .team-table__head-last{
    padding-right: 55px;
    text-align: end;
}
.team-columnt{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.team-columnt__number{
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}

.team-columnt__img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-columnt{
    padding-left: 55px;
}

.team-table__body td{
    padding: 15px 0;
    text-align: center;
}

.team-table__body .team-table__body-item-last{
    padding-right: 55px;
    text-align: end;
}

.tournament-tabs__tab{
    display: none;
}

.tournament-tabs__tab.active{
    display: block;
}

.tournament-table__wrapper{
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tournament-table__main-calendar{
    margin-top: 122px;
    background-color: #262223;
    padding: 18px 26px 30px 26px;
	padding-top: 0px;
    padding-bottom: 10px;
}

.tournament-table__main-calendar-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.button{
    display: inline-block;
    text-transform: uppercase;
    color: #262223;
    padding: 20px 30px;
    border: 5px solid #262223;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

.tournament-tabs__tab-button{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-video__slider-img img{
    width: 282px;
    height: 176px;
    object-fit: cover;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.5))
}

.club-video__slider-img{
    position: relative;
    margin-bottom: 12px;
}

.play-image{
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #262223;
    border: 5px solid #FFFFFF;
}

.club-partners{
    background-image: url("../img/photo_2022.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title--white{
    color: #FFFFFF;
    margin-bottom: 60px;
}

.partners-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 65px;
    row-gap: 35px;
    padding: 0 60px;
}

.club-partners__wrapper{
    padding-top: 113px;
	padding-bottom: 60px;
}

.unior-club{
    padding-top: 46px;
    padding-bottom: 82px;
}

.unior-club__wrapper{
    background-image: url("../img/photo_2022-11.png");
    height: 330px;
    background-repeat: no-repeat;
    background-size: cover;
}
.unior-club__wrapper-mob{
    background-image: url("../img/photo_2022-11.png");
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
}
.unior-club__content{
    position: relative;
}

.unior-club__circle{
    position: absolute;
    border: 10px solid #262223;
    border-radius: 50%;
    overflow: hidden;
}

.unior-club__circle--first{
    width: 384px;
    height: 384px;
    left: 5px;
    top: -40px;
}

.unior-club__circle--second{
    width: 320px;
    height: 320px;
    left: 300px;
    top: 67px;
}

.unior-club__title-text{
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 4px 4px 5px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-size: 70px;
    line-height: 119px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.unior-club__title-text--orange{
    font-family: 'Impact';
    font-style: normal;
    font-weight: 400;
    font-size: 180px;
    line-height: 220px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #F3821A;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 4px 4px 5px rgba(0, 0, 0, 0.5);
}

.unior-club__content-text{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.unior-club__title-block{
    width: 559px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 1;
}

.unior-club__title-block .button--white{
    margin: auto 0;
}

.button--white{
    border: 5px solid #FFFFFF;
    filter: drop-shadow(0px 0px 16px rgba(255, 255, 255, 0.5));
    color: #FFFFFF;
}

.page-title--single-page{
    text-align: left;
}

.page-text{
    margin-bottom: 1em;
}

.news-page__list-item{
    display: flex;
    gap: 50px;
}

.news-page__list-item-title{
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-page__list-item-text{
    margin-bottom: 25px;
}

.news-page__list-item-date{
    opacity: 0.4;
}

.news-page__list-item-main{
    max-width: 345px;
}

.news-page__list-item-img{
    overflow: hidden;
    max-height: 272px;
    max-width: 390px;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.5));
}

.news-page__list-item-img img{
    width: 100%;
    height: 100%;
    max-height: 272px;
    max-width: 390px;
	min-height: 272px;
    min-width: 390px;
    object-fit: cover;
}

.news-filter__title{
    font-size: 16px;
    line-height: 24px;
    opacity: 0.5;
    text-transform: uppercase;
}

.news-filter{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-filter-type{
    position: relative;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 0 10px;
}

.news-filter-type::before,
.news-filter-type::after{
    position: absolute;
    content: "";
    background-image: url("../img/arrow5.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 9px;
    height: 16px;
}
.news-filter-type::before{
    left: 0;
    top: 4px;
}

.news-filter-type::after{
    transform: rotate(180deg);
    right: 0;
    bottom: 4px;
}

.news-filter__sort{
    display: flex;
    justify-content: space-between;
}

.news-page__wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.news-page__list{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member__img{
    position: relative;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.5));
    margin-bottom: 15px;
}

.team-member__img img{
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member__number{
    position: absolute;
    font-weight: 600;
    font-size: 40px;
    line-height: 59px;
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 5px solid #262223;
    bottom: 0;
    right: 0;
    background: #ffffff;
    text-align: center;
}
.team-members{
    margin-bottom: 40px;
}
.team-members__title{
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.team-member{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.team-member__name{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.team-member__date{
    font-size: 15px;
    line-height: 22px;
    opacity: 0.6;
}

.team-members__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 40px;
}

.single-member__item .team-member__img{
    width: 470px;
    height: 470px;
}
.single-member__item .team-member__img img{
    width: 470px;
    height: 470px;
}

.single-member__item .team-member__number{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    font-weight: 600;
    font-size: 50px;
    line-height: 74px;
}

.single-member__wrapepr{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.single-member__info-name{
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.single-member__info-position{
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
.single-member__info{
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.single-member__info-params{
    display: flex;
    gap: 56px;
}

.params{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.params__sub-text{
    font-size: 16px;
    line-height: 24px;
    color: #262223;
    opacity: 0.3;
}

.params__text{
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
}

.single-member__info-place{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.tournament-main{
    position: relative;
    background: #262223;
    height: 547px;
    padding-top: 50px;
    margin-bottom: 120px;
}

.tournament-info__text{
    font-weight: 700;
    font-size: 22px;
    line-height: 33px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.tournament-info__sub-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
    opacity: 0.6;
}

.tournament-main__date{
    display: flex;
    gap: 30px;
}

.tournament-main__text{
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.tournament-main__title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.tournament-main__table-count-text{
    font-weight: 700;
    font-size: 100px;
    line-height: 148px;
    color: #FFFFFF;
}

.tournament-main__table{
    display: flex;
    justify-content: space-around;
}

.tournament-main__table-team{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tournament-main__table-team img{
    width: auto;
    height: 140px;
}

.tournament-main__sub-img{
    width: 100%;
    position: absolute;
    bottom: 0;
    background-image: url("../img/people2.png");
    height: 131px;
    background-repeat: no-repeat;
    background-size: cover;
}

.tournament-info-tabs__tab{
    display: none;
}

.tournament-info-tabs__tab.active{
    display: block;
}

.tournament-info-tabs__title{
    justify-content: flex-start;
}

.tournament-info-tabs__info{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.tournament-info-tabs__info-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tournament-info-tabs__info-text{
    font-size: 16px;
    line-height: 24px;
    opacity: 0.3;
}

.tournament-info-tabs__info-sub-text{
    font-size: 16px;
    line-height: 24px;
}

.kids-teams__wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 40px;
    grid-column-gap: 15px;
}

.kids-teams__item-img{
    width: 282px;
    height: 176px;
    object-fit: cover;
    margin-bottom: 12px;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.5));
}

.kids-teams__item-text{
    display: flex;
    gap: 30px;
}

.kids-teams__item-title{
    font-size: 15px;
    line-height: 22px;
}

.kids-teams__item-year{
    font-size: 15px;
    line-height: 22px;
    opacity: 0.6;
}

.kids-team-tabs__title{
    justify-content: flex-start;
}

.kids-team-tabs__tab{
    display: none;
}

.kids-team-tabs__tab.active{
    display: block;
}

.page-title.page-title--single-page span{
    opacity: 0.6;
}

.kids-img__wrapper{
    width: 100%;
    overflow: hidden;
    max-height: 600px;
}

.kids-img__wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.socials-kids-tabs__item{
    display: flex;
    align-items: center;
    gap: 5px;
}

.socials-kids-tabs__tab{
    display: none;
}

.socials-kids-tabs__tab.active{
    display: block;
}

.socials-kid-slider__item-img{
    width: 282px;
    height: 282px;
    overflow: hidden;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.5));
    margin-bottom: 15px;
}

.socials-kid-slider__item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 282px;
    max-height: 282px;
}

.socials-kid-slider__item-text{
    max-width: 282px;
    font-size: 15px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.page-nav__mobile-menu {
    display:none;
}

.mob {
    display:none;
}

.navigation-list__item-link:hover {
    color: #F3821A;
}
.social-list__item:hover {
    border: 5px solid #F3821A;
}
.social-list__item:hover .iconh{
    color: #F3821A!important;
}
.filterA{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    bottom: 0;
}
.news_link:hover .filterA{
    background: rgba(0, 0, 0, 0.3);
}
.club-news__item-text {
   transition: 0.8s; /* Время эффекта */
}
.news_link:hover .club-news__item-text{
    transform: scale(1.07);
}
.slick-arrow {
    cursor:pointer;
}
.slick-arrow:hover {
   background: #F3821A;
}
.active_tabl {
    background: rgba(38, 34, 35, 0.1);
}
.button:hover {
    background: #262223;
    color:#fff;
}
.video_link:hover .play-image{
    background: #F3821A;
}

.menu-close {
	display: block;
	width: 28px;
	height: 28px;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 100;
}
.menu-popup {
	background: #262223;
	display: none;
	position: absolute;
	right: -110%;
	top: 0;
	width: 200px;
	box-sizing: border-box;
	padding: 30px;
	z-index: 9999;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.menu-popup ul {
	margin: 0;
	padding: 0;
}

.news-page__list-item-title{
    transition: 0.8s; /* Время эффекта */
}
.news_link_t:hover .news-page__list-item-title{
    transform: scale(1.07);
}
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    width: 120px;
    top: 100%;
    left: 50%;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
.single-member-button {

}
.single-b {
    padding: 10px 50px;
}
.news_img {
    width:100%;
}

.unior-club__circle--first-kids{
    width: 384px;
    height: 384px;
    left: 5px;
    top: -40px;
}
.unior-club__circle--second-kids {
    width: 280px;
    height: 280px;
    left: 250px;
    top: 120px;
}
.unior-club__circle--third-kids {
    width: 200px;
    height: 200px;
    left: 340px;
    top: 20px;
}
.unior-club__circle--four-kids {
    width: 120px;
    height: 120px;
    left: 480px;
    top: 150px;
}
.flex-wraper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 10px;
}
.text-baner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.unior-text {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 4px 4px 5px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    font-size: 22px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.unior-text-orange {
    font-weight: 700;
    font-size: 40px;
    line-height: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #F3821A;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 4px 4px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}
.but-mob {
    padding: 5px 10px;
}
.unior-club__circle-mob {
    border: 10px solid #262223;
    border-radius: 50%;
    overflow: hidden;
    width: 180px;
    height: 180px;
}
.unior-club__circle-mob img{
    width: 180px;
    height: 180px;
}
.slider-baner {
    width:180px!important;
}
.yt-video {
	width: 282px;
	height: 176px;
	object-fit: cover;
	filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.5));
}
.deep {
	background: #262223;
	display: none;
	position: absolute;
	box-sizing: border-box;
	padding: 10px;
	z-index: 9999;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	left: -10px;
	border-radius: 0px 0px 5px 5px;
	width: 200px;
}
.deep-footer {
	background: #262223;
	display: none;
	position: absolute;
	box-sizing: border-box;
	padding: 10px;
	z-index: 9999;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	left: -10px;
	border-radius: 0px 0px 5px 5px;
	width: 200px;
	bottom: 20px;
}
.navigation-list__item:hover .deep-footer {
	display:block;
}
.deep-mob {
	display: none;
	font-size:12px!important;
	padding-left:10px!important;
}
.navigation-list__item:hover .deep-mob {
	display:block;
}
.navigation-list__item {
	position:relative;
	cursor:pointer;
}
.navigation-list__item:hover .deep {
	display:block;
}
.content-single h2{
	margin-bottom: 15px;
}
.content-single p{
	margin-bottom: 1em;
}
.content-single ul{
	list-style: disc;
	margin-left: 20px;
}
.slider-single {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.slider-single img {
	width: 100%;
	height: 100%;
	max-height: 272px;
	max-width: 390px;
	min-height: 272px;
	min-width: 390px;
	object-fit: cover;
	border-radius: 15px;
}

.dates{
	position: relative;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
}
.date-arr-up {
	width: 9px;
	height: 16px;
	transform: rotate(180deg);
	cursor:pointer;
}
.date-arr-down {
	width: 9px;
	height: 16px;
	cursor:pointer;
}
.date-arr-up-m {
	width: 9px;
	height: 16px;
	transform: rotate(180deg);
	cursor:pointer;
}
.date-arr-down-m {
	width: 9px;
	height: 16px;
	cursor:pointer;
}
.slc-date{
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
	background:none;
	background: transparent;
	border:0;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif!important;
	text-align: center;
}
.button-date {
	font-family: 'Oswald', sans-serif;
	color: #262223;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.05em;
	border:0px;
	background:none;
	cursor:pointer;
}
.z-0 {
	z-index: 0!important;
}
.slick-dots {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 1rem 0;

	list-style-type: none;

}
.slick-dots li {
	margin: 0 0.25rem;
}

.slick-dots button{
	display: block;
	width: 1rem;
	height: 1rem;
	padding: 0;
	border: none;
	border-radius: 100%;
	background-color: #262223;
	text-indent: -9999px;
}

.slick-dots li.slick-active button {
	background-color: #F3821A;
}
.prot_wrap {
	display: flex;
	align-items: center;
}
.prot_wrap a{
	margin-left: 10px;
}

.button_feed{
    display: inline-block;
    text-transform: uppercase;
    color: #262223;
    padding: 10px 20px;
	font-weight: 700;
    border: 5px solid #262223;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
	background:#fff;
	cursor:pointer;

}

.button_feed:hover {
    background: #262223;
    color:#fff;
}


.obratnuj-zvonok{
	width: 100%;
	max-width: 350px;
}
.form-zvonok{
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 0 20px;
	box-sizing: border-box;
}
.form-zvonok div{
	padding: 10px 0;
}
.bot-send-mail{
	box-sizing: border-box;
	width: 100%;
}
.form-zvonok label,.form-zvonok input{
	display: block;
	width: 100%;
	box-sizing: border-box;
}
.form-zvonok label{
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 20px;
}
.form-zvonok input{
	padding: 10px 15px;
	margin-top: 10px;
}
.form-zvonok textarea{
	width: 100%;
	min-height: 200px;
}

.form-zvonok label span{
	color: red;
}
.form-zvonok .bot-send-mail{
	padding: 15px;
	margin-top: 10px;
	background: none;
	border: none;
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	background-color: #009b97;
	cursor: pointer;
	border: 3px #009b97 solid;
	border-radius: 5px;
}
.form-zvonok .bot-send-mail:hover{
	color: #009b97;
	background-color: #fff;
}
.nav_block_news {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.mob_nav {
	display:none;
}
.mob_view {
	 display:none;
}

.tournament-main__table-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color:#fff;
}
.mob-flex {
	display: none;
}
@media screen and (max-width: 768px) {
	.mob_nav {
		display:flex;
	}
	.tournament-table__wrapper
	{
	  flex-direction: column;
	  align-items: center;
	}
	.slider-single img{
		max-height: 240px;
		max-width: 350px;
		min-height: 240px;
		min-width: 350px;
	}
	.slider-single {
		grid-template-columns: repeat(1, 1fr);
	}
	.news-page__list-item-img img {
	  width: 100%;
	  height: 100%;
	  max-height: 272px;
	  max-width: 390px;
	  object-fit: cover;
	}
    .single-member-button {
        margin-top:20px;
    }
    .container {
        max-width: 400px;
        padding: 0 10px;
    }
    .navigation {
        display:none;
    }
    .site-logo img {
        height:90px;
    }
    .header-achievement__img {
        height:20px;
    }
    .page-header__wrapper {
        align-items: flex-start;
        gap: 0px;
    }
    .page-header__container {
        display:flex;
        flex-direction:row;
        justify-content: space-between;
    }
    .header-achievement {
        gap:5px;
        padding-top: 14px;
        justify-content: flex-start;
        padding-top: 8px;
    }
    .page-nav__mobile-menu {
        display:flex;
    }
    .navigation-list{
        flex-direction: column;
        gap: 0;
    }
    .page-footer__wrapper{
        justify-content: space-around;
        padding: 10px;
    }
    .unior-club {
        display:none;
    }
    .site-logo__text {
        font-size:12px;
    }
    .club-partners {
        height:auto;
    }
    .partners-list {
        row-gap: 15px;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .partners-list__item img{
          max-width: 300px;
    }
    .club-news__wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .club-news__item:first-child {
        grid-row: 1/1;
        grid-column: 1/1;
    }
    .page-header {
        margin-bottom: 10px;
    }
    .section {
        margin-bottom: 20px;
    }

    .slick-arrow {
        display:none!important;
    }
    .club-video__slider-img img,
    .socials-kid-slider__item-img img{
        display: unset!important;
    }
    .club-video__slider-item{
        text-align:center;
    }
    .tournament-table__main-calendar {
        /*isplay:none;*/
		margin-top: 32px;
    }
	.tournament-table__main-calendar img {
		max-width:100%!important;
	}
     .mob_hide {
         display:none;
    }
	.mob_view {
         display:table-cell;
    }
    .team-table__head .team-table__head-first {
        padding-left: 10px;
    }
    .team-columnt{
        padding-left: 10px;
    }
    .team-table__head td{
        padding: 0 5px;
        font-size: 10px;
        font-weight: 400;
    }
    .team-table__head .team-table__head-last {
        padding-right: 10px;
    }
    .team-table__body .team-table__body-item-last {
        padding-right: 10px;
    }
    .team-columnt__number {
        font-size: 16px;
    }
    .team-table__body td{
        padding: 5px 0;
    }
    .team-columnt__name {
        font-size: 12px;
    }
    .meg {
        display: flex;
        padding-top:5px;
        padding-bottom:10px;
    }
    .team-columnt{
        justify-content: space-evenly;
    }
    .news-page__wrapper {
        flex-direction: column;
    }
    .news-page__list-item {
        gap: 10px;
        flex-direction: column;
    }
    .team-members__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-member__img {
        width: 140px;
        height: 140px;
    }
    .team-member__img img {
        width: 140px;
        height: 140px;
    }
    .team-member__number {
        font-size: 20px;
        line-height: 37px;
        width: 50px;
        height: 50px;
    }
    .team-member__name {
        font-size: 14px;
        text-align: center;
    }
    .tournament-main__table-team img {
        width: auto;
        height: 100px;
    }
    .tournament-main__table-count-text {
        font-size: 30px;
    }
    .tournament-info__text {
        max-width: 95%;
        font-size: 18px;
        text-align: center;
        height: 60px;
    }
    .tournament-main{
        margin-bottom: 0px;
    }
    .single-member__wrapepr {
        flex-direction: column;
    }
    .single-member__item .team-member__img img {
        width: 300px;
        height: 300px;
    }
    .single-member__item .team-member__img {
        width: 300px;
        height: 300px;
    }
    .single-member__info {
        gap: 10px;
        max-width: 80%;
    }
    .params__text {
        font-size: 18px;
        line-height: 20px;
    }
    .kids-head-wrap {
        justify-content: flex-end;
    }
    .socials-kid-slider__item {
        text-align: center;
    }
    .socials-kid-slider__item-img {
        width: auto;
        height: auto;
    }
    .socials-kid-slider__item-text{
         max-width: 100%;
    }
	.tournament-main__date {
	  display: flex;
	  gap: 10px;
	  flex-direction: column;
	  text-align: center;
	}
    .desk {
        display:none;
    }
    .mob {
        display: block;
    }
	.mob-flex {
        display: flex;
    }
}

.tournament-table__main-calendar img{
	max-width:270px;
}
