@font-face {
    font-family: 'Barlow-Bold';
    src: url('../fonts/Barlow-Bold.eot');
    src: url('../fonts/Barlow-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow-Bold.woff2') format('woff2'),
        url('../fonts/Barlow-Bold.woff') format('woff'),
        url('../fonts/Barlow-Bold.ttf') format('truetype'),
        url('../fonts/Barlow-Bold.svg#Barlow-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow-SemiBold';
    src: url('../fonts/Barlow-SemiBold.eot');
    src: url('../fonts/Barlow-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow-SemiBold.woff2') format('woff2'),
        url('../fonts/Barlow-SemiBold.woff') format('woff'),
        url('../fonts/Barlow-SemiBold.ttf') format('truetype'),
        url('../fonts/Barlow-SemiBold.svg#Barlow-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow-Regular';
    src: url('../fonts/Barlow-Regular.eot');
    src: url('../fonts/Barlow-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow-Regular.woff2') format('woff2'),
        url('../fonts/Barlow-Regular.woff') format('woff'),
        url('../fonts/Barlow-Regular.ttf') format('truetype'),
        url('../fonts/Barlow-Regular.svg#Barlow-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow-Medium';
    src: url('../fonts/Barlow-Medium.eot');
    src: url('../fonts/Barlow-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow-Medium.woff2') format('woff2'),
        url('../fonts/Barlow-Medium.woff') format('woff'),
        url('../fonts/Barlow-Medium.ttf') format('truetype'),
        url('../fonts/Barlow-Medium.svg#Barlow-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    /* font variables */
    --barlow-bold: 'Barlow-Bold';
    --barlow-regular: 'Barlow-Regular';
    --barlow-semibold: 'Barlow-SemiBold';
    --barlow-medium: 'Barlow-Medium';

    /* colors variables */
    --primary-color: #E63E00;
    --white: #fff;
    --black: #2e2e2e;
    --light-bg: #F5F4F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: var(--barlow-regular);
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
figure,
label,
address {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--barlow-bold);
    color: var(--black);
}

p {
    font-size: 18px;
    font-family: var(--barlow-regular);
    color: var(--black);
    margin-bottom: 0;
}

input::placeholder {
    opacity: 1;
}

input:focus-visible,
textarea:focus-visible {
    box-shadow: unset;
    outline: unset;
}

a,
button,
li {
    transition: 0.2s ease-in;
}

a {
    text-decoration: unset;
}

a:hover {
    text-decoration: none;
}

button:focus {
    outline: unset;
}

.c-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------------------header css---------------------------- */
header {
    position: absolute;
    top: 20px;
    width: 100%;
    z-index: 2;
}

.nav-div {
    background-color: var(--black);
    padding: 15px;
    border-radius: 0 30px 0 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand img {
    max-width: 250px;
}

.nav-link {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}

.nav-link:focus,
.nav-link:hover {
    color: #fff;
}

.btn.search-btn {
    background: #FFFEFE;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.search-btn img {
    width: 18px;
    height: 18px;
}

.search-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    position: absolute;
    bottom: -56px;
    right: 0;
}

.search-container input[type="text"] {
    padding: 10px;
    width: 400px;
    background: #2e2e2e;
    border: unset;
    color: #ffff;
    height: 60px;
    font-size: 20px;
}

.visible {
    max-height: 100px;
    opacity: 1;
}

.navbar-toggler {
    background-color: var(--white);
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--primary-color);
}



/* ---------------------header css---------------------------- */
/* -------------------- banner css --------------------------- */
.banner-inner {
    background-blend-mode: multiply;
    min-height: 740px;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-main .owl-dots {
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-main .owl-dot span {
    background-color: #fff;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50px;
}

.banner-main .owl-dot.active span {
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}


.banner-main .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 1400px;
    margin-left: -15px;
}

.banner-main .owl-prev,
.banner-main .owl-next {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.banner-main .owl-prev span,
.banner-main .owl-next span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-main .owl-nav img {
    width: 22px !important;
}

.banner-slider-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    margin-top: 100px;
}


.title-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-top img {
    width: 27px !important;
    height: 27px;
}

.title-top span {
    font-family: var(--barlow-semibold);
    font-size: 28px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.banner-title {
    font-size: 64px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);

}

.banner-caption {
    font-size: 20px;
    color: var(--white);
    text-align: center;
    max-width: 500px;

}

.primery-button {
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    max-width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 15px 0 15px;
    color: var(--white);
    font-size: 18px;
    font-family: var(--barlow-medium);
    text-transform: uppercase;

}

/* -------------------- banner css --------------------------- */

/* --------------------shop css -------------------------------- */
.shop-main {
    padding: 50px 0;
}

.shop-box {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: 2px solid var(--white);
    height: 100%;
    background-size: 600px;
    background-position: center;
    position: relative;
}

.shop-box h4 {
    color: var(--white);
    font-size: 30px;
}

.shop-box p {
    color: var(--white);
    font-size: 18px;
    margin: 15px 0 30px 0;
}

.s-box-first {
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 0 0 0 15px;
}

.s-box-first .primery-button {
    background: var(--white);
    color: var(--primary-color);
}

.s-box-third {
    border-radius: 0 15px 0 0;
}

/* --------------------shop css -------------------------------- */
/* --------------------try out css ---------------------------- */
.try-out-slider {
    padding: 50px 0;
    /* background: url(../images/try-out-bg.png);
    background-repeat: no-repeat; */
}

.try-o-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.try-o-slider .owl-dot span {
    background-color: #fff;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50px;
}

.try-o-slider .owl-dot.active span {
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.t-out-slider-inner {
    border-radius: 0 30px 0 30px;
    overflow: hidden;
}

.try-o-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.try-o-slider .owl-prev,
.try-o-slider .owl-next {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.try-o-slider .owl-prev span,
.try-o-slider .owl-next span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.try-o-slider .owl-nav img {
    width: 22px !important;
}

/* --------------------try out css ---------------------------- */
/* -------------------- our-coach css ------------------------- */
.our-coach {
    padding: 50px 0;
}

.section-title-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.our-coach .section-title-top {
    justify-content: start;
}

.section-title-top img {
    width: 33px !important;
    height: 33px;
}

.section-title-top span {
    font-family: var(--barlow-semibold);
    font-size: 36px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.our-coach .section-title-top img {
    width: 23px;
    height: 23px;
}

.our-coach .section-title-top span {
    font-family: var(--barlow-semibold);
    color: var(--primary-color);
}

.section-title {
    font-size: 42px;
    text-transform: uppercase;
    color: var(--black);

}

.section-caption {
    font-size: 18px;
    color: var(--black);
    margin: 15px 0 30px 0;
    display: block;

}

/* -------------------- our-coach css ------------------------- */
/* --------------------games day css ------------------------- */

.games-day {
    padding: 50px 0;
}

.games-day-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 0 30px 0 30px;
    padding: 30px;
    height: 100%;
}

.games-day-left,
.games-day-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.games-day-left h4,
.games-day-right h4 {
    font-size: 24px;
    font-family: var(--barlow-semibold);
    text-transform: uppercase;
    text-align: center;
}

.games-day-left img,
.games-day-right img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.games-day-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.time-date {
    font-size: 22px;
    font-family: var(--barlow-semibold);
    margin: 10px 0 10px 0;
    text-align: center;
}

.stadium {
    font-size: 18px;
    margin: 0;
    color: #2e2e2e;
    display: flex;
    align-items: center;
}

.score-center h3 {
    color: var(--primary-color);
    font-size: 80px;
}

/* --------------------games day css ------------------------- */

/* -------------------- recent news css ------------------------- */

.recent-news {
    background: #F5F4F4;
    padding: 50px 0;
}

.recent-news-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 0 30px 0 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.recent-news-box-img img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    min-width: 300px;
}

.recent-news-box-text {
    padding: 15px;
}

.recent-news-box-text h5 {
    font-size: 26px;
    color: var(--black);
}

.date-admin {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0;
}

.date-admin img {
    margin-right: 5px;
}

.date-admin span {
    font-size: 12px;
    color: #7C7A7A;
}

.recent-news-box-text p {
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.owl-carousel.pitch-slider .owl-item img {
    display: unset;
    width: unset;
}

.pitch-slider .owl-dots {
    position: absolute;
    bottom: -30px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pitch-slider .owl-dot span {
    background-color: #8D8686;
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50px;
}

.pitch-slider .owl-dot.active span {
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}


/* -------------------- recent news css ------------------------- */
/* -------------------- facility css ------------------------- */
.facilities {
    padding: 50px 0;
}

.facility-box {
    position: relative;
    border-radius: 0 30px 0 30px;
    overflow: hidden;
}

.facility-img {
    height: 100%;
    /* min-height: 320px;
    max-height: 320px; */
    border-radius: 0 30px 0 30px;
    overflow: hidden;
}

.facility-text {
    background: #E63E00;
    background: linear-gradient(180deg, rgba(230, 62, 0, 0.4) 10%, rgba(0, 0, 0, 0.6) 51%);
    position: absolute;
    padding: 20px;
    top: 0;
    height: 100%;
    /* min-height: 320px;
    max-height: 320px; */
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
}

.facility-text h5 {
    color: #fff;
    font-family: var(--barlow-medium);
    font-size: 24px;
}

.facility-text p {
    color: #fff;
    font-size: 14px;
    margin-top: 15px;
}

.f-text-left {
    margin-right: 10px;
}

.facility-text a {
    width: 100%;
    max-width: 50px;
    height: 50px;
    border-radius: 100px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -------------------- facility css ------------------------- */
/* -------------------- video css ------------------------- */
.video-thumb {
    transition: transform 0.3s ease;
}

.video-thumb:hover {
    transform: scale(1.05);
}

.video-section {
    position: relative;
    padding: 50px 0;
}

.play-btn {
    position: absolute;
    top: 50%;
    text-align: center;
    left: 0;
    right: 0;
}

/* -------------------- video css ------------------------- */
/* -------------------- galery css ------------------------- */
.instagram-gallery {
    padding: 50px 0;
}

.instagram-gallery-img {
    margin-bottom: 20px;
    height: 100%;
    border-radius: 0 30px 0 30px;
    overflow: hidden;
}


/* -------------------- galery css ------------------------- */
/* -------------------- call out css ------------------------- */
.call-out {
    background: #2e2e2e url(../images/call-out-bg.png);
    background-size: cover;
    background-blend-mode: multiply;
    padding: 50px 0;
}

.call-out-inner {
    background: #E63E0090;
    border-radius: 0 30px 0 30px;
    padding: 30px 30px 0 30px;
}

.call-out .section-title {
    color: var(--white);
}

/* -------------------- call out css ------------------------- */
/* -------------------- footer css ------------------------- */
footer {
    background: #2e2e2e;
    padding: 50px 0 20px 0;
}

.footer-links h5 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: var(--barlow-medium);
    text-transform: capitalize;
}

.footer-links a img {
    margin-right: 10px;
}

footer p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0;
}

.news-latter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-latter-input form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-latter-input {
    width: 100%;
    border: 1px solid var(--white);
    border-radius: 10px;
    background-color: var(--black);
}

.news-latter-input .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.news-latter-input .form-control {
    background: transparent;
    border: unset;
    color: #ECECEC;
}

.blue-btn {
    background: var(--white);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    border: 1px solid var(--white)
}

.f-social-media {
    gap: 8px;
}

.f-social-media a {
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.f-social-media a img {
    margin: 0;
}

.f-logo {
    max-width: 250px;
}

footer .login-footer {
    padding: 20px 0;
    border-top: 1px solid #284E52;
    margin-top: 50px;
}

.login-footer ul {
    display: flex;
    justify-content: center;
}

footer .login-footer ul li,
footer .login-footer ul li a {
    color: var(--white);
}

/* -------------------- footer css ------------------------- */
.abt-us-img {
    border-radius: 0 30px 0 30px;
}

.sub-banner-inner {
    margin-top: 100px;
}

.sub-banner-main {
    background-blend-mode: multiply;
    min-height: 530px;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    justify-content: start;
    align-items: center;
}

.sub-banner-main .banner-title {
    font-size: 54px;
    text-align: left;
}

.breadcrumb-item {
    color: #fff;
}

.breadcrumb-item a,
.breadcrumb-item {
    color: #fff;
    font-size: 22px;
    font-family: var(--barlow-medium);
    text-transform: uppercase;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item.active {
    color: #fff;
}

.pages-center-text {
    margin-bottom: 50px;
}

.pages-center-text .section-title {
    text-align: center;
}

.pages-center-text .section-title-top {
    margin-bottom: 15px;
}

.pages-center-text .section-title-top img {
    width: 23px;
    height: 23px;
}

.bg-grey {
    background-color: #F5F4F4;
}

.pagination {
    gap: 10px;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    text-decoration: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.page-link {
    border: unset;
    border-radius: 5px;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0 8px 0 8px;
}

.pagination-main {
    margin-top: 30px;
}

.sub-banner-inner .date-admin span {
    font-size: 16px;
    color: #fff;
}

.sub-banner-inner .date-admin img {
    margin-right: 8px;
}

.blog-detail-main {
    padding: 50px 0 100px 0;
}

.blog-main-img {
    border-radius: 0 30px 0 30px;
    overflow: hidden;
}

.list-one li img {
    margin-right: 5px;
    width: 8px;
}

.list-one li {
    font-size: 16px;
    display: flex;
    align-items: center;
}


.list-two li {
    list-style-type: decimal;
}

.share-post {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #2e2e2e;
    border-bottom: 1px solid #2e2e2e;
}

.share-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.share-img img {
    width: 20px;
}

.leave-reply-form.bg-grey {
    padding: 30px;
    border-radius: 0 30px 0 30px;
    margin-top: 30px;
}

.leave-reply-box {
    margin-top: 30px;
}

.leave-reply-form .form-group {
    margin-bottom: 20px;
}



.leave-reply-form .form-control::placeholder {
    color: #B0ACAA;
    opacity: 1;
}

.leave-reply-form .form-control {
    height: 50px;
    border: 1px solid #B0ACAA;
    box-shadow: unset;
}

.leave-reply-form textarea {
    height: 150px !important;
    resize: unset;
}

.leave-reply-form .form-group label {
    font-size: 16px;
    color: var(--black);
    font-family: var(--barlow-medium);
}

.leave-reply-form .primery-button {
    border: unset;
    margin-top: 50px;
}

.ml-2 {
    margin-left: 0.50rem;
}

.recent-post-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 0 15px 0 15px;
}

.recent-post-box .section-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: var(--barlow-semibold);
    text-transform: capitalize;
}

.recent-post-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.recent-post-text .date-admin span {
    font-size: 12px;
    color: #2e2e2e;
}

.recent-post-text .date-admin {
    margin: 0 0 5px 0;
}

.have-quetion {
    background: url(../images/have-quetion-img-1.png) no-repeat;
    background-size: 600px;
    /* height: 100%; */
    border-radius: 0 30px 0 30px;
    margin: 25px 0;
    background-color: #00000060;
    background-blend-mode: multiply;
    padding: 50px 30px;
}

.have-quetion h5 {
    color: #fff;
    font-size: 24px;
}

.recent-post-box a {
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-button {
    color: var(--black);
    background-color: #ECECEC;
    box-shadow: unset;

}

.accordion-item {
    color: var(--black);
    background-color: #fff;
    border: unset;
    margin-bottom: 15px;

}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #ECECEC;
    box-shadow: unset;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: unset;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 30px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 30px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 30px;
}

.contact-us {
    padding: 50px 0;
}

.contact-c-box.bg-grey {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 0 30px 0 30px;
    margin-bottom: 20px;
    min-height: 128px;
}

.contact-c-box h5 {
    font-size: 24px;
    font-family: var(--barlow-medium);
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.contact-c-box p {
    font-size: 16px;
}

.contact-us-inner .leave-reply-form.bg-grey,
.contact-us-inner .leave-reply-box {
    margin-top: 0;
}

.coach-box {
    padding: 30px;
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 0 30px 0 30px;
    margin-bottom: 20px;
}

.coach-box img {
    border-radius: 0 30px 0 30px;
    overflow: hidden;
}

.coach-experince-box h4 {
    color: var(--primary-color);
    font-size: 50px;
    text-align: center;
}

.coach-experince-box p {
    color: var(--primary-color);
    font-size: 20px;
    text-align: center;
}

.coach-experince-box {
    background-color: #F5F4F4;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-top: 20px;
    border-radius: 0 30px 0 30px;
}

.our-caoch {
    padding: 50px 0;
}

.coach-experince h5 {
    font-size: 30px;
    color: var(--primary-color);
}

.slick-dots {
    display: block !important;
    bottom: 10px;
}

.slick-dots li button:before {
    color: #000;
    /* or your desired color */
    font-size: 12px;
}

.try-out-slider {
    position: relative;
    padding-bottom: 40px;
    /* make space for dots */
}

.pitch-slider .slick-dots {
    bottom: -30px;
    /* Move dots further down */
}

.pitch-slider .slick-dots li {
    margin: 0 10px;
    /* Space between dots */
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    cursor: pointer;
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

.slick-dots {
    margin: 0 10px;
    /* Space between dots */
}

.tag-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tag-bottom img {
    width: 18px;
}

.tag-bottom .primery-button {
    max-width: unset;
    height: unset;
    font-size: 14px;
    width: unset;
    padding: 5px 10px;
}

.tag-post-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 0 15px 0 15px;
}

.tag-post-box .section-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: var(--barlow-semibold);
    text-transform: capitalize;
}

.blog-side-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.blog-side-tag .primery-button {
    max-width: unset;
    height: unset;
    font-size: 12px;
    width: unset;
    padding: 5px 10px;
    border-radius: 0 8px 0 8px;
}

.blog-side-tag.b-category {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.blog-side-tag.b-category a {
    color: var(--primary-color);
    border-bottom: 1px solid #00000020;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    width: 100%;
}

.blog-side-tag.b-category a img {
    width: 7px;
    margin-right: 5px;
}

.b-m-category {
    overflow-y: auto;
    max-height: 800px;
}

.recent-post-img {
    border-radius: 0 10px 0 10px;
    overflow: hidden;
}

.tag-bottom .primery-button {
    max-width: unset;
    height: unset;
    font-size: 8px;
    width: unset;
    padding: 5px 10px;
}

.rightsidelist a {
    background-color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    all: unset;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.text-red-500 {
    color: #E63E00
}

.text-sm {
    font-size: small;
}

.search-input::placeholder {
    color: #aaa;
}

.coach-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 2;
    /* Keeps same shape for all */
    overflow: hidden;
    border-radius: 8px;
    /* optional */
}

.coach-detail-img-wrapper {
    width: 100%;
    overflow: hidden;
}

.coach-img-wrapper.small {
    aspect-ratio: 2 / 2;
}

.view-tooltip {
    position: relative;
    display: inline-block;
}

.view-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
    font-size: 12px;
}

.view-tooltip::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.view-tooltip:hover::after,
.view-tooltip:hover::before {
    opacity: 1;
}

.w-12 {
    width: 12px !important;
}

.h-12 {
    height: 12px !important;
}

.page-link {
    background: #dfdfdf;
    color: #000;
    border-radius: 0 8px 0 8px;
}

@media screen and (max-width:420px) {
    .search-container input[type="text"] {
        width: 285px;
    }
}

.piano-loader {
    display: flex;
    gap: 6px;
}

.piano-loader .key {
    width: 12px;
    height: 40px;
    background-color: #E63E00;
    display: inline-block;
    animation: piano 1s infinite;
    border-radius: 3px;
}

.piano-loader .key:nth-child(2) {
    animation-delay: 0.1s;
}

.piano-loader .key:nth-child(3) {
    animation-delay: 0.2s;
}

.piano-loader .key:nth-child(4) {
    animation-delay: 0.3s;
}

.piano-loader .key:nth-child(5) {
    animation-delay: 0.4s;
}

.banner-inner .banner-title {
    max-width: 1100px;
}

.slick-dots li button::before {
    width: 12px;
    height: 12px;
    border-radius: 30px;
    color: transparent;
    background: #fff;
}

.slick-dots li.slick-active button::before {
    color: transparent;
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.s-box-first {
    min-height: 300px;
}

.contact-map {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: visible;
}

.contact-map>div {
    width: 100%;
    height: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

@media screen and (max-width:1099px) {
    .s-box-first {
        min-height: 320px;
    }
}

@keyframes piano {

    0%,
    40%,
    100% {
        transform: scaleY(0.3);
        background-color: #E63E00;
        /* Bootstrap gray */
    }

    20% {
        transform: scaleY(1);
        background-color: #E63E00;
    }
}

.shop-b-content {
    position: absolute;
}

.shop-b-content .primary-button.mt-5 {
    background: #E63E00;
    background: linear-gradient(90deg, rgba(230, 62, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    max-width: 220px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 15px 0 15px;
    color: var(--white);
    font-size: 18px;
    font-family: var(--barlow-medium);
    text-transform: uppercase;
    margin: 0 auto;
}

.pitch-slider .item {
    padding: 0 10px;
}

.pitch-slider .slick-dots li button::before {
    background: red;
}