/* 
* BASIC STYLE
  - General Style    
  - Button Style      
      
* HEADER 
  - Header Style
  
* CONTANT
  - Banner Style
  - Typography css
  - Service Style
  - Gallery Css
  - Team Css
  - Testimonial Css
  - Blog Css
  - Process Css
  - Contact Form Css
  
* FOOTER/*



================================================
            Fonts - Futura  and Opensans
        ================================================
*/
html{
      scroll-behavior: smooth;
}

:root {
  --main-color: #c3a659;
}

/*
        ================================================
        Common CSS
        ================================================
*/
* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

/* colors */
.primary-color {
    color: var(--main-color);
}

.white-color {
    color: var(--main-color);
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

p {
    font-weight: 600;
    color: #1d1d1d;
}

.btn-primary {
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    position: relative;
    z-index: 0;
}

.btn-info {
    color: #fff;
    background-color: #303030;
    border-color: #303030;
}

.btn-info:hover {
    color: var(--main-color);
    background-color: #ffffff;
    border-color: var(--main-color);
}

.btn {
    position: relative;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    border-radius: 4px;
    border-width: 0;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    letter-spacing: -0.04em;
    overflow: hidden;
}

.btn-secondary {
    color: var(--main-color);
    background-color: white;
    border-color: #6c757d;
    font-size: 17px;
    border: 1px solid var(--main-color);
    padding: 0 30px;
    width: auto;
}

.btn-primary i {
    margin-left: 10px;
}

label {
    font-weight: 600;
}

.btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    background-color: #fff;
    height: 100%;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--main-color);
    border-color: #fff;
}

.btn-primary:focus {
    color: var(--main-color);
    background-color: #fff;
    border-color: #fff;
}

.custom-navbar .navbar-nav li a:hover,
.custom-navbar .navbar-nav li a.active,
.common-color {
    color: var(--main-color);
}

.common-back-color {
    background-color: var(--main-color);
}

/* Basic-stylesheet */
body {
    font-family: 'Poppins', sans-serif;
    color: #303030;
    font-weight: 400;
    position: relative;
}

ul {
    list-style: none;
}

a {
    color: #484848;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #303030;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}


/* Header-css */

/* Main Menu - Starts */
.logo {
    max-height: 80px;
}

.logo-text {
    text-transform: uppercase;
    display: inline-block;
    line-height: 30px;
    font-size: 30px;
    vertical-align: middle;
    padding-left: 10px;
}

.logo img {
    width: 165px;
}

.logo-text span {
    display: block;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

.navbar-nav li a {
    font-size: 20px;
    font-weight: 600;
    padding-left: 20px !important;
}

.navbar-nav li>a {
    padding: 34px 15px;
}

.navbar-nav li>a.active,
.navbar-nav li>a:hover {
    color: var(--main-color);
}

.navbar {
    padding: 0 0;
    float: right;
}

.dropdown-menu {
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .2);
    border-width: 0;
    border-radius: 0;
    padding: 0;
    margin-top: 25px;
}

.dropdown-menu .dropdown-item {
    padding: 10px 16px 8px;
    border-radius: 0;
    border-bottom-width: 1px;
    font-weight: 400;
    font-size: 14px;
    min-width: 200px;
    text-transform: unset;
    font-weight: 600;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--main-color);
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom-width: 0;
}

.dropdown:hover>.dropdown-menu {
    -webkit-animation: move-up .3s ease 1 forwards;
    -moz-animation: move-up .3s ease 1 forwards;
    -ms-animation: move-up .3s ease 1 forwards;
    -o-animation: move-up .3s ease 1 forwards;
    animation: move-up .3s ease 1 forwards;
}

/* select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
 }
select::-ms-expand {
    display: none;
} */
@-webkit-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-moz-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-ms-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@-o-keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

@keyframes move-up {
    0% {
        margin-top: 25px;
    }

    100% {
        margin-top: -5px;
    }
}

.fixed-header-menu {
    z-index: 7;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.fixed-header-menu .navbar-brand .logo {
    max-height: 60px;
}

.fixed-header-menu .navbar-brand .logo-text {
    font-size: 22px;
}

.main-header-menu {
    background-color: #fff;
    z-index: 999;
    padding: 8px 0;

}

.fixed-top {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

}

#resMenuCloseIcon {
    display: none;
}

.navbar-brand {
    padding-top: 10px;
    padding-bottom: 8px;
}

/* .fixed-header-menu .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
} */
.fixed-header-menu .navbar-nav li>a {
    padding: 10px 15px;
}

/* Main Menu - Ends */

/* .custom-navbar.sticky .back-effect{
        opacity: 1;
} */


/* Slider-start */
/*==========================  START HOME ============================*/

.home {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.home .home-image::before {
    background-color: rgb(0 0 0 / 5%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 1;
}

.home .home-detail {
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    left: 0;
    bottom: 0;
    height: 244px;
    text-align: center;
    padding: 0 70px;
    z-index: 1;
}

.home .home-title {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    line-height: 0px;
}

.home h2 {
    font-weight: 800;
    color: var(--main-color);
}


.wow {
    visibility: hidden;
}
.mobile_slider{
    display: none !important;
}
.web_slider{
    display: block;
}


/* Slider-end */

/* WHY US PART - IMAGES/PULSE/SERVICES */

.whyus {
    padding-bottom: 30px;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

.fitness,
.crossfit {
    padding: 0 0 2em 0;
    margin: 0;
    height: 100%;
    background: white;
}

.bodybuilding,
.cardio {
    padding: 0 0 2em 0;
    margin: 0;
    height: 100%;
    background: white;
}

.why-images {
    width: 100%;
    height: 50%;
    overflow: hidden;
    display: flex;
    transition: 0.5s;
    -webkit-justify-content: center;
}
.service_white{display: none;}
.why-images:hover .service_gold{
    display:none;
}
.why-images:hover .service_white{
    display:block;
}
.why-img {
    width: 130px;
    margin-top: 50px;
}

.whys {
    width: 100%;
    padding-top: 4%;
    text-align: center;
}

.whys p {
    color: #fff;
}

.whys h2 {
    font-size: 23px;
    color: #303030;
    font-weight: 900;
    text-transform: capitalize;
}


/* Why-us-end */




/* Process-start */

.choose {
    padding: 100px 0;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: center;
}

    .mobile_only{display: none;}
    .web_only{display: block;}
@media only screen and (max-width: 992px) {
    .choose {
        padding: 0px 10px;
        flex-wrap: wrap;
    }
    .service_feature{
    width: 33%;
    }
    .fitness,
    .cardio {

}

    service_feature {
        background: white !important;
    }
    .fitness .whys h2, .cardio .whys h2 {
    color: var(--main-color);
    }

    .bodybuilding .whys h2, .crossfit .whys h2 {
        color: var(--main-color) !important;
    }
    .mobile_only{display: block;}
    .web_only{display: none;}
    .whats_next_item{width: 100% !important;flex: 100% !important;}
}

.choose-left {
    width: 80%;
    margin-right: 60px;
    position: relative;
}

@media only screen and (max-width: 992px) {
    .choose-left {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

.choose-left::after {
    content: "";
    display: block;
    width: 70%;
    height: 75%;
    background: var(--main-color);
    position: absolute;
    right: -10%;
    top: -5%;
    z-index: 199;
    -webkit-clip-path: polygon(0 0, 100% 0, 61% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 61% 100%, 0% 100%);
}

.choose-left__img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 200;
    -webkit-clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
    overflow: hidden;
}

.choose-left__img img {
    object-position: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: scaleX(-1); */
}

.choose-right__title {
    margin-bottom: 60px;
    margin-left: 10px;
}
.choose-right__title.mobile{
        display:none;
    }
.choose-right__title p {
    font-weight: 600;
    color: #888;
}

.choose-right__title .line {
    width: 30px;
    height: 5px;
    background-color: var(--main-color);
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
    margin-left: 80px;
}

.choose-right__title .line:after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--main-color);
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    right: -30%;
    bottom: 0;
}
.seperator {
    width: 50px;
    height: 5px;
    background-color: var(--main-color);
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
    margin-bottom: 20px;
    margin: auto;
}

.seperator:after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--main-color);
    display: block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    right: -30%;
    bottom: 0;
}

.choose-right__title h3 {
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 900;
    line-height: 80px;
    padding-left: 80px;
}

.choose-right__item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.choose-right__item-icon {
    margin-right: 30px;
}

.choose-right__item-icon h2 {
    font-size: 25px;
    color: var(--main-color);
    border: 3px dotted var(--main-color);
    text-align: center;
    border-radius: 100px;
    height: 70px;
    width: 70px;
    line-height: 65px;
    transition: 0.5s linear;
}
.choose-right__item-icon h2:hover{
    
color: white;
    
background: var(--main-color);
    
border-color: white;
}

.choose-right__item-icon i {
    font-size: 18px;
    color: #232227;
    width: 80px;
    height: 80px;
    border: 2px solid #232227;
    text-align: center;
    line-height: 76px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: 300ms all;
    -webkit-transition: 300ms all;
    -moz-transition: 300ms all;
    -ms-transition: 300ms all;
    -o-transition: 300ms all;
}

.choose-right__item-icon i:hover {
    background-color: var(--main-color);
    color: #fff;
}

.choose-right__item-text p {
    color: #605f5f;
    text-transform: none;
}

.choose-right__item h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 800;
    color: #303030;
    width: 100%;
    display: inline-block;
}


/* Process-end */



/* Feature-section-start */
.feature-section {
    padding: 0px 0px 100px 0px;
}

.section-heading {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 35px !important;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-heading p {
    font-weight: 600;
}

.feature-block {
    text-align: center;
    padding: 30px;
    text-align: center;
    margin: 30px auto 0;
    background-color: #fff;
    box-shadow: 0 0px 3px #eee;
    -o-box-shadow: 0 0px 3px #eee;
    -webkit-box-shadow: 0 0px 3px #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.feature-block:hover {
    margin-top: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.feature-block h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #303030;
}

.feature-block i {
    font-size: 36px;
    width: 100px;
    background-color: #ffffff;
    height: 100px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-block;
    line-height: 100px;
    border: 2px solid var(--main-color);
    margin: 20px 0;
    color: var(--main-color);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    box-shadow: 0px 2px 0 var(--main-color);
    -o-box-shadow: 0px 2px 0 var(--main-color);
    -webkit-box-shadow: 0px 2px 0 var(--main-color);
}

.feature-block:hover i {
    background-color: var(--main-color);
    color: #fff;
}

.feature-block:hover h4 {
    color: var(--main-color);
}

.list-style li {
    list-style: none;
}


/* Feature-section-end */





/* Core-value-start */
.values-area {
    position: relative;
    background-color: var(--main-color);
    background-image: url(../images/dot.png);
    background-position: bottom 50px right 0px;
    background-repeat: no-repeat;
    padding: 100px 0px 100px 0px;
}

.values-area h2 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 100px;
}

.seperator span {
    display: inline-block;
    width: 100px;
    height: 5px;
    background: #fff;
}

.values-area h3 {
    font-size: 25px;
    font-weight: 700;
    margin-top: 20px;
}

.fitness-girl {
    overflow: hidden;
}

.values-area p {
    color: #fff;
    margin-top: 20px;
}

.value-items {
    border-radius: 20px;
    overflow: hidden;
}

.shadow-white {
    box-shadow: 0 0 7px 2px rgba(255, 255, 255, 0.3);
}

.value-item {
    padding: 40px 30px;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: #ececec;
    background-color: #f9f9ff;
}

.value-item .value-icon-box {
    font-size: 40px;
    color: #45303f;
}

.value-item .value-title {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #45303f;
}


/* Core-value-end */




/* Schdule-start */
/* Schedule - Starts */

.schdule {
    padding: 100px 0px 80px 0px;
}

.schedule-banner {
    background: url('../img/banners/calendar.jpg') no-repeat center center;
}

.st-day-container {
    display: inline-block;
    width: 150px;
    margin-right: 2px;
}

.st-header {
    padding: 12px 10px 10px;
    font-weight: 600;
    border-left: 4px solid var(--main-color);
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px !important;
}

.st-cell .st-timing {
    margin-bottom: 4px;
}

.st-timing,
.st-category {
    display: block;
}

.st-cell {
    margin-bottom: 20px;
    border: 2px dotted var(--main-color);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.st-timing {
    font-size: 14px;
}

.schedule-table-1,
.schedule-table-2 {
    text-align: center;
}

.schedule-table-1 .st-timing,
.schedule-table-1 .st-category {
    text-transform: uppercase;
}

.schedule-table-2 .st-cell,
.schedule-table-2 .st-header {
    border-radius: 3px;
}

.schedule-table-1 .st-category {
    font-size: 13px;
}

.schedule-table-2 .st-category {
    font-size: 13px;
    font-weight: 600;
    background-color: var(--main-color);
    color: #fff;
    padding: 2px 0px;
    border-radius: 40px;
}

.schedule-table-2 .st-img {
    max-height: 60px;
    margin-bottom: 6px;
    max-width: 60px;
}

.schedule-table-1 .st-cell {
    padding: 5px 5px 6px;
}

.schedule-table-2 .st-cell {
    padding: 10px 20px 8px;
}

.schedule-tabs .nav-tabs {
    border-bottom: none;
}

.schedule-tabs .nav-link {
    font-size: 14px;
    height: 36px;
    line-height: 32px;
    padding: 0 18px;
    border-width: 2px;
    border-style: solid;
    border-radius: 30px;
    margin-right: 10px;
}

.schedule-table {
    margin-top: 30px;
}

.schedule-table tbody td,
.schedule-table thead th {
    padding: 10px;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}

/* Schedule - Ends */



/* Gallery-start */
.gallery {
    padding-bottom: 100px;
}
    .mobile_before{display: none!important}


.gallery .gallery-item {
    position: relative!important;
    /* overflow: hidden; */
    flex-direction: row;
    flex-wrap: wrap;
    top: auto !important;
    align-items: center;
    justify-content: space-between;
}

.gallery-menu li {
    list-style: none;
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    margin: 2px 0;
}

.gallery-menu {
    margin: 50px 0 30px;
}

.gallery-menu li {
    padding: 6px 10px;
}

.gallery-menu li a {
    display: block;
    font-size: 14px;
    padding: 5px 10px;
    color: #303030;
    border-radius: 5px;
    border: 2px solid transparent;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}

.gallery-menu li a:hover {
    color: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 5px 10px;
    border-radius: 5px;
}

.gallery-menu li.active a {
    border-color: var(--main-color);
    color: var(--main-color);
    font-weight: 600;
    border: 2px solid var(--main-color);
    padding: 5px 10px;
    border-radius: 5px;
}

.gallery .gallery-item .overlay {
    width: 100%;
    height: 100%;
    display: block;
    background: 0 0;
    position: absolute;
    top: 0;
    color: #fff;
    text-align: center;
    line-height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.gallery .gallery-item:hover .overlay {
    background: rgb(241 180 69 / 50%);
}

.gallery .gallery-item .overlay i {
    top: 60%;
    margin-top: -15px;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    color: transparent;
    -webkit-transition: all .5s;
    transition: all .5s;
    transform: rotate(0deg);
}

.gallery .gallery-item:hover .overlay i {
    color: #fff;
    margin-top: -40px;
    transform: rotate(90deg);
}

/* Gallery-end */


/* Pricing-Start */
.pricing {
    
padding: 0px 0px 84px 0px;
    
background-color: white;
    
border-radius: 0px 0px 80% 0px;
}

.pricing .section-heading p {
    color: #fff;
}

.our-pricing h1 {
    font-size: 3em;
    color: #fff;
    margin: 2% 0 5% 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.card1 {
    margin-right: 0em;
}

.card {
    padding: 0;
    background: #fff;
    margin-bottom: 1em;
    border: none;
    /* box-shadow: 0 0 5px #3333; */
    /* border-radius: 1em; */
    overflow: hidden;
    text-align: center;
}

.comm-content {
    padding: 5% 2%;
    overflow: hidden;
}

.comm-content p {
    font-size: 17px;
    margin-bottom: 4px;
    display: flex;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-align: left;
}

.button {
    text-align: center;
    padding-bottom: 10%;
    width: 80%;
    margin: 0 auto;
}

.comm-img {
    height: 150px;
    margin: auto;
    display: block;
    margin-bottom: 14px;
}

.comm-content h1 {
    font-size: 26px;
    font-weight: 800;
    margin: 28px 0px;
    color: var(--main-color);
    text-align: center;
}

.tick {
    font-size: 26px;
    font-style: normal;
    margin-right: 1em;
    color: var(--main-color);
}


.community p {
    padding: 2% 0;
}

.getpack {
    width: 64%;
    height: 50px;
    background: #3535f0;
    color: #fff;
    border: 0;
    font-size: 1.5rem;
    position: absolute;
    bottom: 4%;
    outline: none;
    left: 50%;
    border-radius: 2em;
    margin-left: -32%;
}

.getpack:hover {
    background: #293274;
}

/* Pricing-End */




/* Team-start */

/* CLIENTS PART STARTS */

.trainer {
    padding: 100px 0px 84px 0px;
}

.our-clients {
    width: 100%;
    margin: auto;
}

.our-clients h1 {
    font-size: 3em;
    margin: 3% 0 8% 3%;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}


.clients {
    padding: 2% 3%;
    overflow: hidden;
    margin: 1em 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-between;
    align-items: center;
    justify-content: space-around;
    height: 400px;
}

.feedback {
    padding: 0 0 0 4%;
    overflow: hidden;
    top: 0;
    height: 250px;
    max-height: 250px;
}

.feedback p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 9px;
}

.identity {
    background: white;
    height: 140px;
    padding: 20px 15px;
    box-shadow: inset 0px 0px 3px 0px #9d979ad1;
    border-radius: 1em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    max-height: 140px;
}

.identity h5 {
    font-size: 18px;
    color: var(--main-color);
}

.identity h6 {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.client-img {
    width: auto;
    object-fit: cover;
    border-radius: 5px;
    height: 100px;
    max-width: 100px;
}


/* Team-end */


/* Testimonial-start */
.testimonial {
    padding: 40px 0px 100px 0px;
}

ul.testimonials-card {
    padding: 0;
    overflow: hidden;
}

ul.testimonials-card li {
    float: left;
    position: relative;
    width: 50%;
    list-style: none;
    text-align: center;
    padding: 30px;
    min-height: 360px;
}

ul.testimonials-card li:before,
ul.testimonials-card li:after {
    content: '';
    position: absolute;
}

ul.testimonials-card li:before {
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px dashed #ddd;
}

ul.testimonials-card li:last-child:after {
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: none;
}
ul.testimonials-card li:after {
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: 1px dashed #ddd;
}

ul.testimonials-card img {
    width: 70px;
    float: left;
    border-radius: 5px;
}

.testimonials-style {
    text-align: left;
    float: right;
    width: 80%;
}

ul.testimonials-card h4 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--main-color);
}

.testimonial-rating {
    margin-bottom: 10px;
}

.testimonial-rating i.fa {
    color: var(--main-color);
}

ul.testimonials-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #888;
}

/* Testimonials-end */



/* Blog-start */

.blog {
    padding: 0px 0px 70px 0px;
}

.event-news-individual-container {
    box-shadow: 0 0 5px #3333;
    display: inline-block;
    margin-bottom: 30px;
    border-right: 5px solid var(--main-color);
}

.event-news-img-container {
    position: relative;
}

.event-news-social.bottom-overlay {
    position: absolute;
    font-size: 13px;
    content: "";
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--main-color);
    width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    color: #fff;
}

.event-news-img-container {
    width: 40%;
    float: left;
}

.event-news-img-container img {
    height: 276px;
}

.event-news-desc {
    display: inline-block;
    width: 60%;
    padding: 20px;
    min-height: 188px;
}

.event-news-desc>h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: capitalize;
    text-align: left;
    color: var(--main-color);
}

.event-news-desc>p {
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.events-news-card {
    -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.05);
}

.events-news-card .event-news-img-container,
.events-news-card .event-news-desc {
    width: 100%;
}

.events-news-card .event-news-social>div {
    display: block;
    margin: 0;
}

.events-news-card .event-news-desc>h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
}

.events-news-card .event-news-desc>p {
    -webkit-line-clamp: 2;
}

.event-news-detail-info-icons li span {
    font-size: 13px;
    font-weight: 600;
    padding-left: 8px;
}

.event-news-detail-info-icons li {
    width: 100%;
}

.event-news-detail-info-icons li i {
    color: var(--main-color);
}

.event-news-detail-info-icons li {
    margin-bottom: 8px;
    font-weight: 600;
    color: #888;
}

.event-news-detail-info-icons {
    margin: 8px 0 0 0;
}

.event-news-footer a {
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}

.event-news-footer a i {
    padding-left: 6px;
}

.event-news-social div {
    padding: 9px 9px;
}

.events-news-outer-container .event-news-individual-container {
    border: none;
}

.event-news-individual-container:hover {
    box-shadow: 0 0 5px #3333;
}

.events-news-card .event-news-social.bottom-overlay {
    position: absolute;
    font-size: 13px;
    content: "";
    padding: 0;
    top: 0;
    right: 0;
    left: unset;
    width: unset;
    z-index: 1;
}

/* .event-news-individual-container:not(.events-news-card) { */
.event-news-individual-container {
    position: relative;
}

/* .event-news-individual-container:not(.events-news-card) .event-news-footer { */
.event-news-individual-container .event-news-footer {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

/* Blog-end */



/* Partners-start */
.partners {
}

.partners img {
    transition: 0.3s;
    opacity: .6;
    margin: 0 auto;
}

.partners img:hover {
    opacity: 1;
}

/* Partner-end */




/* Footer-start */
/*===============
21.  Footer
=================*/
.footer {
    background-color: transparent;
}

.footer--top {
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer .form-control {
    border-radius: 7px;
    border: 0;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.footer--top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .1;
}

.footer--bottom {
    padding: 20px 0;
    position: relative;
    background-color: black;
    border-radius: 0px;
}

.footer--bottom p {
    margin: 0;
    color: #fff;
}

.footer .cab-widget--title {
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 800;
}

.has-icon i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.has-icon {
    position: relative;
}

.footer .cab-aside--logo {
    justify-content: flex-start;
    background-color: transparent;
    text-align: left;
    padding: 0;
}

.footer .cab-aside--logo a {
    color: #fff;
}

.cab-widget {
    margin-bottom: 30px;
    display: flex;
    margin: auto;
    justify-content: center;
}

.footer .widget-social-media a {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 10px;
}

.footer .widget-social-media a:hover {
    color: #303030;
}

.footer ul {
    column-count: 2;
}

.footer ul li a {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 0 15px;
}

.footer ul li a:hover {
    color: var(--main-color);
}

/* Footer-end */



/* News Details - Starts */
.news-qoute {
    display: block;
    padding: 28px 28px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    border-left-width: 3px;
    border-left-style: solid;
    background-color: var(--main-color);
    color: #fff;
    border-left: 4px solid #000;
}

.blog-detail h1 {
    font-weight: 800;
    margin-top: 0px;
    color: var(--main-color);
}

.blog-detail h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.news-details h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: bold;
    margin: 0;
    word-wrap: break-word;
}

.news-details h2 {
    font-size: 18px;
    line-height: 1.25;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0;
    color: #999;
    margin: 12px 0;
}

.news-stats-list li {
    margin-left: 20px;
    font-size: 14px;
}

.news-stats-list li i {
    margin-right: 3px;
}

.news-stats .float-left {
    font-size: 14px;
}

.news-details p {
    font-size: 16px;
    line-height: 1.5;
}

.news-banner-img {
    margin: 20px 0;
}

.news-video {
    text-align: center;
}

.news-banner-img-2 {
    margin-bottom: 20px;
}

.news-author-details {
    padding-left: 20px;
}

.news-author-details h3 {
    font-weight: 600;
    font-size: 18px;
}

.news-author-details a {
    font-style: italic;
    font-size: 14px;
}

.news-author>div {
    display: table-cell;
    margin-top: 0;
    vertical-align: top;
}

.news-author img {
    width: 200px;
}

.news-author {
    margin-top: 30px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}

.news-author-details p {
    margin-bottom: 0;
    font-size: 15px;
}

.news-details-side .footer-column {
    padding-top: 0;
}

.news-details-side .footer-column h3 {
    margin-top: 0;
    background-color: #f2f2f2;
    border-left: 4px solid var(--main-color);
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer Section - Starts */
.footer-column h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0 30px 0;
}

.footer-column p {
    font-size: 14px;
}

.footer-bottom-container {
    height: 50px;
}

.footer-bottom-container .desc {
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: none;
}

.footer-social-menu li a {
    font-size: 18px;
}

.footer-social-menu li {
    margin-right: 15px;
}

.footer-about-links li i {
    padding-right: 6px;
}

.list-vertical-reset li i {
    padding-right: 10px;
}

.footer-column {
    padding: 30px 0;
}

.footer-about-links li,
.list-vertical-reset li {
    font-size: 14px;
    margin: 12px 0;
}

.footer-logo {
    margin: 10px 0 20px 0;
    display: inline-block;
}

.footer-news-img {
    max-width: 72px;
    width: 100%;
}

.footer-news-desc-container {
    padding-left: 10px;
}

.footer-news-img-container,
.footer-news-desc-container {
    display: table-cell;
    vertical-align: top;
}

.footer-news-desc-container h4 {
    font-size: 15px;
    font-weight: 600;
}

.footer-news-desc-container .footer-news-dates {
    font-size: 12px;
    font-weight: 600;
}

.footer-news-img-container {
    width: 72px;
}

.footer-news article {
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 15px;
}

/* Login-start */
.login-section {
    padding: 100px 0px;
}

.main-login {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 7px;
    background-color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.main-login h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
}

/*===============
4.  Tabs
=================*/

.nav-tabs {
    border-bottom: 0;
    margin-bottom: 30px;
    justify-content: center;
}

.nav-tabs .nav-link {
    position: relative;
    border-radius: 7px;
    color: var(--black);
    font-weight: 600;
    border: 0;
    margin: 0 5px;
}

.nav-tabs .nav-link:not(.active)::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    margin: 0 auto;
    height: 2px;
    border-bottom: 2px dashed #7abd72;
}

.nav-tabs .nav-link:hover {
    color: #7abd72;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #fff;
    background-color: var(--main-color);
}

/*===============
5.  Forms
=================*/
.has-icon {
    position: relative;
}

.has-icon i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.form-control {
    border-radius: 7px;
    background-color: #f2f2f2;
    border: 0;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.form-light .form-control {
    background-color: rgb(164, 191, 28, 0.5);
    border: 1px solid transparent;
    color: #6F8197;
}

.form-light .form-control:focus {
    background-color: rgb(164, 191, 28, 0.5);
    border-color: #7abd72;
    opacity: 1;
    color: #6F8197;
}

.form-control:focus {
    background-color: #444850;
    box-shadow: none;
    color: #fff;
}

.form-control:focus+i {
    color: #fff;
}

::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
    color: #6F8197;
    opacity: 1;
}

.custom-radio .custom-control-input:checked~.custom-control-label::before,
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #7abd72;
}

.custom-control-input:active~.custom-control-label::before {
    background-color: rgba(122, 190, 114, .2);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

/* Contact-start */
.get-in-touch {
    padding: 100px 0px;
}

.contact {
    padding: 0px 0px 100px 0px;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
    font-size: 13px;
    font-weight: 600;
}

.get-icon img {
    width: 50px;
}

.contact-details-container {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 20px;
    text-align: center;
    border-left: 4px solid var(--main-color);
}

.contact-details-container h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--main-color);
}

.gmap_canvas {
    height: 350px;
}

.contact-form {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    padding: 20px;
}

.contact-social-menu li {
    margin-right: 15px;
}

.list-inline li {
    float: left;
    list-style-type: none;
}

.contact-social-menu {
    display: inline-block;
    margin: 0;
}

/* Subheader-start */
.sub-subheader {
    position: relative;
    background-image: url('../images/address/address-back.jpg');
    background-size: cover;
    background-position: center;
    text-align: left;
    z-index: 0;
    padding: 200px 0px 100px 0px;
}

.sub-subheader::before {
    background-image: linear-gradient(270deg, #000000, #303030);
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    -webkit-transition: opacity 3s;
    -moz-transition: opacity 3s;
    -o-transition: opacity 3s;
    transition: opacity 3s;
    z-index: -2;
}

.sub-subheader:hover::before {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
}

.sub-subheader::after {
    background-image: -webkit-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: -moz-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: -ms-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: -o-linear-gradient(-180deg, #7abd72, var(--black));
    background-image: linear-gradient(270deg, #7abd72, var(--black));
    pointer-events: none;
    content: "";
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
    -webkit-transition: opacity 3s;
    -moz-transition: opacity 3s;
    -o-transition: opacity 3s;
    transition: opacity 3s;
    background-image: -webkit-linear-gradient(0deg, #7abd72, var(--black));
    background-image: -moz-linear-gradient(0deg, #7abd72, var(--black));
    background-image: -ms-linear-gradient(0deg, #7abd72, var(--black));
    background-image: -o-linear-gradient(0deg, #7abd72, var(--black));
    background-image: linear-gradient(90deg, #7abd72, var(--black));
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    z-index: -1;
}

.sub-subheader:hover::after {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
}

.sub-subheader--inner h1 {
    color: #fff;
    font-size: 48px;
    margin: 0;
    font-weight: 800;
}

.sub-subheader--inner .breadcrumbs {
    display: flex;
    justify-content: left;
    align-items: left;
}

.sub-subheader--inner .breadcrumbs li {
    color: #dcdcdc;
    font-weight: 600;
}

.sub-subheader--inner .breadcrumbs li a {
    color: #fff;
    position: relative;
    opacity: 1;
}

.sub-subheader--inner .breadcrumbs li a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
}

.sub-subheader--inner .breadcrumbs li a+span {
    padding: 0 10px;
    opacity: .4;
}

.sub-subheader--inner .breadcrumbs li a:hover::before {
    width: 100%;
}


.bodybuilding .whys p, .cardio .whys p {
    color: var(--main-color);
}

.footer .logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    max-height: initial;
    margin: auto;
    display: block;
}
.pricing h2 {
    color: #303030;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
}
.pricing h3 {
    color: #303030;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}



.gallery-items {
    position: relative;
    height: auto !important;
    display: flex;
    flex: 1 1 50%;
    flex-flow: row wrap;
    width: 70%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: auto;
    justify-content: center;
    align-items: center;
}
.tick{width: 25px;height: 25px;background-repeat: no-repeat;background-size: cover;background-position: center;display: inline-block;}

.whats_next {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.whats_next_item {
    flex: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    align-content: center;
    padding-bottom: 15px;
}

.whats_next .body h2 {
    font-size: 20px;
    text-align: center;
    color:var(--main-color);
}

.number {
    font-size: 50px;
    font-weight: 900;
    color: var(--main-color);
    border: 5px dotted var(--main-color);
    text-align: center;
    border-radius: 100px;
    height: 110px;
    width: 110px;
    line-height: 100px;
    margin-bottom: 40px;
}
.whats_next_item:nth-child(odd){ 
    background:white;
}

.whats_next_item:nth-child(even){ 
    background:var(--main-color);
}

.whats_next_item:nth-child(even) h2{ 
    color:white;
}

.whats_next_item:nth-child(even) .number{
    color:white;
    border: 5px dotted white;
}
@media (min-width: 1200px) {
    .container {
        max-width: 85%;
    }
}

.clients-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: flex-end;
}

.gallery-items img.img-fluid {
    overflow: hidden;
    width: 100%;
    box-sizing: revert;
}

.gallery-image {overflow: hidden;border-radius: 8px;}

.gallerys .owl-item {
    margin-bottom: 10px;
}
.owl-prev {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40%;
    margin-left: -45px;
    display: block !important;
    border: 1px solid var(--main-color) !important;
    background: white !important;
    border-radius: 50%;
    text-align: center;
}

.owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40%;
    right: -45px;
    display: block !important;
    border: 1px solid var(--main-color) !important;
    background: white !important;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    transition: 0.5s;
}
.owl-next:hover , .owl-prev:hover{background: var(--main-color) !important;}
.owl-next:hover i, .owl-prev:hover i {color: white;}
.home-inner .owl-prev i,.home-inner .owl-next i {width: 50px;color: var(--main-color);height: 50px;font-size: 45px;text-align: center;z-index: 99999;}
.owl-prev i, .owl-next i {width: 30px;color: var(--main-color);height: 30px;font-size: 30px;text-align: center;z-index: 99999;transition: 0.5s;}

.home-image img.img-fluid {
    object-fit: cover;
}

.price_image_container {
    display: flex;
    height: 200px;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
}

.card li {
    color: #444444;
    font-weight: 400;
    margin: 10px auto;
    text-align: center;
    border-top: 1px dashed #e4e6e7;
    line-height: 1.5;
    padding: 15px 0;
}
.card li:nth-child(odd) {color: #444444;}
.card.card1.single .comm-content {border-right: 1px solid #e3e6e7;}

h1.pricing_price {
    color: #444444;
    font-size: 24px;
}

h1.pricing_price span {color: var(--main-color);font-weight: bold;}

.pricing_container {
    box-shadow: 0 0 5px #3333;
    border-radius: 1em;
}

.trainer-data .real_img {
    height: 50px;
    max-height: 50px;
    overflow: hidden;
}

.real_img img {
    height: 40px;
    width: auto;
    border-radius: 5px;
    max-height: 40px;
    max-width: 80px;
    object-fit: cover;
}


.home-inner button.owl-next {
    right: 60px;
    background: transparent !important;
    height: 50px;
    width: 50px;
}
.home-inner button.owl-prev {
    left: 60px;
    background: transparent !important;
    height: 50px;
    width: 50px;
}


.home-inner .owl-prev i,.home-inner  .owl-next i {
    background: transparent;
}

.feedback h4 {
    color: var(--main-color);
    font-weight: bold;
}

h1.pricing_price span del {
    color: var(--main-color);
}

.couple .comm-content h1 {
}
.hide_feature:hover {
    
background: red;
}
.hide_feature {
    width: 35px;
    height: 35px;
    margin: auto;
    background-color: var(--main-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.service_feature {
    cursor: pointer;
}

img.feature_image {
    width: 110px;
    margin-bottom: !5px;
}

.feature_detail p {
    font-size: 18px;
    line-height: 35px;
}

.pricing_container .text_container ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    align-content: space-around;
}

.pricing_container .text_container img {
    width: 60px;
    margin-right: 10px;
}

.text_container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 0px 40px;
    margin-bottom: 21px;
}

.pricing_container .text_container li {
    flex: 30%;
    width: 30%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 18px;
    color: #444444;
}

.pricing_container img.white_image {
    display: none;
}

.pricing_container .text_container li:hover .gold_image{
    display:none;
}
.pricing_container .text_container li:hover .white_image{
display:block;
}

.btn-secondary:hover {
    background-color: var(--main-color);
    border-style: var(--main-color);
    border: 1px dashed;
}

a.whatsaapp_floating {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 50px;
    width: 60px;
    height: 60px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border-radius: 50%;
    color: white;
}

img.mobile_slider {display: none !important;}

img.web_slider {
    display: block;
}

.choose-right__item-text {
    width: 100%;
}

.pricing_price del {
    font-size: 90%;
}
.mobile_about_section{
    display:none;
}

.mobile_about_section h4 {
    text-align: center;
}
.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;}
.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em;}
.fa-tiktok:before{content:"\e07b";}
.fab{font-family:"Font Awesome 5 Brands";}
.fab{font-weight:400;}
/*! CSS Used fontfaces */
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/webfonts/fa-brands-400.eot);src:url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/webfonts/fa-brands-400.eot#iefix) format("embedded-opentype"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/webfonts/fa-brands-400.woff2) format("woff2"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/webfonts/fa-brands-400.woff) format("woff"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/webfonts/fa-brands-400.ttf) format("truetype"),url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/webfonts/fa-brands-400.svg#fontawesome) format("svg");}

.text_container li i {
    display: contents;
    text-transform: none;
    font-weight: 500;
    font-size: 85%;
    font-style: normal;
}

.text_container span.primary-color {
    margin-right: 5px;
}

i.primary {
    color: var(--main-color);
}

img.price_package {
    object-fit: contain;
    max-width: 100%;
}
.pricing .package_info{
    font-size: 30px;
    text-align: center;
    display: block;
    width: 100%;
    margin: 20px auto;
    color: var(--main-color);
    margin-bottom: 0px;
}

.single .button {
    width: 100%;
}

