/*------------------------------------------------------------------
Project:       JA Entrenamientos
Primary use:   Gym & Fitness Template
Description:   Custom CSS + Media Queries Unificados y Optimizados
-------------------------------------------------------------------*/

/************************ DEFAULT CSS ***********************/
body {
    color: #000000;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-style: normal;
    font-family: 'Overpass', sans-serif;
}

h1 {
    font-style: normal;
    font-weight: 900;
    font-size: 72px;
    line-height: 91px;
    color: #ffffff;
    font-family: 'Overpass', sans-serif;
}

h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 61px;
    color: #000000;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
}

h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #EA1C29;
}

h6 {
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 30px;
    color: #000000;
}

p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #444444;
}

span {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    text-transform: uppercase;
    color: #EA1C29;
}

a {
    color: #ffffff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif;
    outline: none;
}

img {
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    display: inline-block !important;
}

ul {
    margin-bottom: 0px;
    padding: 0;
}

li {
    list-style: none;
    position: relative;
}

a:hover {
    cursor: pointer;
}

a:hover,
a:visited,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#wrap {
    overflow: hidden;
    position: relative;
}

.form-control:focus {
    border: none;
    outline: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input:focus-visible {
    outline: none;
}

.row>* {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin: 0 -15px;
}

.p-10 {
    padding: 100px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

.p-8 {
    padding-bottom: 80px;
}

.p-30 {
    padding-bottom: 30px;
}

/************************ BUTTON ***********************/
.fitzaro_btn {
    background-color: #EA1C29;
    border-radius: 50px;
    padding: 20px 30px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    z-index: 1;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    overflow: hidden;
    border: 1px solid #EA1C29;
}

.fitzaro_btn:hover {
    color: #EA1C29;
}

.fitzaro_btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 10px;
}

.fitzaro_btn:hover::before {
    background-color: #ffffff;
    height: 100%;
    bottom: auto;
    top: 0;
}

/************************ ANIMATION ***********************/
@-webkit-keyframes loading-1 {

    0%,
    100% {
        -webkit-transform: none;
        transform: none;
    }

    12.5% {
        -webkit-transform: translate(30px, 0);
        transform: translate(30px, 0);
    }

    25% {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);
    }

    37.5% {
        -webkit-transform: translate(60px, 30px);
        transform: translate(60px, 30px);
    }

    50% {
        -webkit-transform: translate(60px, 60px);
        transform: translate(60px, 60px);
    }

    62.5% {
        -webkit-transform: translate(30px, 60px);
        transform: translate(30px, 60px);
    }

    75% {
        -webkit-transform: translate(0, 60px);
        transform: translate(0, 60px);
    }

    87.5% {
        -webkit-transform: translate(0, 30px);
        transform: translate(0, 30px);
    }
}

@keyframes loading-1 {

    0%,
    100% {
        -webkit-transform: none;
        transform: none;
    }

    12.5% {
        -webkit-transform: translate(30px, 0);
        transform: translate(30px, 0);
    }

    25% {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);
    }

    37.5% {
        -webkit-transform: translate(60px, 30px);
        transform: translate(60px, 30px);
    }

    50% {
        -webkit-transform: translate(60px, 60px);
        transform: translate(60px, 60px);
    }

    62.5% {
        -webkit-transform: translate(30px, 60px);
        transform: translate(30px, 60px);
    }

    75% {
        -webkit-transform: translate(0, 60px);
        transform: translate(0, 60px);
    }

    87.5% {
        -webkit-transform: translate(0, 30px);
        transform: translate(0, 30px);
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px hsla(255, 255%, 255%, 0.4);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.01);
    }
}

@-webkit-keyframes shadow-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0px hsla(255, 255%, 255%, 0.4);
        box-shadow: 0 0 0 0px hsla(255, 255%, 255%, 0.4);
    }

    100% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.01);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.01);
    }
}

@-o-keyframes shadow-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0px hsla(255, 255%, 255%, 0.4);
        box-shadow: 0 0 0 0px hsla(255, 255%, 255%, 0.4);
    }

    100% {
        -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.01);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.01);
    }
}

@-webkit-keyframes animate-counter {
    0% {
        left: 0;
    }
}

@keyframes animate-counter {
    0% {
        left: 0;
    }
}

@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

@-webkit-keyframes hero-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes hero-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
    }

    60% {
        -webkit-transform: translateY(4px);
        -ms-transform: translateY(4px);
        transform: translateY(4px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
        transform: translateY(8px);
    }

    60% {
        -webkit-transform: translateY(4px);
        -ms-transform: translateY(4px);
        transform: translateY(4px);
    }
}

@-webkit-keyframes round-animation {
    0% {
        -webkit-transform: translateX(120px);
        -ms-transform: translateX(120px);
        transform: translateX(120px);
    }

    100% {
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes round-animation {
    0% {
        -webkit-transform: translateX(120px);
        -ms-transform: translateX(120px);
        transform: translateX(120px);
    }

    100% {
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes top-bottom-animation {
    0% {
        -webkit-transform: translateY(200px);
        -ms-transform: translateY(200px);
        transform: translateY(200px);
    }

    100% {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes top-bottom-animation {
    0% {
        -webkit-transform: translateY(200px);
        -ms-transform: translateY(200px);
        transform: translateY(200px);
    }

    100% {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes bottom-top-animation {
    0% {
        -webkit-transform: translateY(-220px);
        -ms-transform: translateY(-220px);
        transform: translateY(-220px);
    }

    100% {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes bottom-top-animation {
    0% {
        -webkit-transform: translateY(-220px);
        -ms-transform: translateY(-220px);
        transform: translateY(-220px);
    }

    100% {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 1;
        transform: translateX(60px);
    }

    20% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        opacity: 1;
        transform: translateX(-30px);
    }

    100% {
        opacity: 0;
        transform: translateX(-60px);
    }
}

@keyframes slide {
    0% {
        opacity: 1;
        transform: translateX(60px);
    }

    20% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        opacity: 1;
        transform: translateX(-30px);
    }

    100% {
        opacity: 0;
        transform: translateX(-60px);
    }
}

@-webkit-keyframes slide-top {
    0% {
        opacity: 1;
        transform: translateY(60px);
    }

    20% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        opacity: 1;
        transform: translateY(-30px);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

@keyframes slide-top {
    0% {
        opacity: 1;
        transform: translateY(60px);
    }

    20% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        opacity: 1;
        transform: translateY(-30px);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

/************************ HEADER **********************/
.header {
    position: relative;
}

.header .navbar-header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 16;
    background-color: #ffffff;
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
}

.header .navbar-header.sticky .nav-item a {
    color: #000000;
}

.header .navbar-header:not(.sticky) {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: none;
    background: transparent;
    z-index: 16;
}

.header .navbar_main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 60px 35px 60px;
    margin-left: auto;
    margin-right: auto;
}

.header .navbar_expand {
    animation: fixedheader 1s forwards;
}

.navbar_brand .fitzaro_logo {
    display: block;
}

.navbar_brand .fitzaro_logo img {
    width: 220px !important;
    height: auto !important;
    display: block !important;
    min-width: 100px;
}

.navbar_nav .nav-item {
    display: inline-block;
}

.navbar_nav .nav-item a {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #ffffff;
    padding: 0;
    margin: 0 12px;
    position: relative;
    text-transform: uppercase;
}

.navbar_nav .nav-item a:hover,
.navbar_nav .nav-item a.active,
.navbar-header.sticky .navbar_nav .nav-item a:hover,
.navbar-header.sticky .navbar_nav .nav-item a.active {
    color: #EA1C29;
}

.navbar_nav .nav-item a.active:before,
.navbar_nav .nav-item a:hover::before {
    position: absolute;
    content: "";
    left: 0;
    top: auto;
    height: 2px;
    width: 20px;
    bottom: -8px;
    background: #EA1C29;
    transition: 0.4s ease-in-out;
    border-radius: 50px;
}

.navbar-header .sidebar-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.3s ease-in-out;
}

.navbar-header .sidebar-menu::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    transform: translateY(-100%) translateY(110px) skewY(-45deg);
    transform-origin: 100% 50%;
    z-index: -1;
}

.header .navbar-header.sticky .sidebar-menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.navbar_expand .navbar_main .sidebar-toggle.fixed-menu {
    margin: 0;
    position: absolute;
    top: 95px;
    left: 55px;
    width: 48px;
    height: 48px;
    padding: 10px 7px;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.navbar-toggle {
    display: none;
}

/************************ PRIMERA SECCION **********************/
.first_section {
    background-image: url(../images/banner/banner-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.parallax-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0 0 0 / 70%);
    z-index: 0;
}

.banner_content {
    position: relative;
    padding: 180px 0 100px 0;
}

.banner_content .main_tiltle {
    padding: 10px 0 20px 0;
}

.banner_content p {
    margin-bottom: 72px;
    color: #ffffff;
}

.slide_social_ic a {
    color: #ffffff;
    padding: 0 20px;
    padding-bottom: 5px;
}

.slide_social_ic a:not(:last-child):after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50px;
    top: auto;
    bottom: 50%;
    margin: 0 20px;
}

.banner_social {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 320px;
    height: 120px;
    background: #EA1C29;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

.slide_social_ic {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    z-index: 9;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-bottom: solid 250px #EA1C29;
    border-right: solid 0px #EA1C29;
    border-left: solid 320px transparent;
    border-top: solid 0px transparent;
    position: relative;
    bottom: 120px;
}

.scroll-down {
    border: 2px solid #ffffff;
    position: relative;
    border-radius: 25px;
    margin: 0 auto;
    display: inline-block;
    left: 50%;
    right: auto;
    padding: 10px;
}

.scroll-arrow {
    display: block;
    transform: rotate(45deg);
    border-right: 2px solid red;
    border-bottom: 2px solid red;
    margin: 0 0 4px 0;
    width: 12px;
    height: 12px;
}

.arrow1,
.arrow2,
.arrow3 {
    animation: mouse-scroll 1s infinite alternate;
}

.arrow1 {
    animation-delay: 0.1s;
}

.arrow2 {
    animation-delay: 0.2s;
    margin-top: -6px;
}

.arrow3 {
    animation-delay: 0.3s;
    margin-top: -6px;
}

/************************ ABOUT SECTION **********************/
.sub_heading {
    padding-bottom: 10px;
    display: inline-block;
}

.main_heading {
    padding-bottom: 20px;
}

.about_detail {
    padding-bottom: 26px;
}

.box_detail .list_icon {
    display: flex;
    align-items: center;
    padding-bottom: 8px;
}

.list_icon i {
    font-size: 22px;
    color: #EA1C29;
    font-weight: 500;
}

.list_icon .check_detail {
    padding-left: 16px;
    line-height: 24px;
}

.about_img {
    display: flex;
    align-items: center;
}

.about_img .about_text {
    position: absolute;
}

.bg_hover_label {
    padding-bottom: 30px;
    position: relative;
}

.about_img .abo-img {
    position: relative;
}

.about_img h2:hover {
    color: #EA1C29;
    -webkit-text-stroke-color: #EA1C29;
}

.build_best {
    padding-top: 100px;
}

.services_box {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 40px;
    background-color: #ffffff;
    border: 1px solid #E9E9E9;
    transition: all 0.3s linear;
    z-index: 10;
}

.service_wrappe .instructor {
    display: flex;
    align-items: center;
}

.services_box .service-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 6;
}

.services_box .img-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s linear;
    z-index: 1;
}

.service_ic {
    background-color: #EA1C29;
    width: 100px;
    height: 100px;
    line-height: 100px;
    position: relative;
    border-radius: 50px;
    flex: 0 0 100px !important;
}

.services_box:hover {
    background: #000000;
    transition: all 0.3s linear;
}

.services_box:hover .img-cover {
    opacity: 0.4;
    transition: all 0.3s linear;
}

.img-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services_box:hover .service_title,
.services_box:hover .blogs-block {
    color: #ffffff;
}

.services_box:hover .service_ic {
    border: 2px solid #ffffff;
    background-color: transparent;
}

.service_wrappe .service_title {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #000000;
    padding-left: 40px;
}

.service_wrappe .blogs-block {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    padding-top: 20px;
}

/************************ SERVICE **********************/
.triangle-top {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    border-top: 50px solid #EA1C29;
    border-right: 50px solid transparent;
    margin: 15px;
    z-index: 2;
}

.service_img:after {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    content: "";
    border-top: 80px solid #ffffff;
    border-right: 80px solid transparent;
}

.triangle-bottom {
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    border-bottom: 100px solid #EA1C29;
    border-left: 100px solid transparent;
    margin: 20px;
}

.service_img:before {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: 0;
    right: 0;
    content: "";
    border-bottom: 140px solid #ffffff;
    border-left: 140px solid transparent;
}

.service_img,
.fitzaro_service {
    position: relative;
}

.background_shape {
    position: absolute;
    top: 40px;
    left: 200px;
    right: auto;
}

.services_tool .box-tool {
    border: 1px solid #E9E9E9;
    background-color: #ffffff;
    padding: 40px;
    position: relative;
}

.services_tool .box-tool:hover {
    background-color: #EA1C29;
}

.box-tool:hover h3,
.box-tool:hover .order-number {
    color: #ffffff;
}

.box-tool:hover svg path {
    fill: #ffffff;
}

.box-tool .exercise-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    padding: 40px 0 40px 40px;
    transition: all 0.3s linear;
    z-index: 1;
}

.box-tool:hover .exercise-img {
    opacity: 1;
    transition: all 0.3s linear;
}

.services_tool .box-tool:hover {
    padding: 0;
}

.services_tool {
    padding-top: 100px;
}

.fitzaro_tools {
    display: flex;
    align-items: center;
}

.fitzaro_tools h3 {
    font-weight: 700;
    padding-left: 20px;
}

.order-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #444444;
}

.ordered-1 {
    counter-reset: div;
}

.order-number::before {
    content: counter(div, decimal-leading-zero);
    counter-increment: div;
}

.mouse-drag {
    background-color: #ffffff;
    color: red;
}

.box-tool:hover {
    cursor: none;
}

/************************ TESTIMONIOS **********************/
.testimonial-section {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.testimonial-section:before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -60px;
    left: -180px;
    background: #440000;
    filter: blur(120px);
    animation: top-bottom-animation 4s linear infinite alternate;
}

.testimonial-section:after {
    position: absolute;
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: 0;
    right: -190px;
    background: #440000;
    filter: blur(100px);
    animation: bottom-top-animation 4s linear infinite alternate;
}

.testimonial_detail h2 {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.client_review,
.testimonial_detail {
    position: relative;
}

.testimonial_slider {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.review_detail {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
}

.review_detail::before {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    height: 99.4%;
    width: 99.6%;
    background-color: #000000;
    clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
}

.review_detail p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    position: relative;
    padding: 60px 40px;
}

.testimonial_data h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
    padding-bottom: 5px;
}

.testimonial_data p {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

.star-trating i {
    color: #FFB800;
    font-size: 24px;
}

.client_profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.client_profile {
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
}

/************************ PLANES **********************/
.table_img img {
    position: relative;
    display: block;
    transition: all .3s ease;
}

.pricing_data .table_img {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
}

.table_img:hover img {
    transform: scale(1.2) rotate(4deg);
}

.pricing_data:hover .table_img:after {
    background-image: linear-gradient(180deg, rgba(234, 28, 41, 0) 0%, #EA1C29 100%) !important;
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.table_img:after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%) !important;
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.pricing_data {
    position: relative;
}

.pricing_data .price-data {
    position: absolute;
    bottom: 14px;
    left: 20px;
    right: auto;
}

.price-data span {
    color: #ffffff;
    padding-bottom: 6px;
    display: inline-block;
}

.price-data h3 {
    font-weight: 900;
    font-size: 48px;
    line-height: 61px;
    color: #ffffff;
}

.price-data .month-text {
    font-weight: 900;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    display: inline-block;
    text-transform: initial;
}

.inn-price-plan li {
    list-style: auto;
    padding-bottom: 10px;
}

.inn-price-plan .price_list {
    padding-top: 40px;
    padding-left: 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #444444;
    margin-bottom: 22px;
}

.fitzaro-table .row>div[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.inn-price-plan {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.inn-price-plan .fitzaro_btn {
    background-color: transparent;
    color: #EA1C29;
    border: 2px solid #EA1C29;
    margin-top: auto;
    align-self: flex-start;
}

.inn-price-plan .fitzaro_btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #EA1C29;
    z-index: -1;
    transition: all ease 0.5s;
    border-radius: 10px;
}

.inn-price-plan .fitzaro_btn:hover::before {
    background-color: #EA1C29;
    height: 100%;
    bottom: auto;
    top: 0;
}

.inn-price-plan .fitzaro_btn:hover {
    color: #ffffff;
}

/************************ IMAGE BANNER-SECTION **********************/
.fitzaro_banner {
    position: relative;
    overflow: hidden;
    background-image: url(../images/banner/banner-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fitzaro_banner:before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    border-radius: 50%;
    bottom: -100px;
    left: -190px;
    background: #440000;
    filter: blur(110px);
    animation: top-bottom-animation 4s linear infinite alternate;
}

.dark-content h2 {
    color: #ffffff;
}

.dark-content {
    padding: 100px 0 100px 0;
    position: relative;
}

/************************ TRAINER **********************/
.best-trainer {
    position: relative;
}

.trainer_slider,
.blog_slider {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.trainer-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    width: 100%;
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.trainer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: none
}

.trainer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(196, 0, 39, 0.795), rgba(220, 20, 60, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.trainer-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

.trainer-card:hover::after {
    opacity: 1;
}

.trainer-card:hover {
    border-color: #EA1C29;
}

/************************ APPOIMENT **********************/
.appointment_section {
    background-image: url(../images/appointment/background.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.static_content,
.appointment_form {
    position: relative;
}

.appointment_form {
    backdrop-filter: blur(10px);
    padding: 50px;
    background: linear-gradient(143.7deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 0px rgb(255 255 255 / 32%);
}

.form_start .input_area {
    margin-bottom: 20px;
}

.input_area .inputt-text {
    width: 100%;
    height: 60px;
    background: #ffffff;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #444444;
    border: none;
    outline: none;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
}

.form_start .input_area textarea {
    height: 138px;
    resize: none;
}

.form_start .input_area button {
    width: 100%;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

/************************ FOOTER **********************/
.footer {
    background-color: #000000;
    position: relative;
    padding: 30px 0 20px 0;
    margin-top: 0px;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    position: relative;
}

.footer-social-list a {
    width: 50px;
    height: 50px;
    line-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.footer-social-list a .icons {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    transition: 0.5s;
    z-index: 3;
}

.footer-social-list a:hover .icons {
    transform: rotateY(360deg);
}

.footer-social-list a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}

.footer-social-list .tiktok-ic .icons {
    transition: 0.4s !important;
}

.footer-social-list a:hover:before {
    top: 0;
}

.footer-social-list .instagram-ic:before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-list .youtube-ic:before {
    background: #EA1C29;
}

.footer-social-list .tiktok-ic:before {
    background: linear-gradient(45deg, #FE2C55 0%, #FF0050 25%, #00F2EA 75%);
}

.footer-contact-links a {
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    opacity: 0.7;
}

.footer-contact-links a:hover {
    color: #EA1C29 !important;
    opacity: 1;
}

/************************ SCROLLBAR CSS **********************/
body {
    scrollbar-width: auto;
    scrollbar-color: #EA1C29 #d4d4d4;
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #d4d4d4;
}

body::-webkit-scrollbar-thumb {
    background-color: #EA1C29;
    border-radius: 10px;
    border: 0px solid #ffffff;
}

/************************ BOTÓN FLOTANTE WHATSAPP **********************/
.whatsapp-flotante {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    line-height: 60px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-flotante i {
    color: #FFF;
}

.whatsapp-flotante:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

/*********************** MOUSE CURSOR ******************/
.mouseCursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    visibility: hidden;
    transform: translateZ(0);
}

.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 2px solid #EA1C29;
    z-index: 10000000;
    opacity: 1;
    box-sizing: border-box;
    transition: all 0.08s ease-out;
}

.cursor-inner {
    margin-left: -5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: #EA1C29;
    opacity: 0.6;
    font-size: 0;
    text-align: center;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-outer.active {
    width: 60px;
    height: 60px;
    background: #ffffff;
    text-align: center;
}

.cursor-inner.active {
    font-size: 18px;
    height: auto;
    width: auto;
    line-height: 40px;
    color: #EA1C29;
    opacity: 1;
    background: transparent;
}

.cursor-outer.hover {
    border: 2px solid #ffffff;
}

.cursor-inner.hover {
    background-color: #ffffff;
}

/************************ MEDIA QUERIES (ANTES EN media-query.css) **********************/
@media(min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 15px;
    }
}

@media(max-width: 1800px) {
    .navbar-header .sidebar-menu {
        width: 300px;
    }

    .header .navbar_main {
        padding: 30px 40px 30px 40px;
    }

    .navbar_expand .navbar_main .sidebar-toggle {
        left: 40px;
    }

    .banner_content {
        padding: 180px 0 100px 60px;
    }

    .scroll-down {
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .first_section {
        background-position: center;
    }
}

@media(max-width: 1700px) {
    .navbar-header .sidebar-menu {
        width: 280px;
    }

    .banner_content {
        padding: 180px 0 100px 100px;
    }
}

@media(max-width: 1600px) {
    .navbar-header .sidebar-menu {
        width: 250px;
    }

    .header .navbar_main {
        padding: 30px;
    }

    .navbar_expand .navbar_main .sidebar-toggle {
        left: 25px;
    }
}

@media(max-width: 1500px) {
    h1 {
        font-size: 64px;
        line-height: 82px;
    }

    .banner_content {
        padding: 180px 0 100px 150px;
    }

    .banner_content.col-lg-9 {
        width: 80%;
    }

    .scroll-down {
        bottom: 40px;
    }
}

@media (max-width: 767px) {
    .navbar_brand .fitzaro_logo img {
        width: 140px !important;
    }
    .fitzaro_banner {
        background-position: 70% center !important;
    }
}


@media(max-width: 1440px) {
    .banner_social {
        height: 100px;
        width: 300px;
    }

    .triangle-1 {
        bottom: 100px;
        border-left: solid 300px transparent;
        border-bottom: solid 240px #EA1C29;
    }

    .banner_content {
        padding: 180px 0 100px 180px;
    }

    .banner_content.col-lg-9 {
        width: 85%;
    }

    .navbar_nav .nav-item a {
        margin: 0 9px;
    }

    .scroll-down {
        bottom: 20px;
    }

    .testimonial-section:before {
        top: -100px;
        left: -220px;
    }

    .testimonial-section:after {
        right: -220px;
    }

    .fitzaro_banner:before {
        left: -250px;
    }
}

@media only screen and (min-width: 1330px) and (max-width: 1380px) {
    h1 {
        font-size: 52px;
        line-height: 62px;
    }

    .banner_content p {
        margin-bottom: 62px;
    }

    .banner_content {
        padding: 150px 0 80px 180px;
    }
}

@media(max-width: 1300px) {
    .banner_social {
        height: 100px;
        width: 250px;
    }

    .triangle-1 {
        border-bottom: solid 200px #EA1C29;
        border-left: solid 250px transparent;
        bottom: 100px;
    }

    .navbar-header .sidebar-menu {
        width: 220px;
    }

    .navbar_nav .nav-item a {
        margin: 0 6px;
    }

    .banner_content {
        padding: 180px 0 100px 215px;
    }
}

@media(max-width: 1200px) {
    .banner_social {
        height: 90px;
        width: 230px;
    }

    .triangle-1 {
        border-bottom: solid 180px #EA1C29;
        border-left: solid 230px transparent;
        bottom: 90px;
    }
}

@media(max-width: 1199px) {
    .banner_content {
        padding: 180px 0 100px 0;
    }

    .banner_content.col-lg-9 {
        width: 88%;
    }

    .navbar_panel .navbar-toggle {
        display: inline-block !important;
        position: relative;
        width: 48px;
        height: 48px;
        line-height: 48px;
        cursor: pointer;
        color: #EA1C29;
        background-color: transparent;
        border: none;
        padding: 1px 6px;
        z-index: 999;
    }

    .navbar-toggle span {
        position: relative;
        display: block;
        margin: auto;
        transition: .3s all ease;
    }

    .navbar-toggle span:after,
    .navbar-toggle span:before,
    .navbar-toggle span {
        width: 24px;
        height: 2px;
        background-color: #EA1C29;
        border-radius: 0;
    }

    .navbar-toggle span:after,
    .navbar-toggle span:before {
        content: "";
        position: absolute;
        left: 0;
        top: -8px;
        transition: .3s all ease;
    }

    .navbar-toggle span:after {
        top: 8px;
    }

    .navbar-toggle.static span:before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggle.static span:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .navbar-toggle.static span {
        background: transparent;
    }

    .navbar_panel {
        display: flex;
        align-items: center;
    }

    .navbar_brand {
        margin-left: 8px;
    }

    .navbar_expand .navbar_main .sidebar-toggle {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: 40px;
        height: 48px;
        padding: 10px 7px;
        z-index: 99;
        position: fixed;
        top: 25px;
        right: 30px;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    .navbar-header .sidebar-menu {
        position: fixed;
        top: 98px;
        right: 0;
        width: 270px;
        background: #ffffff;
        box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
        transform: translateY(-30px);
        transition: all 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
        z-index: 100;
    }

    .navbar-header .sidebar-menu.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header .navbar_main {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 999;
        background-color: #ffffff;
        padding: 25px 30px;
        box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    }

    .navbar_nav .nav-item {
        display: block;
    }

    .navbar_collapse {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: 99;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: 0px 15px 15px 0px rgb(0 0 0 / 17%);
        transform: translateX(-110%);
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 98px;
        padding-bottom: 98px;
    }

    .navbar_collapse.static {
        transform: translateX(0);
        padding: 0 30px;
    }

    .header .navbar-header.sticky .sidebar-toggle {
        opacity: 1;
        visibility: visible;
    }

    .header .navbar-header.sticky .sidebar-menu {
        transform: none;
    }

    .navbar_nav .nav-item a {
        color: #000000;
        margin: 25px 0;
    }

    .about_text img {
        width: 95%;
        height: auto;
    }

    .about_img .about_text {
        text-align: center;
        left: 0;
    }

    .service_wrappe .service_title {
        padding-left: 16px;
    }

    .services_box {
        padding: 30px;
    }

    .review_detail {
        width: 100%;
        height: 100%;
    }

    .review_detail::before {
        width: 99.5%;
        height: 99.5%;
        top: 1px;
        left: 1px;
    }

    .review_detail p {
        padding: 50px 40px;
    }

    .price-data h3 {
        font-size: 40px;
        line-height: 52px;
    }

    .price-data span {
        font-size: 18px;
        line-height: 20px;
    }

    .get_title h2 {
        font-size: 44px;
    }

    .appointment_form {
        padding: 40px;
    }

    .fitzaro_banner .col-lg-6 {
        width: 82%;
    }
}

@media(max-width: 1024px) {
    .p-10 {
        padding: 80px 0;
    }

    .mb-60 {
        margin-bottom: 50px;
    }

    h1 {
        font-size: 60px;
        line-height: 76px;
    }

    h2 {
        font-size: 44px;
        line-height: 50px;
    }

    h3 {
        font-size: 26px;
    }

    .inn-price-plan .price_list {
        line-height: 26px;
    }

    .build_best {
        padding-top: 80px;
    }

    .p-8 {
        padding-bottom: 60px;
    }

    .banner_content p {
        margin-bottom: 62px;
    }

    .input_area .inputt-text {
        height: 50px;
    }

    .review_detail p {
        padding: 40px 30px;
        line-height: 28px;
    }

    .service_wrappe .service_title {
        font-size: 28px;
        line-height: 36px;
    }

    .scroll-arrow {
        width: 10px;
        height: 10px;
    }

    .scroll-down {
        padding: 8px;
    }
}

@media(max-width: 991px) {
    .p-10 {
        padding: 60px 0;
    }

    .client_profile img {
        width: 80px;
        height: 80px;
    }

    .star-trating i {
        font-size: 22px;
    }

    .testimonial_data p {
        margin-bottom: 10px;
    }

    .banner_content.col-lg-9 {
        width: 100%;
    }

    .build_best {
        padding-top: 50px;
    }

    .service_wrappe .service_title {
        padding-left: 5px;
    }

    .service_ic {
        width: 150px;
    }

    .review_detail::before {
        width: 99.4%;
        height: 99.5%;
    }

    .header .navbar_main {
        padding: 20px 30px;
    }

    .navbar_collapse.static,
    .navbar_collapse {
        margin-top: 88px;
        padding-bottom: 88px;
    }

    .navbar_expand .navbar_main .sidebar-toggle {
        top: 20px;
    }

    .banner_content {
        padding: 150px 0 100px 0;
    }

    .navbar-header .sidebar-menu {
        top: 88px;
    }

    p {
        font-size: 18px;
        line-height: 26px;
    }

    h1 {
        font-size: 56px;
        line-height: 70px;
    }

    .main_heading {
        padding-bottom: 15px;
    }

    .banner_social {
        height: 70px;
        width: 200px;
    }

    .triangle-1 {
        border-bottom: solid 150px #EA1C29;
        border-left: solid 200px transparent;
        bottom: 70px;
    }

    .banner_content p {
        margin-bottom: 52px;
    }

    .p-8 {
        padding-bottom: 40px;
    }

    .price-data h3 {
        font-size: 30px;
        line-height: 42px;
    }

    .pricing_data .price-data {
        bottom: 2px;
        left: 15px;
    }

    .price-data .month-text {
        font-size: 18px;
    }

    .inn-price-plan .price_list {
        padding-top: 25px;
        font-size: 18px;
        line-height: 24px;
    }

    .fitzaro_banner:before {
        left: -300px;
        bottom: -150px;
    }

    .appointment_form {
        padding: 30px 25px;
    }

    .input_area .inputt-text {
        font-size: 16px;
        padding: 15px;
    }

    .form_start .input_area textarea {
        height: 120px;
    }

    .get_title h2 {
        font-size: 34px;
        margin-bottom: 10px !important;
    }

    .form_start .input_area {
        margin-bottom: 15px;
    }

    .mb-60 {
        margin-bottom: 30px;
    }

    .price-data span {
        padding-bottom: 0;
    }

    .inn-price-plan {
        padding-left: 0;
    }

    .fitzaro_btn {
        padding: 16px 20px;
    }

    .static_content {
        margin-bottom: 40px;
        text-align: center;
    }

    .appointment_form {
        padding: 30px;
    }

    .footer {
        padding: 40px 0 20px 0 !important;
        margin-top: 0 !important;
        height: auto !important;
    }

    .footer .col-12.col-md-4 {
        margin-bottom: 30px !important;
    }

    .footer .col-12.col-md-4:last-child {
        margin-bottom: 0 !important;
    }

    .slide_social_ic .triangle-1 {
        margin-bottom: -0.5px !important;
        transform-origin: bottom;
    }

    .slide_social_ic .banner_social {
        margin-top: -1px !important;
    }
}

@media (max-width: 768px) {
    .client_profile {
        padding-top: 20px;
    }

    .star-trating i {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .header .navbar_main {
        padding: 15px;
    }

    .abo_content {
        padding-top: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .navbar_expand .navbar_main .sidebar-toggle {
        top: 15px;
        right: 15px;
    }

    .navbar-header .sidebar-menu,
    .navbar_collapse.static,
    .navbar_collapse {
        top: 78px;
        margin-top: 78px;
        padding-bottom: 78px;
    }

    .banner_content {
        padding: 120px 0 100px 0;
        text-align: center;
    }

    h1 {
        font-size: 52px;
        line-height: 60px;
    }

    h2 {
        font-size: 42px;
        line-height: 50px;
    }

    .p-10 {
        padding: 40px 0;
    }

    .banner_content .main_tiltle {
        padding: 15px 0 15px 0;
    }

    .banner_content p {
        margin-bottom: 42px;
    }

    .p-8 {
        padding-bottom: 36px;
    }

    .mb-60 {
        margin-bottom: 20px;
    }

    .about_img .abo-img {
        padding-bottom: 40px;
    }

    .service_ic {
        width: 100px;
    }

    .build_best {
        padding-top: 30px;
    }

    .build_best .col-12:not(:last-child) {
        padding-bottom: 20px;
    }

    .services_box {
        padding: 20px 15px;
    }

    .service_wrappe .service_title {
        padding-left: 15px;
    }

    .testimonial-section:before,
    .testimonial-section:after,
    .fitzaro_banner:before {
        content: none;
    }

    .review_detail::before {
        width: 99.6%;
        height: 99%;
    }

    .pricing_data .price-data {
        left: 10px;
        bottom: 10px;
    }

    .fitzaro_banner .col-lg-6 {
        width: 100%;
    }

    .inn-price-plan .price_list {
        padding-top: 10px;
    }

    .inn-price-plan:not(:last-child) {
        padding-bottom: 23px;
    }

    .static_content {
        text-align: center;
    }

    .abo_content .sub_heading,
    .abo_content .main_heading,
    .abo_content .about_detail {
        text-align: center;
        display: block;
    }

    .fitzaro-table .col-12:not(:last-child) {
        padding-bottom: 30px;
    }

    .whatsapp-flotante {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
        line-height: 50px;
    }

    .footer {
        padding: 40px 0 20px 0;
    }

    .appointment_section {
        /* Solo movemos el encuadre, manteniendo el parallax intacto */
        background-position: 40% center !important; 
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 38px;
        line-height: 48px;
    }

    .banner_content {
        padding: 180px 0 100px 0;
    }

    .banner_social {
        height: 70px;
        width: 180px;
    }

    .triangle-1 {
        border-bottom: solid 150px #EA1C29;
        border-left: solid 180px transparent;
        bottom: 70px;
    }

    .slide_social_ic a {
        padding: 0 14px;
        font-size: 16px;
    }

    .slide_social_ic a:not(:last-child):after {
        margin: 0 14px;
        width: 6px;
        height: 6px;
    }

    h1 {
        font-size: 48px;
        line-height: 58px;
    }

    span {
        font-size: 18px;
        line-height: 22px;
    }

    .client_profile img {
        width: 80px;
        height: 80px;
    }

    .testimonial_data p {
        margin-bottom: 8px;
    }

    .dark-content h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .review_detail::before {
        height: 99.2%;
    }

    .review_detail p {
        padding: 30px;
        font-size: 16px;
    }

    .service_wrappe .instructor {
        flex-direction: column;
    }

    .service_wrappe .blogs-block {
        text-align: center !important;
        padding-top: 15px;
    }

    .service_wrappe .service_title {
        padding: 10px 0 0 0;
    }

    .appointment_form {
        padding: 30px 15px;
    }
}

@media (max-width: 425px) {
    .banner_content {
        padding: 130px 0 100px 0;
    }

    .slide_social_ic a {
        padding: 0 12px;
        font-size: 14px;
        padding-bottom: 5px;
    }

    .slide_social_ic a:not(:last-child):after {
        margin: 0 12px;
    }

    .triangle-1 {
        border-bottom: solid 130px #EA1C29;
        border-left: solid 150px transparent;
        bottom: 50px;
    }

    .banner_social {
        height: 50px;
        width: 150px;
    }

    h1 {
        font-size: 44px;
        line-height: 54px;
    }
}

@media (max-width: 375px) {
    .review_detail::before {
        width: 99.4%;
    }

    .dark-content h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .triangle-1 {
        border-bottom: solid 100px #EA1C29;
        border-left: solid 140px transparent;
        bottom: 60px;
    }

    .banner_social {
        height: 60px;
        width: 140px;
    }
}

@media (max-width: 360px) {
    .scroll-down {
        display: none;
    }
}


/* --- OCULTAR CURSOR PERSONALIZADO EN MÓVILES Y TABLETS --- */
@media (max-width: 1024px) {

    /* 1. Restaurar el comportamiento normal táctil/puntero */
    body {
        cursor: auto !important;
    }

    /* 2. Desaparecer los elementos del cursor rojo */
    .mouseCursor,
    .cursor-outer,
    .cursor-inner {
        display: none !important;
    }
}

/* --- ESTILOS DE LA VENTANA MODAL DE PAGO --- */
.modal-fondo {
    display: none; /* Oculto hasta que hacen clic */
    position: fixed;
    z-index: 9999; /* Para que quede por encima de toda tu web */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Oscurece el fondo */
    align-items: center;
    justify-content: center;
}

.modal-caja {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px; /* Tamaño ideal para celulares y PC */
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
}

.cerrar-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaaaaa;
    cursor: pointer;
}

.cerrar-modal:hover {
    color: #e31c25; /* Cambia a tu rojo Fitzaro al pasar el mouse */
}