/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Neodunk - Basketball Club & Sports HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */


/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Program css
07. Why Choose Us css
08. Our Match css
09. Match Highlights css
10. Our Benefits css
11. Our Team css
12. CTA Box css
13. Our Testimonials css
14. Our FAQs css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Programs Page css
19. Program Single css
20. Blog Archive css
21. Blog Single css
22. Matches Page css
23. Match Single css
24. Team Page css
25. Team Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQ's Page css
30. Contact Us Page css
31. 404 Error Page css
32.	Responsive css
33. Home - Version 2 css
34. Home - Version 3 css 
-------------------------------------------------------------------------------------- */


/************************************/


/*** 	 01. Global Variables	  ***/


/************************************/

:root {
    --primary-color: #060606;
    --secondary-color: #FFFFFF;
    --bg-color: #F3F3F3;
    --text-color: #4D4D4D;
    --accent-color: #060606;
    --accent-secondary-color: #8F453F;
    --white-color: #FFFFFF;
    --divider-color: #06060614;
    --dark-divider-color: #FFFFFF14;
    --error-color: rgb(230, 87, 87);
    --default-font: "Inter Tight", sans-serif;
}


/************************************/


/*** 	   02. General css		  ***/


/************************************/

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-secondary-color);
}

::selection {
    color: var(--white-color);
    background-color: var(--accent-secondary-color);
    filter: invert(1);
}

p {
    line-height: 1.7em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2em;
    color: var(--primary-color);
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    background: var(--accent-color);
    border-radius: 100px;
    padding: 17px 52px 17px 30px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    width: 12px;
    height: 12px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--accent-secondary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-default.btn-highlighted {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.btn-default.btn-highlighted:before {
    background-image: url('../images/arrow-primary.svg');
}

.btn-default.btn-highlighted:hover:before {
    filter: brightness(0) invert(1);
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-weight: 600;
    line-height: 1.625em;
    text-transform: capitalize;
    color: var(--white-color);
    padding-right: 34px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    height: 26px;
    width: 26px;
    background-color: var(--accent-secondary-color);
    border-radius: 100px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
    background: var(--accent-secondary-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    width: 100%;
    max-width: 1880px;
    background-color: var(--secondary-color);
    border-radius: 30px;
    margin: 0 auto;
}

.bg-section .container-fluid {
    padding: 0;
}

.dark-section {
    background-color: var(--primary-color);
    background-image: url('../images/dark-section-bg-image.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    line-height: 1.3em;
    padding: 6px 20px 6px 35px;
    margin-bottom: 15px;
}

.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
}

.section-title h1 {
    font-size: 60px;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 52px;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.dark-section .section-title .section-sub-title {
    border-color: var(--dark-divider-color);
}

.dark-section .section-title .section-sub-title,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}


/************************************/


/**** 	    03. Header css		 ****/


/************************************/

header.main-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10000;
}

header.main-header.sl-glass-header {
    position: fixed;
    top: 25px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
}

header.main-header.sl-glass-header .header-sticky,
header.main-header.sl-glass-header .header-sticky.active {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    transform: none;
    background: rgba(6, 6, 6, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

header.main-header.sl-glass-header .header-sticky::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(143, 69, 63, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
    clip-path: inset(0 round 60px);
}

header.main-header.sl-glass-header .header-sticky .navbar {
    position: relative;
    z-index: 1;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: transparent;
    border-radius: 0;
    border-bottom: none;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 15px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
    background: rgba(6, 6, 6, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

header.main-header .header-sticky.active .header-btn .btn-default {
    background: var(--white-color);
    color: var(--primary-color);
}

header.main-header .header-sticky.active .header-btn .btn-default:hover {
    color: var(--white-color);
}

header.main-header .header-sticky.active .btn-default::before {
    background-image: url('../images/arrow-primary.svg');
}

header.main-header .header-sticky.active .btn-default:hover:before {
    filter: brightness(0) invert(1);
}

.navbar {
    padding: 15px 25px;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 150px;
    height: auto;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 10px;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    padding: 12px 10px !important;
    color: var(--white-color);
    background: transparent;
    border-radius: 0px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-secondary-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-secondary-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 6px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-secondary-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-secondary-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}


/************************************/


/***         04. Hero css	      ***/


/************************************/

.hero {
    position: relative;
    background-image: url('../images/hero-bg-image.jpg');
    align-content: end;
    padding: 225px 0 100px;
    margin-top: 20px;
    height: 100vh;
    min-height: 770px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.80) 0%, rgba(0, 0, 0, 0.00) 21%, rgba(6, 6, 6, 0.64) 57.5%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-right: 20px;
}

.hero-client-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -14px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child {
    margin: 0;
}

.satisfy-client-image figure {
    display: block;
    border-radius: 50%;
}

.satisfy-client-image figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.satisfy-client-image.add-more {
    width: 52px;
    height: 52px;
    background-color: var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfy-client-image.add-more i {
    font-size: 20px;
    color: var(--primary-color);
    line-height: normal;
    transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more h3 {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1em;
}

.satisfy-client-image.add-more img {
    width: 100%;
    max-width: 16px;
}

.hero-client-box-content h2 {
    font-size: 30px;
    color: var(--white-color);
}

.hero-client-box-content p {
    color: var(--white-color);
    line-height: normal;
    margin: 5px 0 0 0;
}

.hero-content .section-title {
    margin-bottom: 0;
}

.hero-button-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.video-play-button a {
    position: relative;
    height: 50px;
    width: 50px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
    background: var(--white-color);
}

.video-play-button a.bg-effect:before,
.video-play-button a.bg-effect:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 100%;
    height: 100%;
    border: 40px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 16px;
    color: var(--white-color);
    margin-left: 2px;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
    color: var(--primary-color);
}

.video-play-button p {
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}


/************************************/


/*** 	   05. About Us css		  ***/


/************************************/

.about-us {
    padding: 100px 0;
}

.about-us-image-box {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.about-us-image-box-1 {
    position: relative;
    width: 61%;
    margin-bottom: 40px;
    z-index: 1;
}

.about-us-image figure {
    display: block;
    border-radius: 30px;
}

.about-us-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-image-box-1 .about-us-image img {
    aspect-ratio: 1 / 1.577;
}

.about-us-image-box-2 {
    position: relative;
    width: 39%;
}

.about-us-image-box-2 .about-us-image {
    position: relative;
    margin-left: -185px;
    z-index: 0;
}

.about-us-image-box-2 .about-us-image img {
    aspect-ratio: 1 / 1.354;
}

.about-trusted-player-box {
    position: relative;
    background: var(--primary-color) url('../images/bg-shape-ball.png') no-repeat;
    background-position: right -30px bottom -30px;
    background-size: 110px auto;
    border: 6px solid var(--bg-color);
    border-radius: 30px;
    margin: -85px 50px 0 -115px;
    padding: 30px;
    z-index: 1;
}

.about-trusted-player-box .satisfy-client-image figure img {
    max-width: 40px;
}

.about-trusted-player-box-content {
    margin-top: 30px;
}

.about-trusted-player-box-content p {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
    margin: 0;
}

.about-us-content-box {
    margin-left: 15px;
}

.about-body-item-list {
    background-color: var(--white-color);
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
}

.about-body-item {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-body-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-body-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-body-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.about-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.about-body-item-content {
    width: calc(100% - 65px);
}

.about-body-item-content h3 {
    font-size: 20px;
}

.about-body-item-content p {
    margin: 10px 0 0;
}

.about-us-list {
    margin-top: 40px;
}

.about-us-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-us-list ul li {
    width: calc(50% - 10px);
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
}

.about-us-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-secondary-color);
    top: 0;
    left: 0;
}

.about-us-btn {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}


/************************************/


/*** 	  06. Our Program css     ***/


/************************************/

.our-program {
    position: relative;
    overflow: hidden;
    background-image: url('../images/our-program-bg-image.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
}

.program-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.program-item-image a,
.program-item-image figure {
    position: relative;
    display: block;
    cursor: none;
    height: 100%;
}

.program-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.00) 24.67%, var(--primary-color) 100%);
    z-index: 1;
}

.program-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1.213;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.program-item:hover .program-item-image img {
    transform: scale(1.06);
}

.program-item-body {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
    transform: translateY(50px);
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.program-item:hover .program-item-body {
    transform: translateY(0);
}

.program-item-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

.program-item-content h2 a {
    color: inherit;
}

.program-item-content p {
    color: var(--white-color);
    border-top: 1px solid var(--dark-divider-color);
    margin: 20px 0 0;
    padding-top: 20px;
}

.program-readmore-btn {
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
}

.program-item:hover .program-readmore-btn {
    visibility: visible;
    opacity: 1;
}

.section-footer-text {
    text-align: center;
    margin-top: 30px;
}

.section-footer-text p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-footer-text p span {
    display: inline-block;
    font-size: 14px;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 1em;
    padding: 5px 10px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-secondary-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.section-footer-text ul {
    width: 100%;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.section-footer-text ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: var(--primary-color);
    margin-right: 10px;
}

.section-footer-text ul li:last-child {
    margin: 0;
}

.section-footer-text ul li i {
    color: var(--accent-secondary-color);
}

.section-footer-text.section-footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
    width: 100%;
    max-width: 16px;
}

.section-footer-text.section-satisfy-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
    max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
    width: 32px;
    height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
    width: 100%;
    max-width: 14px;
}

.section-footer-text.section-satisfy-img ul {
    margin: 5px 0 0;
}

.dark-section .section-footer-text p span {
    background: var(--accent-secondary-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
    color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
    border-color: var(--primary-color);
}


/************************************/


/*** 	 07. Why Choose US css	  ***/


/************************************/

.why-choose-us {
    padding: 100px 0;
}

.why-choose-item-list {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.why-choose-item {
    width: calc(25% - 22.5px);
    background-color: var(--white-color);
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

.why-choose-item.box-1 {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.why-choose-item .icon-box,
.why-choose-item-body-btn a {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item.box-1:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.why-choose-item-body-btn a {
    background: var(--white-color);
}

.why-choose-item-body-btn a:hover {
    background: var(--accent-secondary-color);
}

.why-choose-item .icon-box img,
.why-choose-item-body-btn a img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.why-choose-item-body-btn a img {
    max-width: 14px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item-body-btn a:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

.why-choose-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.why-choose-item-content p {
    margin: 10px 0 0;
}

.why-choose-item-content ul {
    list-style: disc;
    border-top: 1px solid var(--divider-color);
    margin: 20px 0 0;
    padding: 20px 0 0 20px;
}

.why-choose-item-content ul li {
    line-height: 1.5em;
    margin-bottom: 15px;
}

.why-choose-item-content ul li:last-child {
    margin-bottom: 0;
}

.why-choose-item-content ul li::marker {
    color: var(--accent-secondary-color);
}

.why-choose-item.box-2 {
    padding: 0;
}

.why-choose-item.box-2 figure {
    display: block;
}

.why-choose-item.box-2 figure img {
    width: 100%;
    aspect-ratio: 1 / 0.754;
    object-fit: cover;
}

.why-choose-item.box-3 {
    position: relative;
}

.why-choose-item.box-3 .why-choose-item-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.why-choose-item.box-3 .why-choose-item-image figure {
    display: block;
    height: 100%;
}

.why-choose-item.box-3 .why-choose-item-image img {
    width: 100%;
    height: 100%;
    filter: brightness(40%);
    object-fit: cover;
}

.why-choose-item.box-3 .why-choose-item-content {
    position: relative;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    z-index: 1;
}

.why-choose-item.box-3 .why-choose-item-content h3 {
    color: var(--white-color);
}

.why-choose-item.box-3 .why-choose-item-content p {
    color: var(--white-color);
    margin-top: 0;
}

.why-choose-item-body-btn {
    margin-top: 30px;
}

.why-choose-item.box-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
}

.why-choose-item.box-4 .why-choose-item-content p {
    border-top: 1px solid var(--divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.why-choose-item.box-4 .why-choose-item-content .why-choose-item-btn {
    margin-top: 20px;
}

.why-choose-item.box-4 .why-choose-item-image {
    text-align: right;
}

.why-choose-item.box-4 .why-choose-item-image figure {
    margin: 0 -60px -80px auto;
}

.why-choose-item.box-4 .why-choose-item-image img {
    width: 100%;
    max-width: 220px;
    object-fit: cover;
    border-radius: 30px 0 0 0;
}

.why-choose-us .section-footer-text {
    margin-top: 60px;
}


/************************************/


/*** 	   08. Our Match css	  ***/


/************************************/

.our-match {
    padding: 100px 0;
}

.our-match-items-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.our-match-item {
    width: calc(33.33% - 20px);
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 30px 30px 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.our-match-item-title {
    text-align: center;
    margin-bottom: 30px;
}

.our-match-item-title h3 {
    font-size: 20px;
    color: var(--white-color);
}

.our-match-item-body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.our-match-item-body::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-size: 30px;
    font-weight: 600;
    color: var(--white-color);
}

.match-team-logo {
    position: relative;
    max-width: 50%;
}

.match-team-logo figure {
    display: block;
    border-radius: 10px;
}

.match-team-logo figure img {
    width: 100%;
    max-width: 120px;
    border-radius: 10px;
}

.team-logo {
    width: calc(22% - 3.472vw);
    text-align: center;
    align-content: center;
}

.team-logo figure {
    display: block;
    border-radius: 30px;
}

.team-logo img {
    width: 100%;
    max-width: 250px;
    border-radius: 30px;
}

.our-match-item-date {
    text-align: center;
    margin-top: 30px;
}

.our-match-item-date h3 {
    font-size: 20px;
    color: var(--white-color);
}

.our-match-item-btn {
    margin: 30px -30px 0;
}

.our-match-item-btn a {
    width: 100%;
    display: block;
    border-top: 1px solid var(--divider-color);
    background: var(--accent-secondary-color);
    font-size: 20px;
    color: var(--white-color);
    text-align: center;
    padding: 17px;
    transition: all 0.3s ease-in-out;
}

.our-match-item-btn a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.our-match-item-btn .btn-default::before {
    display: none;
}

.our-match-item:hover {
    background: var(--accent-secondary-color);
}

.our-match-item:hover .our-match-item-btn a {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--dark-divider-color);
}

.our-match-item:hover .our-match-item-btn a:hover {
    background: transparent;
    color: var(--white-color);
}

.our-match .section-footer-text {
    margin-top: 60px;
}


/************************************/


/***   09. Match Highlights css   ***/


/************************************/

.match-highlights {
    padding: 100px 0 70px;
}

.match-highlight-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.match-highlight-image-box {
    position: relative;
}

.match-highlight-item-image a,
.match-highlight-item-image figure {
    display: block;
    border-radius: 30px;
    cursor: none;
    overflow: hidden;
}

.match-highlight-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.745;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.match-highlight-item:hover .match-highlight-item-image img {
    transform: scale(1.06);
}

.match-highlight-image-box .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.match-highlight-item:hover .match-highlight-image-box .video-play-button {
    transform: translate(-50%, -50%) scale(1);
}

.match-highlight-image-box .video-play-button a {
    height: 60px;
    width: 60px;
}

.match-highlight-item:hover .match-highlight-image-box .video-play-button a {
    background: var(--white-color);
    cursor: pointer;
}

.match-highlight-image-box .video-play-button a.bg-effect:before,
.match-highlight-image-box .video-play-button a.bg-effect:after {
    top: -25%;
    left: -25%;
    border-width: 45px;
}

.match-highlight-image-box .video-play-button a img {
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
}

.match-highlight-item:hover .match-highlight-image-box .video-play-button a img {
    filter: brightness(1) invert(1);
}

.match-highlight-item-body {
    margin-top: 20px;
}

.match-highlight-item-meta {
    margin-bottom: 15px;
}

.match-highlight-item-meta ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.match-highlight-item-meta ul li {
    position: relative;
    color: var(--primary-color);
    line-height: normal;
}

.match-highlight-item-meta ul li::before {
    content: '/';
    position: absolute;
    top: 0;
    right: -13px;
}

.match-highlight-item-meta ul li:last-child:before {
    display: none;
}

.match-highlight-item-meta ul li a {
    color: var(--accent-secondary-color);
}

.match-highlight-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.match-highlight-item-content h2 a {
    color: inherit;
}


/************************************/


/*** 	   10. Our Benefits css	  ***/


/************************************/

.our-benefits {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.our-benefits::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -10px;
    background: url('../images/section-bg-image-1.png') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 152px;
    height: 240px;
}

.our-benefits .container {
    position: relative;
    z-index: 2;
}

.benefit-item-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.benefit-item-box.box-1 {
    background-color: var(--bg-color);
}

.benefit-item-box-content h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--accent-secondary-color);
    margin-bottom: 15px;
}

.benefit-item-box-content h2 span {
    color: var(--primary-color);
}

.benefit-item-box-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.benefit-item-box-content p {
    margin: 0;
}

.benefit-skill-bar .skills-progress-bar {
    margin-bottom: 30px;
}

.benefit-skill-bar .skills-progress-bar:last-child {
    margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
    font-weight: 500;
    line-height: normal;
    color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-no {
    font-weight: 400;
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 5px;
    background: var(--white-color);
    border-radius: 30px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 30px;
}

.benefit-item-box.box-2 {
    display: block;
    padding: 0;
}

.benefit-item-slider {
    position: relative;
    height: 100%;
}

.benefit-img-slider .swiper-wrapper {
    cursor: none;
    height: 100%;
}

.benefit-img-slider,
.benefit-img-slider .swiper-slide {
    height: 100%;
}

.benefit-img-slider .swiper-slide figure {
    display: block;
    height: 100%;
    border-radius: 12px;
}

.benefit-img-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    aspect-ratio: 1 / 1.015;
    object-fit: cover;
}

.benefit-img-item {
    position: absolute;
    bottom: 15px;
    left: 15px;
    max-width: 270px;
    z-index: 2;
}

.benefit-img-item .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.benefit-img-item .swiper-slide {
    cursor: none;
}

.benefit-item-box.box-3 {
    background: var(--primary-color) url('../images/bg-shape-ball.png') no-repeat;
    background-position: top -40px right -40px;
    background-size: 170px auto;
}

.benefit-item-box.box-3 .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.benefit-item-box.box-3 .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.benefit-item-box.box-3:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.benefit-item-box.box-3 .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.benefit-item-box.box-3:hover .icon-box img {
    filter: brightness(1) invert(1);
}

.benefit-item-box.box-3 .benefit-item-box-content h3 {
    color: var(--white-color);
    border-color: var(--dark-divider-color);
}

.benefit-item-box-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-item-box-content ul li {
    position: relative;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 20px;
}

.benefit-item-box-content ul li:last-child {
    margin-bottom: 0;
}

.benefit-item-box-content ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-secondary-color);
    top: 1px;
    left: 0;
}


/************************************/


/*** 	   11. Our Team css		  ***/


/************************************/

.our-team {
    padding: 100px 0;
}

.team-item {
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-item-image figure {
    position: relative;
    display: block;
    overflow: hidden;
}

.team-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, transparent 24.67%, rgba(6, 6, 6, 0.90) 100%);
    z-index: 1;
}

.team-item-image a {
    display: block;
    cursor: none;
}

.team-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1.305;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image img {
    transform: scale(1.06);
}

.team-item-body {
    position: absolute;
    bottom: 40px;
    left: 40px;
    transform: translateY(60%);
    right: 40px;
    text-align: center;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-item-body {
    transform: translateY(0%);
}

.team-item-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

.team-item-content h2 a {
    color: inherit;
}

.team-item-content p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.team-social-list {
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-divider-color);
    transition: all 0.4s ease-in-out;
}

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

.team-social-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a {
    color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover {
    background: var(--accent-secondary-color);
}

.team-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}


/************************************/


/*** 	   12. CTA Box css		  ***/


/************************************/

.cta-box {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/cta-bg-image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-box .container {
    position: relative;
    z-index: 2;
}

.cta-box-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-content .section-title p {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cta-company-slider-box {
    margin-top: 100px;
}

.cta-company-slider-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 40px;
}

.cta-company-slider-content hr {
    height: 1px;
    width: 33%;
    color: var(--dark-divider-color);
    opacity: 1;
    margin: 0;
}

.cta-company-slider-content h3 {
    font-size: 16px;
    color: var(--white-color);
    text-align: center;
}

.cta-company-slider .swiper-slide .company-logo {
    text-align: center;
}

.cta-company-slider .swiper-slide .company-logo img {
    width: 100%;
    max-width: 180px;
    height: 40px;
    opacity: 0.5;
    transition: all 0.4s ease-in-out;
}

.cta-company-slider .swiper-slide.swiper-slide-active .company-logo img {
    opacity: 1;
}


/************************************/


/***   13. Our Testimonials css	  ***/


/************************************/

.our-testimonials {
    padding: 100px 0;
}

.testimonial-image {
    height: 100%;
}

.testimonial-image figure {
    height: 100%;
    display: block;
    border-radius: 30px;
}

.testimonial-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1.047;
    object-fit: cover;
    border-radius: 30px;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    background-color: var(--white-color);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    gap: 20px;
    padding: 30px;
}

.testimonial-item-rating i {
    font-size: 20px;
    color: var(--accent-secondary-color);
}

.testimonial-item-content p {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-item-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.testimonial-author-content {
    width: calc(100% - 65px);
}

.testimonial-author-content h2 {
    font-size: 20px;
}

.testimonial-author-content p {
    margin: 5px 0 0;
}

.testimonial-author-image figure {
    display: block;
    border-radius: 100px;
}

.testimonial-author-image figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.our-testimonials .section-footer-text {
    margin-top: 60px;
}


/************************************/


/*** 	   14. Our faqs css		  ***/


/************************************/

.our-faqs {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.our-faqs::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    background: url('../images/section-bg-image-2.png') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 152px;
    height: 240px;
}

.our-faqs .container {
    position: relative;
    z-index: 2;
}

.faq-image-box {
    position: relative;
    height: 100%;
}

.faq-image {
    height: 100%;
}

.faq-image figure {
    display: block;
    height: 100%;
    border-radius: 30px;
}

.faq-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1.234;
    object-fit: cover;
    border-radius: 30px;
}

.faq-client-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 320px;
    background-color: var(--divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 12px;
    padding: 30px;
    z-index: 1;
}

.faq-client-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.faq-client-box .satisfy-client-images {
    margin-top: 30px;
}

.faq-content {
    height: 100%;
    align-content: center;
    margin-left: 15px;
}

.faq-accordion .accordion-item {
    position: relative;
    background: var(--bg-color);
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 18px 54px 18px 24px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 24px;
    top: 50%;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.4s ease-in-out
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--white-color);
    transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body {
    background-color: transparent;
    padding: 18px 24px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}


/************************************/


/*** 	   15. Our Blog css		  ***/


/************************************/

.our-blog {
    padding: 100px 0 70px;
}

.post-item {
    position: relative;
    background: var(--white-color);
    border-radius: 30px;
    min-height: 420px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.post-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.post-item.active::before,
.post-item:hover::before {
    transform: translate(100%, -100%);
}

.post-item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-image,
.post-item.active .post-item-image {
    opacity: 1;
}

.post-item-image figure {
    display: block;
    height: 100%;
}

.post-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.post-item-content-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    z-index: 1;
}

.post-item-tag a {
    position: relative;
    font-size: 14px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--white-color);
    display: inline-block;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background-color: var(--dark-divider-color);
    border: 1px solid transparent;
    border-radius: 40px;
    padding: 6px 15px;
    transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-tag a,
.post-item:hover .post-item-tag a {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background-color: var(--dark-divider-color);
    color: var(--white-color);
}

.post-item .post-item-tag a:hover {
    background-color: var(--accent-secondary-color);
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item.active .post-item-content h2,
.post-item:hover .post-item-content h2 {
    color: var(--white-color);
}

.post-item-content p {
    color: rgba(255, 255, 255, 0.85);
}

.post-item-btn {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
    transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-btn,
.post-item:hover .post-item-btn {
    border-color: var(--dark-divider-color);
}

.post-item-btn a.readmore-btn {
    color: var(--white-color);
}

.post-item.active .post-item-btn a.readmore-btn,
.post-item:hover .post-item-btn a.readmore-btn {
    color: var(--white-color);
}

.post-item-btn a.readmore-btn::before {
    background-color: var(--accent-secondary-color);
}

.post-item.active .post-item-btn a.readmore-btn::before,
.post-item:hover .post-item-btn a.readmore-btn::before {
    background-color: var(--accent-secondary-color);
}


/************************************/


/*** 	   16. Footer css		  ***/


/************************************/

.main-footer {
    position: relative;
    padding: 100px 0 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(143, 69, 63, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-header {
    border-bottom: 1px solid var(--dark-divider-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 60px;
    margin-bottom: 80px;
}

.footer-header-title {
    max-width: 600px;
}

.footer-header-title h2 {
    font-size: 40px;
    color: var(--white-color);
}

.footer-newsletter-form .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: none;
    border-radius: 40px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: 400px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 24px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
    opacity: 50%;
}

.footer-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-body-contact-item,
.about-footer {
    max-width: 33%;
}

.footer-body-contact-item h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-body-contact-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-body-contact-item ul li {
    display: flex;
    align-items: center;
    color: var(--white-color);
    line-height: 1.5em;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-body-contact-item ul li:last-child {
    margin: 0;
}

.footer-body-contact-item ul li img {
    width: 100%;
    max-width: 24px;
    margin-right: 10px;
}

.footer-body-contact-item ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-body-contact-item ul li a:hover {
    color: var(--accent-secondary-color);
}

.about-footer {
    text-align: center;
}

.footer-logo img {
    width: 100%;
    max-width: 159px;
}

.about-footer-content {
    margin-top: 20px;
}

.about-footer-content p {
    color: var(--white-color);
    margin: 0;
}

.footer-menu-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 80px;
    padding: 60px 0;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li a {
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
    color: var(--accent-secondary-color);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}

.footer-social-links h3 {
    font-size: 20px;
    color: var(--white-color);
}

.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-divider-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
    background: var(--accent-secondary-color);
}

.footer-social-links ul li i {
    font-size: 18px;
    color: inherit;
}


/************************************/


/*** 	17. About Us Page css	  ***/


/************************************/

.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 280px 0 170px;
    margin-top: 20px;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0.80) 0%, rgba(0, 0, 0, 0.00) 50%, rgba(6, 6, 6, 0.64) 87.5%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 2;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 60px;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.our-approach {
    padding: 100px 0;
}

.our-approach .section-title.section-title-center {
    max-width: 1000px;
}

.our-approach .section-title h2 .approach-title-img-1 img {
    width: 110px;
    height: 50px;
    border-radius: 100px;
}

.our-approach .section-title h2 .approach-title-img-2 img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.approach-item {
    background: var(--bg-color);
    border-radius: 30px;
    padding: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.approach-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.approach-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.approach-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.approach-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.approach-item-content {
    margin-top: 40px;
}

.approach-item-content h3 {
    font-size: 20px;
}

.approach-item-content p {
    margin: 15px 0 0;
}

.approach-item-content ul {
    border-top: 1px solid var(--divider-color);
    list-style: disc;
    margin: 20px 0 0;
    padding: 20px 0 0 20px;
}

.approach-item-content ul li {
    line-height: 1.5em;
    margin-bottom: 15px;
}

.approach-item-content ul li:last-child {
    margin-bottom: 0;
}

.approach-item-content ul li::marker {
    color: var(--accent-secondary-color);
}

.our-features {
    padding: 100px 0;
}

.feature-image-box {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.feature-image-box-1 {
    width: 33%;
    padding-bottom: 100px;
}

.feature-image figure {
    display: block;
    border-radius: 30px;
}

.feature-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.feature-image-box-1 .feature-image {
    margin-right: -245px;
}

.feature-image-box-1 .feature-image img {
    aspect-ratio: 1 / 1.36;
}

.feature-image-box-2 {
    position: relative;
    width: 67%;
    z-index: 1;
}

.feature-image-box-2 .feature-image figure {
    border: 6px solid var(--bg-color);
}

.feature-image-box-2 .feature-image img {
    aspect-ratio: 1 / 1.035;
    border-radius: 20px;
}

.feature-cta-box {
    position: relative;
    max-width: 225px;
    text-align: center;
    background: var(--primary-color);
    border: 6px solid var(--bg-color);
    border-radius: 30px;
    padding: 30px;
    margin: 0 50px -70px auto;
    z-index: 2;
}

.feature-cta-box .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto 30px;
}

.feature-cta-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.feature-cta-box:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.feature-cta-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.feature-cta-box:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.feature-cta-box-content p {
    color: var(--white-color);
    margin: 0;
}

.feature-content-box {
    margin-left: 15px;
}

.feature-content-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-body-item-list {
    width: calc(55% - 15px);
}

.feature-body-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.feature-body-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-body-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.feature-body-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.feature-body-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.feature-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.feature-body-item-content {
    width: calc(100% - 65px);
}

.feature-body-item-content h3 {
    font-size: 20px;
}

.feature-body-item-content p {
    margin: 10px 0 0;
}

.feature-video-image-box {
    position: relative;
    width: calc(45% - 15px);
}

.feature-video-image-box figure {
    display: block;
    border-radius: 30px;
    height: 100%;
}

.feature-video-image-box figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.8;
    filter: brightness(50%);
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.6s ease-in-out;
}

.feature-video-image-box:hover figure img {
    transform: scale(1.06);
}

.feature-video-image-box .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.feature-video-image-box .video-play-button a {
    width: 70px;
    height: 70px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.feature-video-image-box .video-play-button a i {
    font-size: 20px;
}

.our-features .section-footer-text {
    margin-top: 60px;
}

.intro-video {
    overflow: hidden;
}

.intro-video-box {
    position: relative;
}

.intro-video-image figure {
    display: block;
    border-radius: 30px;
}

.intro-video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
    filter: brightness(50%);
    border-radius: 30px;
    transition: all 0.6s ease-in-out;
}

.intro-video-box:hover .intro-video-image img {
    transform: scale(1.03);
}

.play-video-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.play-video-circle a {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    cursor: none;
}

.play-video-circle a img {
    width: 100%;
    max-width: 130px;
    border-radius: 50%;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    animation: infiniterotate 30s infinite linear;
}

.play-video-circle a:hover img {
    animation-play-state: paused;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.how-it-work {
    position: relative;
    padding: 100px 0;
}

.how-it-work::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(143, 69, 63, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.how-it-work .container {
    position: relative;
    z-index: 1;
}

.how-work-item {
    background: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    transition: all 0.4s ease-in-out;
}

.how-work-item:hover {
    transform: translateY(-5px);
}

.how-work-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.how-work-item-header .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.how-work-item-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.how-work-item:hover .how-work-item-header .icon-box::before {
    transform: rotate(0) scale(1);
}

.how-work-item-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.how-work-item:hover .how-work-item-header .icon-box img {
    filter: brightness(1) invert(1);
}

.how-work-item-no h3 {
    font-size: 20px;
    color: var(--white-color);
}

.how-work-item-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.how-work-item-content p {
    color: var(--white-color);
    border-top: 1px solid var(--dark-divider-color);
    margin: 20px 0 0;
    padding: 20px 0 0;
}


/************************************/


/*** 	 18. Programs Page css	  ***/


/************************************/

.page-programs {
    padding: 100px 0 70px;
}


/************************************/


/*** 	19. Program Single css	  ***/


/************************************/

.page-program-single {
    padding: 100px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.page-category-list {
    background: var(--secondary-color);
    border-radius: 30px;
    margin-bottom: 40px;
    overflow: hidden;
}

.page-category-list h2 {
    font-size: 20px;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 25px 40px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 40px;
}

.page-category-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: inherit;
    padding-right: 20px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
    color: var(--primary-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
    transform: rotate(45deg);
}

.sidebar-cta-box {
    position: relative;
    background: var(--primary-color) url('../images/bg-shape-ball.png') no-repeat;
    background-size: 140px auto;
    background-position: top -30px right -30px;
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

.sidebar-cta-box .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sidebar-cta-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.sidebar-cta-box:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.sidebar-cta-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.sidebar-cta-box:hover .icon-box img {
    filter: brightness(1) invert(1);
}

.sidebar-cta-box-content {
    margin-top: 60px;
}

.sidebar-cta-box-content h2,
.sidebar-cta-box-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.sidebar-cta-box-content p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.sidebar-cta-box-content h3 {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.sidebar-cta-box-content h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.sidebar-cta-box-content h3 a:hover {
    color: var(--accent-secondary-color);
}

.page-single-image {
    margin-bottom: 40px;
}

.page-single-image figure {
    display: block;
    border-radius: 30px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.568;
    object-fit: cover;
    border-radius: 30px;
}

.program-entry {
    margin-bottom: 60px;
}

.program-entry p {
    margin-bottom: 20px;
}

.program-entry p:last-child {
    margin-bottom: 0;
}

.program-entry h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.program-entry h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.program-entry-info-box,
.program-entry-highlights-box {
    margin-top: 60px;
}

.program-entry-image-content-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.program-entry-info-content,
.program-entry-info-image-box {
    width: calc(50% - 15px);
}

.program-entry-info-content {
    background: var(--white-color);
    border-radius: 30px;
    align-content: center;
    padding: 40px;
}

.program-entry-item-list {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.program-entry-item-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.program-entry-item-header {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.program-entry-item-header .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.program-entry-item-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.program-entry-item-list:hover .program-entry-item-header .icon-box::before {
    transform: rotate(0) scale(1);
}

.program-entry-item-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.program-entry-item-header-content {
    width: calc(100% - 65px);
}

.program-entry-item-list .skills-progress-bar .skillbar .skill-progress {
    background: var(--bg-color);
}

.program-entry-info-image-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-entry-video-image {
    position: relative;
    height: 100%;
}

.program-entry-video-image figure {
    display: block;
    height: 100%;
    border-radius: 30px;
}

.program-entry-video-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.818;
    object-fit: cover;
    border-radius: 30px;
    filter: brightness(50%);
}

.program-entry .section-footer-text {
    margin-top: 40px;
}

.program-entry-highlight-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.program-entry-highlight-item-list .match-highlight-image-box {
    width: calc(50% - 15px);
}

.program-entry-highlight-item-list .match-highlight-image-box:hover img {
    transform: scale(1.06);
}

.page-single-faqs .faq-accordion .accordion-item {
    background: var(--white-color);
}


/************************************/


/*** 	20. Blog Archive css	  ***/


/************************************/

.page-blog {
    padding: 100px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}


/************************************/


/*** 	 21. Blog Single css	  ***/


/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 30px;
}

.post-content {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 500;
    line-height: 1.1em;
    margin: 0 0 0.4em;
}

.post-entry h1 {
    font-size: 60px;
}

.post-entry h2 {
    font-size: 52px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--white-color) url('../images/icon-blockquote.svg');
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 30px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--accent-secondary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--accent-secondary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}


/************************************/


/***     22. Matches Page css	  ***/


/************************************/

.page-matches {
    padding: 100px 0 70px;
}


/************************************/


/***    23. Match Single css	  ***/


/************************************/

.match-single {
    padding: 100px 0;
}

.match-category-list ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}

.match-category-list ul li span {
    font-weight: 500;
    color: var(--primary-color);
}

.match-entry {
    margin-bottom: 60px;
}

.match-entry p {
    margin-bottom: 20px;
}

.match-entry p:last-child,
.match-entry h2:last-child,
.match-entry h3:last-child {
    margin: 0;
}

.match-entry h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.match-entry h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 10px;
}

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

.match-entry ul li {
    position: relative;
    line-height: 1.4em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.match-entry ul li:last-child {
    margin-bottom: 0;
}

.match-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-secondary-color);
    top: 0;
    left: 0;
}

.key-match-highlight-box,
.top-performers-match-box {
    margin-top: 60px;
}

.match-entry-overview-list {
    margin-top: 40px;
}

.key-match-highlight-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    background: var(--white-color);
    border-radius: 30px;
    padding: 40px;
    margin-top: 40px;
}

.key-match-highlight-item {
    width: calc(50% - 15px);
}

.key-match-highlight-item-header {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.key-match-highlight-item-header .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.key-match-highlight-item-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.key-match-highlight-item-header:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.key-match-highlight-item-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.key-match-highlight-item-content {
    width: calc(100% - 65px);
}

.key-match-highlight-item-body {
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.top-performers-match-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.top-performers-match-item {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background: var(--white-color);
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

.top-performers-match-item-content h3 {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.top-performers-list-image {
    display: flex;
    flex-wrap: wrap;
}

.top-performers-list {
    width: 35%;
}

.top-performers-list ul li {
    padding-left: 0;
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-performers-list ul li::before {
    display: none;
}

.top-performers-list ul li span {
    color: var(--primary-color);
    font-weight: 500;
}

.top-performers-image {
    width: 65%;
    align-content: end;
}

.top-performers-image figure {
    width: 100%;
    max-width: 350px;
    border-radius: 30px 30px 0 0;
    margin: 0 -70px -200px auto;
    overflow: hidden;
}

.top-performers-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
    aspect-ratio: 1 / 1.45;
}


/************************************/


/*** 	  24. Team Page css 	  ***/


/************************************/

.page-team {
    padding: 100px 0 70px;
}


/************************************/


/*** 	 25. Team Single css	  ***/


/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-single-image {
    margin-bottom: 40px;
}

.team-single-image figure {
    display: block;
    border-radius: 30px;
}

.team-single-image img {
    width: 100%;
    aspect-ratio: 1 / 1.256;
    object-fit: cover;
    border-radius: 30px;
}

.team-member-about,
.member-achievement-box,
.team-skills-box {
    margin-bottom: 60px;
}

.member-achievement-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.member-achievement-item:last-child {
    margin-bottom: 0;
}

.member-achievement-item::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-secondary-color);
    top: 2px;
    left: 0;
}

.member-achievement-item h3 {
    font-size: 16px;
    font-weight: 600;
}

.member-achievement-item p {
    margin: 5px 0 0;
}

.member-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.member-social-list h3 {
    font-size: 20px;
}

.member-social-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li a {
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.member-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}

.team-skills-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--white-color);
    border-radius: 30px;
    padding: 30px;
}

.team-skills-item {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.team-skills-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.team-skills-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.team-skills-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.team-skills-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.team-skills-item-content {
    width: calc(100% - 65px);
}

.team-skills-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.team-skills-item-content p {
    margin: 5px 0 0;
}


/************************************/


/***   26. Testimonials Page css  ***/


/************************************/

.page-testimonials {
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}


/************************************/


/*** 	27. Image Gallery css	  ***/


/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 30px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.745;
    object-fit: cover;
    border-radius: 30px;
}


/************************************/


/*** 	28. Video Gallery css	  ***/


/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 30px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    width: 100%;
    aspect-ratio: 1 / 0.745;
    object-fit: cover;
    border-radius: 30px;
}


/************************************/


/*** 	 29. FAQ's Page css 	  ***/


/************************************/

.page-faqs {
    padding: 100px 0;
}

.page-faqs .page-single-faqs {
    margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
    margin-bottom: 0px;
}


/************************************/


/*** 	30. Contact Us Page css	  ***/


/************************************/

.page-contact-us {
    padding: 100px 0 50px;
}

.contact-us-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 20px;
    height: 100%;
}

.contact-us-image {
    height: 100%;
}

.contact-us-image figure {
    height: 100%;
    display: block;
    border-radius: 30px;
}

.contact-us-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.68;
    object-fit: cover;
    border-radius: 30px;
}

.contact-us-form {
    background: var(--white-color);
    border-radius: 30px;
    padding: 60px;
}

.contact-form-content {
    margin-bottom: 40px;
}

.contact-form-content h2 {
    font-size: 30px;
}

.contact-form-content p {
    margin: 15px 0 0;
}

.contact-form label {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background: var(--bg-color);
    border-radius: 16px;
    padding: 18px 25px;
    border: none;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--primary-color);
    opacity: 50%;
}

.google-map {
    padding: 50px 0 100px;
}

.google-map-iframe iframe {
    width: 100%;
    height: 650px;
    border-radius: 30px;
}


/************************************/


/*** 	31. 404 Error Page css	  ***/


/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 720px;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}


/************************************/


/***      32. Responsive css      ***/


/************************************/

@media only screen and (max-width: 1880px) {
    .bg-section {
        width: calc(100% - 40px);
    }
}

@media only screen and (max-width: 1440px) {
    .container {
        max-width: 1300px;
    }
    .hero-content {
        margin-right: 0;
    }
    .about-trusted-player-box {
        padding: 20px;
    }
    .program-item-body {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }
    .program-item-content p {
        padding-top: 15px;
        margin-top: 15px;
    }
    .why-choose-item-list {
        gap: 20px;
    }
    .why-choose-item {
        width: calc(25% - 15px);
        padding: 30px 25px;
    }
    .benefit-item-box {
        padding: 30px;
    }
    .team-item-body {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }
    .testimonial-item {
        min-height: 410px;
        gap: 30px;
        padding: 30px;
    }
    .testimonial-item-author {
        margin-top: 30px;
        padding-top: 30px;
    }
    .faq-client-box {
        bottom: 30px;
        left: 30px;
        padding: 25px;
    }
    .post-item {
        padding: 30px;
        min-height: 360px;
    }
    .approach-item {
        padding: 30px;
    }
    .feature-content-box {
        margin-left: 0;
    }
    .how-work-item {
        padding: 30px;
        min-height: 320px;
    }
    .page-category-list h2 {
        padding: 20px 30px;
    }
    .page-category-list ul,
    .sidebar-cta-box {
        padding: 30px;
    }
    .sidebar-cta-box-content {
        margin-top: 40px;
    }
    .page-single-image {
        margin-bottom: 30px;
    }
    .program-entry-info-content {
        padding: 30px;
    }
    .post-content {
        max-width: 1100px;
    }
    .key-match-highlight-item-list {
        padding: 30px;
    }
    .top-performers-match-item {
        padding: 30px;
    }
    .contact-us-form {
        padding: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }
    .section-content-btn .section-btn {
        margin-top: 20px;
    }
    .section-title-content {
        margin-top: 10px;
    }
    .section-btn {
        text-align: left;
        margin-top: 15px;
    }
    .hero {
        height: auto;
    }
    .hero-content-btn {
        margin-top: 25px;
    }
    .about-us-image-box {
        max-width: 730px;
        margin: 0 auto 30px;
    }
    .about-us-content-box {
        margin: 0;
    }
    .program-item-image img {
        aspect-ratio: 1 / 0.98;
    }
    .why-choose-item-list {
        align-items: inherit;
    }
    .why-choose-item {
        width: calc(50% - 10px);
    }
    .why-choose-item.box-1 {
        min-height: initial;
    }
    .why-choose-item.box-2 figure,
    .why-choose-item.box-2 img {
        height: 100%;
    }
    .why-choose-item.box-3 .why-choose-item-content {
        min-height: 100%;
    }
    .why-choose-item.box-4 .why-choose-item-image figure {
        margin: 0 -40px -80px auto;
    }
    .why-choose-item.box-4 .why-choose-item-image img {
        max-width: 180px;
    }
    .our-match-item {
        width: calc(50% - 15px);
    }
    .our-benefits::before {
        top: 30px;
        width: 100px;
        height: 170px;
    }
    .benefit-item-box.box-3 {
        background-size: 110px auto;
        background-position: top -15px right -15px;
    }
    .team-item-image img {
        aspect-ratio: 1 / 1.1;
    }
    .cta-company-slider-content hr {
        width: 24%;
    }
    .cta-company-slider {
        margin: 0 -15px;
    }
    .testimonial-image {
        height: auto;
        margin-bottom: 30px;
    }
    .testimonial-image figure {
        height: auto;
    }
    .testimonial-image img {
        aspect-ratio: 1 / 0.8;
        height: auto;
    }
    .our-faqs::before {
        top: 30px;
        width: 100px;
        height: 170px;
    }
    .faq-image-box {
        height: auto;
        margin: 0 0 30px;
    }
    .faq-image,
    .faq-image figure,
    .faq-image img {
        height: auto;
    }
    .faq-image img {
        aspect-ratio: 1 / 0.85;
    }
    .faq-content {
        height: auto;
        margin-left: 0;
    }
    .footer-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .footer-header-title {
        max-width: 100%;
    }
    .footer-header-title h2 {
        font-size: 32px;
    }
    .footer-newsletter-form {
        width: 100%;
    }
    .footer-newsletter-form .form-group .form-control {
        width: 70%;
        padding: 6px 15px;
    }
    .about-footer {
        max-width: 100%;
        width: 100%;
        text-align: start;
        order: 1;
    }
    .about-footer-content {
        margin-top: 15px;
    }
    .footer-body-contact-item {
        max-width: 48%;
        order: 2;
    }
    .footer-body-contact-item h3 {
        margin-bottom: 20px;
    }
    .footer-body-contact-item ul li {
        margin-bottom: 15px;
    }
    .footer-body-contact-item ul li img {
        max-width: 20px;
        margin: 0;
    }
    .footer-menu-box {
        margin-top: 30px;
        padding: 30px 0;
    }
    .feature-image-box {
        max-width: 750px;
        margin: 0 auto 30px;
    }
    .page-single-sidebar {
        margin: 0;
    }
    .page-category-list {
        border-radius: 20px;
    }
    .page-category-list h2 {
        padding: 15px 20px;
    }
    .page-category-list ul {
        padding: 20px;
    }
    .page-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .sidebar-cta-box {
        background-size: 90px auto;
        background-position: top -15px right -15px;
        border-radius: 20px;
        padding: 20px;
    }
    .page-single-image figure,
    .page-single-image img {
        border-radius: 20px;
    }
    .program-entry {
        margin-bottom: 40px;
    }
    .program-entry-info-box,
    .program-entry-highlights-box {
        margin-top: 40px;
    }
    .program-entry-image-content-box {
        margin-top: 30px;
    }
    .program-entry-info-content,
    .program-entry-info-image-box {
        width: 100%;
    }
    .program-entry-info-content,
    .program-entry-video-image figure,
    .program-entry-video-image figure img {
        border-radius: 20px;
    }
    .program-entry-item-list {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .program-entry-item-header {
        margin-bottom: 30px;
    }
    .program-entry-info-image-box {
        gap: 20px;
    }
    .program-entry-video-image,
    .program-entry-video-image figure,
    .program-entry-video-image img {
        height: auto;
    }
    .program-entry-video-image figure img {
        aspect-ratio: 1 / 0.618;
    }
    .program-entry .section-footer-text {
        margin-top: 30px;
    }
    .program-entry-highlight-item-list {
        gap: 20px;
        margin-top: 30px;
    }
    .program-entry-highlight-item-list .match-highlight-image-box {
        width: calc(50% - 10px);
    }
    .program-entry-highlight-item-list .match-highlight-image-box .match-highlight-item-image a,
    .program-entry-highlight-item-list .match-highlight-image-box .match-highlight-item-image figure {
        border-radius: 20px;
    }
    .match-entry {
        margin-bottom: 40px;
    }
    .key-match-highlight-box,
    .top-performers-match-box {
        margin-top: 40px;
    }
    .match-entry-overview-list {
        margin-top: 30px;
    }
    .key-match-highlight-item-list {
        margin-top: 30px;
        border-radius: 20px;
    }
    .key-match-highlight-item {
        width: 100%;
    }
    .key-match-highlight-item-body {
        margin-top: 20px;
        padding-top: 20px;
    }
    .top-performers-match-item-list {
        margin-top: 20px;
    }
    .top-performers-match-item {
        width: 100%;
        border-radius: 20px;
    }
    .top-performers-image figure {
        max-width: 260px;
        margin: 0 -50px -180px auto;
    }
    .team-single-image figure,
    .team-single-image img {
        border-radius: 20px;
    }
    .team-member-about,
    .member-achievement-box,
    .team-skills-box {
        margin-bottom: 40px;
    }
    .member-social-list {
        margin-top: 30px;
        padding-top: 30px;
    }
    .team-skills-item-list {
        border-radius: 20px;
    }
    .team-skills-item-content {
        width: 100%;
    }
    .contact-us-content {
        height: auto;
        margin: 0 0 30px;
    }
    .contact-us-image,
    .contact-us-image figure,
    .contact-us-image img {
        height: auto;
    }
}

@media only screen and (max-width: 991px) {
    .btn-default {
        padding: 15px 42px 15px 20px;
    }
    .btn-default::before {
        right: 20px;
    }
    header.main-header {
        top: 0px;
    }
    header.main-header.sl-glass-header {
        top: 10px;
        width: calc(100% - 20px);
    }
    header.main-header.sl-glass-header .header-sticky,
    header.main-header.sl-glass-header .header-sticky.active {
        border-radius: 20px;
    }
    header.main-header .header-sticky.active {
        width: calc(100% - 20px);
        border-radius: 20px;
        top: 10px;
    }
    .navbar {
        padding: 12px 15px;
    }
    .responsive-menu,
    .navbar-toggle {
        display: block;
    }
    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }
    .header-btn {
        display: none;
    }
    .bg-section {
        width: 100%;
        border-radius: 0;
        margin: 0;
    }
    .bg-section .container-fluid {
        padding: 0 15px;
    }
    .section-row {
        margin-bottom: 40px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title .section-sub-title {
        margin-bottom: 10px;
        padding: 6px 12px 6px 26px;
    }
    .section-title .section-sub-title::before {
        left: 12px;
    }
    .section-title h1 {
        font-size: 44px;
    }
    .section-title h2 {
        font-size: 38px;
    }
    .section-title p {
        margin-top: 10px;
    }
    .hero {
        padding: 140px 0 50px;
        margin-top: 0;
    }
    .hero-client-box-content h2 {
        font-size: 26px;
    }
    .about-us {
        padding: 50px 0;
    }
    .about-us-image figure,
    .about-us-image img,
    .about-trusted-player-box {
        border-radius: 20px;
    }
    .about-body-item-list {
        border-radius: 20px;
        padding: 20px;
    }
    .about-us-list {
        margin-top: 30px;
    }
    .about-us-list ul li::before {
        font-size: 16px;
    }
    .about-us-btn {
        margin-top: 30px;
        padding-top: 30px;
    }
    .our-program {
        padding: 50px 0;
    }
    .program-item {
        border-radius: 20px;
    }
    .program-item-body {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }
    .program-item-content p {
        padding-top: 10px;
        margin-top: 10px;
    }
    .section-footer-text,
    .section-footer-text ul {
        margin-top: 10px;
    }
    .section-footer-text ul li {
        font-size: 16px;
    }
    .why-choose-us {
        padding: 50px 0;
    }
    .why-choose-item {
        border-radius: 20px;
    }
    .why-choose-item-content ul li {
        margin-bottom: 10px;
    }
    .why-choose-item.box-4 .why-choose-item-content p {
        margin-top: 15px;
        padding-top: 15px;
    }
    .why-choose-item.box-4 .why-choose-item-image img {
        border-radius: 20px 0 0 0;
    }
    .why-choose-us .section-footer-text {
        margin-top: 40px;
    }
    .our-match {
        padding: 50px 0;
    }
    .our-match-item {
        padding: 20px 20px 0;
        border-radius: 20px;
    }
    .our-match-item-body::before {
        font-size: 26px;
    }
    .match-team-logo figure img {
        max-width: 100px;
    }
    .our-match-item-btn {
        margin: 20px -20px 0;
    }
    .our-match-item-btn a {
        font-size: 18px;
        padding: 15px;
    }
    .our-match .section-footer-text {
        margin-top: 40px;
    }
    .our-benefits {
        padding: 50px 0;
    }
    .benefit-item-box {
        border-radius: 20px;
        padding: 20px;
    }
    .benefit-item-box-content h2 {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .benefit-item-box-content h3 {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .benefit-skill-bar .skills-progress-bar {
        margin-bottom: 20px;
    }
    .benefit-item-box-content ul li {
        margin-bottom: 15px;
    }
    .benefit-item-box-content ul li::before {
        font-size: 16px;
    }
    .our-team {
        padding: 50px 0;
    }
    .team-item {
        border-radius: 20px;
    }
    .team-item .team-social-list {
        margin-top: 15px;
        padding-top: 15px;
    }
    .cta-box {
        padding: 50px 0;
    }
    .cta-company-slider-box {
        margin-top: 50px;
    }
    .cta-company-slider-content {
        margin-bottom: 25px;
    }
    .cta-company-slider .swiper-slide .company-logo img {
        max-width: 155px;
        height: 36px;
    }
    .our-testimonials {
        padding: 50px 0;
    }
    .testimonial-image figure,
    .testimonial-image img {
        border-radius: 20px;
    }
    .testimonial-item {
        min-height: initial;
        gap: 20px;
        padding: 20px;
        border-radius: 20px;
    }
    .testimonial-item-rating i,
    .testimonial-item-content p {
        font-size: 18px;
    }
    .testimonial-item-author {
        margin-top: 20px;
        padding-top: 20px;
    }
    .our-testimonials .section-footer-text {
        margin-top: 40px;
    }
    .our-faqs {
        padding: 50px 0;
    }
    .faq-image figure,
    .faq-image img {
        border-radius: 20px;
    }
    .faq-client-box .satisfy-client-images {
        margin-top: 20px;
    }
    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        padding: 15px 40px 15px 15px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 15px;
    }
    .our-blog {
        padding: 50px 0 20px;
    }
    .post-item {
        padding: 20px;
        border-radius: 20px;
    }
    .post-item-btn {
        margin-top: 20px;
        padding-top: 20px;
    }
    .main-footer {
        padding: 50px 0 0;
        margin-bottom: 0;
    }
    .footer-menu-box {
        gap: 15px;
    }
    .footer-menu ul {
        gap: 15px;
    }
    .footer-social-links h3 {
        display: none;
    }
    .footer-social-links ul {
        gap: 10px;
    }
    .page-header {
        padding: 170px 0 80px;
        margin: 0;
    }
    .page-header-box h1 {
        font-size: 44px;
    }
    .our-approach {
        padding: 50px 0;
    }
    .our-approach .section-title h2 .approach-title-img-1 img {
        width: 90px;
        height: 32px;
    }
    .our-approach .section-title h2 .approach-title-img-2 img {
        width: 30px;
        height: 30px;
    }
    .approach-item {
        border-radius: 20px;
        padding: 20px;
    }
    .approach-item-content {
        margin-top: 30px;
    }
    .approach-item-content p {
        margin: 10px 0 0;
    }
    .approach-item-content ul li {
        margin-bottom: 10px;
    }
    .our-features {
        padding: 50px 0;
    }
    .feature-image figure,
    .feature-image img,
    .feature-cta-box {
        border-radius: 20px;
    }
    .feature-cta-box .icon-box {
        margin-bottom: 20px;
    }
    .feature-body-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .feature-video-image-box figure,
    .feature-video-image-box figure img {
        border-radius: 20px;
    }
    .our-features .section-footer-text {
        margin-top: 40px;
    }
    .intro-video .container-fluid {
        padding: 0;
    }
    .intro-video-image figure,
    .intro-video-image img {
        border-radius: 0;
    }
    .play-video-circle a img {
        max-width: 110px;
    }
    .how-it-work {
        padding: 50px 0;
    }
    .how-work-item {
        border-radius: 20px;
    }
    .how-work-item-content p {
        margin-top: 20px;
        padding-top: 20px;
    }
    .page-programs {
        padding: 50px 0 20px;
    }
    .page-program-single {
        padding: 50px 0;
    }
    .page-single-sidebar,
    .page-category-list {
        margin-bottom: 30px;
    }
    .sidebar-cta-box .icon-box {
        width: 50px;
        height: 50px;
    }
    .sidebar-cta-box .icon-box img {
        max-width: 24px;
    }
    .sidebar-cta-box-content {
        margin-top: 30px;
    }
    .sidebar-cta-box-content h3 {
        margin-top: 20px;
        padding-top: 20px;
    }
    .page-single-image {
        margin-bottom: 20px;
    }
    .program-entry p {
        margin-bottom: 15px;
    }
    .program-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .program-entry h3 {
        margin-bottom: 5px;
    }
    .page-blog {
        padding: 50px 0;
    }
    .page-pagination {
        margin-top: 10px;
    }
    .page-single-post {
        padding: 50px 0;
    }
    .post-image {
        margin-bottom: 20px;
    }
    .post-image figure,
    .post-image img {
        border-radius: 20px;
    }
    .post-entry h2 {
        font-size: 38px;
    }
    .post-entry p {
        margin-bottom: 15px;
    }
    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .post-entry blockquote p {
        font-size: 18px;
    }
    .post-tags {
        margin-bottom: 20px;
    }
    .post-tags .tag-links a {
        padding: 12px 15px;
    }
    .post-social-sharing ul {
        text-align: left;
    }
    .page-matches {
        padding: 50px 0 20px;
    }
    .match-single {
        padding: 50px 0;
    }
    .match-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .match-entry h3 {
        margin-bottom: 5px;
    }
    .match-entry p {
        margin-bottom: 15px;
    }
    .match-entry ul li {
        margin-bottom: 10px;
    }
    .match-entry ul li::before {
        font-size: 16px;
    }
    .top-performers-match-item-content h3 {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .page-team {
        padding: 50px 0 20px;
    }
    .page-team-single {
        padding: 50px 0;
    }
    .team-single-image {
        margin-bottom: 30px;
    }
    .team-single-image img {
        aspect-ratio: 1 / 1.056;
    }
    .member-achievement-item {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    .member-achievement-item::before {
        font-size: 16px;
    }
    .page-testimonials {
        padding: 50px 0 20px;
    }
    .page-gallery {
        padding: 50px 0 20px;
    }
    .page-gallery-box .photo-gallery figure,
    .page-gallery-box .photo-gallery img {
        border-radius: 20px;
    }
    .page-video-gallery {
        padding: 50px 0 20px;
    }
    .video-gallery-image a::before,
    .video-gallery-image img {
        border-radius: 20px;
    }
    .page-faqs {
        padding: 50px 0;
    }
    .page-faqs .page-single-faqs {
        margin-bottom: 40px;
    }
    .page-contact-us {
        padding: 50px 0 25px;
    }
    .contact-us-image figure,
    .contact-us-image img {
        border-radius: 20px;
    }
    .contact-us-form {
        padding: 20px;
        border-radius: 20px;
    }
    .contact-form-content {
        margin-bottom: 30px;
    }
    .contact-form-content h2 {
        font-size: 24px;
    }
    .contact-form label {
        margin-bottom: 10px;
    }
    .contact-form .form-control {
        border-radius: 10px;
        padding: 13px 15px;
    }
    .google-map {
        padding: 25px 0 50px;
    }
    .google-map-iframe iframe {
        height: 500px;
        border-radius: 20px;
    }
    .error-page {
        padding: 50px 0px;
    }
    .error-page-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title h1 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .hero-client-box {
        margin-bottom: 10px;
    }
    .satisfy-client-image figure img {
        max-width: 40px;
    }
    .satisfy-client-image.add-more {
        width: 40px;
        height: 40px;
    }
    .hero-client-box-content h2 {
        font-size: 22px;
    }
    .hero-button-box {
        gap: 15px;
    }
    .video-play-button {
        gap: 10px;
    }
    .video-play-button a {
        width: 40px;
        height: 40px;
    }
    .about-us-image-box-1 {
        margin-bottom: 30px;
    }
    .about-us-image-box-2 .about-us-image {
        margin-left: -105px;
    }
    .about-us-image-box-2 .about-us-image img {
        aspect-ratio: 1 / 1.2;
    }
    .about-trusted-player-box {
        margin: 15px 0 0 -60px;
        background-size: 90px auto;
        border-width: 3px;
        padding: 15px;
    }
    .about-trusted-player-box-content {
        margin-top: 10px;
    }
    .about-trusted-player-box-content p {
        font-size: 16px;
    }
    .about-body-item-list {
        gap: 20px;
    }
    .about-body-item {
        width: 100%;
    }
    .about-body-item-content h3 {
        font-size: 18px;
    }
    .about-body-item-content p {
        margin: 5px 0 0;
    }
    .about-us-list ul {
        gap: 10px;
    }
    .about-us-list ul li {
        width: 100%;
    }
    .program-item-body {
        transform: translateY(45px);
    }
    .program-item-content h2 {
        font-size: 18px;
    }
    .why-choose-item {
        width: 100%;
        padding: 20px;
    }
    .why-choose-item.box-1 {
        gap: 20px;
    }
    .why-choose-item-content h3 {
        font-size: 18px;
    }
    .why-choose-item-content p {
        margin-top: 5px;
    }
    .why-choose-item-content ul {
        margin: 15px 0 0;
        padding: 15px 0 0 20px;
    }
    .why-choose-item-body-btn {
        margin-top: 20px;
    }
    .why-choose-item.box-4 {
        gap: 20px;
    }
    .our-match-item {
        width: 100%;
    }
    .our-match-item-title {
        margin-bottom: 20px;
    }
    .our-match-item-body::before {
        font-size: 22px;
    }
    .our-match-item-date {
        margin-top: 20px;
    }
    .our-match-item-title h3,
    .our-match-item-date h3 {
        font-size: 18px;
    }
    .benefit-item-box {
        gap: 20px;
    }
    .benefit-item-box-content h2 {
        font-size: 28px;
    }
    .benefit-item-box-content h3 {
        font-size: 18px;
    }
    .team-item-body {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }
    .team-item-content h2 {
        font-size: 18px;
    }
    .cta-company-slider-content hr {
        width: 0;
    }
    .testimonial-item-content p {
        font-size: 16px;
    }
    .testimonial-author-content h2 {
        font-size: 18px;
    }
    .faq-client-box {
        position: initial;
        max-width: 100%;
        background-color: var(--primary-color);
        margin-top: 20px;
        padding: 20px;
    }
    .faq-client-content h3 {
        font-size: 18px;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 10px 40px 10px 15px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 10px 15px;
    }
    .post-item {
        padding: 20px;
        min-height: 310px;
    }
    .post-item-content h2 {
        font-size: 18px;
    }
    .footer-header-title h2 {
        font-size: 24px;
    }
    .footer-newsletter-form .form-group .form-control {
        width: calc(100% - 40px);
    }
    .footer-newsletter-form .form-group .btn-default {
        font-size: 0;
        padding: 20px;
    }
    .footer-newsletter-form .form-group .btn-default::before {
        right: 14px;
    }
    .about-footer-content {
        margin-top: 10px;
    }
    .footer-body-contact-item {
        max-width: 100%;
    }
    .footer-body-contact-item h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-body-contact-item ul li {
        margin-bottom: 10px;
    }
    .footer-menu-box {
        justify-content: center;
        padding: 15px 0;
    }
    .footer-menu ul {
        gap: 5px 13px;
    }
    .footer-menu ul li {
        font-size: 14px;
    }
    .footer-social-links,
    .footer-social-links ul {
        gap: 8px;
    }
    .footer-social-links h3 {
        font-size: 18px;
    }
    .footer-social-links ul li a {
        width: 36px;
        height: 36px;
    }
    .footer-social-links ul li a i {
        font-size: 16px;
    }
    .page-header-box h1 {
        font-size: 28px;
    }
    .approach-item-content {
        margin-top: 20px;
    }
    .approach-item-content h3 {
        font-size: 18px;
    }
    .approach-item-content ul {
        margin-top: 15px;
        padding-top: 15px;
    }
    .feature-image-box-1 {
        padding-bottom: 70px;
    }
    .feature-image-box-1 .feature-image {
        margin-right: -150px;
    }
    .feature-cta-box {
        max-width: 170px;
        padding: 15px;
        margin: 0 15px -40px auto;
    }
    .feature-cta-box .icon-box {
        margin-bottom: 15px;
    }
    .feature-cta-box-content p {
        font-size: 14px;
    }
    .feature-body-item-list,
    .feature-video-image-box {
        width: 100%;
    }
    .feature-body-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .feature-body-item-content h3 {
        font-size: 18px;
    }
    .feature-body-item-content p {
        margin-top: 5px;
    }
    .intro-video-image img {
        aspect-ratio: 1 / 0.67;
    }
    .play-video-circle a img {
        max-width: 90px;
    }
    .how-work-item {
        padding: 20px;
        min-height: 260px;
    }
    .how-work-item-no h3,
    .how-work-item-content h3 {
        font-size: 18px;
    }
    .page-category-list h2 {
        font-size: 18px;
    }
    .sidebar-cta-box-content {
        margin-top: 20px;
    }
    .sidebar-cta-box-content h2 {
        font-size: 18px;
    }
    .sidebar-cta-box-content h3 {
        font-size: 18px;
        margin-top: 15px;
        padding-top: 15px;
    }
    .page-single-image img {
        aspect-ratio: 1 / 0.65;
    }
    .program-entry h2 {
        font-size: 26px;
    }
    .program-entry h3 {
        font-size: 18px;
    }
    .program-entry-info-content {
        padding: 20px;
    }
    .program-entry-item-header {
        margin-bottom: 20px;
    }
    .program-entry-item-header-content {
        width: 100%;
    }
    .program-entry-highlight-item-list .match-highlight-image-box {
        width: 100%;
    }
    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }
    .post-image img {
        aspect-ratio: 1 / 0.7;
    }
    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    .post-entry blockquote p {
        font-size: 16px;
    }
    .post-entry h2 {
        font-size: 26px;
    }
    .tag-links {
        font-size: 18px;
    }
    .match-entry h2 {
        font-size: 26px;
    }
    .match-entry h3 {
        font-size: 18px;
    }
    .key-match-highlight-item-list {
        padding: 20px;
    }
    .top-performers-match-item {
        padding: 20px;
    }
    .top-performers-list ul li {
        font-size: 18px;
    }
    .top-performers-image figure {
        margin: 0 -40px -145px auto;
    }
    .member-social-list {
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
    }
    .member-social-list h3 {
        font-size: 18px;
    }
    .member-social-list ul {
        gap: 10px;
    }
    .team-skills-item-list {
        padding: 20px;
    }
    .team-skills-item {
        width: 100%;
    }
    .team-skills-item-content h3 {
        font-size: 18px;
    }
    .contact-form-content h2 {
        font-size: 20px;
    }
    .contact-form-content p {
        margin-top: 10px;
    }
    .google-map-iframe iframe {
        height: 350px;
    }
}


/************************************/


/***   33. Home - Version 2 css	  ***/


/************************************/

.hero-royal {
    padding: 210px 0 100px;
    margin-top: 20px;
    overflow: hidden;
}

.hero-content-royal {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-sub-heading-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-sub-heading-content-royal h3 {
    font-size: 30px;
    color: var(--white-color);
}

.hero-sub-heading-content-royal p {
    line-height: normal;
    color: var(--white-color);
    margin: 5px 0 0;
}

.hero-content-royal .section-title {
    margin-bottom: 0;
}

.hero-content-royal .section-title h1 {
    font-size: 80px;
}

.hero-image-box-royal {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px 60px;
    z-index: 1;
}

.hero-cta-box-royal {
    position: relative;
    width: calc(28% - 40px);
}

.hero-cta-image-royal figure {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.hero-cta-image-royal figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 40.21%, var(--primary-color) 110.01%);
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero-cta-image-royal figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1 / 0.74;
}

.hero-cta-content-royal {
    position: absolute;
    left: 25px;
    bottom: 25px;
    right: 25px;
    z-index: 1;
}

.hero-cta-content-royal p {
    color: var(--white-color);
    margin-bottom: 0;
}

.hero-image-royal {
    width: calc(44% - 40px);
    text-align: center;
}

.hero-image-royal figure {
    display: block;
    border-radius: 10px 10px 0 0;
}

.hero-image-royal figure img {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1.07;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -100px 0 -100px;
}

.hero-counter-list-royal {
    width: calc(28% - 40px);
}

.hero-counter-item-royal {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.hero-counter-item-royal:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.hero-counter-item-royal h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--accent-secondary-color);
}

.hero-counter-item-royal h2 span {
    color: var(--white-color);
}

.hero-counter-item-royal p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.about-us-royal {
    padding: 100px 0;
}

.about-us-image-box-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    margin-right: 30px;
    height: 100%;
}

.about-us-image-box-1-royal {
    position: relative;
    width: 18%;
    margin-bottom: 20px;
    z-index: 2;
}

.about-us-counter-royal {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    margin: 0px 0px 20px 10px;
}

.about-us-counter-royal h2 {
    font-size: 50px;
    color: var(--accent-secondary-color);
    font-weight: 600;
}

.about-us-counter-royal h2 span {
    color: var(--primary-color);
}

.about-us-counter-royal p {
    color: var(--primary-color);
    margin: 0;
}

.about-us-image-box-1-royal .about-us-image-royal {
    margin-right: -140px;
}

.about-us-image-box-1-royal .about-us-image-royal figure {
    border: 10px solid var(--bg-color);
}

.about-us-image-box-1-royal .about-us-image-royal figure img {
    border-radius: 20px;
}

.about-us-image-box-2-royal {
    width: 82%;
    height: 100%;
}

.about-us-image-royal {
    height: 100%;
}

.about-us-image-royal figure {
    display: block;
    height: 100%;
    border-radius: 30px;
}

.about-us-image-box-2-royal .about-us-image-royal figure img {
    aspect-ratio: 1 / 1.14;
}

.about-us-image-royal figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1 / 1.31;
}

.about-us-content-royal {
    height: 100%;
    align-content: center;
}

.about-us-item-royal {
    background-color: var(--white-color);
    border-left: 6px solid var(--accent-secondary-color);
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}

.about-us-item-quote-royal img {
    width: 100%;
    max-width: 40px;
}

.about-us-item-content-royal {
    width: calc(100% - 60px);
}

.about-us-item-content-royal h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.about-us-item-content-royal p {
    color: var(--accent-secondary-color);
    margin: 10px 0 0;
}

.about-us-footer-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    margin-top: 40px;
}

.about-us-contact-box-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.about-us-contact-box-royal .icon-box {
    position: relative;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-contact-box-royal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-contact-box-royal:hover .icon-box::before {
    transform: scale(1);
}

.about-us-contact-box-royal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-us-conatct-content-royal p {
    line-height: normal;
    margin: 0 0 5px;
}

.about-us-conatct-content-royal h3 {
    font-size: 20px;
}

.about-us-conatct-content-royal h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.about-us-conatct-content-royal h3 a:hover {
    color: var(--accent-secondary-color);
}

.our-programs-royal {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.our-programs-royal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -10px;
    background-image: url('../images/section-bg-image-1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 152px;
    height: 240px;
}

.our-programs-royal .container {
    position: relative;
    z-index: 2;
}

.program-item-list-royal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    height: 100%;
}

.program-item-royal {
    width: calc(50% - 15px);
    background-color: var(--bg-color);
    border-radius: 30px;
    padding: 10px;
}

.program-item-image-royal a,
.program-item-image-royal figure {
    display: block;
    cursor: none;
    border-radius: 20px;
    overflow: hidden;
}

.program-item-image-royal figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 1 / 0.54;
    transition: all 0.6s ease-in-out;
}

.program-item-royal:hover .program-item-image-royal figure img {
    transform: scale(1.06);
}

.program-item-content-royal {
    padding: 30px 20px 20px;
}

.program-item-content-royal h2 {
    font-size: 20px;
}

.program-item-content-royal h2 a {
    color: inherit;
}

.program-item-content-royal p {
    margin: 10px 0 0;
}

.program-cta-box-royal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
}

.program-cta-item-royal .satisfy-client-images {
    justify-content: center;
    margin-bottom: 25px;
}

.program-cta-item-royal .satisfy-client-image {
    border-color: var(--primary-color);
}

.program-cta-item-royal .satisfy-client-image img {
    max-width: 30px;
}

.program-cta-item-content-royal h3 {
    color: var(--white-color);
    font-size: 20px;
}

.program-cta-item-content-royal p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.program-cta-item-image-royal figure {
    display: block;
    border-radius: 10px;
}

.program-cta-item-image-royal figure img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1 / 1.75;
}

.our-programs-royal .section-footer-text {
    margin-top: 60px;
}

.why-choose-us-royal {
    padding: 100px 0;
}

.why-choose-us-box-royal {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.why-choose-image-royal {
    width: calc(35% - 40px);
}

.why-choose-image-royal figure {
    display: block;
    border-radius: 30px;
    height: 100%;
}

.why-choose-image-royal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1 / 1.32;
}

.why-choose-item-list-royal {
    width: calc(35% - 40px);
}

.why-choose-item-royal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.why-choose-item-royal:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.why-choose-item-royal .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.why-choose-item-royal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item-royal:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.why-choose-item-royal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.why-choose-item-content-royal {
    width: calc(100% - 75px);
}

.why-choose-item-content-royal h3 {
    font-size: 20px;
}

.why-choose-item-content-royal p {
    margin: 5px 0 0;
}

.why-choose-info-box-royal {
    width: calc(30% - 40px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-info-item-royal {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 40px;
}

.why-choose-info-content-royal h3 {
    font-size: 20px;
    color: var(--white-color);
}

.why-choose-counter-box-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.why-choose-counter-item-list-royal {
    width: calc(50% - 15px);
}

.why-choose-counter-item-royal {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.why-choose-counter-item-royal:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-counter-item-royal h2 {
    color: var(--white-color);
    font-size: 40px;
    font-weight: 600;
}

.why-choose-counter-item-royal p {
    font-size: 14px;
    color: var(--white-color);
    margin: 5px 0 0;
}

.why-choose-counter-item-image-royal {
    width: calc(50% - 15px);
}

.why-choose-counter-item-image-royal figure {
    display: block;
    text-align: center;
    border-radius: 10px;
}

.why-choose-counter-item-image-royal img {
    width: 100%;
    max-width: 150px;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 1 / 1.28;
}

.why-choose-info-image-royal {
    height: 100%;
}

.why-choose-info-image-royal figure {
    display: block;
    border-radius: 30px;
    height: 100%;
}

.why-choose-info-image-royal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1 / 0.56;
}

.our-benefits-royal {
    padding: 100px 0;
}

.our-benefits-image-royal {
    align-content: end;
    height: 100%;
}

.our-benefits-image-royal figure {
    display: block;
    border-radius: 30px 30px 0 0;
    margin-bottom: -100px;
}

.our-benefits-image-royal img {
    width: 100%;
    max-width: 570px;
    aspect-ratio: 1 / 1.465;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
}

.benefits-item-royal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.benefits-item-royal:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.benefits-item-image-royal figure {
    display: block;
    border-radius: 100px;
}

.benefits-item-image-royal img {
    width: 100%;
    max-width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 100px;
    object-fit: cover;
}

.benefits-item-content-royal {
    width: calc(100% - 120px);
}

.benefits-item-content-royal h3 {
    font-size: 20px;
    color: var(--white-color);
}

.benefits-item-content-royal p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.our-coaches-royal {
    padding: 100px 0;
}

.coaches-item-royal {
    background: var(--white-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
}

.coaches-item-image-royal {
    position: relative;
    overflow: hidden;
}

.coaches-item-image-royal a {
    cursor: none;
}

.coaches-item-image-royal a,
.coaches-item-image-royal figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.coaches-item-image-royal img {
    width: 100%;
    aspect-ratio: 1 / 1.17;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.coaches-item-royal:hover .coaches-item-image-royal img {
    transform: scale(1.06);
}

.coaches-item-social-list-royal {
    position: absolute;
    text-align: center;
    right: 30px;
    bottom: 0px;
    left: 30px;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.coaches-item-royal:hover .coaches-item-social-list-royal {
    transform: translateY(0%);
    bottom: 30px;
}

.coaches-item-social-list-royal ul {
    list-style: none;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 100px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    margin: 0;
}

.coaches-item-social-list-royal ul li a {
    width: 36px;
    height: 36px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.coaches-item-social-list-royal ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.coaches-item-social-list-royal ul li a i {
    font-size: 18px;
    color: inherit;
}

.coaches-item-body-royal {
    text-align: center;
    padding: 30px 10px 20px;
}

.coaches-item-body-royal h2 {
    font-size: 20px;
}

.coaches-item-body-royal h2 a {
    color: inherit;
}

.coaches-item-body-royal p {
    margin: 5px 0 0;
}

.cta-box-royal {
    padding: 200px 0;
    position: relative;
    background-image: url('../images/cta-box-image-royal.jpg');
    background-position: center center;
    overflow: hidden;
}

.cta-box-content-royal {
    background: var(--divider-color);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 30px;
    padding: 50px;
    max-width: 735px;
}

.video-play-button-royal {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.video-play-button-royal a {
    position: relative;
    height: 50px;
    width: 50px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button-royal:hover a {
    background: var(--white-color);
}

.video-play-button-royal a.bg-effect:before,
.video-play-button-royal a.bg-effect:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 100%;
    height: 100%;
    border: 40px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button-royal a.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button-royal a i {
    font-size: 16px;
    color: var(--white-color);
    margin-left: 2px;
    transition: all 0.3s ease-in-out;
}

.video-play-button-royal:hover a i {
    color: var(--primary-color);
}

.cta-box-content-royal .section-title {
    margin-bottom: 0;
}

.cta-box-footer-royal {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.cta-box-contact-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.cta-box-contact-royal .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-box-contact-royal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.cta-box-contact-royal:hover .icon-box::before {
    transform: scale(1);
}

.cta-box-contact-royal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.cta-box-contact-royal:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.cta-box-conatct-content-royal p {
    margin: 0 0 5px;
    color: var(--white-color);
}

.cta-box-conatct-content-royal h3 {
    font-size: 20px;
    color: var(--white-color);
}

.cta-box-conatct-content-royal h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.cta-box-conatct-content-royal h3:hover a {
    color: var(--primary-color);
}

.match-highlights-royal {
    padding: 100px 0;
}

.match-highlights-item-royal {
    position: relative;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.match-highlights-item-image-royal figure,
.match-highlights-item-image-royal a {
    position: relative;
    display: block;
    height: 100%;
    cursor: none;
}

.match-highlights-item-image-royal figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.80) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.match-highlights-item-image-royal figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.95;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.match-highlights-item-royal:hover .match-highlights-item-image-royal figure img {
    transform: scale(1.06);
}

.match-highlights-item-content-royal {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.match-highlights-item-meta-royal {
    margin-bottom: 10px;
}

.match-highlights-item-meta-royal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.match-highlights-item-meta-royal ul li {
    position: relative;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--white-color);
}

.match-highlights-item-meta-royal ul li a {
    color: inherit;
}

.match-highlights-item-meta-royal ul li::before {
    content: '/';
    position: absolute;
    top: 0;
    right: -13px;
}

.match-highlights-item-meta-royal ul li:last-child::before {
    display: none;
}

.match-highlights-item-content-royal h2 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
}

.match-highlights-item-content-royal h2 a {
    color: inherit;
}

.match-highlights-item-btn-royal {
    position: absolute;
    top: 40px;
    right: 40px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.match-highlights-item-royal:hover .match-highlights-item-btn-royal {
    transform: scale(1);
}

.match-highlights-item-btn-royal a {
    background: var(--accent-secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.match-highlights-item-btn-royal a:hover {
    background-color: var(--white-color);
}

.match-highlights-item-btn-royal a img {
    width: 100%;
    max-width: 16px;
    transition: all 0.4s ease-in-out;
}

.match-highlights-item-btn-royal a:hover img {
    transform: rotate(45deg);
    filter: brightness(0) invert(0);
}

.our-testimonial-royal {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.our-testimonial-royal::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -10px;
    background-image: url('../images/section-bg-image-1.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    width: 152px;
    height: 240px;
}

.our-testimonial-royal .container {
    position: relative;
    z-index: 2;
}

.testimonial-slider-royal .swiper-wrapper {
    cursor: none;
}

.testimonial-item-royal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--bg-color);
    border-radius: 30px;
    padding: 10px;
}

.testimonial-item-image-royal {
    width: calc(45% - 5px);
}

.testimonial-item-image-royal figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.testimonial-item-image-royal figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.23;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial-item-body-royal {
    width: calc(55% - 5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 30px;
}

.testimonial-item-rating-royal {
    margin-bottom: 20px;
}

.testimonial-item-rating-royal i {
    font-size: 18px;
    color: var(--accent-secondary-color);
}

.testimonial-item-content-royal p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-item-footer-royal {
    border-top: 1px solid var(--divider-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
}

.testimonial-author-content-royal {
    width: calc(100% - 60px);
}

.testimonial-author-content-royal h3 {
    font-size: 20px;
    color: var(--primary-color);
}

.testimonial-author-content-royal p {
    margin: 5px 0 0;
}

.testimonial-item-quote-royal img {
    width: 100%;
    max-width: 40px;
}

.our-testimonial-royal .section-footer-text {
    margin-top: 60px;
}

.main-footer-royal {
    padding: 100px 0 0;
    margin-bottom: 20px;
}

.about-footer-royal {
    max-width: 355px;
}

.footer-logo-royal img {
    width: 100%;
    max-width: 159px;
}

.about-footer-content-royal {
    margin-top: 15px;
}

.about-footer-content-royal p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-social-links-royal {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-social-links-royal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links-royal ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer-social-links-royal ul li:hover a {
    background: var(--accent-secondary-color);
}

.footer-social-links-royal ul li i {
    font-size: 18px;
    color: var(--white-color);
}

.footer-links-box-royal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-left: 5.729vw;
}

.footer-links-royal {
    max-width: 35%;
}

.footer-links-royal h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-royal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-royal ul li {
    text-transform: capitalize;
    color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-links-royal ul li:last-child {
    margin-bottom: 0;
}

.footer-links-royal ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links-royal ul li a:hover {
    color: var(--accent-secondary-color);
}

.footer-cta-box-royal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 30px;
    margin-top: 60px;
}

.footer-contact-item-list-royal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    max-width: 840px;
}

.footer-contact-item-royal {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.footer-contact-item-royal::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: var(--dark-divider-color);
    height: 100%;
    width: 1px;
    z-index: 1;
}

.footer-contact-item-royal:last-child:before {
    display: none;
}

.footer-contact-item-royal .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-contact-item-royal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.footer-contact-item-royal:hover .icon-box::before {
    transform: scale(1);
}

.footer-contact-item-royal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.footer-contact-item-royal:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.footer-contact-item-content-royal {
    width: calc(100% - 75px);
}

.footer-contact-item-content-royal p {
    color: var(--white-color);
    margin: 0 0 5px;
}

.footer-contact-item-content-royal h3 {
    color: var(--white-color);
    font-size: 18px;
}

.footer-contact-item-content-royal h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item-content-royal h3 a:hover {
    color: var(--accent-secondary-color);
}

.footer-newsletter-form-royal {
    width: 100%;
    max-width: 480px;
}

.footer-newsletter-form-royal .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 40px;
    padding: 5px;
}

.footer-newsletter-form-royal .form-group .form-control {
    width: 55%;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--white-color);
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 15px;
}

.footer-newsletter-form-royal .form-group .form-control::placeholder {
    color: var(--white-color);
    opacity: 50%;
}

.footer-newsletter-form-royal .form-group .btn-default {
    border-radius: 100px;
    width: 41%;
    background: var(--accent-secondary-color);
}

.footer-newsletter-form-royal .form-group .btn-default:hover {
    color: var(--primary-color);
}

.footer-newsletter-form-royal .form-group .btn-default:hover::before {
    background-image: url('../images/arrow-primary.svg');
}

.footer-newsletter-form-royal .form-group .btn-default:hover::after {
    background: var(--white-color);
}

.footer-copyright-text-royal {
    padding: 60px 0;
    text-align: center;
}

.footer-copyright-text-royal p {
    color: var(--white-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 1440px) {
    .hero-counter-item-royal {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .about-us-counter-royal p {
        font-size: 14px;
    }
    .about-us-item-royal {
        padding: 30px;
    }
    .program-cta-box-royal {
        padding: 30px;
    }
    .why-choose-us-box-royal {
        gap: 30px;
    }
    .why-choose-image-royal {
        width: calc(35% - 20px);
    }
    .why-choose-item-list-royal {
        width: calc(35% - 20px);
    }
    .why-choose-info-box-royal {
        width: calc(30% - 20px);
    }
    .why-choose-info-item-royal {
        padding: 30px;
    }
    .benefits-item-royal {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    .coaches-item-social-list-royal {
        left: 20px;
        right: 20px;
    }
    .coaches-item-royal:hover .coaches-item-social-list-royal {
        bottom: 20px;
    }
    .coaches-item-social-list-royal ul {
        padding: 10px;
        gap: 10px;
    }
    .cta-box-royal {
        padding: 150px 0;
    }
    .cta-box-content-royal {
        padding: 40px;
        max-width: 680px;
    }
    .video-play-button-royal {
        margin-bottom: 30px;
    }
    .cta-box-footer-royal {
        margin-top: 40px;
        padding-top: 40px;
    }
    .match-highlights-item-btn-royal {
        top: 30px;
        right: 30px;
    }
    .match-highlights-item-content-royal {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }
    .testimonial-item-body-royal {
        gap: 30px;
        padding: 20px;
    }
    .testimonial-item-footer-royal {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    .hero-content-royal {
        margin-bottom: 30px;
    }
    .hero-image-box-royal {
        align-items: center;
    }
    .hero-cta-box-royal {
        width: calc(50% - 30px);
        order: 1;
    }
    .hero-image-royal {
        width: 100%;
        order: 3;
        text-align: center;
    }
    .hero-counter-list-royal {
        width: calc(50% - 30px);
        order: 2;
    }
    .hero-image-royal figure img {
        margin-top: 0;
    }
    .about-us-image-box-royal {
        max-width: 700px;
        margin: 0 auto 30px;
        height: auto;
    }
    .our-programs-royal::before {
        top: 30px;
        width: 100px;
        height: 170px;
    }
    .program-item-list-royal {
        height: auto;
    }
    .program-cta-box-royal {
        height: auto;
        margin-top: 30px;
    }
    .why-choose-image-royal {
        width: 100%;
    }
    .why-choose-image-royal figure,
    .why-choose-image-royal img {
        height: auto;
    }
    .why-choose-image-royal img {
        aspect-ratio: 1 / 0.64;
    }
    .why-choose-item-list-royal {
        width: calc(50% - 15px);
        align-content: center;
    }
    .why-choose-info-box-royal {
        width: calc(50% - 15px);
    }
    .why-choose-info-item-royal {
        gap: 30px;
    }
    .our-benefits-content-royal {
        margin-bottom: 30px;
    }
    .our-benefits-image-royal {
        height: auto;
        text-align: center;
    }
    .our-benefits-image-royal img {
        max-width: 470px;
    }
    .coaches-item-body-royal {
        padding: 20px 10px 10px;
    }
    .cta-box-royal {
        padding: 100px 0;
    }
    .cta-box-content-royal {
        margin: 0 auto;
    }
    .our-testimonial-royal::before {
        top: 30px;
        width: 100px;
        height: 170px;
    }
    .testimonial-item-image-royal figure img {
        aspect-ratio: 1 / 0.95;
    }
    .about-footer-royal {
        margin-bottom: 30px;
        max-width: 100%;
    }
    .footer-links-box-royal {
        margin-left: 0;
    }
    .footer-links-royal h3 {
        margin-bottom: 20px;
    }
    .footer-cta-box-royal {
        border-radius: 20px;
        padding: 20px;
        margin-top: 30px;
    }
    .footer-contact-item-royal .icon-box {
        width: 50px;
        height: 50px;
    }
    .footer-contact-item-royal .icon-box img {
        max-width: 24px;
    }
    .footer-contact-item-content-royal {
        width: calc(100% - 65px);
    }
    .footer-newsletter-form-royal {
        max-width: 100%;
    }
    .footer-newsletter-form-royal .form-group .form-control {
        width: 75%;
        padding: 15px;
    }
    .footer-newsletter-form-royal .form-group .btn-default {
        width: 25%;
    }
    .footer-copyright-text-royal {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 991px) {
    .hero-royal {
        padding: 140px 0 0;
        margin-top: 0;
    }
    .hero-sub-heading-content-royal h3 {
        font-size: 26px;
    }
    .hero-content-royal .section-title h1 {
        font-size: 54px;
    }
    .hero-cta-image-royal figure,
    .hero-cta-image-royal figure img {
        border-radius: 20px;
    }
    .hero-cta-content-royal {
        position: absolute;
        left: 20px;
        bottom: 20px;
        right: 20px;
    }
    .hero-counter-item-royal {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .hero-counter-item-royal h2 {
        font-size: 38px;
    }
    .hero-image-royal figure img {
        margin-bottom: 0;
    }
    .about-us-royal {
        padding: 50px 0;
    }
    .about-us-counter-royal h2 {
        font-size: 38px;
    }
    .about-us-image-box-2-royal .about-us-image-royal figure,
    .about-us-image-royal figure img {
        border-radius: 20px;
    }
    .about-us-image-box-1-royal .about-us-image-royal figure {
        border-width: 5px;
    }
    .about-us-item-royal {
        border-radius: 20px;
        padding: 20px;
    }
    .about-us-footer-royal {
        margin-top: 30px;
    }
    .our-programs-royal {
        padding: 50px 0;
    }
    .program-item-royal {
        border-radius: 20px;
    }
    .program-item-content-royal {
        padding: 20px 10px 10px;
    }
    .program-cta-box-royal {
        border-radius: 20px;
        padding: 20px;
    }
    .program-cta-item-royal .satisfy-client-images {
        margin-bottom: 15px;
    }
    .our-programs-royal .section-footer-text {
        margin-top: 40px;
    }
    .why-choose-us-royal {
        padding: 50px 0;
    }
    .why-choose-image-royal figure,
    .why-choose-image-royal img {
        border-radius: 20px;
    }
    .why-choose-item-royal {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .why-choose-item-royal .icon-box {
        height: 50px;
        width: 50px;
    }
    .why-choose-item-royal .icon-box img {
        max-width: 24px;
    }
    .why-choose-item-content-royal {
        width: calc(100% - 65px);
    }
    .why-choose-info-item-royal {
        border-radius: 20px;
        padding: 20px;
    }
    .why-choose-counter-item-royal h2 {
        font-size: 34px;
    }
    .why-choose-info-image-royal figure,
    .why-choose-info-image-royal img {
        border-radius: 20px;
    }
    .our-benefits-royal {
        padding: 50px 0;
    }
    .benefits-item-royal {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .our-benefits-image-royal figure {
        margin-bottom: -50px;
    }
    .our-coaches-royal {
        padding: 50px 0;
    }
    .coaches-item-royal {
        border-radius: 20px;
    }
    .cta-box-royal {
        padding: 50px 0;
    }
    .cta-box-content-royal {
        padding: 30px;
        border-radius: 20px;
    }
    .cta-box-footer-royal {
        margin-top: 30px;
        padding-top: 30px;
    }
    .match-highlights-royal {
        padding: 50px 0;
    }
    .match-highlights-item-royal {
        border-radius: 20px;
    }
    .match-highlights-item-btn-royal {
        top: 20px;
        right: 20px;
    }
    .match-highlights-item-content-royal {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }
    .our-testimonial-royal {
        padding: 50px 0;
    }
    .testimonial-item-royal {
        border-radius: 20px;
    }
    .testimonial-item-body-royal {
        padding: 10px;
        gap: 20px;
    }
    .testimonial-item-rating-royal {
        margin-bottom: 15px;
    }
    .testimonial-item-content-royal p {
        font-size: 18px;
    }
    .testimonial-item-footer-royal {
        padding-top: 20px;
    }
    .our-testimonial-royal .section-footer-text {
        margin-top: 40px;
    }
    .main-footer-royal {
        padding: 50px 0 0;
        margin-bottom: 0;
    }
    .footer-links-royal ul li {
        margin-bottom: 10px;
    }
    .footer-newsletter-form-royal .form-group .form-control {
        padding: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-sub-heading-royal {
        gap: 10px;
        margin-bottom: 10px;
    }
    .hero-sub-heading-content-royal h3 {
        font-size: 22px;
    }
    .hero-sub-heading-content-royal p {
        font-size: 14px;
    }
    .hero-content-royal .section-title h1 {
        font-size: 28px;
    }
    .hero-cta-box-royal,
    .hero-counter-list-royal {
        width: 100%;
    }
    .hero-counter-item-royal h2 {
        font-size: 26px;
    }
    .about-us-image-box-1-royal,
    .about-us-image-box-2-royal {
        width: 100%;
    }
    .about-us-counter-royal {
        display: none;
        writing-mode: initial;
        transform: initial;
        margin: 0 0 20px 0;
    }
    .about-us-counter-royal h2 {
        font-size: 26px;
    }
    .about-us-image-box-1-royal .about-us-image-royal {
        margin-right: 0;
    }
    .about-us-image-royal,
    .about-us-image-royal figure,
    .about-us-image-royal img {
        height: auto;
    }
    .about-us-image-box-1-royal .about-us-image-royal figure {
        border-radius: 20px;
        border: 0;
    }
    .about-us-image-box-1-royal .about-us-image-royal figure img {
        aspect-ratio: 1 / 1.2;
        border-radius: 20px;
    }
    .about-us-item-royal {
        gap: 10px;
    }
    .about-us-item-quote-royal img {
        max-width: 30px;
    }
    .about-us-item-content-royal {
        width: 100%;
    }
    .about-us-footer-royal {
        gap: 20px;
    }
    .about-us-contact-box-royal {
        gap: 10px;
    }
    .about-us-item-content-royal h3 {
        font-size: 18px;
    }
    .about-us-contact-box-royal .icon-box {
        width: 40px;
        height: 40px;
    }
    .about-us-contact-box-royal .icon-box img {
        max-width: 20px;
    }
    .about-us-conatct-content-royal h3 {
        font-size: 16px;
    }
    .our-programs-royal::before {
        top: 20px;
        width: 75px;
        height: 120px;
    }
    .program-item-royal {
        width: 100%;
    }
    .program-item-content-royal h2 {
        font-size: 18px;
    }
    .program-item-content-royal p {
        margin-top: 5px;
    }
    .program-cta-item-content-royal h3 {
        font-size: 18px;
    }
    .program-cta-item-image-royal figure img {
        max-width: 200px;
    }
    .our-programs-royal .section-footer-text {
        margin-top: 30px;
    }
    .why-choose-item-list-royal {
        width: 100%;
    }
    .why-choose-item-content-royal h3 {
        font-size: 18px;
    }
    .why-choose-info-box-royal {
        width: 100%;
    }
    .why-choose-info-item-royal,
    .why-choose-info-image-royal figure,
    .why-choose-info-image-royal img {
        height: auto;
    }
    .why-choose-info-content-royal h3 {
        font-size: 18px;
    }
    .why-choose-counter-item-royal h2 {
        font-size: 28px;
    }
    .benefits-item-image-royal {
        margin: 0 auto;
    }
    .benefits-item-image-royal img {
        max-width: 80px
    }
    .benefits-item-content-royal {
        width: 100%;
        text-align: center;
    }
    .benefits-item-content-royal h3 {
        font-size: 18px;
    }
    .benefits-item-content-royal p {
        margin-top: 5px;
    }
    .coaches-item-body-royal h2 {
        font-size: 18px;
    }
    .cta-box-content-royal {
        padding: 30px;
    }
    .video-play-button-royal {
        margin-bottom: 20px;
    }
    .cta-box-header-title-royal h2 {
        font-size: 26px;
    }
    .cta-box-footer-royal {
        gap: 20px;
    }
    .cta-box-contact-royal {
        gap: 10px;
    }
    .cta-box-contact-royal .icon-box {
        width: 40px;
        height: 40px;
    }
    .cta-box-contact-royal .icon-box img {
        max-width: 20px;
    }
    .cta-box-conatct-content-royal p {
        font-size: 14px;
    }
    .cta-box-conatct-content-royal h3 {
        font-size: 16px;
    }
    .match-highlights-item-content-royal h2 {
        font-size: 18px;
    }
    .testimonial-item-body-royal,
    .testimonial-item-image-royal {
        width: 100%;
    }
    .testimonial-item-rating-royal i,
    .testimonial-item-content-royal p {
        font-size: 16px;
    }
    .testimonial-author-content-royal h3 {
        font-size: 18px;
    }
    .footer-links-royal {
        max-width: 100%;
    }
    .footer-links-royal h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-cta-box-royal,
    .footer-contact-item-list-royal {
        gap: 20px;
    }
    .footer-contact-item-royal {
        width: 100%;
    }
    .footer-newsletter-form-royal .form-group .form-control {
        width: calc(100% - 40px);
        padding: 10px;
    }
    .footer-newsletter-form-royal .form-group .btn-default {
        font-size: 0;
        padding: 0;
        width: 40px;
    }
    .footer-newsletter-form-royal .form-group .btn-default::before {
        right: 14px;
    }
    .footer-copyright-text-royal {
        padding: 15px 0;
    }
}


/************************************/


/***   34. Home - Version 3 css	  ***/


/************************************/

.hero-elite {
    position: relative;
    padding: 190px 0 80px;
    margin-top: 20px;
    overflow: hidden;
}

.hero-elite .container-fluid {
    padding: 0 15px;
}

.hero-content-box-elite {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
}

.hero-content-box-elite .hero-image-elite {
    width: 25%;
}

.hero-content-box-elite .hero-image-elite.img-1 {
    text-align: left;
}

.hero-content-box-elite .hero-image-elite.img-2 {
    text-align: right;
}

.hero-content-box-elite .hero-image-elite img {
    width: 100%;
    max-width: 24.74vw;
    border-radius: 30px;
}

.hero-content-box-elite .hero-content-elite {
    width: 50%;
    max-width: 950px;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 10px;
}

.hero-content-elite .section-title h1 {
    font-size: 70px;
    ;
}

.hero-content-elite .section-title p {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-body-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 25px;
}

.video-play-button-elite {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.video-play-button-elite a {
    position: relative;
    height: 40px;
    width: 40px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button-elite:hover a {
    background: var(--white-color);
}

.video-play-button-elite a.bg-effect:before,
.video-play-butto-eliten a.bg-effect:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 100%;
    height: 100%;
    border: 32px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button-elite a.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button-elite a i {
    font-size: 14px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.video-play-button-elite:hover a i {
    color: var(--primary-color);
}

.video-play-button-elite p {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}

.our-match-box-elite {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 670px;
    margin: 60px auto 0;
    margin-top: 60px;
}

.team-logo-elite {
    width: calc(23% - 20px);
    align-content: center;
}

.team-logo-elite figure {
    display: block;
    border-radius: 30px;
}

.team-logo-elite img {
    width: 100%;
    max-width: 100px;
    border-radius: 20px;
}

.match-countdown-body-elite {
    width: calc(54% - 20px);
    position: relative;
    text-align: center;
    align-content: center;
    z-index: 1;
}

.match-title-elite {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.match-title-elite h2 {
    font-size: 7.813vw;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-divider-color);
    line-height: 1em;
}

.match-countdown-elite .countdown {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 30px;
    z-index: 1;
}

.match-countdown-elite .countdown .counter-box {
    position: relative;
    width: calc(33.33% - 20px);
}

.match-countdown-elite .countdown .counter-box::before {
    content: ':';
    position: absolute;
    top: 50%;
    right: -19px;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--white-color);
    height: 26px;
    width: 8px;
}

.match-countdown-elite .countdown .counter-box:last-child::before {
    display: none;
}

.match-countdown-elite .countdown .counter-box span {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1em;
    color: var(--white-color);
}

.match-countdown-elite .countdown .counter-box p {
    color: var(--white-color);
    text-transform: capitalize;
    margin: 15px 0 0;
}

.about-us-elite {
    padding: 100px 0;
}

.about-us-content-elite {
    margin-right: 15px;
}

.about-us-body-elite {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
}

.about-us-body-img-elite {
    width: calc(44% - 20px);
}

.about-us-body-img-elite figure {
    height: 100%;
    display: block;
    border-radius: 30px;
}

.about-us-body-img-elite img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-item-list-elite {
    width: calc(56% - 20px);
}

.about-us-item-elite {
    background-color: var(--white-color);
    border-radius: 30px;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
}

.about-us-item-elite:last-child {
    margin-bottom: 0;
}

.about-us-item-elite .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    overflow: hidden;
}

.about-us-item-elite .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-item-elite:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.about-us-item-elite .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-us-item-content-elite h3 {
    font-size: 20px;
}

.about-us-item-content-elite p {
    margin: 15px 0 0;
}

.about-us-image-elite figure {
    display: block;
    border-radius: 20px;
}

.about-us-image-elite img {
    width: 100%;
    aspect-ratio: 1 / 1.215;
    object-fit: cover;
    border-radius: 20px;
}

.our-programs-elite {
    padding: 100px 0;
}

.program-item-elite {
    background-color: var(--dark-divider-color);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
}

.program-item-image-box-elite {
    position: relative;
    margin-bottom: 30px;
}

.program-item-image-elite a,
.program-item-image-elite figure {
    cursor: none;
    border-radius: 30px;
    overflow: hidden;
}

.program-item-image-elite img {
    width: 100%;
    aspect-ratio: 1 / 0.647;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.program-item-elite:hover .program-item-image-elite img {
    transform: scale(1.06);
}

.program-item-image-box-elite .icon-box {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.program-item-image-box-elite .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.program-item-elite:hover .icon-box:before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.program-item-image-box-elite .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.program-item-elite:hover .program-item-image-box-elite .icon-box img {
    filter: brightness(0) invert(0);
}

.program-item-body-elite {
    padding: 0 20px 20px;
}

.program-item-content-elite h2 {
    color: var(--white-color);
    font-size: 20px;
}

.program-item-content-elite h2 a {
    color: inherit;
}

.program-item-content-elite p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.program-item-btn-elite {
    margin-top: 30px;
}

.why-choose-us-elite {
    padding: 100px 0;
}

.why-choose-item-list-elite {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-item-elite {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.why-choose-item-elite .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.why-choose-item-elite .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item-elite:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.why-choose-item-elite .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.why-choose-item-content-elite {
    width: calc(100% - 75px);
}

.why-choose-item-content-elite h3 {
    font-size: 20px;
    line-height: 1.3em;
}

.why-choose-item-content-elite p {
    margin: 10px 0 0;
}

.why-choose-list-elite {
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.why-choose-list-elite ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-list-elite ul li {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 20px;
    padding-left: 25px;
}

.why-choose-list-elite ul li:last-child {
    margin-bottom: 0;
}

.why-choose-list-elite ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-secondary-color);
    top: 0;
    left: 0;
}

.why-choose-footer-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    margin-top: 40px;
}

.about-author-Box-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.about-author-image-elite figure {
    display: block;
    border-radius: 50%;
}

.about-author-image-elite figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.about-author-content-elite h3 {
    font-size: 20px;
}

.about-author-content-elite p {
    margin: 5px 0 0;
}

.why-choose-image-elite {
    height: 100%;
    margin-left: 15px;
}

.why-choose-image-elite figure {
    display: block;
    height: 100%;
    border-radius: 30px;
}

.why-choose-image-elite img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.992;
    object-fit: cover;
    border-radius: 30px;
}

.who-we-are-elite {
    padding: 100px 0;
}

.who-we-image-elite figure {
    display: block;
    border-radius: 30px;
}

.who-we-image-elite img {
    width: 100%;
    aspect-ratio: 1 / 0.455;
    object-fit: cover;
    border-radius: 30px;
}

.who-we-item-list-elite {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.who-we-item-elite {
    width: calc(25% - 22.5px);
}

.who-we-item-header-elite {
    position: relative;
    margin-bottom: 90px;
}

.who-we-item-header-elite:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -45px;
    transform: translateY(-50%);
    width: calc(100% + 30px);
    height: 1px;
    background-color: var(--dark-divider-color);
}

.who-we-item-elite:nth-child(4n+4) .who-we-item-header-elite:before,
.who-we-item-elite:last-child .who-we-item-header-elite:before {
    width: 100%;
}

.who-we-item-header-elite:after {
    content: '\f192';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 20px;
    line-height: normal;
    font-weight: 500;
    color: var(--accent-secondary-color);
    bottom: -55px;
    left: 0;
}

.who-we-item-header-elite .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    z-index: 1;
}

.who-we-item-header-elite .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 16px;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.who-we-item-elite:hover .who-we-item-header-elite .icon-box:before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.who-we-item-header-elite .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.who-we-item-elite:hover .who-we-item-header-elite .icon-box img {
    filter: brightness(0) invert(0);
}

.who-we-item-title-elite h3 {
    color: var(--white-color);
    font-size: 20px;
}

.who-we-item-body-elite p {
    color: var(--white-color);
    margin: 0;
}

.our-team-elite {
    padding: 100px 0;
}

.team-item-elite {
    position: relative;
    background-color: var(--white-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-item-image-elite a {
    display: block;
    cursor: none;
    overflow: hidden;
}

.team-item-image-elite figure {
    display: block;
    border-radius: 10px;
}

.team-item-image-elite figure::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, transparent 30.21%, var(--white-color) 90.01%);
    z-index: 1;
}

.team-item-image-elite img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.26;
    border-radius: 10px;
}

.team-item-body-elite {
    position: absolute;
    right: 30px;
    left: 30px;
    bottom: 30px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-social-icon-elite {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    margin-bottom: 25px;
    transform: translateY(20px);
}

.team-item-elite:hover .team-social-icon-elite {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-social-icon-elite ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-icon-elite ul li a {
    width: 40px;
    height: 40px;
    color: var(--white-color);
    background: transparent;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-icon-elite ul li a:hover {
    background-color: var(--accent-secondary-color);
}

.team-social-icon-elite ul li a i {
    font-size: 19px;
    color: inherit;
}

.team-item-content-elite h2 {
    font-size: 20px;
}

.team-item-content-elite h2 a {
    color: inherit;
}

.team-item-content-elite p {
    margin: 5px 0 0;
}

.our-achievement-elite {
    padding: 100px 0 70px;
}

.achievement-item-elite {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.achievement-item-image-elite {
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 30px;
    margin-bottom: 20px;
    padding: 10px;
}

.achievement-item-image-elite figure {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.achievement-item-image-elite img {
    width: 100%;
    aspect-ratio: 1 / 1.03;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.6s ease-in-out;
}

.achievement-item-elite:hover .achievement-item-image-elite img {
    transform: scale(1.06);
}

.achievement-item-content-elite {
    text-align: center;
}

.achievement-item-content-elite h3 {
    font-size: 20px;
    color: var(--white-color);
}

.achievement-item-content-elite p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.what-we-do-elite {
    padding: 100px 0;
}

.what-we-item-elite.box-1 {
    background-color: var(--white-color);
}

.what-we-item-elite {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    min-height: 460px;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
}

.what-we-item-header-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.what-we-item-header-elite .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-secondary-color);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.what-we-item-header-elite .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-item-elite.box-1:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.what-we-item-header-elite .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.what-we-item-title-elite {
    width: calc(100% - 65px);
}

.what-we-item-title-elite h3 {
    font-size: 20px;
}

.what-we-item-body-elite p {
    margin-bottom: 0;
}

.what-we-item-body-elite ul {
    border-top: 1px solid var(--divider-color);
    list-style: disc;
    margin: 20px 0 0 0;
    padding: 20px 0 0 20px;
}

.what-we-item-body-elite ul li {
    line-height: 1.5em;
    margin-bottom: 15px;
}

.what-we-item-body-elite ul li:last-child {
    margin-bottom: 0;
}

.what-we-item-body-elite ul li::marker {
    color: var(--accent-secondary-color);
}

.what-we-item-elite.box-2 {
    background-color: var(--primary-color);
}

.what-we-item-content-elite h2 {
    font-size: 24px;
    color: var(--white-color);
    line-height: 1.4em;
}

.what-we-item-content-elite h2 .what-we-title-img-1-elite {
    display: inline-block;
}

.what-we-title-img-1-elite img {
    width: 100%;
    max-width: 30px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-left: -10px;
}

.what-we-title-img-1-elite img:first-child {
    margin-left: 0;
}

.what-we-title-img-2-elite img {
    width: 100%;
    max-width: 24px;
}

.what-we-counter-list-elite {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
}

.what-we-counter-item-elite {
    position: relative;
    width: calc(50% - 25px);
}

.what-we-counter-item-elite::before {
    content: '';
    position: absolute;
    right: -25px;
    top: 0;
    bottom: 0;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.what-we-counter-item-elite:nth-child(2n+2):before,
.what-we-counter-item-elite:last-child:before {
    display: none;
}

.what-we-counter-item-elite h2 {
    font-size: 30px;
    color: var(--white-color);
}

.what-we-counter-item-elite p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.what-we-item-elite.box-3 {
    justify-content: end;
}

.what-we-item-elite.box-3 .what-we-item-image-elite {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.what-we-item-image-elite figure {
    display: block;
    height: 100%;
}

.what-we-item-image-elite figure::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 20.21%, var(--primary-color) 100.01%);
    z-index: 1;
}

.what-we-item-image-elite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-item-tag-list-elite {
    position: relative;
    z-index: 1;
}

.what-we-item-tag-list-elite ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.what-we-item-tag-list-elite ul li {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3em;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--dark-divider-color);
    border-radius: 100px;
    padding: 10px 15px;
}

.our-testimonials-elite {
    padding: 100px 0;
}

.testimonial-slider-elite {
    position: sticky;
    top: 30px;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 10px;
}

.testimonial-slider-elite .swiper-wrapper {
    cursor: none;
}

.testimonial-item-elite {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-item-image-elite figure {
    display: block;
    border-radius: 30px;
}

.testimonial-item-image-elite img {
    width: 100%;
    aspect-ratio: 1 / 0.472;
    object-fit: cover;
    border-radius: 30px;
}

.testimonial-item-quote-elite img {
    width: 100%;
    max-width: 28px;
}

.testimonial-item-body-elite {
    padding: 0 20px 20px;
}

.testimonial-item-content-elite p {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.testimonial-item-author-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.testimonial-author-image-elite figure {
    display: block;
    border-radius: 50%;
}

.testimonial-author-image-elite figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.testimonial-author-content-elite {
    width: calc(100% - 65px);
}

.testimonial-author-content-elite h3 {
    font-size: 20px;
    color: var(--white-color);
}

.testimonial-author-content-elite p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.testimonials-item-list-elite .testimonial-item-elite {
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    gap: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.testimonials-item-list-elite .testimonial-item-elite:last-child {
    margin-bottom: 0;
}

.testimonials-item-list-elite .testimonial-item-body-elite {
    padding: 0;
}

.testimonials-item-list-elite .testimonial-item-author-elite {
    margin-top: 20px;
    padding-top: 20px;
}

.our-testimonials-elite .section-footer-text {
    margin-top: 60px;
}

.main-footer-elite {
    padding: 100px 0 0;
    margin-bottom: 20px;
}

.footer-header-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.about-footer-elite {
    max-width: 430px;
}

.footer-logo-elite img {
    width: 100%;
    max-width: 160px;
}

.about-footer-content-elite {
    margin-top: 15px;
}

.about-footer-content-elite p {
    color: var(--white-color);
    margin: 0;
}

.footer-social-links-elite {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
}

.footer-social-links-elite h3 {
    color: var(--white-color);
    font-size: 20px;
}

.footer-social-links-elite ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links-elite ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.footer-social-links-elite ul li:hover a {
    border-color: var(--accent-secondary-color);
    background: var(--accent-secondary-color);
}

.footer-social-links-elite ul li i {
    font-size: 18px;
    color: inherit;
}

.footer-newsletter-box-elite h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-newsletter-box-elite p {
    color: var(--white-color);
    margin: 0 0 30px;
}

.footer-newsletter-form-elite .form-group {
    display: flex;
    background-color: var(--dark-divider-color);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 5px;
}

.footer-newsletter-form-elite .form-group .form-control {
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 14px;
}

.footer-newsletter-form-elite .form-group .form-control::placeholder {
    color: var(--white-color);
    opacity: 50%;
}

.footer-newsletter-form-elite .form-group .newsletter-btn-elite {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-secondary-color);
    border-radius: 16px;
    border: none;
    outline: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-elite .form-group .newsletter-btn-elite:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form-elite .form-group .newsletter-btn-elite i {
    font-size: 24px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-elite .form-group .newsletter-btn-elite:hover i {
    color: var(--primary-color);
}

.footer-links-box-elite {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 20px;
    margin-left: 5.208vw;
}

.footer-links-elite {
    max-width: 32%;
}

.footer-links-elite h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 25px;
}

.footer-links-elite ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-elite ul li {
    color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 20px;
}

.footer-links-elite ul li:last-child {
    margin-bottom: 0;
}

.footer-links-elite ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links-elite ul li a:hover {
    color: var(--accent-secondary-color);
}

.footer-contact-links-elite {
    max-width: 42%;
}

.footer-contact-links-elite ul li img {
    width: 100%;
    max-width: 24px;
    margin-right: 15px;
}

.footer-copyright-text-elite {
    text-align: center;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 40px 0;
}

.footer-copyright-text-elite p {
    color: var(--white-color);
    margin: 0;
}

@media only screen and (max-width: 1440px) {
    .hero-content-elite .section-title h1 {
        font-size: 50px;
    }
    .program-item-image-box-elite {
        margin-bottom: 20px;
    }
    .program-item-body-elite {
        padding: 0 10px 10px;
    }
    .program-item-btn-elite {
        margin-top: 20px;
    }
    .team-social-icon-elite ul {
        gap: 10px;
    }
    .what-we-item-elite {
        padding: 30px 25px;
    }
    .what-we-counter-list-elite {
        gap: 30px;
    }
    .what-we-counter-item-elite {
        width: calc(50% - 15px);
    }
    .what-we-counter-item-elite::before {
        right: -15px;
    }
    .what-we-item-tag-list-elite ul {
        gap: 15px;
    }
    .what-we-item-tag-list-elite ul li {
        padding: 6px 12px;
    }
    .testimonial-item-elite {
        gap: 25px;
    }
    .testimonial-item-author-elite {
        margin-top: 30px;
        padding-top: 30px;
    }
    .footer-links-box-elite {
        margin-left: 30px;
    }
}

@media only screen and (max-width: 1024px) {
    .hero-content-box-elite {
        gap: 30px;
    }
    .hero-content-box-elite .hero-content-elite {
        width: 100%;
        padding: 0;
    }
    .hero-content-box-elite .hero-image-elite {
        width: calc(50% - 15px);
    }
    .match-title-elite h2 {
        font-size: 90px;
    }
    .match-countdown-elite .countdown .counter-box p {
        margin-top: 10px;
    }
    .hero-content-box-elite .hero-image-elite img {
        max-width: 320px;
    }
    .about-us-content-elite {
        margin: 0 0 30px;
    }
    .about-us-body-img-elite img {
        aspect-ratio: 1 / 0.9;
    }
    .about-us-image-elite {
        max-width: 600px;
        margin: 0 auto;
    }
    .why-choose-us-content-elite {
        margin-bottom: 30px;
    }
    .why-choose-image-elite {
        margin: 0;
        height: auto;
    }
    .why-choose-image-elite figure {
        height: auto;
    }
    .why-choose-image-elite img {
        aspect-ratio: 1 / 0.7;
        height: auto;
    }
    .who-we-image-elite {
        margin-top: 30px;
    }
    .who-we-item-elite {
        width: calc(50% - 15px);
    }
    .who-we-item-header-elite {
        margin-bottom: 60px;
    }
    .who-we-item-elite:nth-child(2n+2) .who-we-item-header-elite:before {
        width: 100%;
    }
    .who-we-item-header-elite:before {
        bottom: -30px;
    }
    .who-we-item-header-elite:after {
        bottom: -40px;
    }
    .what-we-item-elite {
        min-height: 370px;
    }
    .testimonial-slider-elite {
        position: initial;
        margin-bottom: 30px;
    }
    .testimonials-item-list-elite {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .testimonials-item-list-elite .testimonial-item-elite {
        width: calc(50% - 15px);
        margin: 0;
    }
    .footer-newsletter-box-elite {
        margin-bottom: 30px;
    }
    .footer-newsletter-box-elite h3 {
        margin-bottom: 10px;
    }
    .footer-newsletter-box-elite p {
        margin-bottom: 20px;
    }
    .footer-links-box-elite {
        margin-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .hero-elite {
        padding: 140px 0 50px;
        margin-top: 0;
    }
    .our-match-box-elite {
        margin-top: 30px;
    }
    .about-us-elite {
        padding: 50px 0;
    }
    .about-us-item-elite {
        padding: 20px;
    }
    .about-us-body-img-elite figure,
    .about-us-body-img-elite img,
    .about-us-item-elite {
        border-radius: 20px;
    }
    .about-us-item-elite .icon-box {
        margin-bottom: 20px;
    }
    .our-programs-elite {
        padding: 50px 0;
    }
    .program-item-elite,
    .program-item-image-elite a,
    .program-item-image-elite figure,
    .program-item-image-elite img {
        border-radius: 20px;
    }
    .program-item-image-box-elite .icon-box {
        top: 15px;
        left: 15px;
    }
    .why-choose-us-elite {
        padding: 50px 0;
    }
    .why-choose-item-elite .icon-box {
        width: 50px;
        height: 50px;
    }
    .why-choose-item-elite .icon-box img {
        max-width: 24px;
    }
    .why-choose-item-content-elite {
        width: calc(100% - 65px);
    }
    .why-choose-list-elite ul li {
        margin-bottom: 15px;
    }
    .why-choose-list-elite ul li::before {
        font-size: 16px;
    }
    .why-choose-footer-elite {
        margin-top: 30px;
    }
    .why-choose-image-elite figure,
    .why-choose-image-elite img {
        border-radius: 20px;
    }
    .who-we-are-elite {
        padding: 50px 0;
    }
    .who-we-image-elite figure,
    .who-we-image-elite img {
        border-radius: 20px;
    }
    .our-team-elite {
        padding: 50px 0;
    }
    .team-item-elite {
        border-radius: 20px;
    }
    .team-item-body-elite {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }
    .our-achievement-elite {
        padding: 50px 0 20px;
    }
    .achievement-item-image-elite,
    .achievement-item-image-elite figure,
    .achievement-item-image-elite img {
        border-radius: 20px;
    }
    .what-we-do-elite {
        padding: 50px 0;
    }
    .what-we-item-elite {
        gap: 20px;
        border-radius: 20px;
        padding: 20px;
    }
    .what-we-item-body-elite ul li {
        margin-bottom: 10px;
    }
    .what-we-item-content-elite h2 {
        font-size: 22px;
    }
    .what-we-counter-item-elite h2 {
        font-size: 26px;
    }
    .what-we-counter-item-elite p {
        font-size: 14px;
        margin-top: 5px;
    }
    .what-we-item-tag-list-elite ul {
        gap: 10px;
    }
    .what-we-item-tag-list-elite ul li {
        padding: 6px 8px;
    }
    .our-testimonials-elite {
        padding: 50px 0;
    }
    .testimonial-slider-elite,
    .testimonial-item-image-elite figure,
    .testimonial-item-image-elite img,
    .testimonials-item-list-elite .testimonial-item-elite {
        border-radius: 20px;
    }
    .testimonial-item-content-elite p {
        font-size: 18px;
    }
    .testimonials-item-list-elite .testimonial-item-elite {
        padding: 20px;
    }
    .testimonial-item-author-elite {
        margin-top: 20px;
        padding-top: 20px;
    }
    .our-testimonials-elite .section-footer-text {
        margin-top: 40px;
    }
    .main-footer-elite {
        padding: 50px 0 0;
        margin-bottom: 0;
    }
    .footer-header-elite {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .about-footer-elite {
        width: 100%;
        max-width: 100%;
    }
    .footer-newsletter-box-elite h3 {
        font-size: 26px;
    }
    .footer-newsletter-form-elite .form-group {
        border-radius: 10px;
    }
    .footer-newsletter-form-elite .form-group .form-control {
        width: calc(100% - 40px);
    }
    .footer-newsletter-form-elite .form-group .newsletter-btn-elite {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .footer-newsletter-form-elite .form-group .newsletter-btn-elite i {
        font-size: 20px;
    }
    .footer-links-elite h3 {
        margin-bottom: 20px;
    }
    .footer-links-elite ul li {
        margin-bottom: 10px;
    }
    .footer-contact-links-elite ul li {
        margin-bottom: 15px;
    }
    .footer-contact-links-elite ul li img {
        max-width: 22px;
        margin-right: 10px;
    }
    .footer-copyright-text-elite {
        margin-top: 30px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-elite .section-title h1 {
        font-size: 28px;
    }
    .team-logo-elite {
        width: calc(50% - 15px);
    }
    .team-logo-elite img {
        max-width: 80px;
    }
    .match-countdown-body-elite {
        width: 100%;
    }
    .match-countdown-elite .countdown .counter-box span {
        font-size: 24px;
    }
    .match-countdown-elite .countdown .counter-box p {
        font-size: 14px;
        margin-top: 5px;
    }
    .about-us-body-img-elite,
    .about-us-item-list-elite {
        width: 100%;
    }
    .about-us-body-img-elite img {
        aspect-ratio: 1 / 1.2;
    }
    .about-us-item-content-elite h3 {
        font-size: 18px;
    }
    .about-us-item-content-elite p {
        margin-top: 5px;
    }
    .program-item-content-elite h2 {
        font-size: 18px;
    }
    .why-choose-item-list-elite {
        gap: 20px;
    }
    .why-choose-item-elite {
        width: 100%;
    }
    .why-choose-item-content-elite h3 {
        font-size: 18px;
    }
    .why-choose-item-content-elite p {
        margin: 5px 0 0;
    }
    .why-choose-footer-elite {
        gap: 20px;
    }
    .about-author-Box-elite {
        gap: 10px;
    }
    .about-author-image-elite figure img {
        max-width: 44px;
    }
    .about-author-content-elite h3 {
        font-size: 18px;
    }
    .about-author-content-elite p {
        font-size: 14px;
    }
    .who-we-item-elite {
        width: 100%;
    }
    .who-we-item-header-elite:before {
        width: 100%;
    }
    .who-we-item-title-elite h3 {
        font-size: 18px;
    }
    .team-item-content-elite h2 {
        font-size: 18px;
    }
    .achievement-item-content-elite h3 {
        font-size: 18px;
    }
    .achievement-item-content-elite p {
        margin: 5px 0 0;
    }
    .what-we-item-elite {
        min-height: 300px;
    }
    .what-we-item-title-elite h3 {
        font-size: 18px;
    }
    .what-we-item-body-elite ul {
        margin-top: 15px;
        padding-top: 15px;
    }
    .what-we-item-content-elite h2 {
        font-size: 20px;
    }
    .what-we-counter-item-elite h2 {
        font-size: 22px;
    }
    .testimonial-item-elite {
        gap: 20px;
    }
    .testimonial-item-body-elite {
        padding: 0 10px 10px;
    }
    .testimonial-item-content-elite p {
        font-size: 16px;
    }
    .testimonial-author-content-elite h3 {
        font-size: 18px;
    }
    .testimonials-item-list-elite .testimonial-item-elite {
        width: 100%;
    }
    .footer-social-links-elite h3 {
        font-size: 18px;
    }
    .footer-social-links-elite ul {
        gap: 10px;
    }
    .footer-newsletter-box-elite h3 {
        font-size: 22px;
    }
    .footer-links-elite,
    .footer-contact-links-elite {
        max-width: 100%;
    }
    .footer-links-elite h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-contact-links-elite ul li img {
        max-width: 20px;
    }
    .footer-copyright-text-elite {
        padding: 15px 0;
    }
}


/************************************/


/***  Sportlinky - Custom (sl-)   ***/


/************************************/


/* Hero Section */

.sl-hero {
    padding: 160px 0 80px;
    border-radius: 0 0 1.5rem 1.5rem;
    margin: 0 auto;
    overflow: visible;
}

.sl-hero .section-title h1 {
    font-size: 48px;
    line-height: 1.15em;
    color: var(--white-color);
}

.sl-hero .section-title p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-secondary-color);
    margin-bottom: 15px;
}

.sl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white-color);
    background: linear-gradient(135deg, rgba(143, 69, 63, 0.45) 0%, rgba(143, 69, 63, 0.15) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(143, 69, 63, 0.4);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(143, 69, 63, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sl-hero-badge i {
    font-size: 12px;
    color: var(--accent-secondary-color);
}

.sl-hero-description {
    font-size: 17px;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 20px auto 0;
}

.sl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}


/* Search Bar */

.sl-search-bar {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 6px;
    margin: 30px auto;
    max-width: 780px;
    position: relative;
    z-index: 50;
    text-align: left;
}

.sl-search-field {
    position: relative;
    flex: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sl-search-field--category {
    flex: 1.3;
}

.sl-search-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-secondary-color);
    margin-bottom: 4px;
}

.sl-search-select {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.sl-search-select-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: left;
}

.sl-search-chevron {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sl-search-field.sl-open .sl-search-chevron {
    transform: rotate(180deg);
}

.sl-search-location-icon {
    font-size: 14px;
    color: var(--accent-secondary-color);
    flex-shrink: 0;
}

.sl-search-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 10px 0;
    flex-shrink: 0;
}

.sl-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.sl-search-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.sl-search-btn i {
    font-size: 14px;
}


/* Dropdowns */

.sl-search-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: -6px;
    min-width: 320px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 8px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease-in-out;
}

.sl-search-field.sl-open .sl-search-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sl-search-dropdown-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-color);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 6px;
}

.sl-search-dropdown-input i {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.4;
}

.sl-search-dropdown-input input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    width: 100%;
}

.sl-search-dropdown-input input::placeholder {
    color: var(--text-color);
    opacity: 0.5;
}

.sl-search-dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--divider-color) transparent;
}

.sl-search-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.sl-search-dropdown-list::-webkit-scrollbar-thumb {
    background: var(--divider-color);
    border-radius: 4px;
}

.sl-search-dropdown-list li {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sl-search-dropdown-list li:hover {
    background: var(--bg-color);
}

.sl-search-dropdown-list li.sl-selected {
    color: var(--accent-secondary-color);
    font-weight: 600;
}

.sl-search-dropdown-list li.sl-search-dropdown-group {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-secondary-color);
    padding: 14px 14px 6px;
    cursor: default;
}

.sl-search-dropdown-list li.sl-search-dropdown-group:hover {
    background: transparent;
}

.sl-search-dropdown-list li.sl-hidden {
    display: none;
}

.sl-search-dropdown-list li.sl-ville-loader {
    color: #999;
    cursor: default;
    text-align: center;
    padding: 14px;
}

.sl-search-dropdown-list li.sl-ville-loader:hover {
    background: transparent;
}

.sl-search-dropdown-list li strong {
    color: var(--accent-secondary-color, #e4a400);
    font-weight: 700;
}

.sl-ville-cp {
    color: #999;
    font-size: 12px;
}


/* Find Coach / Sport Selector */

.sl-find-coach {
    padding: 80px 0;
}

.sl-sport-selector {
    position: relative;
    margin-bottom: 50px;
}

.sl-sport-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.sl-sport-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(0.5);
    transition: all 0.4s ease-in-out;
}

.sl-sport-card-title {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.sl-sport-card--active {
    border: 2px solid var(--accent-secondary-color);
    box-shadow: 0 0 15px rgba(143, 69, 63, 0.3);
}

.sl-sport-card--active img {
    filter: brightness(0.6);
}

.sl-sport-card--locked {
    opacity: 0.6;
    pointer-events: none;
}

.sl-sport-card--locked img {
    filter: brightness(0.4) grayscale(100%);
}

.sl-lock-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--white-color);
    font-size: 14px;
    opacity: 0.7;
    z-index: 2;
}

.sl-sport-nav-prev,
.sl-sport-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}

.sl-sport-nav-prev:hover,
.sl-sport-nav-next:hover {
    background: var(--accent-secondary-color);
}

.sl-sport-nav-prev {
    left: -20px;
}

.sl-sport-nav-next {
    right: -20px;
}


/* Categories & Subcategories */

.sl-categories-container {
    margin-top: 20px;
}


/* Category Cards */

.sl-cat-card {
    position: relative;
    border-radius: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
    height: calc(100% - 30px);
    overflow: hidden;
}

.sl-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.sl-cat-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transition: all 0.5s ease-in-out;
}

.sl-cat-card:hover .sl-cat-card-bg {
    filter: brightness(0.25);
    transform: scale(1.05);
}

.sl-cat-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sl-cat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.sl-cat-card:hover .sl-cat-card-icon {
    background: var(--accent-secondary-color);
}

.sl-cat-card-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.sl-cat-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 10px;
    line-height: 1.2em;
}

.sl-cat-card-desc {
    font-size: 14px;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    flex: 1;
}

.sl-cat-card-cta {
    display: inline-block;
    align-self: flex-start;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 100px;
    padding: 10px 38px 10px 18px;
    margin-top: 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.sl-cat-card-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}

.sl-cat-card:hover .sl-cat-card-cta {
    background: var(--accent-secondary-color);
}

.sl-cat-card-cta i {
    display: none;
}

.sl-categories-view .sl-category-card {
    cursor: pointer;
}

.sl-subcategories-view {
    animation: sl-fadeIn 0.4s ease-in-out;
}


/* Subcategory Cards */

.sl-subcat-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    height: calc(100% - 25px);
    display: flex;
    flex-direction: column;
}

.sl-subcat-card:hover {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 10px 30px rgba(143, 69, 63, 0.1);
    transform: translateY(-4px);
}

.sl-subcat-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.sl-subcat-card:hover .sl-subcat-card-icon {
    background: var(--accent-secondary-color);
}

.sl-subcat-card-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.sl-subcat-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sl-subcat-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.sl-subcat-card-body p {
    font-size: 14px;
    line-height: 1.5em;
    color: var(--text-color);
    margin: 0 0 20px;
    flex: 1;
}

.sl-subcat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 18px;
    margin-top: auto;
}

.sl-subcat-coach-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-secondary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sl-subcat-coach-count i {
    font-size: 14px;
}

.sl-subcat-card-footer .btn-default {
    font-size: 13px;
    padding: 10px 38px 10px 18px;
}

.sl-subcat-card-footer .btn-default::before {
    right: 16px;
    width: 10px;
    height: 10px;
}

@keyframes sl-fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sl-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--divider-color);
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

.sl-back-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}


/* Coach Marquee */

.sl-coach-marquee {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.sl-coach-marquee::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(143, 69, 63, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.sl-coach-marquee .container {
    position: relative;
    z-index: 1;
}

.sl-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 20px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sl-marquee::-webkit-scrollbar {
    display: none;
}

.sl-marquee:active {
    cursor: grabbing;
}

.sl-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: sl-marquee-scroll 30s linear infinite;
}

.sl-marquee:hover .sl-marquee-track {
    animation-play-state: paused;
}

@keyframes sl-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sl-marquee-item {
    flex-shrink: 0;
    width: 220px;
}

.sl-coach-card {
    background: var(--dark-divider-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.sl-coach-card:hover {
    transform: translateY(-5px);
}

.sl-coach-card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.sl-coach-card-body {
    padding: 15px;
}

.sl-coach-card-body h3 {
    font-size: 16px;
    color: var(--white-color);
    margin: 0 0 5px;
}

.sl-coach-card-body p {
    font-size: 13px;
    color: var(--white-color);
    opacity: 0.7;
    margin: 0 0 8px;
}

.sl-coach-card-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-secondary-color);
}

.sl-coach-card-rating i {
    font-size: 13px;
}


/* Testimonials override (full width) */

.our-testimonials .testimonial-image {
    display: none;
}


/* Vanity Metrics */

.sl-metrics {
    padding: 60px 0;
}

.sl-metric-item {
    text-align: center;
    padding: 30px 15px;
}

.sl-metric-item h3 {
    font-size: 42px;
    color: var(--accent-secondary-color);
    margin: 0 0 10px;
    line-height: 1em;
}

.sl-metric-item p {
    font-size: 16px;
    color: var(--white-color);
    margin: 0;
}


/* Gift Card CTA */

.sl-gift-cta {
    padding: 80px 0;
}

.sl-gift-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 60px;
}

.sl-gift-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sl-gift-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2);
}

.sl-gift-card .row {
    position: relative;
    z-index: 2;
}

.sl-gift-card-content {
    position: relative;
    z-index: 2;
}

.sl-gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-secondary-color);
    background: rgba(143, 69, 63, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(143, 69, 63, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
}

.sl-gift-badge i {
    font-size: 14px;
}

.sl-gift-card-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2em;
    margin: 0 0 18px;
}

.sl-gift-card-content p {
    font-size: 16px;
    line-height: 1.65em;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px;
    max-width: 520px;
}

.sl-gift-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.sl-gift-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
}

.sl-gift-feature i {
    color: var(--accent-secondary-color);
    font-size: 16px;
}


/* Gift voucher visual */

.sl-gift-card-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sl-gift-voucher {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 35px 40px;
    width: 100%;
    max-width: 340px;
    transform: rotate(2deg);
    transition: all 0.4s ease-in-out;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sl-gift-voucher:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.sl-gift-voucher-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sl-gift-voucher-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.sl-gift-voucher-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-secondary-color);
    border: 1px solid var(--accent-secondary-color);
    border-radius: 50px;
    padding: 4px 12px;
}

.sl-gift-voucher-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1em;
    margin-bottom: 30px;
}

.sl-gift-voucher-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.sl-gift-voucher-footer span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-family: monospace;
}


/*** Sportlinky Responsive ***/

@media (max-width: 991px) {
    .sl-hero .section-title h1 {
        font-size: 36px;
    }
    .sl-hero-description {
        font-size: 16px;
    }
    .sl-search-bar {
        flex-direction: column;
        border-radius: 24px;
        max-width: 100%;
    }
    .sl-search-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .sl-search-btn {
        justify-content: center;
        border-radius: 16px;
        margin-top: 2px;
    }
    .sl-search-dropdown {
        left: 0;
        min-width: 100%;
    }
    .sl-sport-nav-prev,
    .sl-sport-nav-next {
        display: none;
    }
    .sl-metric-item h3 {
        font-size: 32px;
    }
    .sl-metric-item p {
        font-size: 14px;
    }
    .sl-marquee-item {
        width: 180px;
    }
    .sl-gift-card {
        padding: 40px 30px;
    }
    .sl-gift-card-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .sl-hero {
        padding: 130px 0 50px;
    }
    .sl-hero .section-title h1 {
        font-size: 28px;
    }
    .sl-hero-description {
        font-size: 15px;
    }
    .sl-find-coach {
        padding: 50px 0;
    }
    .sl-coach-marquee {
        padding: 50px 0;
    }
    .sl-metrics {
        padding: 40px 0;
    }
    .sl-metric-item {
        padding: 20px 10px;
    }
    .sl-metric-item h3 {
        font-size: 28px;
    }
    .sl-marquee-item {
        width: 160px;
    }
    .sl-gift-cta {
        padding: 50px 0;
    }
    .sl-gift-card {
        padding: 30px 20px;
    }
    .sl-gift-card-content h2 {
        font-size: 24px;
    }
    .sl-gift-card-content p {
        font-size: 14px;
    }
    .sl-gift-features {
        flex-direction: column;
        gap: 10px;
    }
}


/************************************/


/*** Sportlinky - Profil Coach    ***/


/************************************/


/* === Cover Section === */

.sl-coach-cover {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: -1px;
}

.sl-coach-cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.sl-coach-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.95) 0%, rgba(6, 6, 6, 0.6) 40%, rgba(6, 6, 6, 0.2) 100%);
}

.sl-coach-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    padding-bottom: 40px;
}


/* === Avatar === */

.sl-coach-avatar {
    position: relative;
    flex-shrink: 0;
}

.sl-coach-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sl-coach-online {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid var(--white-color);
}


/* === Header Info === */

.sl-coach-header-info {
    flex: 1;
    min-width: 0;
}

.sl-coach-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sl-coach-name-row h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white-color);
    margin: 0;
    line-height: 1.1em;
}

.sl-coach-verified {
    color: #3b82f6;
    font-size: 22px;
}

.sl-coach-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 6px 0 0;
}

.sl-coach-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 14px;
}

.sl-coach-meta-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sl-coach-meta-item i {
    color: var(--accent-secondary-color);
    font-size: 14px;
}

.sl-coach-meta-light {
    color: rgba(255, 255, 255, 0.5);
}

.sl-coach-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}


/* === Boutons === */

.sl-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border: 2px solid var(--accent-secondary-color);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-family: var(--default-font);
}

.sl-btn-primary:hover {
    background: transparent;
    color: var(--white-color);
}

.sl-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-family: var(--default-font);
}

.sl-btn-outline:hover {
    border-color: var(--white-color);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.sl-btn-full {
    width: 100%;
    justify-content: center;
}


/* === Profile Content Area === */

.sl-coach-profile {
    padding: 40px 0 80px;
}


/* === Stats Bar === */

.sl-coach-stats-bar {
    display: flex;
    background: var(--white-color);
    border-radius: 20px;
    padding: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.sl-coach-stat {
    flex: 1;
    text-align: center;
    padding: 22px 10px;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
}

.sl-coach-stat:hover {
    background: var(--bg-color);
}

.sl-coach-stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1em;
}

.sl-coach-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-color);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* === Card Section (generic) === */

.sl-coach-card-section {
    background: var(--white-color);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.sl-coach-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--divider-color);
}

.sl-coach-section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sl-coach-section-header h2 i {
    color: var(--accent-secondary-color);
    font-size: 18px;
}


/* === Bio === */

.sl-coach-bio p {
    font-size: 15px;
    line-height: 1.75em;
    color: var(--text-color);
    margin: 0 0 15px;
}

.sl-coach-bio p:last-child {
    margin-bottom: 0;
}


/* === Sports Grid === */

.sl-coach-sports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sl-coach-sport-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease-in-out;
}

.sl-coach-sport-item:hover {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 4px 15px rgba(143, 69, 63, 0.08);
}

.sl-coach-sport-item--primary {
    border-color: var(--accent-secondary-color);
    background: rgba(143, 69, 63, 0.04);
}

.sl-coach-sport-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sl-coach-sport-item:hover .sl-coach-sport-icon,
.sl-coach-sport-item--primary .sl-coach-sport-icon {
    background: var(--accent-secondary-color);
}

.sl-coach-sport-icon i {
    font-size: 18px;
    color: var(--white-color);
}

.sl-coach-sport-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 4px;
}

.sl-coach-sport-info p {
    font-size: 13px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4em;
}


/* === Skills Tags === */

.sl-coach-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sl-skill-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.sl-skill-tag:hover {
    background: rgba(143, 69, 63, 0.08);
    border-color: var(--accent-secondary-color);
    color: var(--accent-secondary-color);
}


/* === Timeline === */

.sl-coach-timeline {
    position: relative;
    padding-left: 30px;
}

.sl-coach-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--divider-color);
}

.sl-timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.sl-timeline-item:last-child {
    padding-bottom: 0;
}

.sl-timeline-dot {
    position: absolute;
    left: -27px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-secondary-color);
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 2px var(--accent-secondary-color);
}

.sl-timeline-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.sl-timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px;
}

.sl-timeline-content p {
    font-size: 14px;
    line-height: 1.6em;
    color: var(--text-color);
    margin: 0;
}


/* === Tarifs list (par sous-catégorie) === */

.sl-tarifs-info {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sl-tarifs-info i {
    color: var(--accent-secondary-color);
}

.sl-tarifs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sl-tarif-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease-in-out;
}

.sl-tarif-row:hover {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 4px 15px rgba(143, 69, 63, 0.06);
}

.sl-tarif-row--popular {
    border-color: var(--accent-secondary-color);
    background: rgba(143, 69, 63, 0.03);
}

.sl-tarif-popular-badge {
    position: absolute;
    top: -9px;
    right: 16px;
    background: var(--accent-secondary-color);
    color: var(--white-color);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 50px;
}

.sl-tarif-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.sl-tarif-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.sl-tarif-row:hover .sl-tarif-icon {
    background: var(--accent-secondary-color);
}

.sl-tarif-icon i {
    font-size: 16px;
    color: var(--accent-secondary-color);
    transition: color 0.3s ease-in-out;
}

.sl-tarif-row:hover .sl-tarif-icon i {
    color: var(--white-color);
}

.sl-tarif-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 2px;
}

.sl-tarif-duration {
    font-size: 12px;
    color: var(--text-color);
}

.sl-tarif-row-right {
    flex-shrink: 0;
}

.sl-tarif-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}


/* === Clubs === */

.sl-clubs-intro {
    font-size: 14px;
    line-height: 1.6em;
    color: var(--text-color);
    margin: 0 0 25px;
}

.sl-clubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sl-club-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    border-radius: 16px;
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.sl-club-item:hover {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 4px 15px rgba(143, 69, 63, 0.08);
    transform: translateY(-3px);
}

.sl-club-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.sl-club-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* === Mobile fixed RDV bar === */

.sl-mobile-rdv-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--divider-color);
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sl-mobile-rdv-bar--visible {
    transform: translateY(0);
}

.sl-mobile-rdv-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.sl-mobile-rdv-bar-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.sl-mobile-rdv-bar-price {
    display: block;
    font-size: 12px;
    color: var(--accent-secondary-color);
    font-weight: 600;
}

.sl-mobile-rdv-bar .sl-btn-primary {
    padding: 10px 22px;
    font-size: 13px;
    white-space: nowrap;
}


/* === Avis Section === */

.sl-avis-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.sl-avis-summary {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--divider-color);
}

.sl-avis-score {
    text-align: center;
    flex-shrink: 0;
}

.sl-avis-score-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1em;
}

.sl-avis-score-stars {
    margin-top: 8px;
}

.sl-avis-score-stars i {
    font-size: 16px;
    color: #f59e0b;
}

.sl-avis-score-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-secondary-color);
    margin-top: 6px;
}

.sl-avis-bars {
    flex: 1;
}

.sl-avis-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.sl-avis-bar-row:last-child {
    margin-bottom: 0;
}

.sl-avis-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 36px;
    text-align: right;
}

.sl-avis-bar-label i {
    font-size: 11px;
    color: #f59e0b;
}

.sl-avis-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
}

.sl-avis-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.sl-avis-bar-count {
    font-size: 13px;
    color: var(--text-color);
    min-width: 30px;
}


/* === Avis Items === */

.sl-avis-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.sl-avis-item {
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--divider-color);
    transition: all 0.3s ease-in-out;
}

.sl-avis-item:hover {
    border-color: rgba(143, 69, 63, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.sl-avis-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sl-avis-author-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.sl-avis-author-info {
    flex: 1;
}

.sl-avis-author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.sl-avis-date {
    font-size: 12px;
    color: var(--text-color);
}

.sl-avis-stars i {
    font-size: 13px;
    color: #f59e0b;
}

.sl-avis-text {
    font-size: 14px;
    line-height: 1.65em;
    color: var(--text-color);
    margin: 0 0 10px;
}

.sl-avis-consultation {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-secondary-color);
    background: rgba(143, 69, 63, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
}


/* === Colonne droite : Sticky === */

.sl-rdv-sticky {
    position: sticky;
    top: 130px;
}


/* === Module RDV === */

.sl-rdv-module {
    background: var(--white-color);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sl-rdv-header {
    background: var(--primary-color);
    padding: 25px 25px 20px;
}

.sl-rdv-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sl-rdv-header h3 i {
    color: var(--accent-secondary-color);
}

.sl-rdv-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


/* Type selector */

.sl-rdv-type-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 0;
}

.sl-rdv-type {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-color);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: var(--default-font);
}

.sl-rdv-type:hover {
    border-color: var(--divider-color);
}

.sl-rdv-type i {
    color: var(--accent-secondary-color);
}

.sl-rdv-type--active {
    background: rgba(143, 69, 63, 0.08);
    border-color: var(--accent-secondary-color);
    color: var(--accent-secondary-color);
}


/* Week navigation */

.sl-rdv-week-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 10px;
}

.sl-rdv-week-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--divider-color);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.2s ease-in-out;
    font-size: 12px;
}

.sl-rdv-week-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.sl-rdv-week-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.sl-rdv-week-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}


/* === Accordéon Jours === */

.sl-rdv-accordion {
    padding: 0 20px 20px;
}

.sl-rdv-day {
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.sl-rdv-day:last-child {
    margin-bottom: 0;
}

.sl-rdv-day--disabled {
    opacity: 0.45;
    pointer-events: none;
}

.sl-rdv-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.sl-rdv-day:not(.sl-rdv-day--disabled) .sl-rdv-day-header:hover {
    background: var(--bg-color);
}

.sl-rdv-day--open .sl-rdv-day-header {
    background: var(--bg-color);
}

.sl-rdv-day-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sl-rdv-day-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.sl-rdv-day-date {
    font-size: 13px;
    color: var(--text-color);
}

.sl-rdv-day-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-rdv-day-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-secondary-color);
}

.sl-rdv-day-count--empty {
    color: var(--text-color);
    opacity: 0.6;
}

.sl-rdv-day-chevron {
    font-size: 11px;
    color: var(--text-color);
    transition: transform 0.3s ease-in-out;
}

.sl-rdv-day--open .sl-rdv-day-chevron {
    transform: rotate(180deg);
}


/* Slots container */

.sl-rdv-day-slots {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    animation: sl-fadeIn 0.3s ease-in-out;
}

.sl-rdv-day--open .sl-rdv-day-slots {
    display: flex;
}


/* Slot pills */

.sl-rdv-slot {
    padding: 9px 18px;
    border: 1.5px solid var(--accent-secondary-color);
    border-radius: 50px;
    background: transparent;
    color: var(--accent-secondary-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-family: var(--default-font);
}

.sl-rdv-slot:hover {
    background: rgba(143, 69, 63, 0.08);
}

.sl-rdv-slot--active {
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border-color: var(--accent-secondary-color);
}


/* Selection recap */

.sl-rdv-selection {
    padding: 20px;
    border-top: 1px solid var(--divider-color);
    animation: sl-fadeIn 0.3s ease-in-out;
}

.sl-rdv-selection-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 14px;
    background: rgba(143, 69, 63, 0.06);
    border-radius: 12px;
}

.sl-rdv-selection-info>i {
    font-size: 20px;
    color: var(--accent-secondary-color);
}

.sl-rdv-selection-info strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.sl-rdv-selection-info span {
    font-size: 13px;
    color: var(--text-color);
}

.sl-rdv-confirm {
    font-size: 15px;
    padding: 14px 28px;
}


/* === Gift Card === */

.sl-coach-gift-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.sl-gift-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(143, 69, 63, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.sl-gift-card-icon i {
    font-size: 22px;
    color: var(--accent-secondary-color);
}

.sl-coach-gift-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px;
}

.sl-coach-gift-card p {
    font-size: 13px;
    color: var(--text-color);
    margin: 0 0 18px;
}

.sl-coach-gift-card .sl-btn-outline {
    color: var(--primary-color);
    border-color: var(--divider-color);
}

.sl-coach-gift-card .sl-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}


/* === Socials Card === */

.sl-coach-socials-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.sl-coach-socials-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 15px;
}

.sl-coach-socials-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sl-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.sl-social-link:hover {
    background: var(--accent-secondary-color);
    color: var(--white-color);
}


/* === Bouton outline contexte clair === */

.sl-coach-card-section .sl-btn-outline {
    color: var(--primary-color);
    border-color: var(--divider-color);
}

.sl-coach-card-section .sl-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}


/* =============================================
   Profil Coach - Responsive
   ============================================= */

@media (max-width: 991px) {
    .sl-coach-cover {
        min-height: 380px;
        padding-top: 100px;
    }
    .sl-coach-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 30px;
    }
    .sl-coach-avatar img {
        width: 120px;
        height: 120px;
    }
    .sl-coach-name-row {
        justify-content: center;
    }
    .sl-coach-name-row h1 {
        font-size: 28px;
    }
    .sl-coach-meta {
        justify-content: center;
    }
    .sl-coach-header-actions {
        justify-content: center;
    }
    .sl-coach-stats-bar {
        flex-wrap: wrap;
    }
    .sl-coach-stat {
        flex: 0 0 50%;
    }
    .sl-coach-sports-grid {
        grid-template-columns: 1fr;
    }
    .sl-clubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sl-avis-summary {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    .sl-avis-bars {
        width: 100%;
    }
    .sl-rdv-sticky {
        position: static;
        margin-top: 30px;
    }
    .sl-mobile-rdv-bar {
        display: block;
    }
    .sl-coach-profile {
        padding-bottom: 100px;
    }
}

@media (max-width: 575px) {
    .sl-coach-cover {
        min-height: 320px;
        padding-top: 110px;
    }
    .sl-coach-avatar img {
        width: 100px;
        height: 100px;
    }
    .sl-coach-name-row h1 {
        font-size: 24px;
    }
    .sl-coach-card-section {
        padding: 25px 20px;
    }
    .sl-coach-stat-number {
        font-size: 20px;
    }
    .sl-coach-stat-label {
        font-size: 11px;
    }
    .sl-coach-header-actions {
        width: 100%;
    }
    .sl-coach-header-actions .sl-btn-primary,
    .sl-coach-header-actions .sl-btn-outline {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    .sl-clubs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .sl-club-item {
        padding: 14px 8px;
    }
    .sl-club-item img {
        width: 44px;
        height: 44px;
    }
    .sl-club-item span {
        font-size: 10px;
    }
    .sl-tarif-row {
        padding: 14px 16px;
    }
    .sl-tarif-price {
        font-size: 18px;
    }
    .sl-tarif-info h4 {
        font-size: 14px;
    }
}


/************************************/


/***  Annuaire - Listing (sl-)    ***/


/************************************/


/* Hero compact */

.sl-annuaire-hero {
    padding: 130px 0 40px;
    border-radius: 0 0 1.5rem 1.5rem;
    margin: 0 auto;
    overflow: visible;
}


/* Breadcrumb */

.sl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}

.sl-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sl-breadcrumb a:hover {
    color: var(--white-color);
}

.sl-breadcrumb i {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
}

.sl-breadcrumb span {
    color: var(--accent-secondary-color);
    font-weight: 600;
}


/* Title */

.sl-annuaire-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white-color);
    margin: 0 0 8px;
    line-height: 1.15em;
}

.sl-annuaire-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.sl-annuaire-subtitle strong {
    color: var(--white-color);
    font-weight: 700;
}

.sl-annuaire-subtitle i {
    color: var(--accent-secondary-color);
    margin-right: 4px;
}

.sl-annuaire-title-icon {
    font-size: 0.75em;
    color: var(--accent-secondary-color);
    margin-right: 4px;
}


/* Search bar compact (hero) */

.sl-annuaire-search {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 60px;
    padding: 5px;
    position: relative;
}

.sl-annuaire-search-field {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    min-width: 0;
}

.sl-annuaire-search-field>i {
    font-size: 14px;
    color: var(--accent-secondary-color);
    flex-shrink: 0;
}

.sl-annuaire-search-field input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    width: 100%;
}

.sl-annuaire-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.sl-annuaire-search-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 8px 0;
    flex-shrink: 0;
}


/* Location select */

.sl-annuaire-location-select {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.sl-annuaire-location-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.sl-annuaire-chevron {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sl-annuaire-search-field--location.sl-open .sl-annuaire-chevron {
    transform: rotate(180deg);
}

.sl-annuaire-dropdown {
    top: calc(100% + 10px);
    left: 0;
    min-width: 280px;
}

.sl-annuaire-search-field--location.sl-open .sl-annuaire-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Search button */

.sl-annuaire-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

.sl-annuaire-search-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}


/* Coach search results dropdown */

.sl-coach-results-dropdown {
    top: calc(100% + 10px);
    left: -6px;
    right: -6px;
    min-width: 320px;
    max-width: 420px;
    padding: 8px;
}

.sl-annuaire-search-field--coach.sl-open .sl-coach-results-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sl-coach-results-list {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--divider-color) transparent;
}

.sl-coach-results-list::-webkit-scrollbar {
    width: 4px;
}

.sl-coach-results-list::-webkit-scrollbar-thumb {
    background: var(--divider-color);
    border-radius: 4px;
}

.sl-coach-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.sl-coach-result-item:hover {
    background: var(--bg-color);
    color: inherit;
    text-decoration: none;
}

.sl-coach-result-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--bg-color);
}

.sl-coach-result-item:hover .sl-coach-result-avatar {
    border-color: var(--accent-secondary-color);
}

.sl-coach-result-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sl-coach-result-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2em;
}

.sl-coach-result-detail {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sl-coach-result-arrow {
    font-size: 10px;
    color: var(--text-color);
    opacity: 0.3;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.sl-coach-result-item:hover .sl-coach-result-arrow {
    opacity: 1;
    color: var(--accent-secondary-color);
    transform: translateX(2px);
}


/* Subcategory switcher */

.sl-subcat-switcher {
    margin-bottom: 20px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    padding: 16px 24px;
}

.sl-subcat-switcher-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    opacity: 0.6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sl-subcat-switcher-label i {
    font-size: 10px;
}

.sl-subcat-switcher-label i:first-child {
    font-size: 13px;
    color: var(--accent-secondary-color);
}

.sl-subcat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.sl-subcat-tabs::-webkit-scrollbar {
    display: none;
}

.sl-subcat-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1px solid var(--divider-color);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease-in-out;
    flex-shrink: 0;
}

.sl-subcat-tab:hover {
    border-color: var(--accent-secondary-color);
    color: var(--accent-secondary-color);
    text-decoration: none;
}

.sl-subcat-tab i {
    font-size: 12px;
}

.sl-subcat-tab--active {
    background: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
    color: var(--white-color);
}

.sl-subcat-tab--active:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.sl-subcat-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-color);
}

.sl-subcat-tab--active .sl-subcat-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white-color);
}


/* Content section */

.sl-annuaire-content {
    padding: 40px 0 80px;
}


/* Filters bar */

.sl-annuaire-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 24px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sl-annuaire-filters-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sl-annuaire-filters-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* Filter chips (sort) */

.sl-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--divider-color);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    white-space: nowrap;
}

.sl-filter-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sl-filter-chip--active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.sl-filter-chip--active:hover {
    background: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
    color: var(--white-color);
}

.sl-filter-chip i {
    font-size: 11px;
}


/* Filter dropdowns */

.sl-filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--divider-color);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    white-space: nowrap;
}

.sl-filter-dropdown:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.sl-filter-dropdown>i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.sl-filter-dropdown.sl-open>i {
    transform: rotate(180deg);
}

.sl-filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--white-color);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 6px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease-in-out;
}

.sl-filter-dropdown.sl-open .sl-filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sl-filter-dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sl-filter-dropdown-menu li {
    padding: 9px 14px;
    font-size: 13px;
    color: var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sl-filter-dropdown-menu li:hover {
    background: var(--bg-color);
}

.sl-filter-dropdown-menu li.sl-selected {
    color: var(--accent-secondary-color);
    font-weight: 600;
}

.sl-filter-dropdown-menu li i {
    font-size: 11px;
    color: #f5a623;
    transform: none;
}


/* Active tags */

.sl-annuaire-active-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.sl-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
}

.sl-active-tag button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.08);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.sl-active-tag button:hover {
    background: var(--accent-secondary-color);
    color: var(--white-color);
}

.sl-active-tag button i {
    font-size: 9px;
}

.sl-clear-filters {
    font-size: 13px;
    color: var(--accent-secondary-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: 5px;
    transition: opacity 0.2s ease;
}

.sl-clear-filters:hover {
    opacity: 0.7;
    color: var(--accent-secondary-color);
}


/* Grid */

.sl-annuaire-grid {
    margin-bottom: 20px;
}


/* Pro Card (coach listing card) */

.sl-pro-card {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    transition: all 0.35s ease-in-out;
    text-decoration: none;
    color: inherit;
    height: calc(100% - 24px);
}

.sl-pro-card:hover {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 16px 48px rgba(143, 69, 63, 0.12);
    transform: translateY(-6px);
    color: inherit;
    text-decoration: none;
}


/* Card header (photo) */

.sl-pro-card-header {
    position: relative;
    overflow: hidden;
}

.sl-pro-card-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.sl-pro-card:hover .sl-pro-card-photo {
    transform: scale(1.06);
}

.sl-pro-card-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--accent-secondary-color);
    color: var(--white-color);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sl-pro-card-badge-top--new {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.sl-pro-card-badge-top i {
    font-size: 10px;
}


/* Card body */

.sl-pro-card-body {
    padding: 18px 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sl-pro-card-identity {
    margin-bottom: 8px;
}

.sl-pro-card-identity h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px;
    line-height: 1.2em;
}


/* Rating */

.sl-pro-card-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
}

.sl-pro-card-rating i {
    font-size: 12px;
    color: #f5a623;
}

.sl-pro-card-rating span {
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 4px;
}

.sl-pro-card-rating em {
    font-style: normal;
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.6;
    margin-left: 2px;
    font-size: 12px;
}


/* Location */

.sl-pro-card-location {
    font-size: 13px;
    color: var(--text-color);
    margin: 0 0 12px;
}

.sl-pro-card-location i {
    font-size: 11px;
    color: var(--accent-secondary-color);
    margin-right: 4px;
}


/* Badges */

.sl-pro-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
    margin-top: auto;
}

.sl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--bg-color);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.sl-badge i {
    font-size: 10px;
    color: var(--text-color);
}

.sl-badge--visio {
    background: rgba(143, 69, 63, 0.08);
    color: var(--accent-secondary-color);
}

.sl-badge--visio i {
    color: var(--accent-secondary-color);
}


/* Card footer */

.sl-pro-card-footer {
    padding: 16px 20px 18px;
    margin-top: 16px;
    border-top: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sl-pro-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}


/* Dispo */

.sl-pro-card-dispo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-color);
}

.sl-pro-card-dispo i {
    color: #22c55e;
    font-size: 12px;
}

.sl-pro-card-dispo strong {
    color: var(--primary-color);
    font-weight: 700;
}


/* Price */

.sl-pro-card-price {
    font-size: 12px;
    color: var(--text-color);
}

.sl-pro-card-price span {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
}


/* CTA button */

.sl-pro-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
}

.sl-pro-card:hover .sl-pro-card-cta {
    background: var(--accent-secondary-color);
}

.sl-pro-card-cta img {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.sl-pro-card:hover .sl-pro-card-cta img {
    transform: translateX(3px);
}


/* Pagination */

.sl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 0;
}

.sl-pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    font-size: 13px;
}

.sl-pagination-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.sl-pagination-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.sl-pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.sl-pagination-page:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

.sl-pagination-page--active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.sl-pagination-page--active:hover {
    background: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
    color: var(--white-color);
}

.sl-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 2px;
}


/*** Annuaire Responsive ***/

@media (max-width: 991px) {
    .sl-annuaire-hero {
        padding: 120px 0 30px;
    }
    .sl-annuaire-title {
        font-size: 28px;
        margin-bottom: 5px;
    }
    .sl-annuaire-search {
        margin-top: 20px;
    }
    .sl-annuaire-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    .sl-annuaire-filters-left,
    .sl-annuaire-filters-right {
        width: 100%;
    }
    .sl-annuaire-filters-right {
        padding-top: 12px;
        border-top: 1px solid var(--divider-color);
    }
    .sl-subcat-switcher {
        padding: 14px 16px;
    }
}

@media (max-width: 767px) {
    .sl-annuaire-hero {
        padding: 110px 0 25px;
    }
    .sl-annuaire-title {
        font-size: 24px;
    }
    .sl-annuaire-search {
        flex-direction: column;
        border-radius: clamp(14px, 3vw, 20px);
        padding: 8px;
    }
    .sl-annuaire-search-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .sl-annuaire-search-btn {
        width: 100%;
        border-radius: 14px;
        height: 42px;
    }
    .sl-coach-results-dropdown {
        min-width: 100%;
        left: 0;
        right: 0;
    }
    .sl-annuaire-filters-left {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }
    .sl-annuaire-filters-left::-webkit-scrollbar {
        display: none;
    }
    .sl-subcat-switcher {
        padding: 12px 14px;
        border-radius: 14px;
    }
    .sl-subcat-tabs {
        gap: 6px;
    }
    .sl-subcat-tab {
        padding: 7px 12px;
        font-size: 12px;
    }
    .sl-pro-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .sl-pro-card-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .sl-pro-card-cta {
        text-align: center;
        justify-content: center;
    }
    .sl-annuaire-content {
        padding: 30px 0 60px;
    }
    .sl-pagination {
        gap: 4px;
    }
    .sl-pagination-btn,
    .sl-pagination-page {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 13px;
    }
}


/* =============================================
   BLOG CATEGORIES PILLS - Horizontal scroll
   ============================================= */

.sl-blog-categories-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
}

.sl-blog-categories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
    padding: 4px 0;
}

.sl-blog-categories-scroll::-webkit-scrollbar {
    display: none;
}


/* Clubs logos in coach cards */

.sl-pro-card-clubs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.sl-pro-card-club-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    background: #f5f5f5;
    padding: 2px;
}

.sl-pro-card-club-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-color);
    background: var(--bg-color);
    padding: 3px 8px;
    border-radius: 6px;
}

.sl-blog-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.sl-blog-category-pill:hover {
    background: #e2e2e2;
    color: #222;
    text-decoration: none;
}

.sl-blog-category-pill.active {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
    font-weight: 600;
}

.sl-blog-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
    color: #555;
    font-size: 12px;
    font-weight: 600;
}

.sl-blog-category-pill.active .sl-blog-category-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sl-blog-categories-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sl-blog-categories-arrow:hover {
    background: #e2e2e2;
    color: #222;
}

.sl-blog-categories-arrow.sl-hidden {
    opacity: 0;
    pointer-events: none;
}


/* Mobile : masquer les flèches */

@media (max-width: 767px) {
    .sl-blog-categories-arrow {
        display: none;
    }
    .sl-blog-categories-wrapper {
        margin-bottom: 30px;
    }
    .sl-blog-category-pill {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/************************************/


/***  Flash Messages              ***/


/************************************/

.sl-flash-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    max-width: 480px;
    width: 100%;
}

.sl-flash-message {
    border: none;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    animation: sl-flash-slide-in 0.4s ease;
}

.sl-flash-message.sl-flash-hide {
    animation: sl-flash-slide-out 0.4s ease forwards;
}

.sl-flash-message .fa-lg {
    font-size: 1.3em;
}


/* Success */

.sl-flash-message.alert-success {
    background: #e8f5e9;
    color: #1b5e20;
}

.sl-flash-message.alert-success i {
    color: #2e7d32;
}

.sl-flash-message.alert-success .btn-close {
    filter: none;
    opacity: 0.5;
}


/* Error / Danger */

.sl-flash-message.alert-danger {
    background: #fce4ec;
    color: #b71c1c;
}

.sl-flash-message.alert-danger i {
    color: #c62828;
}

.sl-flash-message.alert-danger .btn-close {
    filter: none;
    opacity: 0.5;
}


/* Warning */

.sl-flash-message.alert-warning {
    background: #fff8e1;
    color: #e65100;
}

.sl-flash-message.alert-warning i {
    color: #ef6c00;
}

.sl-flash-message.alert-warning .btn-close {
    filter: none;
    opacity: 0.5;
}


/* Info */

.sl-flash-message.alert-info {
    background: #e3f2fd;
    color: #0d47a1;
}

.sl-flash-message.alert-info i {
    color: #1565c0;
}

.sl-flash-message.alert-info .btn-close {
    filter: none;
    opacity: 0.5;
}


/* Animations */

@keyframes sl-flash-slide-in {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sl-flash-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}


/* Mobile */

@media (max-width: 767px) {
    .sl-flash-container {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}


/************************************/


/***  Auth & Dashboard Styles     ***/


/************************************/


/* User bubble in header */

.sl-user-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.sl-user-bubble:hover {
    background: var(--accent-color, #e4a400);
    color: #fff;
}

.sl-user-bubble--photo {
    padding: 0;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.sl-user-bubble--photo:hover {
    border-color: var(--accent-color, #e4a400);
    background: none;
}

.sl-user-bubble--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* User bubble mobile — next to burger */

.sl-mobile-actions {
    display: flex;
    align-items: center;
    margin-right: 10px;
    order: 2;
}

.navbar-toggle {
    order: 3;
}


/* Switch account link */

.sl-switch-account {
    font-size: 14px;
    color: #6c757d;
}


/* Dashboard sidebar */

.sl-dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sl-dashboard-avatar {
    color: #ccc;
}

.sl-dashboard-nav ul {
    margin: 0;
    padding: 0;
}

.sl-dashboard-nav ul li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 15px;
}

.sl-dashboard-nav ul li a:hover,
.sl-dashboard-nav ul li.active a {
    background: #f8f9fa;
    color: var(--accent-color, #e4a400);
    font-weight: 600;
}


/* Dashboard cards */

.sl-dashboard-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sl-dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sl-dashboard-card-icon {
    font-size: 32px;
    color: var(--accent-color, #e4a400);
    margin-bottom: 15px;
}

.sl-dashboard-content h3 {
    font-weight: 700;
}


/* Auth forms label styling */

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    color: #333;
}


/* ---- Contact Page : Info Cards ---- */

.sl-contact-info {
    padding: 80px 0 0;
}

.sl-contact-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sl-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sl-contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.sl-contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sl-contact-card p {
    margin: 0;
    color: var(--body-color);
}

.sl-contact-card a {
    color: var(--body-color);
    text-decoration: none;
}

.sl-contact-card a:hover {
    color: var(--primary-color);
}


/* ---- Contact Page : Social Links ---- */

.sl-contact-social {
    padding: 40px 0 0;
}

.sl-contact-social h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.sl-contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sl-contact-social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.sl-contact-social-links a:hover {
    transform: translateY(-3px);
    background: var(--accent-color, #e4a400);
    color: var(--white-color);
}


/* ---- Compte Tabs (onglets Pro) ---- */

.sl-compte-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sl-compte-tabs .nav-tabs::-webkit-scrollbar {
    display: none;
}

.sl-compte-tabs .nav-link {
    color: var(--text-color);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 16px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
}

.sl-compte-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: #ccc;
}

.sl-compte-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}


/* ---- Parcours Items ---- */

.sl-parcours-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.sl-parcours-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* ---- Categories Tree ---- */

.sl-cat-tree-sport {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.sl-cat-tree-categorie {
    border-left: 3px solid #dee2e6;
    padding-left: 15px;
}

.sl-cat-tree-item .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.sl-cat-prix-wrapper {
    max-width: 220px;
}


/* ---- Evaluations ---- */

.sl-eval-note-grande {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.sl-eval-etoiles {
    font-size: 18px;
}

.sl-eval-avis {
    transition: box-shadow 0.2s ease;
}

.sl-eval-avis:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* Responsive dashboard */

@media (max-width: 991px) {
    .sl-pro-layout .col-lg-3:has(.sl-dashboard-sidebar) {
        display: none;
    }
    .sl-dashboard-sidebar {
        margin-bottom: 30px;
    }
    .sl-compte-tabs .nav-tabs {
        overflow-x: auto;
    }
}


/* ---- Agenda ---- */

#calendrier-agenda {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* FullCalendar — override couleurs pour coller au thème */

#calendrier-agenda .fc .fc-button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: var(--default-font);
    font-size: 14px;
    text-transform: capitalize;
}

#calendrier-agenda .fc .fc-button-primary:hover {
    background-color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
}

#calendrier-agenda .fc .fc-button-primary:not(:disabled).fc-button-active,
#calendrier-agenda .fc .fc-button-primary:not(:disabled):active {
    background-color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
}

#calendrier-agenda .fc .fc-button-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(143, 69, 63, 0.4);
}

#calendrier-agenda .fc .fc-toolbar-title {
    font-family: var(--default-font);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

#calendrier-agenda .fc .fc-col-header-cell {
    background: var(--accent-secondary-color);
}

#calendrier-agenda .fc .fc-col-header-cell-cushion,
#calendrier-agenda .fc .fc-col-header-cell a {
    color: var(--white-color) !important;
    font-family: var(--default-font);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 4px;
    text-decoration: none !important;
}

#calendrier-agenda .fc .fc-daygrid-day-number,
#calendrier-agenda .fc .fc-timegrid-slot-label-cushion {
    font-family: var(--default-font);
    color: var(--text-color);
}

#calendrier-agenda .fc .fc-day-today {
    background: rgba(143, 69, 63, 0.06) !important;
}

#calendrier-agenda .fc .fc-timegrid-now-indicator-line {
    border-color: var(--accent-secondary-color);
}

#calendrier-agenda .fc .fc-timegrid-now-indicator-arrow {
    border-top-color: var(--accent-secondary-color);
}


/* Modale agenda */

#modalDisponibilites .modal-header,
#modalAbsence .modal-header {
    background: var(--primary-color);
    color: var(--white-color);
    border-bottom: none;
}

#modalDisponibilites .modal-header .modal-title,
#modalAbsence .modal-header .modal-title {
    color: var(--white-color);
}

#modalDisponibilites .modal-header .btn-close,
#modalAbsence .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#modalDisponibilites .modal-title,
#modalAbsence .modal-title {
    font-family: var(--default-font);
    font-weight: 700;
}

#modalDisponibilites .modal-footer,
#modalAbsence .modal-footer {
    border-top: 1px solid var(--divider-color);
}


/* Tableau disponibilités */

.sl-dispo-table {
    margin-bottom: 0;
}

.sl-dispo-table th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    border-bottom: 2px solid #dee2e6;
    font-family: var(--default-font);
}

.sl-dispo-table td {
    vertical-align: middle;
}

.sl-dispo-table .form-select-sm {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
}

.sl-dispo-table .form-select-sm:focus {
    border-color: var(--accent-secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(143, 69, 63, 0.2);
}

.sl-dispo-table .form-check-input:checked {
    background-color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
}

.sl-dispo-table .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(143, 69, 63, 0.2);
    border-color: var(--accent-secondary-color);
}


/* Badges absences */

.sl-agenda-absence-badge {
    display: inline-flex;
    align-items: center;
    background: #c0392b;
    color: var(--white-color);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    gap: 8px;
    font-family: var(--default-font);
    transition: background 0.2s ease;
}

.sl-agenda-absence-badge:hover {
    background: #96281b;
}

.sl-agenda-absence-titre {
    font-weight: 600;
}

.sl-agenda-absence-dates {
    opacity: 0.85;
    font-size: 12px;
}


/* Formulaires modales agenda — style thème (contact-form) */

#modalAbsence .modal-body .form-label,
#modalDisponibilites .modal-body .form-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

#modalAbsence .modal-body .form-control {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background: var(--bg-color);
    border-radius: 16px;
    padding: 14px 20px;
    border: none;
    box-shadow: none;
    outline: none;
}

#modalAbsence .modal-body .form-control::placeholder {
    color: var(--primary-color);
    opacity: 50%;
}

#modalAbsence .modal-body .form-control:focus {
    background: var(--bg-color);
    box-shadow: 0 0 0 2px rgba(143, 69, 63, 0.25);
}

#modalAbsence .modal-body .form-check-input:checked {
    background-color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
}

#modalAbsence .modal-body .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(143, 69, 63, 0.2);
    border-color: var(--accent-secondary-color);
}

#modalAbsence .modal-body .form-check-label {
    font-size: 14px;
    color: var(--text-color);
}

.sl-agenda-notif {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: var(--default-font);
}

@media (max-width: 767px) {
    /* --- Calendrier container --- */
    #calendrier-agenda {
        padding: 8px;
        border-radius: 8px;
        margin: 0 -12px;
    }

    /* --- Toolbar: titre + boutons --- */
    #calendrier-agenda .fc .fc-toolbar {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    #calendrier-agenda .fc .fc-toolbar-title {
        font-size: 16px;
        width: 100%;
        text-align: center;
        order: -1;
    }
    #calendrier-agenda .fc .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }
    #calendrier-agenda .fc .fc-button-primary {
        font-size: 12px;
        padding: 4px 10px;
    }

    /* --- Footer toolbar (vue Jour/Semaine/Mois) --- */
    #calendrier-agenda .fc .fc-footer-toolbar {
        margin-top: 12px;
        justify-content: center;
    }
    #calendrier-agenda .fc .fc-footer-toolbar .fc-button-primary {
        font-size: 13px;
        padding: 6px 14px;
    }

    /* --- En-tête colonnes --- */
    #calendrier-agenda .fc .fc-col-header-cell-cushion,
    #calendrier-agenda .fc .fc-col-header-cell a {
        font-size: 12px;
        padding: 6px 2px;
    }

    /* --- Créneaux horaires --- */
    #calendrier-agenda .fc .fc-timegrid-slot {
        height: 36px;
    }
    #calendrier-agenda .fc .fc-timegrid-slot-label-cushion {
        font-size: 11px;
    }

    /* --- Événements --- */
    #calendrier-agenda .fc .fc-timegrid-event .fc-event-main {
        font-size: 11px;
        padding: 1px 3px;
    }
    #calendrier-agenda .fc .fc-daygrid-event {
        font-size: 11px;
    }

    /* --- Table disponibilités (modale) --- */
    .sl-dispo-table {
        font-size: 13px;
    }
    .sl-dispo-table th {
        font-size: 12px;
        padding: 6px 4px;
    }
    .sl-dispo-table td {
        padding: 6px 4px;
    }
    .sl-dispo-table .d-flex {
        flex-direction: column;
        gap: 4px !important;
    }
    .sl-dispo-table .d-flex span {
        display: none;
    }
    .sl-dispo-table .form-select-sm {
        width: 80px !important;
        font-size: 12px;
        padding: 2px 4px;
    }

    /* --- Badges absences --- */
    .sl-agenda-absence-badge {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* --- Boutons d'actions au-dessus du calendrier --- */
    .sl-dashboard-content .d-flex.flex-wrap.gap-3.mb-4 {
        flex-direction: column;
        gap: 8px !important;
    }
    .sl-dashboard-content .d-flex.flex-wrap.gap-3.mb-4 .btn-default {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    /* --- Modales --- */
    #modalDisponibilites .modal-dialog,
    #modalAbsence .modal-dialog,
    #modalConsultation .modal-dialog {
        margin: 8px;
        max-width: calc(100% - 16px);
    }
}

/* Petit écran extra (< 400px) */
@media (max-width: 400px) {
    #calendrier-agenda .fc .fc-toolbar-title {
        font-size: 14px;
    }
    #calendrier-agenda .fc .fc-button-primary {
        font-size: 11px;
        padding: 3px 8px;
    }
    .sl-dispo-table .form-select-sm {
        width: 70px !important;
    }
}

.fc-daygrid-day-number,
.fc-col-header-cell-cushion {
    color: var(--accent-secondary-color);
}

/* ========================================
   PRO DASHBOARD - THEME STYLE OVERRIDES
   ======================================== */

/* Form-select same style as form-control in contact-form */
.contact-form .form-select {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    border: none;
    border-radius: 16px;
    background-color: var(--bg-color);
    padding: 18px 25px;
    color: var(--primary-color);
    outline: none;
    height: auto;
}

.contact-form textarea.form-control {
    min-height: 120px;
}

/* ========================================
   UPLOAD ZONES
   ======================================== */

.sl-upload-zone {
    border: 2px dashed #dee2e6;
    border-radius: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #999;
    position: relative;
    overflow: hidden;
}

.sl-upload-zone:hover {
    border-color: var(--accent-secondary-color);
    color: var(--accent-secondary-color);
}

.sl-upload-zone i {
    font-size: 24px;
}

.sl-upload-zone small {
    font-size: 13px;
}

.sl-upload-zone--profil {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.sl-upload-zone--couverture {
    width: 100%;
    height: 200px;
}

.sl-upload-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sl-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-upload-zone--profil .sl-upload-preview img {
    border-radius: 50%;
}

.sl-upload-zone--couverture .sl-upload-preview img {
    border-radius: 16px;
}

.sl-upload-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.sl-upload-remove:hover {
    background: rgba(230, 87, 87, 0.9);
}

.sl-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* ========================================
   CKEDITOR OVERRIDES
   ======================================== */

.sl-dashboard-content .ck-editor__editable {
    background: var(--bg-color) !important;
    border-radius: 0 0 16px 16px !important;
    min-height: 150px;
    border: none !important;
}

.sl-dashboard-content .ck.ck-toolbar {
    border-radius: 16px 16px 0 0 !important;
    background: #fff !important;
    border: 1px solid #e9ecef !important;
    border-bottom: none !important;
}

.sl-dashboard-content .ck.ck-editor__editable.ck-focused {
    box-shadow: none !important;
    border: none !important;
}

/* ========================================
   SELECT2 THEME
   ======================================== */

.sl-dashboard-content .select2-container--default .select2-selection--single {
    background: var(--bg-color);
    border: none;
    border-radius: 16px;
    height: 56px;
    padding: 14px 20px;
}

.sl-dashboard-content .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    padding-left: 0;
    color: var(--primary-color);
}

.sl-dashboard-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
    right: 15px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--accent-secondary-color) !important;
}

.sl-select2-club-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sl-select2-club-option img {
    height: 28px;
    width: auto;
}

/* ========================================
   CLUB CARD IMPROVEMENTS
   ======================================== */

.sl-club-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}

.sl-club-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sl-club-card img {
    max-height: 60px;
    max-width: 100%;
    margin-bottom: 12px;
}

.sl-club-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: #999;
    border: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.sl-club-remove:hover {
    background: rgba(230, 87, 87, 0.15);
    color: var(--error-color);
}

/* ========================================
   CATEGORIES - SWITCHES + DASHED LINES
   ======================================== */

.sl-cat-tree-item {
    border-bottom: 1px dashed #dee2e6;
    padding-bottom: 12px;
}

.sl-cat-tree-item:last-child {
    border-bottom: none;
}

.sl-cat-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.sl-cat-switch .form-check-input:checked {
    background-color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
}

.sl-cat-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(143, 69, 63, 0.2);
    border-color: var(--accent-secondary-color);
}

.sl-cat-switch .form-check-label {
    padding-top: 2px;
}

/* Price input in categories */
.sl-cat-prix-wrapper .form-control {
    border-radius: 12px 0 0 12px !important;
    background: var(--bg-color);
    border: none;
    padding: 8px 14px;
}

.sl-cat-prix-wrapper .input-group-text {
    border-radius: 0 12px 12px 0;
    background: #fff;
    border: none;
    font-size: 13px;
    color: #999;
}

/* ========================================
   PRO DASHBOARD - WHITE CARDS
   ======================================== */

.sl-dashboard-content .card.rounded-4 {
    border-radius: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sl-dashboard-content .card-body h5:first-child {
    margin-bottom: 20px;
}

/* Fix alignement vertical switch + label catégories */
.sl-cat-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: auto;
    padding-left: 0;
}

.sl-cat-switch .form-check-input {
    float: none;
    margin-left: 0;
    margin-top: 0;
    flex-shrink: 0;
}

.sl-cat-switch .form-check-label {
    padding-top: 0;
    line-height: 1.5em;
}

/* ============================================
   Tunnel RDV — Breadcrumb étapes
   ============================================ */
.sl-rdv-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.sl-rdv-breadcrumb-step {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.sl-rdv-breadcrumb-step--active,
.sl-rdv-breadcrumb-step--done {
    opacity: 1;
}

.sl-rdv-breadcrumb-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.sl-rdv-breadcrumb-step--active .sl-rdv-breadcrumb-num {
    background: var(--primary-color, #0d6efd);
    color: #fff;
}

.sl-rdv-breadcrumb-step--done .sl-rdv-breadcrumb-num {
    background: #198754;
    color: #fff;
}

.sl-rdv-breadcrumb-label {
    font-size: 12px;
    font-weight: 500;
    color: #495057;
}

.sl-rdv-breadcrumb-sep {
    font-size: 10px;
    color: #ced4da;
    margin: 0 2px;
}

/* ============================================
   Tunnel RDV — Steps visibility
   ============================================ */
.sl-rdv-step {
    display: none;
    padding: 20px;
    animation: sl-rdv-fadein 0.3s ease;
}

.sl-rdv-step--active {
    display: block;
}

@keyframes sl-rdv-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sl-rdv-step-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #212529;
}

/* ============================================
   Tunnel RDV — Bandeau créneau choisi
   ============================================ */
.sl-rdv-chosen-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f7ff;
    border: 1px solid #d0e3f7;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 500;
    color: #0d6efd;
}

.sl-rdv-chosen-slot i {
    font-size: 16px;
}

/* ============================================
   Tunnel RDV — Étape 2: Prestations (radio cards)
   ============================================ */
.sl-rdv-prestations {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.sl-rdv-prestation-card {
    cursor: pointer;
    position: relative;
}

.sl-rdv-prestation-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sl-rdv-prestation-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.2s;
}

.sl-rdv-prestation-card:hover .sl-rdv-prestation-card-inner {
    border-color: #b6d4fe;
    background: #f7faff;
}

.sl-rdv-prestation-card--selected .sl-rdv-prestation-card-inner {
    border-color: var(--primary-color, #0d6efd);
    background: #f0f7ff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.sl-rdv-prestation-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color, #0d6efd);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.sl-rdv-prestation-info {
    flex: 1;
    min-width: 0;
}

.sl-rdv-prestation-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    line-height: 1.3;
}

.sl-rdv-prestation-sport {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

.sl-rdv-prestation-prix {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    flex-shrink: 0;
}

/* ============================================
   Tunnel RDV — Actions (boutons retour + continuer)
   ============================================ */
.sl-rdv-step-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

/* ============================================
   Tunnel RDV — Étape 3: Auth (onglets + forms)
   ============================================ */
.sl-rdv-auth-tabs {
    display: flex;
    background: #f1f3f5;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
}

.sl-rdv-auth-tab {
    flex: 1;
    padding: 8px 10px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s;
}

.sl-rdv-auth-tab--active {
    background: #fff;
    color: #212529;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.sl-rdv-auth-form {
    display: none;
}

.sl-rdv-auth-form--active {
    display: block;
}

.sl-rdv-auth-field {
    margin-bottom: 14px;
}

.sl-rdv-auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 6px;
}

.sl-rdv-input {
    width: 100%;
    padding: 10px 14px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    color: #212529;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sl-rdv-input:focus {
    border-color: var(--primary-color, #0d6efd);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    background: #fff;
}

.sl-rdv-input::placeholder {
    color: #adb5bd;
}

.sl-rdv-auth-row {
    display: flex;
    gap: 10px;
}

.sl-rdv-auth-row .sl-rdv-auth-field {
    flex: 1;
}

.sl-rdv-auth-error {
    background: #fdf0f0;
    border: 1px solid #f5c6cb;
    color: #842029;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 14px;
}

/* ============================================
   Tunnel RDV — Étape 4: Récapitulatif
   ============================================ */
.sl-rdv-recap-hello {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
}

.sl-rdv-recap-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
}

.sl-rdv-recap-coach {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 14px;
}

.sl-rdv-recap-coach img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.sl-rdv-recap-coach strong {
    display: block;
    font-size: 14px;
    color: #212529;
}

.sl-rdv-recap-coach span {
    font-size: 12px;
    color: #6c757d;
}

.sl-rdv-recap-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 14px;
}

.sl-rdv-recap-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #495057;
}

.sl-rdv-recap-row i {
    width: 18px;
    text-align: center;
    color: var(--primary-color, #0d6efd);
    font-size: 14px;
}

.sl-rdv-recap-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.sl-rdv-recap-total span {
    color: #6c757d;
}

.sl-rdv-recap-total strong {
    font-size: 20px;
    color: #212529;
}

.sl-rdv-pay-btn {
    font-size: 15px;
    padding: 14px 20px;
}

.sl-rdv-secure-note {
    text-align: center;
    font-size: 12px;
    color: #adb5bd;
    margin-top: 12px;
    margin-bottom: 0;
}

.sl-rdv-secure-note i {
    margin-right: 4px;
}

/* ============================================
   Tunnel RDV — No slots message
   ============================================ */
.sl-rdv-no-slots {
    text-align: center;
    padding: 30px 20px;
    color: #6c757d;
}

.sl-rdv-no-slots i {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
    color: #ced4da;
}

.sl-rdv-no-slots p {
    font-size: 14px;
    margin: 0;
}

/* Surcharge .sl-btn-outline dans le module RDV (fond blanc, pas header sombre) */
.sl-rdv-module .sl-btn-outline,
.sl-rdv-step .sl-btn-outline {
    color: #495057;
    border-color: #dee2e6;
    background: transparent;
}

.sl-rdv-module .sl-btn-outline:hover,
.sl-rdv-step .sl-btn-outline:hover {
    color: #212529;
    border-color: #adb5bd;
    background: #f8f9fa;
}

/* Bouton primary dans le tunnel RDV (fond blanc) */
.sl-rdv-module .sl-btn-primary:hover,
.sl-rdv-step .sl-btn-primary:hover {
    background: transparent;
    color: var(--accent-secondary-color);
    border-color: var(--accent-secondary-color);
}

/* ============================================
   Tunnel RDV — Carte cadeau (étape récap)
   ============================================ */
.sl-rdv-carte-cadeau {
    margin-bottom: 18px;
}

.sl-rdv-carte-cadeau-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-color, #0d6efd);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
}

.sl-rdv-carte-cadeau-toggle:hover {
    text-decoration: underline;
}

.sl-rdv-carte-cadeau-toggle i {
    font-size: 15px;
}

.sl-rdv-carte-cadeau-form {
    animation: sl-rdv-fadein 0.25s ease;
}

.sl-rdv-carte-cadeau-input-row {
    display: flex;
    gap: 8px;
}

.sl-rdv-carte-cadeau-input-row .sl-rdv-input {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.sl-rdv-carte-cadeau-input-row .sl-btn-primary {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
}

.sl-rdv-carte-cadeau-error {
    background: #fdf0f0;
    border: 1px solid #f5c6cb;
    color: #842029;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 10px;
}

.sl-rdv-carte-cadeau-success {
    background: #d1e7dd;
    border: 1px solid #badbcc;
    color: #0f5132;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 10px;
}

.sl-rdv-carte-cadeau-success i {
    margin-right: 4px;
}

.sl-rdv-prix-barre {
    text-decoration: line-through;
    color: #adb5bd;
    font-weight: 400;
    font-size: 14px;
    margin-right: 6px;
}

/* ============================================
   Tunnel RDV — Confirmation
   ============================================ */
.sl-rdv-confirmation {
    text-align: center;
    padding: 10px 0 0;
}

.sl-rdv-confirmation-icon {
    font-size: 48px;
    color: #198754;
    margin-bottom: 12px;
}

.sl-rdv-confirmation h4 {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0;
}

.sl-rdv-confirmation .sl-rdv-recap-card {
    text-align: left;
}

.sl-rdv-confirmation-info {
    font-size: 13px;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 14px;
    text-align: left;
}

.sl-rdv-confirmation-info i {
    color: var(--primary-color, #0d6efd);
    margin-right: 6px;
}

/* Fix : photo profil cercle - bouton supprimer ne doit pas être coupé */
.sl-upload-zone--profil {
    overflow: visible;
}

.sl-upload-zone--profil .sl-upload-preview {
    border-radius: 50%;
    overflow: hidden;
}

.sl-upload-zone--profil .sl-upload-remove {
    top: -4px;
    right: -4px;
}

/* ========================================
   CUSTOM MOBILE BURGER + MENU OVERLAY
   ======================================== */

/* Burger button */
.sl-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10001;
    position: relative;
}

.sl-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    transform-origin: center;
}

.sl-burger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sl-burger--open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sl-burger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile actions row */
.sl-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 2;
}

/* Overlay menu */
.sl-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 6, 0.97);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.18, 1), visibility 0.4s;
    overflow-y: auto;
}

.sl-mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.sl-mobile-menu-inner {
    padding: 100px 30px 40px;
    max-width: 480px;
    margin: 0 auto;
}

/* Nav links */
.sl-mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sl-mobile-menu-nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sl-mobile-menu--open .sl-mobile-menu-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

.sl-mobile-menu--open .sl-mobile-menu-nav ul li:nth-child(1) { transition-delay: 0.08s; }
.sl-mobile-menu--open .sl-mobile-menu-nav ul li:nth-child(2) { transition-delay: 0.14s; }
.sl-mobile-menu--open .sl-mobile-menu-nav ul li:nth-child(3) { transition-delay: 0.20s; }
.sl-mobile-menu--open .sl-mobile-menu-nav ul li:nth-child(4) { transition-delay: 0.26s; }
.sl-mobile-menu--open .sl-mobile-menu-nav ul li:nth-child(5) { transition-delay: 0.32s; }
.sl-mobile-menu--open .sl-mobile-menu-nav ul li:nth-child(6) { transition-delay: 0.38s; }

.sl-mobile-menu-nav ul li a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}

.sl-mobile-menu-nav ul li a:hover {
    color: var(--accent-secondary-color);
}

.sl-mobile-menu-nav ul li a i {
    width: 24px;
    text-align: center;
    font-size: 16px;
    opacity: 0.6;
}

/* Divider */
.sl-mobile-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 24px 0;
}

/* Section label */
.sl-mobile-menu-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}

/* Logout link */
.sl-mobile-menu-logout {
    color: var(--accent-secondary-color) !important;
}

/* Auth button */
.sl-mobile-menu-auth {
    padding-top: 8px;
}

.sl-mobile-menu-auth .btn-default {
    width: 100%;
    text-align: center;
}

/* Body lock when menu open */
body.sl-menu-open {
    overflow: hidden;
}

/* Burger color in open state (over dark bg) */
.sl-burger--open span {
    background: #fff;
}

/* ========================================
   PRO LAYOUT — NO PAGE-HEADER, DIRECT CONTENT
   ======================================== */

.sl-pro-layout {
    padding-top: 150px;
    padding-bottom: 60px;
    min-height: 100vh;
}

@media (max-width: 991px) {
    .sl-pro-layout {
        padding-top: 110px;
    }
}

/* Hide old navbar-toggle & responsive-menu (replaced by sl-burger) */
.navbar-toggle,
.responsive-menu {
    display: none !important;
}
