@font-face {
    font-family: 'Satoshi';
    src: url('../font/subset-Satoshi-Regular.eot');
    src: url('../font/subset-Satoshi-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/subset-Satoshi-Regular.woff2') format('woff2'),
        url('../font/subset-Satoshi-Regular.woff') format('woff'),
        url('../font/subset-Satoshi-Regular.ttf') format('truetype'),
        url('../font/subset-Satoshi-Regular.svg#Satoshi-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    list-style: none;
}

.container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    z-index: 99;
}

section {
    padding: 60px 0;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #edc453;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #014984;
}

/* header start */
header {
    background: #FFFFFF;
    position: fixed;
    width: 100%;
    z-index: 999;
}

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

.logo {
    position: relative;
}

.logo img {
    width: 160px;
    height: 100px;
}

nav ul {
    list-style: none;
    display: flex;
    /* gap: 34px; */
    height: 100%;
    align-items: center;
}


ul a {
    text-decoration: none;
}

.menu {
    position: relative;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu span {
    width: 100%;
    height: 2px;
    background: #474747;
    display: inline-block;
}

.menu span:nth-child(2) {
    width: 60%;
    transition: 0.3s all ease-in-out;
}

.menu:hover span:nth-child(2) {
    width: 100%;
}

.list-item a {
    font-size: 16px;
    font-weight: 500;
    color: #111111;
}

.list-item {
    position: relative;
    padding: 44px 17px;
}

.list-item:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

.lang.nice-select {
    border: none;
}

.lang a{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.lang.nice-select .option{
    padding: 0 !important;
}

.lang.nice-select .option a{
    padding-left: 18px;
    padding-right: 29px;
}

.lang .list {
    width: auto;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%) !important;
    border: none;
}

.lang span,
.lang a{
    color: #111111;
}

.hamburger {
    display: flex;
    /* gap: 10px; */
    align-items: center;
}

.hamburger .menu{
    margin: 0 10px;
}

.left-head {
    font-size: 30px;
    font-weight: 700;
    background: #edc453;
    background-image: linear-gradient(to right, #256fbb, #edc453);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.left-panel {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    display: flex;
    flex-direction: row;
}

.left-panel-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    width: 30%;
    background: #FFFFFF;
    height: 100vh;
    overflow-y: scroll;
}

.left-panel-nav {
    display: none;
}

.left-panel.active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.left-panel>span {
    width: 70%;
    cursor: default;
    order: 1;
}

.left-panel-main a,
.left-panel-main p,
.contact-cards a,
.contact-cards p{
    color: #111111 !important;
}

.left-panel-main .icon-div,
.contact-cards .icon-div {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #014984;
}

.left-panel-main .social-media svg path {
    fill: #014984 !important;
}

.left-panel-main .social-media svg {
    width: 30px;
    height: 30px;
}

.fun-club input{
    width: 48% !important;
}

.left-panel-main .social-media {
    display: flex;
    flex-direction: row;
    /* gap: 5px; */
    justify-content: center;
}

.left-panel-main .social-media .icon{
    padding: 0 5px;
}

.left-panel-main .icon {
    width: 30px !important;
    height: 30px !important;
}

.left-panel-main .icon a:hover {
    background: none;
}

.left-panel-main .icon a:hover svg path {
    fill: #edc453;
}

.left-panel-main small,
.left-panel-nav small {
    font-size: 18px;
    width: 100%;
    display: block;
    margin-top: 20px;
    font-family: 'Barlow', sans-serif;
    width: 100%;
    color: #014984;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 400;
}

.slider .swiper-wrapper {
    width: 100%;
    height: 100vh;
}

.icon-div svg {
    width: 60px;
    height: 60px;
}

.contacts>div {
    flex-direction: column;
    padding: 10px 0;
}

.p-0{
    padding: 0 !important;
}

.p-0 .blog-img{
    margin-bottom: 0;
    border-radius: 1rem;
    overflow: hidden;
}

.p-0 img{
    border-radius: 1rem;
}

.contacts {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}


.left-panel .f-logo {
    width: 150px;
    height: 150px;
}

.dropdown {
    position: absolute;
    width: auto;
    left: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    align-items: flex-start;
    top: 80px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease-in-out;
    min-width: 181px;
    padding: 5px 0;
}

.drop-item a {
    padding: 8.5px 0;
    display: inline-block;
}

.drop-item {
    padding: 0 11px;
}

nav li a::before {
    content: "";
    width: 0;
    position: absolute;
    bottom: -10px;
    background: #014984;
    height: 4px;
    transition: 0.3s all ease-in-out;
}

nav li a {
    position: relative;
}

nav .list-item:hover>a::before {
    width: 100%;
}

.drop-item a::before {
    bottom: 2px;
}

nav .drop-item:hover a::before {
    width: 100%;
}

/* home start */
#home-slider .mySwiper {
    max-height: 100vh;
}

#home-slider {
    padding-top: 0;
}

#home-slider img {
    height: 100%;
    object-position: top;
    width: 100%;
    object-fit: cover;
}

.slider h1 {
    font-size: 55px;
    margin-bottom: 10px;
    font-weight: 900;
    color: #014984;
    max-width: 600px;
}

.slider .container {
    position: absolute;
    width: 80%;
}

.slider .swiper-slide {
    display: flex;
    align-items: center;
}

.slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.slider p {
    margin-bottom: 50px;
    font-size: 17px;
    color: #014984;
    font-weight: 900;
}

.btn-primary {
    display: inline-flex;
    width: 220px;
    height: 70px;
    background: #014984;
    color: #FFFFFF;
    border-radius: 23rem;
    justify-content: center;
    align-items: center;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}

.btn-primary:hover {
    background: #edc453;
}

.slider .swiper-pagination .swiper-pagination-bullet {
    background: #edc453;
    width: 3vw;
    border-radius: 23rem;
    -webkit-border-radius: 23rem;
    -moz-border-radius: 23rem;
    -ms-border-radius: 23rem;
    -o-border-radius: 23rem;
    opacity: 0.8;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}

.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 6vw;
    background: #014984;
}

.slider .swiper-button-next {
    background: #014984;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    font-weight: 900;
    color: #FFFFFF;
    right: 3%;
}

.slider .swiper-button-next::after {
    display: none;
}

.slider .swiper-button-prev {
    background: #014984;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    font-weight: 900;
    color: #FFFFFF;
    left: 3%;
}

.slider .swiper-button-prev::after {
    display: none;
}

/* about start */
#about .left {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about .right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#about .container {
    display: flex;
    /* justify-content: center; */
    /* gap: 20px; */
}

#about .container .left{
    padding-right: 20px;
}

.ball {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    animation: spin 15s linear infinite;
    -webkit-animation: spin 15s linear infinite;
}

.left-ball {
    margin: -38px 0 0 -60px;
    animation: rollIn 1s linear;
    -webkit-animation: rollIn 1s linear;
    position: absolute;
    z-index: -1;
    top: 145px;
}

@keyframes rollIn {
    0% {
        transform: translate(-100%, -50%);
        -webkit-transform: translate(-100%, -50%);
        -moz-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
        -o-transform: translate(-100%, -50%);
    }

    100% {
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }
}

.girl {
    width: 100%;
    object-fit: cover;
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.about-head {
    background: #edc453;
    background-image: linear-gradient(to right, #256fbb, #edc453);
    font-size: 36px;
    font-weight: 900;
    -webkit-background-clip: text;
    color: transparent;
    width: 100%;
}

.about-text {
    font-size: 20px;
    font-weight: 300;
    margin-top: 28px;
}

.divider {
    margin: 20px 0 40px 0;
}

.paragraf-head {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    color: #014984;
}

.paragraf-info {
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 1.4rem;
    text-align: left;
}

.paragraf-img svg path {
    fill: #014984;
    transition: 0.5s all ease-in-out;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
}

.paragraf {
    display: flex;
    /* gap: 20px; */
    align-items: center;
}
.paragraf>div:first-child{
    padding-right: 20px;
}

/* .right {
    padding-top: 100px;
} */

.paragraf:hover svg path {
    fill: #edc453;
}

/* training start */
.card-head {
    font-weight: 700;
    color: white;
    font-size: 22px;
    line-height: 1.2;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    background-color: rgba(29, 29, 30, 0.336);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    border: 0.7rem solid transparent;
    border-image: linear-gradient(to right, #000000, #202020);
    border-image-slice: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    border-image: linear-gradient(to right, #014984, #edc453);
    border-image-slice: 1;
}

.training-card {
    position: relative;
}

.card-btn {
    border: 0;
    background-color: #014984;
    padding: 7px 10px;
    width: 100px;
    color: white;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-weight: 900;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    opacity: 0;
    transition: 0.3s ease;
}

.training-card:hover .card-btn {
    opacity: 1;
}

.training-card:hover .card-content {
    background-color: rgba(0, 0, 0, 0.2);
}

.training-slider .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    /* gap: 20px; */
}

.training-slider .owl-nav button{
    padding: 0 10px;
}

.training-slider .owl-nav .owl-prev,
.training-slider .owl-nav .owl-next {
    border: 2px solid #014984 !important;
    color: #014984 !important;
    border-radius: 23rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    position: relative;
}

.training-slider .owl-nav .owl-prev span,
.training-slider .owl-nav .owl-next span {
    font-size: 32px;
    font-weight: 700;
    position: absolute;
    top: 25px;
    line-height: 0;
}

.training-slider .owl-nav .owl-prev:hover,
.training-slider .owl-nav .owl-next:hover {
    color: #edc453 !important;
    border-color: #edc453 !important;
}

.block-head {
    font-size: 30px;
    font-weight: 700;
    background: #edc453;
    background-image: linear-gradient(to right, #014984, #edc453);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.block-text {
    font-size: 19px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin-bottom: 1rem;
    margin-bottom: 40px;
}

/* events start */
.card-select {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: #f5f5f5;
    cursor: pointer;
}

.card-select span {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #111111;
}

.list-select {
    width: 34px;
    height: 34px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.list:not(.lang .list) {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    width: 15px;
    height: 15px;
    background: #f5f5f5;
}

.list-select span {
    display: inline-block;
    width: 15px;
    height: 3px;
    background: #111111;
}

.card-list {
    display: flex;
    /* gap: 10px; */
}

.card-list>div:first-child{
    margin-right: 10px;
}

.event-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.event-head h3 {
    font-size: 24px;
    line-height: 1.42;
    font-weight: 400;
    margin: 0;
    color: #111111;
}

.card-select.active,
.list-select.active {
    background: #014984;
}

.card-select.active span,
.list-select.active span {
    background: #FFFFFF;
}

.event-card-main {
    width: 32%;
    margin: 0 20px 20px 0;
}
.event-card-main:nth-child(3n){
    margin: 0 0 20px 0;
}

.event-card {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    position: relative;
}

.event-card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event-card>img {
    width: 100%;
    max-height: 60%;
    object-fit: cover;
}


.card-date {
    position: absolute;
    float: left;
    text-align: center;
    background: #FFFFFF;
    padding: 10px 15px;
    width: auto;
    height: auto;
    top: 15px;
    left: 15px;
    border-radius: 4px;
    box-shadow: 5px 3px 15px rgba(0, 0, 0, 0.2);
}

.date {
    font-size: 23px;
    line-height: 23px;
    font-weight: 600;
    color: #111111;
}

.month {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 15px;
    color: #555555;
}

.event-card-head {
    font-size: 22px;
    line-height: 1.42;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-cards .blog-head{
    display: flex;
    justify-content: space-between;
}

.team-cards .item{
    max-width: 436px;
    width: 100%;
    max-height: 500px;
}
.team-cards .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    padding: 10px;
}

.event-img{
    width: 100%;
    overflow: hidden;
    margin-bottom: 6px;
    position: relative;
}
.event-img::before{
    content: "";
    position: relative;
    padding-top: 65%;
    width: 100%;
    display: block;
}
.event-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.timer {
    display: flex;
    align-items: center;
    /* gap: 10px; */
}

.timer svg{
    padding-right: 10px;
}

.timer p,
.location p {
    color: #555555;
    line-height: 1.42;
    font-size: 15px;
    font-weight: 400;
}

.timer svg,
.location svg {
    width: 20px;
    max-height: 20px;
    object-fit: cover;
    object-position: top;
}

.location {
    display: flex;
    /* gap: 10px; */
    margin: 10px 0;
    align-items: center;
}

.location svg{
    padding-right: 10px;
}

.timer svg path,
.location svg path {
    fill: #555555;
}

.sport-type {
    background: #f5f5f5;
    color: #111111;
    padding: 5px 7px;
    display: inline-block;
    line-height: 15px;
    font-weight: 400;
    font-size: 14px;
    border-radius: 4px;
}

.event-card>a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.active .event-card-main {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
}

.active .event-card {
    padding: 10px;
    flex-direction: row;
}

.active .card-date {
    display: flex;
    position: static;
    box-shadow: none;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.active .event-img{
    max-width: 50%;
    max-height: 180px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.active .event-card img {
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
}

.card-date2 {
    display: none;
}

.active .card-date2 {
    display: flex;
}

.active .date {
    font-size: 80px;
    line-height: 80px;
    font-weight: 600;
    color: #111111;
}

.active .card-date2 span {
    font-size: 30px;
}

.date-line {
    display: none;
}

.active .date-line {
    display: flex;
    font-size: 32px;
    align-items: center;
}

.active .event-card-body {
    padding: 20px;
}

.active .event-card:hover {
    border-left-width: 7px;
}

.event-block-cards {
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.active.event-block-cards {
    gap: 0;
}

/* footer start */
footer {
    background: #014984;
    padding: 60px 0;
}

.f-logo img {
    max-width: 150px;
}

.loc svg path,
.call svg path,
.mail svg path {
    fill: #FFFFFF;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.loc p,
.call a,
.mail a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.loc,
.call,
.mail {
    display: flex;
    /* gap: 10px; */
    margin-bottom: 10px;
    align-items: center;
}

.loc div,
.call div,
.mail div{
    /* margin-bottom: 10px; */
    margin-right: 10px;
}

.loc .icon-div,
.call .icon-div,
.mail .icon-div{
    margin-bottom: 10px;
}

.social-media {
    display: flex;
    /* gap: 20px; */
}

.social-media .icon{
    margin: 0 20px 0 0;
}

.social-media .icon {
    border: 1px solid #FFFFFF;
    width: 70px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.icon a:hover {
    background-color: #edc453;
}

.loc:hover svg path,
.call:hover svg path,
.mail:hover svg path {
    fill: #edc453;
}

.loc:hover p,
.call:hover a,
.mail:hover a {
    color: #edc453;
}

.col-3 {
    width: 24%;
}

.col-4 {
    width: 32%;
}

.col-5 {
    width: 40%;
}

.footer-head {
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #FFFFFF;
    padding-top: 12px;
}

.footer-text {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 25px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer form input {
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    background: #fff;
    border-radius: 23rem;
    font-size: 17px;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    padding: 1.3rem 2rem;
    color: #1a1a1a;
    width: 100%;
    display: block;
    transition: all .3s;
    border: 1px solid #014984 !important;
}

footer form input:focus {
    border: none;
    outline: none;
}

footer form button {
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    background: #fff;
    border-radius: 23rem;
    font-size: 17px;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    padding: 1.3rem 2rem;
    color: #1a1a1a;
    width: 100%;
    display: block;
    transition: all .3s;
    margin-top: 10px;
    border: 1px solid #014984 !important;
    cursor: pointer;
}

.footer-navLeft {
    max-width: 45%;
    display: flex;
    flex-direction: column;
}

footer ul li a {
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

footer ul li a::before {
    content: " ";
    width: 11px;
    height: 4px;
    left: -10px;
    background: #fff;
    margin-right: 10px;
}

footer ul li a:hover {
    color: #edc453;
}

footer ul li a:hover::before {
    background: #edc453;
}

.footer-navRight {
    max-width: 45%;
    display: flex;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    justify-content: center;
    /* gap: 40px; */
}

.footer-nav>div{
    margin: 0 20px;
}

.w-100 {
    width: 100%;
}

.copyright {
    width: 100%;
    display: block;
    margin: 0;
    font-size: 16px;
    text-align: center;
    background: #256fbb00;
    color: #fff;
    padding: 10px;
}

footer .social-media img{
    max-width: 25px;
    max-height: 25px;
}

/* pages start */
#page-header {
    width: 100%;
    height: 476px;
    max-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    background-position: center !important;
    background-size: cover !important;
    padding-top: 108px;
}
#page-header .bg{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #014984;
    opacity: 0.6;
    z-index: 2;
}
#page-header .img{
    position: absolute;
    top: 108px;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../img/speedbar1.jpg?v11");
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

.page-head {
    width: 100%;
    display: block;
    font-size: 50px;
    margin-bottom: 0;
    line-height: 6.5rem;
    font-weight: 700;
    width: 100%;
    margin-top: 7rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
}

#page-header ul {
    display: flex;
    flex-direction: row;
    /* gap: 10px; */
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

#page-header ul li:not(:last-child){
    margin-right: 10px;
}

#page-header ul a {
    color: #fff;
}

/* about start */
.members-img {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #014984;
    overflow: hidden;
    border-radius: 50%;
    overflow: hidden;
    height: 100%;
}

.members-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}

.team-cards .members-card{
    position: relative;
    width: 320px;
    height: 320px;
}

.mb-40{
    margin-bottom: 40px;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    /* gap: 20px;
    row-gap: 40px; */
    margin-bottom: 80px;
}

.team-cards .item{
    margin: 0 20px 40px 0;
}

.team-cards .item:nth-child(4n){
    margin: 0 0 40px 0;
}

.team-cards .training-card:nth-child(3n){
    margin: 0 0 40px 0;
}

.members-card:hover .members-img img {
    opacity: 0.3;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.members-name {
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.members-role {
    width: 100%;
    display: block;
    padding: 0 9%;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 20px;
}

.members-icon a img {
    max-width: 16px;
    max-height: 16px;
}

.members-icon {
    display: flex;
    flex-direction: row;
    /* gap: 10px; */
    justify-content: center;
    width: 100%;
}

.members-icon a{
    padding: 0 5px;
}

.members-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    border-radius: 23rem;
    left: 0;
    bottom: 136px;
    color: #fff;
    transform: translateY(140%);
    background: #043577;
    text-align: center;
    padding: 15px;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

.team-detail .blog_img img {
    width: 100%;
    object-fit: cover;
    max-height: 600px;
}

.members-card:hover .members-text {
    transform: translateY(105%);
    -webkit-transform: translateY(105%);
    -moz-transform: translateY(105%);
    -ms-transform: translateY(105%);
    -o-transform: translateY(105%);
}

/* training start */
#trainingHome .container {
    display: flex;
    justify-content: space-between;
}

.training-left {
    width: 45%;
}

.training-list {
    width: 90%;
    display: flex;
    flex-direction: column;
    /* gap: 2px; */
}

td{
    border: 1px solid #014984;
}

th{
    background: #014984 !important;
}

.training-list{
    margin-bottom: 2px;
}

.training-item {
    font-size: 20px;
    padding: 18px 15px 18px 18px;
    font-weight: 600;
    font-size: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #232323;
    position: relative;
    margin-bottom: 2px;
    border-radius: 23rem;
    cursor: pointer;
    background: #014984;
}

.training-item:hover {
    background: #edc453;
}

.training-item.active {
    background: #edc453;
}

.training-item a {
    color: #fff;
}

.training-form {
    border-radius: 7px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, 0.075);
    width: 90%;
    margin-top: 30px;
    padding: 0rem 5rem 0rem 5rem;
    text-align: center;
    position: sticky;
    top: 140px;
}

.form-inputs input,
.form-inputs textarea {
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    background: #fff;
    border-radius: 23rem;
    font-size: 17px;
    font-family: inherit;
    padding: 1.3rem 2rem;
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-bottom: .3rem solid transparent;
    width: 100%;
    display: block;
    transition: all .3s;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-bottom: 0.3rem solid #5189e2;
}
.form-inputs input:focus,
.form-inputs textarea:focus{
    outline: none;
}

.form-inputs button{
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    background: #014984;
    color: #fff;
    border: 1px solid;
    padding: 0 50px;
    position: relative;
    font-size: 16px;
    border-radius: 23rem;
    -webkit-border-radius: 23rem;
    -moz-border-radius: 23rem;
    -ms-border-radius: 23rem;
    -o-border-radius: 23rem;
    margin-bottom: 40px;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    cursor: pointer;
}

.form-inputs button:hover{
    background: #edc453;
}

.form-inputs{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

.form-inputs input{
    margin: 0 20px 20px 0;
}

.form-inputs input:nth-child(3n){
    margin-right: 0;
}

.training-right {
    width: 50%;
}

.training-img {
    width: 100%;
    margin-bottom: 20px;
}

.training-img img {
    width: 100%;
}

.flip-card {
    background-color: transparent;
    width: 400px;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateX(-180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15)
}

.flip-card-front {
    background-color: #fff;
}

.flip-card-back {
    background-color: #fff;
    color: white;
    transform: rotateX(180deg);
}

.paragraf-body {
    display: flex;
    justify-content: space-around;
    /* gap: 20px; */
}

.paragraf-body>div:first-child{
    margin-right: 20px;
}

.flip-card .paragraf-img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #014984;
}

.flip-card svg {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.flip-card svg path {
    fill: #fff;
}

.flip-card-front {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 15px; */
}

.flip-card-front>div:first-child{
    margin-bottom: 15px;
}

.flip-card .paragraf-head {
    font-size: 24px;
}

.flip-card-back {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* gap: 10px; */
}

.flip-card-back .paragraf-head{
    margin-bottom: 10px;
}

.flip-card-back .paragraf-head {
    text-align: center;
}

.flip-card-back .paragraf-info {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
}

/* contact start */
.contact-cards .call,
.contact-cards .mail,
.contact-cards .loc{
    width: 30%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 0.3rem;
    padding: 30px;
    flex-direction: column;
    min-height: 220px;
    align-items: center;
    justify-content: center;
}
.contact-cards{
    display: flex;
    /* gap: 30px; */
    justify-content: space-between;
}
.contact-cards>div:nth-child(2){
    margin: 0 30px;
}
#contactForm .form-inputs input{
    width: 30%;
}
/* #contactForm .form-inputs input:nth-child(2n){
    margin-right: 0;
} */
#contactForm .form-inputs{
    justify-content: space-between;
    /* gap: 30px; */
    flex-direction: row;
    flex-wrap: wrap;
}

#contactForm .form-inputs input{
    margin: 0 30px 30px 0;
}

#contactForm .form-inputs input:nth-child(3n){
    margin-right: 0;    
}

#contactForm.fun-club .form-inputs input:nth-child(3n){
    margin-right: 0 !important;
}

#contactForm.fun-club .form-inputs input:nth-child(5n){
    margin-right: 0 !important;
}

#contactForm .form-inputs textarea{
    height: 140px;
    padding-top: 30px;
}
#contactForm iframe{
    margin-top: 20px;
    width: 100%;
    height: 300px;
    margin-bottom: 0;
    padding-bottom: 0;
}
#contactForm{
    padding-bottom: 0;
}

/* blog start */
.blog-card>a{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 99;
}
.blog-card .btn-primary{
    display: none;
}
.blog-card {
    padding: 20px;
    transition: transform .3s;
    border-radius: 1rem;
    -moz-border-radius: 50px;
    width: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, 0.096);
    max-width: 30%;
    cursor: pointer;
    position: relative;
}
.blog_date{
    width: 100%;
    text-align: center;
}

.blog-date{
    font-size: 14px;
    color: #818181;
}

.date-blog{
    color: #111111;
    font-size: 16px;
}
.tt{
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    display: none;
}
.blog-category{
    color: #535353;
    font-size: 15px;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    -moz-transition: .3s all ease-in-out;
    -ms-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    display: none;
}
.blog-head{
    font-size: 20px;
    color: #256fbb;
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 48px;
}
.blog-img{
    width: 100%;
    overflow: hidden;
    margin-bottom: 6px;
    position: relative;
}
.blog-img::before{
    content: "";
    position: relative;
    padding-top: 65%;
    width: 100%;
    display: block;
}
.blog-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: 0.3s all ease-in-out;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
}
.blog-card:hover .blog-img img{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.blog-text{
    color: #111111;
    font-size: 16px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    line-clamp: 2; 
    -webkit-box-orient: vertical;
    width: 100%;
    text-align: center;
}
.blog-card .btn-primary{
    max-width: 126px;
    max-height: 45px;
    margin-top: 35px;
}
.blog-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* gap: 30px; */
}

.blog-cards>div{
    margin: 0 30px 30px 0;
}

.blog-cards>div:nth-child(3n){
    margin: 0 0 30px 0;
}

/* Blog single start */
.blog_text{
    width: 52%;
}
.blog_img{
    width: 40%;
}
.blog_img img{
    width: 100%;
    object-fit: cover;
}
#blogSingle .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog_text p{
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    line-height: 24px
}
.similar-cards{
    width: 100%;
    display: flex;
    /* gap: 20px; */
    flex-wrap: wrap;
}
.similar-cards>div{
    margin: 0 30px 30px 0;
}
.similar-cards>div:nth-child(3n){
    margin: 0 0 30px 0;
}
#similar .block-head{
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.info-item{
    display: flex;
    justify-content: space-between;
    max-width: 300px;
}
.list-span{
    display: flex;
    align-items: center;
    width: 150px;
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}
.info-item{
    margin: 5px 0;
}
.team-detail{
    align-items: self-start !important;
}
.event-detail .event-head{
    margin-top: 40px;
}
.event-detail .left,.event-detail .right{
    width: 100% !important;
}
.event-detail .about-page{
    flex-direction: column;
    border: 1px solid #e4e4e4;
}
.event-detail .girl{
    max-height: 450px;
}
.event-detail .about-head{
    margin-top: 40px;
}
.event-detail .right{
    padding: 0 30px 0 30px;
    flex-direction: row !important;
}
.event_card{
    width: 30%;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.event-text{
    width: 70%;
    border-right: 1px solid #e4e4e4;
    padding-bottom: 30px;
}
.event-body p{
    display: flex;
    align-items: center;
}
.event-body p span{
    margin: 0 5px;
}
.event-body p a{
    color: #edc453;
}
.team-logo {
    width: 100%;
    height: 100%;
    max-width: 50px;
    margin-right: 5px;
    object-fit: contain;
    max-height: 50px;
}
.team:nth-child(3) .team-logo{
    margin-right: 0;
    margin-left: 5px;
}
.team:nth-child(3) .team-name{
    text-align: right;
}
.team-name{
    font-size: 21px;
    color: #000000;
    font-weight: 600;
    width: 100%;
    max-width: 173px;
}
.team {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    width: 228px;
}
.team:nth-child(3n){
    justify-content: end;
}
.tour-teams{
    display: flex;
    justify-content: center;
}
.tour-cataloq{
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    margin-top: 20px;
}
table{
    margin-top: 20px;
    margin-bottom: 50px;
    width: 100%;
}
.tour{
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}
.score {
    padding: 10px;
    background: #014984;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    width: 110px;
    align-items: center;
    color: #fff;
    font-size: 24px;
    margin: 0 50px;
}
.score span{
    color: #fff;
    font-size: 24px;
}
.tour-name{
    padding-bottom: 4px;
    clear: both;
    font-size: 10px;
    color: #999;
    line-height: normal;
    font-family: Montserrat, sans-serif;
    display: block;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}
.tour-date{
    font-size: 10px;
    color: #999;
    line-height: normal;
    font-family: Montserrat, sans-serif;
    display: block;
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}
td,th{
    text-align: center;
}
.m-team{
    justify-content: start;
    min-height: 64px;
}
.m-team img{
    object-fit: contain;
}
#geriSayim{
    display: flex;
}
#geriSayim>div{
    color: #fff;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
#geriSayim span{
    margin-top: 5px;
}
#geriSayim>div>div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #fff;
    color: #014984;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-size: 28px;
    font-weight: 700;
}
.match-date {
    padding-bottom: 2px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}
.home-team {
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 20px;
}
.sponsors img:hover{
    transform: translateY(-10px);
}
.sponsors img{
    transition: 0.5s all ease-in-out;
}
.sponsors.team-cards .members-card {
    position: relative;
    width: 280px;
    height: 285px;
}
.sponsors.team-cards .item {
    margin: 0px 76px 40px 0;
}
.sponsors.team-cards .item:nth-child(4n){
    margin-right: 0 !important;
}
.form-inputs textarea{
    margin-bottom: 30px;
}
.alert-success{
    position: absolute;
    padding: 10px;
    right: 20px;
    top: 20px;
    color: green;
    /* border: 1px solid #014984; */
    z-index: 999999;
    width: 100%;
    text-align: center;
}
#contactForm {
    position: relative;
}

.pagination{
    justify-content: center;
}
.page-item{
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #014984;
    transition: 0.3s all ease-in-out;
}

.page-item:hover{
    background: #014984;
}

.page-item:hover .page-link{
    color: #fff;
}

.page-link{
    color: #014984;
    font-size: 16px;
    transition: 0.3s all ease-in-out;
}

.active.page-item{
    background: #014984;
}

.active .page-link{
    color: #fff;
}

.page-item:first-child .page-link{
    font-size: 20px;
    margin-bottom: 3px;
}

.page-item:last-child .page-link{
    font-size: 20px;
    margin-bottom: 3px;
}
td img{
    margin-right: 20px;
}
.league-head{
    font-size: 34px;    
}
.base-page .about-page{
    flex-direction: column;
}
.base-page .left{
    width: 100% !important;
}
.base-page .right{
    width: 100% !important;
    padding-bottom: 20px;
}
.base-page .about-head{
    text-align: center;
}
.base-page .girl{
    max-height: 400px;
}