/*------------------------------------------------------------------

Project:       Fitzaro
Last change:   20/07/2022
Author   :     the_krishna   
Primary use:   Gym & Fitness Template

-------------------------------------------------------------------*/

/*------------------------------------------------------------------

                            [Table of contents]

1. Default css
2. Button  
3. Preloader 
4. Animation
5. scroll bottom-top css
6. Header
7. Banner content
8. About Section
9. Video Section
10. Service Section
11. Counter section
12. Schedule Section
13. Testimonial Section
14. Pricing Section
15. Image-banner section
16. Trainer Section
17. Appointment Section
18. Blog Section
19. News Subscribe Section
20. Footer
21. Scrollbar CSS
22. Mouse Cursor Dragging Ball


-------------------------------------------------------------------*/

/*------------------------ [Color codes] ------------------------
                        

Background: #ffffff 
Content:    #444444 
Heading h1: #ffffff
Header h2, h3, h4, h5, h6:  #000000  

a (standard):  #ffffff 
a (visited):   #ffffff 
a (hover):   #EA1C29 
a (active):  #ffffff

-------------------------------------------------------------------*/


/************************ 1. 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: #48484a;
}
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;
    color: #e00000;
}
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;
}


/************************ 2. 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;
}

/************************ 3. Preloader ***********************/

.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    /* background: -o-radial-gradient(circle,#333, #000) no-repeat;
    background: radial-gradient(circle,#333, #000) no-repeat; */
    z-index: 999;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.loader{
    width: 90px;
    height: 90px;
    margin: 30px auto 100px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateX(45deg) rotate(45deg);
    transform: rotateX(45deg) rotate(45deg);
    position: relative;
}
.loader .loader-inner{
    width: 30px;
    height: 30px;
    background: #e00000;
    -webkit-box-shadow: 112px 112px 20px #000;
    box-shadow: 112px 112px 20px #000;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation: loading-1 2s ease-in-out infinite both;
    animation: loading-1 2s ease-in-out infinite both;
}
.loader .loader-inner:nth-child(1){ -webkit-animation-delay: -1s; animation-delay: -1s; }
.loader .loader-inner:nth-child(2){ -webkit-animation-delay: -2s; animation-delay: -2s; }
.loader .loader-inner:before,
.loader .loader-inner:after{
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
}
.loader .loader-inner:before{
    background: #48484a;
    top: 100%;
    left: 0;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}
.loader .loader-inner:after{
    background: #e00000;
    top: 0;
    left: 100%;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
}

/************************ 4. 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 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);
    }
}
@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 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);
    }
}


/************************ 5. scroll bottom-top css **********************/

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    background: #ffffff;
    border-radius: 50px; 
    -webkit-box-shadow: inset 0 0 0 2px rgb(214 33 40 / 90%);
    box-shadow: inset 0 0 0 2px rgb(214 33 40 / 90%);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.scroll-top::after {
    position: absolute;
    font-family: 'remixicon'!important;
    content: "\ea78";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #48484a;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.scroll-top svg.border-circle path {
    stroke: #48484a;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}
.scroll-top svg path {
    fill: none;
}


/************************ 6. Header **********************/

.header{
    position: relative;
}
.header .navbar-header.sticky{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 16;
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
    box-shadow: 0 0 22px -4px rgb(0 0 0 / 17%);
}
.header .navbar-header.sticky .nav-item a{
    color: #FFFFFF;
}
.header .navbar-header:not(.sticky){
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.50);
    z-index: 16;
}
.header .navbar_main{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 35px 60px 35px 60px;
    margin-left: auto;
    margin-right: auto;
}
.header .navbar_expand{
    -webkit-animation: fixedheader 1s forwards;
    animation: fixedheader 1s forwards;
}
.navbar_nav .nav-item{
    display: inline-block;
}
.navbar_brand .fitzaro_logo{
    display: 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{
    color: #e00000;
}
.navbar-header.sticky .navbar_nav .nav-item a:hover,
.navbar-header.sticky .navbar_nav .nav-item a.active {
    color: #e00000;
}
.navbar_nav .nav-item a.active:before {
    position: absolute;
    content: "";
    left: 0;
    top: auto;
    height: 2px;
    width: 20px;
    bottom: -8px;
    color: #e00000;
    background: #e00000;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-radius: 50px;
}
.navbar_nav .nav-item a:hover::before {
    position: absolute;
    content: "";
    left: 0;
    top: auto;
    height: 2px;
    width: 20px;
    bottom: -8px;
    color: #e00000;
    background: #e00000;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-radius: 50px;
}
.navbar-header .sidebar-menu::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-100%) translateY(110px) skewY(-45deg);
    -ms-transform: translateY(-100%) translateY(110px) skewY(-45deg);
    transform: translateY(-100%) translateY(110px) skewY(-45deg);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.navbar_expand .navbar_main .sidebar-toggle {
    margin: 0;
    position: absolute;
    top: 95px;
    left: 55px;
    -webkit-transition: all .3s ease-in-out .25s;
    -o-transition: all .3s ease-in-out .25s;
    transition: all .3s ease-in-out .25s;
    width: 48px;
    height: 48px;
    padding: 10px 7px;
    text-align: center;
    border: none;
    color: #151515;
    background: transparent;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
}
.navbar-header .sidebar-menu {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    pointer-events: none;
    z-index: -1;
    font-weight: 400;
    color: #151515;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar_main .sidebar-toggle span {
    width: 25px;
}
.navbar_main .sidebar-toggle::before, 
.navbar_main .sidebar-toggle::after, 
.navbar_main .sidebar-toggle span {
    display: inline-block;
    height: 0;
    border-top: 2px solid;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #000000;
}
.navbar_main .sidebar-toggle::before {
    top: 10px;
}
.navbar_main .sidebar-toggle::after {
    bottom: 10px;
}
.navbar_main .sidebar-toggle.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.navbar_main .sidebar-toggle.active span {
    opacity: 0;
}
.navbar_main .sidebar-toggle.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    -ms-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
}
.navbar_main .sidebar-toggle::before, .navbar_main .sidebar-toggle::after {
    position: absolute;
    left: 50%;
    content: '';
    width: 34px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navbar-header .sidebar-menu.active::before {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.navbar-header .sidebar-menu.active {
    pointer-events: auto;
}
.sidebar-menu .side_social_info{
    padding: 60% 60px 60px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.navbar-header .sidebar-menu.active .social_list li:nth-child(1) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.navbar-header .sidebar-menu.active .social_list li:nth-child(2) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.navbar-header .sidebar-menu.active .social_list li:nth-child(3) {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.navbar-header .sidebar-menu.active .social_list li {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.navbar-header .sidebar-menu .social_list li {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-header .sidebar-menu .side_social_info img, 
.navbar-header .sidebar-menu .time-schedule {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-header .sidebar-menu.active .side_social_info img, 
.navbar-header .sidebar-menu.active .time-schedule {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.navbar-header .sidebar-menu.active .side_social_info img {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.navbar-header .sidebar-menu.active .time-schedule{
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.navbar-header .sidebar-menu .list-social-ic li {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin: 0 15px;
}
.navbar-header .sidebar-menu.active .list-social-ic li {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}
.header .navbar-header.sticky .sidebar-menu{
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.header .navbar-header.sticky .sidebar-toggle {
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.time-schedule .weekly-day{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #000000;
    font-family: 'Overpass', sans-serif;
}
.time-schedule p{
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #444444;
}
.time-schedule{
    padding: 35px 0 0 0;
}
.social_list li a{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #444444;
}
.social_list li a:hover{
    color: #EA1C29;
}
.list-social-ic .icon i{
    color: #ffffff;
    font-size: 24px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.list-social-ic .icon i:hover{
    color: #EA1C29;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
}
.side_panel{
    background-color: #000000;
    padding: 35px 40px;
    text-align: center;
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
}
.social_list{
    padding-top: 45px;
}
.navbar-header .sidebar-menu.active .side_panel {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition-delay: .4s;
    -o-transition-delay: .4s;
    transition-delay: .4s;
}
.navbar-toggle{
    display: none;
}


/************************ 7. banner Section **********************/

.first_section{
    /* background-image: url(../images/banner/banner-evento2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    position: relative;
    height: auto;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.parallax-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: rgba(27, 44, 76, 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    -webkit-box-pack: center;
    -ms-flex-pack: 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;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg); 
  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 {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}
.arrow1 {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}
.arrow2 {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.2s;
  animation-direction: alternate;
  margin-top: -6px;
}
.arrow3 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-direction: alternate;
  animation-delay: 0.3s;
  animation-direction: alternate;
  margin-top: -6px;
}



/************************ 8. About Section **********************/

.sub_heading{
    margin-bottom: 10px;
    width: 60px;
    display: inline-block;    
    border-bottom: 4px solid #e00000;
}
.sub_title{
    padding-bottom: 10px;
    display: inline-block;    
    color: #e00000;
}
.main_heading{
    padding-bottom: 20px;
}
.about_detail{
    padding-bottom: 26px;
}
.box_detail .list_icon{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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 .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;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 10;
}
.service_wrappe .instructor{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    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;
}
.services_box:hover {
    background: #000000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.services_box:hover .img-cover {
    opacity: 0.4;
    -moz-opacity: 0.4;
    -webkit-opacity: 0.4;
    filter: alpha(opacity=0.4);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.img-cover {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.services_box:hover .service_title{
    color: #ffffff;
}
.services_box:hover .service_ic{
    border: 2px solid #ffffff;
    background-color: transparent;
}
.services_box:hover .blogs-block{
    color: #ffffff;
}
.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;
}


/************************ 9. video Section **********************/

.fitzaro_video{
    /* background-color: #000000; */
    position: relative;
    overflow: hidden;
}
.fitzaro_video:before{
    position: absolute;
    content: "";
    width: 360px;
    height: 360px;
    border-radius: 50%;
    top: 30px;
    right: 210px;
    /* background: #440000; */
    -webkit-filter: blur(80px);
    filter: blur(80px);
    -webkit-animation: round-animation 4s linear infinite alternate;
    animation: round-animation 4s linear infinite alternate;
}
.fitzaro_video:after{
    position: absolute;
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -180px;
    left: 160px;
    /* background: #440000; */
    -webkit-filter: blur(80px);
    filter: blur(80px);
    -webkit-animation: round-animation 4s linear infinite alternate;
    animation: round-animation 4s linear infinite alternate;
}
.bg_image img{
    position: relative;
}
.video_info{
    position: relative;
    z-index: 2;
}
.video_info .video_button {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 80px;
    cursor: pointer;
    width: 80px;
    height: 80px;
    position: relative;
    background-color: transparent;
    border: 2px solid #eeda3c;
    border-radius: 50%;
    z-index: 14;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: shadow-pulse 2s infinite;
    animation: shadow-pulse 2s infinite;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.video_info .video-play{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.video_info p{
    color: #ffffff;
}
.video-play p{
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 20px;
}
.video_button:hover{
    background-color: #eeda3c;
    border: transparent;
}
.video_button:hover i{
    color: #ffffff;
}
.video_button i{
    color: #eeda3c;
    font-size: 36px;
}
.video_modal .modal-dialog{
    max-width: 760px;
}
.video_modal .modal-content{
    background-color: transparent;
    border: none;
}
.video_modal .modal-header{
    border: none;
}
.video_modal .modal-header .btn-close{
    background-color: #ffffff;
    opacity: 1;
}
.line-1{
    height: 2px;
    width: 570px;
    background: #034b7f;
    position: absolute;
    top: -12px;
    right: 0;
}
.line-2{
    height: 2px;
    width: 545px;
    background: #034b7f;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    right: 47%;
    top: 50%;
}
.line-3{
    height: 2px;
    width: 570px;
    background: #034b7f;
    position: absolute;
    bottom: -12px;
    right: 0;
}
.line-4{
    height: 2px;
    width: 545px;
    background: #034b7f;
    -webkit-transform: translateY(-100%) rotate(90deg);
    -ms-transform: translateY(-100%) rotate(90deg);
    transform: translateY(-100%) rotate(90deg);
    left: 47%;
    position: absolute;
    top: 50%;
}
.bg_image, .bg_image img{
    position: relative;
    text-align: center;
}
.right-arrow-grp .arrow {
    width: 14px;
    height: 14px;
    border: 2px solid;
    border-color: #eeda3c transparent transparent #eeda3c;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 35px;
}
.right-arrow-grp{
    position: absolute;
    top: -40px;
    right: -8px;
}
.arrowSliding {
    position: absolute;
    right: 100px;
    -webkit-animation: slide 4s linear infinite;
    animation: slide 4s linear infinite;
}
.delay1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.delay2 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.delay3 {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
.delay4 {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}
.delay5 {
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s;
}
.slide-top{
    position: absolute;
    bottom: 0;
    right: -10px;
    -webkit-animation: slide-top 4s linear infinite;
    animation: slide-top 4s linear infinite;
}
.top-arrow-grp{
    position: absolute;
    bottom: 50px;
    left: 5px;
}
.top-arrow-grp .arrow {
    width: 14px;
    height: 14px;
    border: 2px solid;
    border-color: #eeda3c transparent transparent #eeda3c;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.delaytime1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.delaytime2 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.delaytime3 {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
.delaytime4 {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}
.delaytime5 {
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s;
}
.bg_image .line-shapes{
    margin-top: 45px;
}

/************************ 10. service Section **********************/

.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;
    margin-top: 50px;
}
.services_tool .box-tool:hover{
    /* background-color: #EA1C29; */
    opacity: 75%;
}
.box-tool:hover h3{
    color: #ffffff;
}
.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;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}
.box-tool:hover .exercise-img {
    opacity: 1;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/* .services_tool .box-tool:hover{
    padding: ;
} */
.services_tool{
    padding-top: 10px;
}
.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;
}


/************************ 11. counter Section **********************/

.fitzaro_coundown{
    background-image: url(../images/countdown/background-image.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.countdown_formula{
    position: relative;
}
.counter_image{
    display: inline-block;
    padding: 20px;
    border: 4px dotted #ffffff;
    width: 140px;
    height: 140px;
}
.countdown_formula .coundown-number{
    font-weight: 900;
    font-size: 100px;
    line-height: 100px;
    color: #ffffff;
    padding: 35px 0 10px 0;
    display: inline-block;
}
.countdown_formula .sub_info{
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
}


/************************ 12. schedule Section **********************/

.schedule_part{
    background-image: url(../images/schedule/background-img.png);
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
}
.gym_timetable table{
    margin: 0;
}
.gym_timetable table thead th{
    text-align: center;
    vertical-align: middle;
    border: none;
    font-family: 'Overpass', sans-serif;
    font-weight: 700;
    padding: 25px 40px;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    background-color: #48484A;
}
.gym_timetable table tbody:not(:first-child) {
    border-top: none;
}
.gym_timetable table tbody td.body_detail {
    background-color: #FFFFFF;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.gym_timetable table tbody td {
    vertical-align: middle;
    color: #000;
    border: none;
    padding: 32px 20px;
    background-color: #444444;
}
.gym_timetable table tbody td .tabel_content h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    margin: 0 0 10px 0;
}
.gym_timetable table tbody td .tabel_content span{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    text-transform: initial;
    margin-bottom: 16px;
    display: inline-block;
}
.gym_timetable table tbody td .tabel_content .schedule_time {
    padding-top: 20px;
    border-top: 2px solid #e00000;
    text-align: center;
}
.gym_timetable table tbody td .tabel_content .schedule_time h4 {
    font-size: 16px;
    line-height: 19px;
    color: #444444;
    margin-bottom: 0;
    font-weight: 600;
}
.body_detail:hover .time-image {
    opacity: 0.3;
    -moz-opacity: 0.3;
    -webkit-opacity: 0.3;
    filter: alpha(opacity=0.3);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
/* .gym_timetable .body_detail:hover{
    background-color: #97cad6;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
} */
.body_detail .time-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}
.time-image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.body_detail:hover .tabel_content h3, 
.body_detail:hover .tabel_content span{
    color: #e00000;
    position: relative;
    z-index: 2;
}
.body_detail:hover .tabel_content .schedule_time{
    border-top: 2px solid #e00000;
    position: relative;
    z-index: 2;
}
.body_detail:hover .tabel_content .schedule_time h4{
    color: #e00000;
    position: relative;
    z-index: 2;
}

.height50 {
    height: 35px;
}

.height115 {
    height: 115px;
}

/************************ 13. testimonial Section **********************/

.testimonial-section{
    background: url('../images/banner/banner_patrocinadores.png');
    position: relative;
    overflow: hidden;
}
.testimonial-section:before {
    position: absolute;
    content: "";
    width: 500px;
    height: 500px;
    border-radius: 50%;
    top: -60px;
    left: -180px;
    /* background: #440000; */
    -webkit-filter: blur(120px);
    filter: blur(120px);
    -webkit-animation: top-bottom-animation 4s linear infinite alternate;
    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; */
    -webkit-filter: blur(100px);
    filter: blur(100px);
    -webkit-animation: bottom-top-animation 4s linear infinite alternate;
    animation: bottom-top-animation 4s linear infinite alternate;
}
.testimonial_detail h2{
    color: #FFF;
    position: relative;
    z-index: 2;
}
.client_review, .testimonial_detail{
    position: relative;
}
.testimonial_slider{
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.testimonial-social li{
    display: inline-block;
    margin: 0 10px;
}
.testimonial-social{
    margin-top: -45px;
}
.ic-list i{
    color: #e00000;
    font-size: 20px;
}
.testimonial-social li a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 50px;
    line-height: 40px;
    border-radius: 100%;
    border: 2px solid #e00000;
    text-align: center;
    background-color: #ffffff;
}
.testimonial-social li a:hover{
    border: 2px solid #48484A;
}
.testimonial-social li a:hover i{
    color: #e00000;
}
.review_detail{
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    position: relative;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
    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;
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 30px;
}


/************************ 14. pricing Section **********************/

#price-blue{
    background: #161417;
}

.table_img img{
    position: relative;
    display: block;
}
.pricing_data .table_img{
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
}
.table_img img {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}
.table_img:hover img {
    transform: scale(1.2) rotate(4deg);
    -webkit-transform: scale(1.2) rotate(4deg);
    -moz-transform: scale(1.2) rotate(4deg);
    -ms-transform: scale(1.2) rotate(4deg);
    -o-transform: scale(1.2) rotate(4deg);
}
.pricing_data:hover .table_img:after{
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(234, 28, 41, 0)), to(#e00000))!important;
    background-image: -o-linear-gradient(top, rgba(234, 28, 41, 0) 0%, #e00000 100%)!important;
    background-image: linear-gradient(180deg, rgba(234, 28, 41, 0) 0%, #e00000 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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000))!important;
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%)!important;
    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: 32px;
    /* 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;
}
.inn-price-plan{
    padding-left: 20px;
}
.inn-price-plan .fitzaro_btn{
    background-color: transparent;
    color: #FFF;
    border: 2px solid #FFF;
}
.inn-price-plan .fitzaro_btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #e00000;
    z-index: -1;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 10px;
}
.inn-price-plan .fitzaro_btn:hover::before {
    background-color: #e00000;
    height: 100%;
    bottom: auto;
    top: 0;
}
.inn-price-plan .fitzaro_btn:hover{
    color: #ffffff;
}
.table_img:hover::after{
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(234, 28, 41, 0)), to(#e00000));
    background-image: -o-linear-gradient(top, rgba(234, 28, 41, 0) 0%, #e00000 100%);
    background-image: linear-gradient(180deg, rgba(234, 28, 41, 0) 0%, #e00000 100%);
    position: absolute;
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


/************************ 15. Image-banner Section **********************/

.fitzaro_banner{
    position: relative;
    overflow: hidden;
    background-image: url(../images/banner/banner-background.png);
    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;
    -webkit-filter: blur(110px);
    filter: blur(110px);
    -webkit-animation: top-bottom-animation 4s linear infinite alternate;
    animation: top-bottom-animation 4s linear infinite alternate;
}
.dark-content h2{
    color: #ffffff;
}
.dark-content{
    padding: 100px 0 100px 0;
    position: relative;
}


/************************ 16. trainer Section **********************/

.best-trainer{
    position: relative;
}
.trainer_slider, .blog_slider{    
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.img-shape1{
    position: absolute;
    top: 100px;
    left: 100px;
    -webkit-animation: round-animation 4s linear infinite alternate;
    animation: round-animation 4s linear infinite alternate;
}
.img-shape2{
    position: absolute;
    bottom: 50px;
    right: 130px;
    -webkit-animation: round-animation 10s linear infinite alternate;
    animation: round-animation 10s linear infinite alternate;
}
.team-box .box-inner{
    background-color: rgb(224, 0, 0);
    /* background: rgb(72, 72, 74); */
    background: linear-gradient(305deg, rgba(224,0,0,0.9) 0%, rgba(72,72,74,0.9) 100%);
    height: 410px;
    padding: 111px 30px 50px 30px;
    margin-top: -80px;
    border-radius: 35px 0 35px 0 ;
    position: relative;
    overflow: hidden;
    /* -webkit-clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
    clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%); */
}
.box-white{
    background: #FFF;
    height: 350px;
    padding: 90px 20px 40px 20px;
    margin-top: -80px;
    /* border-radius: 35px 0 35px 0 ; */
    position: relative;
    overflow: hidden;
/*   webkit-clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
    clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%); */
}
.box-inner:before{
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -35px;
    left: -30px;
    /* background: #034b7f; */
    -webkit-filter: blur(40px);
    filter: blur(40px);
}
.box-inner:after{
    position: absolute;
    content: "";
    width: 350px;
    height: 350px;
    border-radius: 50%;
    bottom: -150px;
    right: -140px;
    /* background: #034b7f; */
    -webkit-filter: blur(80px);
    filter: blur(80px);
}
.box-inner h5{
    position: relative;
    z-index: 2;
}
.border-shape {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border: 2px solid #e00000;
    border-radius: 50%;
    position: relative;
    z-index: 3;
}
.border-shape img{
    position: relative;
    border-radius: 50%;
}
.box-inner .trainer-name{
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    color: #48484a;
}
.box-inner .designation{
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    color: #000;
    padding: 10px 0 20px 0;
    position: relative;
    z-index: 2;
}
.box-inner .trainer-detail{
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    color: #000;
    position: relative;
    z-index: 2;
}
.team-social li{
    display: inline-block;
    margin: 0 10px; 
}
.team-social{
    margin-top: -380px;
}
.ic-list i{
    color: #e00000;
    font-size: 20px;
}
.team-social li a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 300px;
    height: 400px;
    line-height: 40px;
    /* border-radius: 2%; */
    border: 2px solid #543e99;
    text-align: center;
    background-color: #ffffff;
    
    -webkit-clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
    clip-path: polygon(12% 0, 100% 0, 100% 80%, 88% 100%, 0 100%, 0 20%);
}
.team-social li a:hover{
    border: 2px solid #e00000;
}
.team-social li a:hover i{
    color: #e00000;
}


/************************ 17. appointment Section **********************/

.appointment_section{
    background-image: url(../images/appointment/background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.static_content, .appointment_form{
    position: relative;
}
.progress-counter{
    position: relative;
    margin-bottom: 40px;
}
.progress-counter:last-child {
    margin-bottom: 0;
}
.progress-title{
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
}
.reveal.active .progress-value {
    -webkit-animation: animate-counter 2.5s;
    animation: animate-counter 2.5s;
}
.progress-value {
    top: 0px;
    margin-left: -20px;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
    position: absolute;
    color: #ffffff;
}
.skil-progressbar {
    position: relative;
    background-color: rgb(255 255 255 / 15%);
    border-radius: 0;
    height: 2px;
}
.reveal.active .skil-progressbar span {
    -webkit-animation: animate-positive 2.5s;
    animation: animate-positive 2.5s;
}
.skil-progressbar span {
    height: 8px;
    background-color: #EA1C29;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}
.appointment_form{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 50px;
    background: -o-linear-gradient(306.3deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 100%);
    background: linear-gradient(143.7deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    -webkit-box-shadow: inset 1px 1px 0 0px rgb(255 255 255 / 32%);
    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;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
} 
.form_start .input_area textarea {
    height: 138px;
}
.form_start .input_area button{
    width: 100%;
    border-radius: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}


/************************ 18. blog Section **********************/

.fitzaro_blog{
    position: relative;
}
.shape-img-1{
    position: absolute;
    top: 100px;
    left: 50px;
}
.shape-img-2{
    position: absolute;
    bottom: 0;
    right: 0;
}
.shape-img-3{
    position: absolute;
    top: 150px;
    left: 240px;
}
.feature-post li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 40px;
}
.feature-post li span{
    color: #444444;
    font-weight: 400;
    text-transform: initial;
}
.feature-post li i{
    color: #EA1C29;
    font-size: 20px;
    margin-right: 10px;
}
.blog_title{
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 30px;
}
.post_data .feature-post{
    padding: 40px 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.read-button a{
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #EA1C29;
    padding-right: 10px;
}
.read-button{
    display: inline-block;
}
.moving-left svg {
    position: relative;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    top: -1px;
}
.moving-left:hover svg {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}
.read-button:hover .read-more-btn{
    color: #000000;
}
.read-button:hover svg path{
    fill: #000000;
}
.blog-image{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.blog_post:hover h3{
    color: #EA1C29;
}
.blog_title:hover{
    color: #EA1C29;
}
.blog-image img{
    /* -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1); */
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
}
.blog-image:hover img {
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
    transform: scale(1.07); 
    -webkit-transition: all 0.4s ease-in-out; 
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
}


/************************ 19. news-subscribe **********************/

.newsletter_subscribe{
    position: relative;
    z-index: 2;
}
.newsletter_subscribe .fitness-update{
    background-color: #e00000;
    border-radius: 20px;
    padding: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.reboot-img h2{
    padding-left: 20px;
    z-index: 2;
}
.footer_subscribe_box{
    position: relative;
    z-index: 2;
}
.footer_subscribe_box .subscribe-control{
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #444444;
    border: none;
    outline: none;
    padding: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
}
.footer_subscribe_box .fitzaro_btn{
    border-radius: 5px;
    border: 1px solid #EA1C29;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0;
    width: 50px;
    height: 50px;
}
.footer_subscribe_box .fitzaro_btn::before{
    border-radius: 5px;
}
.footer_subscribe_box button i{
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.fitness-update{
    position: relative;
    overflow: hidden;
}
.fitness-update:before{
    position: absolute;
    content: "";
    width: 350px;
    height: 350px;
    border-radius: 50%;
    bottom: -80px;
    left: -140px;
    -webkit-filter: blur(60px);
    filter: blur(60px);
}
.fitness-update:after{
    position: absolute;
    content: "";
    width: 350px;
    height: 350px;
    border-radius: 50%;
    bottom: -180px;
    right: 0px;
    -webkit-filter: blur(60px);
    filter: blur(60px);
}
.reboot-img:after{
    position: absolute;
    content: "";
    width: 400px;
    height: 170px;
    border-radius: 50%;
    top: -140px;
    right: -100px;
    -webkit-filter: blur(50px);
    filter: blur(50px);
}
.reboot-img{
    position: relative;
}
.reboot-img img{
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: hero-bounce;
    animation-name: hero-bounce;
    z-index: 2;
}


/************************ 20. footer **********************/

.footer{
    background-image: url(../images/banner/banner_carnet.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 240px 0 40px 0;
    margin-top: -140px;
}
.footer .container{
    position: relative;
}
.footer-social-list i{
    color: #ffffff;
    font-size: 24px;
}
.footer_first_row .footer-social-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
}
.footer-social-list a{
    overflow: hidden;
    position: relative;
}
.footer-social-list a .icons{
    position: relative;
    color: #ffffff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 3;
}
.footer-social-list a:hover .icons{
    color: #ffffff;
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}
.footer-social-list a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 2;
}
.footer-social-list a:hover:before {
    top: 0;
}
.footer-social-list .facebook-ic:before {
    background: #3b5999;
}
.footer-social-list .twitter-ic:before {
    background: #55acee;
}
.footer-social-list .instagram-ic:before {
    background: #f09433; 
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    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 a{
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid #444444;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.place_detail i{
    font-size: 40px;
    color: #FFF;
}
.place_detail{
    width: 100px;
    height: 100px;
    line-height: 100px;
    display: inline-block;
    border: 4px dotted #FFF;
}
.locate_places p{
    margin: 40px 0 0 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #FFF;
}
.locate_places a, 
.copyright_privacy a{
    color: #FFF;
}
.locate_places a:hover, 
.copyright_privacy a:hover{
    color: #e00000;
}
.sub-footer{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer-copyright p{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
}
.copyright_privacy span{
    margin: 0 15px;
    color: #ffffff;
    font-weight: 400;
}
.copyright_privacy a{
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
}

/************************ 21. Scrollbar CSS **********************/

/* Firefox */
body {
    scrollbar-width: auto;
    scrollbar-color: #48484A #d4d4d4;
}

/* Chrome, Edge, and Safari */
body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-track {
    background: #d4d4d4;
}

body::-webkit-scrollbar-thumb {
    background-color: #48484A;
    border-radius: 10px;
    border: 0px solid #ffffff;
}


/* Firefox */
.scroll-patrocinadores {
    scrollbar-width: auto;
    scrollbar-color: #FFF #48484A;
}

/* Chrome, Edge, and Safari */
.scroll-patrocinadores::-webkit-scrollbar {
    width: 10px;
}

.scroll-patrocinadores::-webkit-scrollbar-track {
    background: #d4d4d4;
}

.scroll-patrocinadores::-webkit-scrollbar-thumb {
    background-color: #FFF;
    /* border-radius: 10px; */
    border: 0px solid #ffffff;
}

/*********************** 22. Mouse Cursor Dragging Ball ******************/

.mouseCursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
}
.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 2px solid #48484A;
    z-index: 10000000;
    opacity: 1;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: all 0.08s ease-out;
    -webkit-transition: all 0.08s ease-out;
    -moz-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    -ms-transition: all 0.08s ease-out;
}
.cursor-inner {
    margin-left: -10px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: #e00000;
    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;
    -webkit-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;
    -moz-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;
    -o-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;
    -ms-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: #543e99;
    opacity: 1;
    background: transparent;
}
.cursor-outer.hover{
    border: 2px solid #ffffff;
}
.cursor-inner.hover{
    background-color: #ffffff;
}
.slogan {
    background-color: #034b7f;
    display: block;
    padding: 80px 0;
}
.slogan-text {
    text-align: center;
    font-size: 50px;
    font-family: 'bebas_neue', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    margin-top: -10px;
    line-height: 30px;
}

.registro_banner {
    background-color: #e00000;
    display: block;
    padding: 80px 0;
}
.registro_banner-text {
    text-align: center;
    font-size: 50px;
    font-family: 'bebas_neue', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 30px;
}
.registro_banner_btn2{
    background: transparent;
    border-radius: 50px;
    padding: 20px 30px;
    width: 210px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #d62128;
    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: 2px solid #d62128;
}
.registro_banner_btn2:hover{
    color: #FFFFFF;
}
.registro_banner_btn2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgb(150,0,0);
    background: linear-gradient(180deg, rgb(150 0 0) 0%, rgb(150 0 0) 100%);
    z-index: -1;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 10px;
}
.registro_banner_btn2:hover::before {
    background: rgb(150,0,0);
    background: linear-gradient(180deg, rgb(150 0 0) 0%, rgb(150 0 0) 100%);
    height: 100%;
    bottom: auto;
    top: 0;
}
.registro_banner_btn{
    background: transparent;
    border-radius: 50px;
    padding: 20px 30px;
    width: 210px;
    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: 2px solid #FFFFFF;
}
.registro_banner_btn:hover{
    color: #FFFFFF;
}
.registro_banner_btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgb(25,25,25);
    background: linear-gradient(180deg, rgb(25 25 25) 0%, rgb(150 0 0) 100%);
    z-index: -1;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 10px;
}
.registro_banner_btn:hover::before {
    background: rgb(25,25,25);
    background: linear-gradient(180deg, rgb(150 0 0) 0%, rgb(25 25 25) 100%);
    height: 100%;
    bottom: auto;
    top: 0;
}

.registro_info_card {
    background: #e0e0e0;
    background: linear-gradient(90deg, #e0e0e0 0%, #ffffff 100%);
    color: #000000;
    border: solid 1px #e0e0e0;
}

.registro_info_card .margin_radio {
    margin-left: -20px;
    margin-top: -20px;
}

.text-purple {
    color: #543e99 !important;
}
.text-light-blue {
    color: #97cad6 !important;
}

.stat-facts{
	background:url('../images/match.jpg') no-repeat center center; 
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover;
}
.bg-overlay{
	background-color:rgba(0, 0, 0, 0.2);
	display:block;
	padding:80px 0;
}
.match-club{
	text-align:center;
	margin-bottom:40px;
}
.club-name{
	font-size: 20px;
	font-family: 'bebas_neue', sans-serif;
    font-weight: 700;
	color: #f00;
}
.match-description{
	text-align:center;
}
.liga-name{
	font-size: 40px;
	font-family: 'bebas_neue', sans-serif;
    font-weight: 700;
	color: #f00;
	margin-bottom: 10px;
    margin-top: -30px;
	line-height: 30px;
}
.liga-date{
	font-size: 20px;
	font-family: 'bebas_neue', sans-serif;
    font-weight: 700;
	color: #f00;
	margin-bottom: 40px;
}
.liga-vs{
	font-size: 28px;
	font-family: 'bebas_neue', sans-serif;
    font-weight: 700;
	color: #f00;
	margin-bottom: 60px;
}
.liga-location{
	font-size: 14px;
	color: #fff;
}



/* ==========================
5. About
============================= */
.section.about{
	padding-bottom:60px;
	background-color: #f4f4f4;
}
.about .page-title .lead {
    color: #000;
}
.welcome{
	padding-right: 30px;
}
#about-caro .owl-controls {
    margin-top: -35px;
    text-align: right;
	margin-right: 20px;
}
#about-caro .owl-controls .owl-page span{
	background: #f00;
	margin: 5px 4px; 
}

.title-block{
	text-align: left;
    font-size: 30px;
    color: #fff;
    line-height: 42px;
    font-weight: 700;
	background-color: #f00;
	border-left:4px solid #000;
	padding: 15px 20px;
	margin-bottom: 20px;
}
.shop-item{
	position: relative;
	border: 1px solid #dadada
}
.shop-item .description{
	position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
}
.shop-item .collection-name{	
	color: #000;
	padding: 10px 20px;
	font-size: 16px;
	line-height: 26px;
	background-color: rgba(255, 255, 255, .8);
}
.shop-item .collection-name strong{
	font-weight: bold;
}
.shop-item .collection-name .category{
	font-style: italic;
	font-size: 15px
}
.shop-item .collection-name{
	margin-bottom: 10px;
}
.collection-callout a{
	padding: 15px 20px;
	margin-right: 5px;
	color: #fff;
	font-size: 18px;
	display: inline-block;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	background: #219FDA;
	background: -moz-linear-gradient(top, #f00 0%, #C92127 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #f00), color-stop(100%, #C92127));
	background: -webkit-linear-gradient(top, #f00 0%, #C92127 100%);
	background: -o-linear-gradient(top, #f00 0%, #C92127 100%);
	background: -ms-linear-gradient(top, #f00 0%, #C92127 100%);
	background: linear-gradient(to bottom, #f00 0%, #C92127 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f00', endColorstr='#C92127', GradientType=0 );
}
.collection-callout a:hover{
	background: #000;
	color: #fff;
}
.collection-callout .fa{
	margin-right: 20px;
}
.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
    width: 33.3333%;
}
.nav-tabs > li > a {
    margin-right: -1px;
    line-height: 1.42857143;
    border: 1px solid #ddd;
    border-radius: 0px 0px 0 0;
    text-align: center;
	color: #000;
	font-weight: 700;
    font-size: 14px;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #fff;
    cursor: default;
    background-color: #f00;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}
.tab-content{
	/* padding: 20px 20px; */
}
.tab-content-bg{
	background: url('../images/gallery_1319x212.jpg') top center;
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover;
}
thead tr{
    background-color: #000;
	color: #fff;
}
.table > thead > tr > td {
    padding: 14px 25px;
    border-top: 0;
}
.match-date{
	font-style: italic;
}
.match-title{
	font-weight: bold;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #F4F4F4;
}
.table-striped > tbody > tr:nth-of-type(even) {
    background-color: #E7E7E7;
}
.table > tbody > tr > td{
	padding: 14px 25px;
	border-top: 0;
}
td.tw40{
	width: 40%;
}
td.tw50{
	width: 50%;
}
td.tw10{
	width: 10%;
}
.section.coach {
    padding-bottom: 60px;
}
.bg-coach {
    background:url('../images/slide-1.jpg') no-repeat center center; 
	-webkit-background-size: cover; 
	-moz-background-size: cover; 
	-o-background-size: cover; 
	background-size: cover;
}
.section.coach .page-title .lead {
    color: #f00;
}
.coach-item{
	margin: 10px 0;
}
.coach-item .gambar{
	position: relative;
    z-index: 1;
	overflow: hidden;
	background-color: #000;
}
.coach-item .gambar img{
	-webkit-transform: scale(1,1);
	-ms-transform: scale(1,1);
	        transform: scale(1,1);
	
	-webkit-transition: 0.4s all linear;
	        transition: 0.4s all linear;
}
.coach-item:hover .gambar img{
	filter: alpha(opacity=80);
	opacity: .8;
	
	-webkit-transform: scale(1.05,1.05);
	-ms-transform: scale(1.05,1.05);
	        transform: scale(1.05,1.05);
	-webkit-transition-timing-function: ease-out;
	        transition-timing-function: ease-out;
	-webkit-transition-duration: 250ms;
	        transition-duration: 250ms;
}
.coach-item .item-body{
	background-color: #000;
    border-top: 3px solid #f00;
    position: relative;
    display: block;
    padding: 20px;	
}
.coach-item:hover .item-body{
	background-color: #202020;
}
.coach-item .item-body:after{
	content: '';
	clear: both;
	width: 100%;
	display: table;
}
.coach-item .item-body .name {
    font-size: 18px;
    color: #f00;
    line-height: 24px;
    margin-bottom: 10px;
}
.coach-item .item-body .position {
    font-size: 14px;
    color: #999;
    line-height: 22px;
    font-style: italic;
    display: inline-block;
}
.coach-item .item-body .c-sosmed {
    font-size: 14px;
    color: #999;
    line-height: 22px;
    font-style: italic;
    display: inline-block;
}
.item-body .c-sosmed{
	float: right;
}
.item-body .c-sosmed .item{
	width:30px;
	height:30px;
	text-align:center;
	border: 1px solid #fff;
	color:#fff;
	display: inline-table;
	padding-top: 5px;
    border-radius: 50%;
}
.item-body .c-sosmed .item:hover{
	background-color:#fff;
	color:#252525;
}
.item-body .c-sosmed .item .fa{
	font-size:16px;
}
.nav-history{
	text-align: center;
	position: relative;
}
.nav-history:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 6px;
	background-color: #f00;
	left: 0;
	top: 32px;
}
.nav-history .owl-controls .owl-page{
    cursor: pointer;
    display: inline-table;
}
.nav-history a{
	width: 70px;
	height: 70px;
	display: inline-block;
	background-color: #000;
	color: #fff;
	padding-top: 25px;
	font-weight: bold;
	margin: 0 50px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	border-radius:50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.nav-history a:hover{
	background-color: #f00;
}
.nav-history .active a{
	background-color: #f00;
}
.history-caro{
	padding: 30px 30px;
	border: 1px solid #e0e0e0;
	margin: 40px 0 80px 0;
}
.history-caro:hover{
	background-color: #fff;
}
.history-caro:after{
	content: '';
	clear: both;
	width: 100%;
	display: table;
}
.history-item{
	width: 100%;
	position: relative;
}
.history-item .gambar{
	width: 30%;
	float: left;
}
.history-item .item-body{
	width: 70%;
	float: left;
	padding: 20px 0 20px 60px;
}
.history-item .item-body .title{
	font-size: 20px;
	color: #f00;
	margin-bottom: 20px;
	font-weight: 700;
}

.registro {
	background-color: white;
}
.contact	.col-md-3{
	background: #700000;
	padding: 4%;
	border-top-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
}
.contact	.col-md-9{
	background: #fff;
	padding: 4%;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
	border: solid #700000 1px;
}
.contact .contact-info{
	margin-top:2%;
	background-color: #d62128;
	padding: 2%;
}
.contact	.contact-info img{
	margin-bottom: 15%;
}
.contact	.contact-info h2{
	margin-bottom: 10%;
}

.contact	.contact-form label{
	font-weight:600;
}
.contact	.contact-form button{
	background: #034b7f;
	color: #fff;
	font-weight: 600;
	width: 25%;
}
.contact	.contact-form button:focus{
	box-shadow:none;
}
/* .contact .form-control{    
	border-radius: 3px;
    border: 0.5px solid gray;
	padding: 2%;
    height: 40px;
    width: 100%;
} */
.contact form .col-md-6{
	padding-left: 0;
}
.contact form > div {
	position: relative;
	overflow: hidden;
}
.contact form input, form textarea, .contact form select {
	width: 100%;
	border: 1px solid gray;
	background: none;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 8px 12px;
	outline: 0;
}
.contact form input:valid, form textarea:valid {
	background: white;
}
.contact form input:focus, form textarea:focus {
	border-color: #700000;
}
.contact form input:focus + label, form textarea:focus + label {
	background: #700000;
	color: white;
	font-size: 60%;
	padding: 1px 6px;
	z-index: 2;
	text-transform: uppercase;
}
.contact form label:not(.esteno) {
	-webkit-transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
	transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
	position: absolute;
	color: #999;
	padding: 7px 6px;
	font-weight: normal;
}
.contact form textarea {
	display: block;
	resize: vertical;
}
.contact form.go-bottom input, form.go-bottom textarea {
	padding: 12px 12px 12px 12px;
}
.contact form.go-bottom label {
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
}
.contact form.go-bottom input:focus, form.go-bottom textarea:focus {
	padding: 4px 6px 20px 6px;
}
.contact form.go-bottom input:focus + label, form.go-bottom textarea:focus + label {
	top: 100%;
	margin-top: -16px;
}
.contact form.go-right label:not(.esteno) {
	border-radius: 0 5px 5px 0;
	height: 100%;
	top: 0;
	right: 100%;
	width: 100%;
	margin-right: -100%;
}
.contact form.go-right input:focus + label, form.go-right textarea:focus + label {
	right: 0;
	margin-right: 0;
	width: 30%;
	padding-top: 5px;
}
.avisoPrivacidad{
	/* border-radius: 25px; */
	margin: 15px 0;
	padding: 3%;
	background-color: #d62128;
}
.dato_contacto {
    color:#ffffff; 
    font-weight:bold; 
    -webkit-box-shadow: 3px 3px 23px 3px rgba(72,75,74,0.7); 
    -moz-box-shadow: 3px 3px 23px 3px rgba(72,75,74,0.7); 
    box-shadow: 3px 3px 23px 3px rgba(72,75,74,0.7); 
    margin-top: 20px;
}
.dato_contacto:hover {
    color:#ffffff; 
    -webkit-box-shadow: 3px 3px 23px 3px rgba(207, 32,38,0.7); 
    -moz-box-shadow: 3px 3px 23px 3px rgba(207, 32,38,0.7);  
    box-shadow: 3px 3px 23px 3px rgba(207, 32,38,0.7); 
}
.contacto-social li{
    display: inline-block;
    margin: 0 10px;
}
.contacto-social{
    margin-top: 25px;
    margin-bottom: 10px;
}
.ic-contacto-list i{
    color: #48484A;
    font-size: 20px;
}
.contacto-social li a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 50px;
    line-height: 40px;
    border-radius: 100%;
    border: 2px solid #48484a;
    text-align: center;
    background-color: #ffffff;
}
.contacto-social li a:hover{
    border: 2px solid #e00000;
}
.contacto-social li a:hover i{
    color: #e00000;
}
p.small {
	font-size:18px;
	line-height: 36px;
	color:#6a727b;
    font-weight: 100;
}
.small2{
	text-align: center;
  	text-justify: inter-word;
  	font-size:0.9rem;
	line-height: 1.8em;
	color:#6a727b;
    font-weight: 100;
}
.small3{
  	font-size:1em;
	line-height: 15px;
	color:#6a727b;
    font-weight: 400;
}

.small4{
    font-size:1em;
    line-height: 1.1em;
    color:#6a727b;
    border-top: solid #fff 1px;
    border-bottom: solid #fff 1px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 100;
}

.btn-outline-si{color:#543e99;border-color:#543e99}
.btn-outline-si:hover{color:#fff;background-color:#543e99;border-color:#543e99}
.btn-check:focus+.btn-outline-si,.btn-outline-si:focus{box-shadow:0 0 0 .25rem rgba(84, 62, 153,.5)}
.btn-check:active+.btn-outline-si,.btn-check:checked+.btn-outline-si,.btn-outline-si.active,.btn-outline-si.dropdown-toggle.show,.btn-outline-si:active{color:#fff;background-color:#543e99;border-color:#543e99}
.btn-check:active+.btn-outline-si:focus,.btn-check:checked+.btn-outline-si:focus,.btn-outline-si.active:focus,.btn-outline-si.dropdown-toggle.show:focus,.btn-outline-si:active:focus{box-shadow:0 0 0 .25rem rgba(84, 62, 153,.5)}
.btn-outline-si.disabled,.btn-outline-si:disabled{color:#543e99;background-color:transparent}

.btn-outline-no{color:#e00000;border-color:#e00000}
.btn-outline-no:hover{color:#fff;background-color:#e00000;border-color:#e00000}
.btn-check:focus+.btn-outline-no,.btn-outline-no:focus{box-shadow:0 0 0 .25rem rgba(209,37,38,.5)}
.btn-check:active+.btn-outline-no,.btn-check:checked+.btn-outline-no,.btn-outline-no.active,.btn-outline-no.dropdown-toggle.show,.btn-outline-no:active{color:#fff;background-color:#e00000;border-color:#e00000}
.btn-check:active+.btn-outline-no:focus,.btn-check:checked+.btn-outline-no:focus,.btn-outline-no.active:focus,.btn-outline-no.dropdown-toggle.show:focus,.btn-outline-no:active:focus{box-shadow:0 0 0 .25rem rgba(209,37,38,.5)}
.btn-outline-no.disabled,.btn-outline-no:disabled{color:#e00000;background-color:transparent}

/*RADIO BUTTON*/
ul.ks-rbuttontags {
    list-style: none;
    padding: 20px;
}
ul.ks-rbuttontags li{
    display: inline;
}
ul.ks-rbuttontags li label{
    display: inline-block;
    background-color: rgba(255, 255, 255, .9);
    border: 2px solid rgba(139, 139, 139, .3);
    color: #adadad;
    border-radius: 25px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}
ul.ks-rbuttontags li label {
    padding: 8px 12px;
    cursor: pointer;
}
ul.ks-rbuttontags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "○";
    transition: transform .3s ease-in-out;
}
ul.ks-rbuttontags li input[type="radio"]:checked + label::before {
    content: "✔";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
}
ul.ks-rbuttontags li input[type="radio"]:checked + label {
    border: 2px solid #942423;
    background-color: #d62128;
    color: #fff;
    transition: all .2s;
}
ul.ks-rbuttontags li input[type="radio"] {
    display: absolute;
}
ul.ks-rbuttontags li input[type="radio"] {
    position: absolute;
    opacity: 0;
}
ul.ks-rbuttontags li input[type="radio"]:focus + label {
    border: 2px solid #942423;
}