        /*=============================*/
        /* copyrights 2021 - PR  */
        /*=============================*/
        /*Text font*/
        
        @import "../lib/font-icon/fontawesome/fontawesome-all.min.css";
        @import "../lib/font-icon/et-line/et-line-font.css";
        @import "../lib/font-icon/material-webfont/css/materialdesignicons.min.css";
        @import "../lib/pro-font/stylesheet.css";
        @import "../lib/montserrat/style.css";
        @import "../css/topNAV.css";
        @import "../lib/contacts/cotacts.css";
         ::selection {
            background: #555;
            color: #fff;
        }
        
        a:not([class*="btn"]):hover,
        a:not([class*="btn"]):focus {
            opacity: 1;
        }
        
         ::-moz-selection {
            background: #555;
            color: #fff;
        }
        
        body {
            background: #ffffff;
            padding: 0;
            margin: 0 auto;
            min-height: 100vh;
            font-family: "Barlow", "Nike Combat Stencil", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            color: #151515;
            -webkit-font-smoothing: antialiased;
        }
        
        body,
        .smooth-container {
            scroll-behavior: smooth;
        }
        
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .tb-list {
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-weight: 700;
        }
        
        article,
        aside,
        details,
        figcaption,
        footer,
        header,
        hgroup,
        nav,
        section {
            display: block;
        }
        
        .ms-main-container a {
            color: #ffffff;
            text-decoration: none;
            width: 63%;
            /* height: 110%; */
            display: block;
        }
        
        blockquote {
            padding: 10px 20px;
            color: #151515;
            font-size: 1.4em;
            font-style: italic;
            font-weight: 400;
            margin: 0 auto 30px;
        }
        
        ul {
            list-style-type: none;
            list-style: none;
            padding-left: 0 !important;
            -webkit-padding-start: initial !important;
            -moz-padding-start: initial;
        }
        
        menu,
        ol,
        ul {
            padding: 0 !important;
        }
        
        button {
            background: transparent;
            border: none;
        }
        
        button:focus {
            outline: none;
        }
        
        input,
        textarea {
            font-family: "Montserrat", "NS", Arial, Helvetica, sans-serif;
        }
        
        textarea {
            padding: 14px;
        }
        
        input:focus,
        textarea:focus {
            outline: none !important;
            border: 0px solid #ffffff;
            box-shadow: none;
        }
        
        input[type="submit"] {
            position: absolute;
            display: inline-block;
            left: 0;
            top: 0;
            opacity: 0;
            z-index: 3;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            cursor: pointer;
        }
        
        input[type="submit"]:focus {
            outline: none;
        }
        
        img {
            width: 100%;
        }
        /* 1.1 Typography */
        
        h1,
        h2,
        h4,
        h5,
        h6 {
            color: #151515;
            margin-top: 0;
            text-transform: uppercase;
        }
        
        p {
            font-size: calc(16px + 2 * (100vw - 992px) / 1508);
            line-height: 1.4em;
            font-weight: 400;
            font-family: "Barlow", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif, "Montserrat", "NS", Arial, Helvetica, sans-serif;
            color: #292e35;
        }
        
        #home {
            height: 100vh;
            margin: 0px;
        }
        
        body.noscroll {
            height: 100%;
            width: 100%;
            overflow: hidden;
        }
        /*---------loaderPage------*/
        
        #pre-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 999999;
        }
        
        #pre-loader .loader-section {
            position: fixed;
            top: 0;
            width: 51%;
            height: 100%;
            z-index: 1000;
            background: #1c233a;
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }
        
        #pre-loader .loader-section.section-left {
            left: 0;
        }
        
        #pre-loader .loader-section.section-right {
            right: 0;
        }
        
        #loader-logo {
            display: block;
            position: relative;
            left: 0px;
            top: 27vh;
            width: 100%;
            height: 39vh;
            background-repeat: no-repeat;
            background-position: center;
            background-image: url("../img/logo.svg");
            z-index: 1051;
            background-size: 320px;
        }
        
        .loaded #pre-loader .loader-section.section-left {
            -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
            transform: translateX(-100%);
            -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .loaded #pre-loader .loader-section.section-right {
            -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
            transform: translateX(100%);
            -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        }
        
        .loaded #loader-logo,
        .loaded #loader-circle {
            opacity: 0;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }
        
        .loaded #pre-loader {
            visibility: hidden;
            -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
            transform: translateY(-100%);
            -webkit-transition: all 0.3s 1s ease-out;
            transition: all 0.3s 1s ease-out;
        }
        
        .no-js #pre-loader {
            display: none;
        }
        
        .orngT {
            color: rgb(255, 65, 17);
        }
        
        .tiltlesPro h3 {
            color: #176aa1;
            font-size: 20px;
            margin-top: 10px;
            margin-bottom: 14px;
        }
        /*-----POWERZONE-------*/
        
        .header * {
            transition: all 0.1s linear;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            color: #fff;
            z-index: 1000;
            height: 110px;
            overflow: hidden;
            -webkit-transition: all 0.3s linear;
            -moz-transition: all 0.3s linear;
            transition: all 0.3s linear;
            text-align: center;
            z-index: 9999;
        }
        
        .header.shrink {
            height: 69px;
            line-height: 80px;
            background: rgb(0 0 0 / 62%);
            backdrop-filter: blur(5px);
        }
        
        .logoPz {
            background: url(../img/logo.svg) no-repeat center center;
            width: 240px;
            height: 100px;
            background-size: contain;
            margin-left: 2vw;
            display: block;
            position: absolute;
            left: 0px;
            top: 14px;
        }
        
        .header.shrink .logoPz {
            height: 47px;
            width: 150px;
            top: 9px;
        }
        
        .header.shrink .socialMedia {}
        
        .socialMedia {
            position: absolute;
            right: 50px;
            top: 20px;
        }
        
        .socialMedia ul {
            list-style: none;
            padding: 0px;
            margin: 0px;
            line-height: 1em;
        }
        
        .socialMedia li {
            display: inline-block;
        }
        
        .socialMedia li a {
            display: block;
            height: 30px;
            width: 30px;
            border: 1px solid #fff;
            border-radius: 40px;
            font-size: 15px;
            margin: 0px 5px;
            line-height: 28px;
        }
        
        .socialMedia li a:hover,
        .socialMedia li a:hover .socialMedia li a:focus {
            color: #ee4217;
            border: 1px solid #ee4217;
        }
        
        section.home {
            padding: 0px;
        }
        
        .captionsTXT {
            position: absolute;
            z-index: 1;
            width: 100%;
            height: 92px;
            bottom: 0px;
            background: rgba(6, 24, 39, 0.795);
            color: #fff;
            padding: 18px 50px;
            text-align: center;
            font-size: 29px;
            font-weight: 700;
            line-height: 30px;
            font-family: "Bebas Neue", "Barlow", "Nike Combat Stencil", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
        }
        /*------------Mouse---down------*/
        
        .mouse-down {
            width: 26px;
            height: 45px;
            border: 2px solid #ffffff;
            border-radius: 20px;
            position: absolute;
            z-index: 9;
            bottom: 99px;
            left: calc(50% - 13px);
            opacity: 0.8;
        }
        
        .bullet {
            width: 5px;
            height: 5px;
            background: #fe530e;
            margin: auto auto;
            border-radius: 8px;
            position: relative;
            -webkit-animation: scrollDownUp 3s infinite;
            animation: scrollDownUp 3s infinite;
        }
        /* Chrome, Safari, Opera */
        
        @-webkit-keyframes scrollDownUp {
            0% {
                top: 5px;
            }
            50% {
                top: 20px;
            }
            100% {
                top: 5px;
            }
        }
        /* Standard syntax */
        
        @keyframes scrollDownUp {
            0% {
                top: 5px;
            }
            50% {
                top: 20px;
            }
            100% {
                top: 5px;
            }
        }
        
        a.cd-scroll-down.cd-img-replace {
            width: 100%;
            display: block;
            height: 100%;
        }
        
        .bottomSliders {
            background: url(../img/slider-arts.svg) no-repeat bottom center;
            height: 15vh;
            z-index: 1;
            position: absolute;
            bottom: -2px;
            left: 0px;
            width: 100%;
            background-size: cover;
        }
        
        .bottomSliders3 {
            background: url(../img/slider-arts3.svg) no-repeat top center;
            height: 30vh;
            z-index: 1;
            position: absolute;
            top: -2px;
            left: 0px;
            width: 100%;
            background-size: contain;
        }
        
        .bottomSliders2 {
            background: url(../img/slider-arts2.svg) no-repeat bottom center;
            height: 30vh;
            z-index: 1;
            position: absolute;
            bottom: -2px;
            left: 0px;
            width: 100%;
            background-size: contain;
        }
        
        section.aboutUS {
            background-image: url(../img/rwheel.svg), url(../img/lwheel.svg);
            background-repeat: no-repeat;
            background-position: right bottom, left bottom;
            background-size: 10px;
            background-color: #e0e6ef;
            background-size: 8%, 10%;
        }
        
        .tiltles h1 {
            font-family: "Nike Combat Stencil", "Barlow", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 27px;
            font-weight: 400;
            color: #fc4807;
            padding-bottom: 2px;
            margin: 0px;
        }
        
        .tiltles h2 {
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #454874;
            padding-bottom: 2px;
            margin: 0px;
            max-width: 410px;
            line-height: 1em;
        }
        
        section.aboutUS p {
            margin-bottom: 10px;
        }
        
        .tiltles {
            margin-bottom: 10px;
        }
        
        .experienceIcon {
            margin-top: 30px;
        }
        
        .experienceIcon li {
            margin-bottom: 3px;
            font-size: 14px;
            font-family: "Barlow", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            color: #292e35;
            font-weight: 600;
            display: inline-block;
            margin-right: 20px;
            min-width: 250px;
        }
        
        .experienceIcon i {
            width: 40px;
            height: 40px;
            background-size: contain;
            padding: 2px;
            margin-right: 10px;
            display: inline-block;
            vertical-align: middle;
            background-position: center center;
            background-repeat: no-repeat;
        }
        
        .icon1 {
            background-image: url(../img/icon1.svg);
        }
        
        .icon2 {
            background-image: url(../img/icon2.svg);
        }
        
        .icon3 {
            background-image: url(../img/icon3.svg);
        }
        
        .icon4 {
            background-image: url(../img/icon4.svg);
        }
        
        .icon5 {
            background-image: url(../img/icon5.svg);
        }
        
        .icon6 {
            background-image: url(../img/icon6.svg);
        }
        
        .icon7 {
            background-image: url(../img/icon7.svg);
        }
        
        .icon8 {
            background-image: url(../img/icon8.svg);
        }
        
        img.leftIMG {
            position: relative;
            margin-top: -24%;
            max-width: 90%;
            align-items: center;
        }
        
        .textInnovation {
            background: url(../img/innovationTxt.svg) no-repeat center center;
            height: 500px;
            width: 60px;
            background-size: contain;
            position: absolute;
            left: 56px;
            top: 100px;
        }
        
        .tilte2A {
            clear: both;
            display: block;
            text-align: center;
            margin-bottom: 30px;
            color: #393c64;
            font-size: 34px;
            margin-top: 30px;
        }
        
        .box1x {
            padding: 40px;
            text-align: center;
            font-size: 15px;
        }
        
        .box1x img {
            width: 71%;
            margin: 0 auto;
        }
        
        .nitex {
            background: #211d39;
        }
        
        .logoPartnersPar img {
            width: 250px;
            margin-right: 10px;
            display: inline-block;
        }
        
        .logoPartnersPar h3 {
            color: #C2CCFF;
            display: inline-block;
            vertical-align: baseline;
            margin-bottom: 40px;
        }
        
        .nitex p {
            font-size: 16px;
            font-weight: 500;
            color: #D7E7FF;
            margin-bottom: 50px;
        }
        
        .nitex h3 {
            color: #D7E7FF;
        }
        
        img.parimgr {
            margin-top: -100px;
            margin-bottom: 30px;
            transform: scale(1);
            transition: all 0.2s linear;
        }
        
        img.parimgr:hover {
            transform: scale(1.1);
            transition: all 0.3s linear;
        }
        
        .nintex2 {
            background: url(../img/dotsbgs.png) no-repeat center center #C3DAEA;
            background-size: cover;
            min-height: 250px;
        }
        
        .nintxver {
            background: url(../img/nitxver.svg) no-repeat left center;
            height: 200px;
            width: 46px;
            background-size: contain;
            position: absolute;
            left: 10px;
            top: calc(50% - 100px);
        }
        
        .boxwx {
            background: url(../img/workflows.png) no-repeat right top #fff;
            border-radius: 8px;
            min-height: 240px;
            margin-top: -15%;
            box-shadow: 0px 28px 7px -20px rgb(0 0 0 / 30%);
            padding: 30px;
            border: 1px solid #fff;
            background-size: 40%;
        }
        
        .nitex,
        .nintex2 {
            overflow: visible;
            padding-bottom: 100px;
        }
        
        .boxwx h3 {
            max-width: 530px;
            margin: 0 auto;
            text-align: center;
            line-height: 1em;
            margin-bottom: 30px;
            color: #211D40;
            margin-top: 30px;
        }
        
        .boxninw {
            text-align: center;
            color: #211D40;
        }
        
        .boxninw img {
            margin: 0 auto;
            max-width: 250px;
            margin-bottom: 20px;
        }
        
        .automations {
            background: url(../img/automatonBG.jpg) no-repeat center center;
            background-size: cover;
        }
        
        .automations h3 {
            color: #35333e;
        }
        
        .autlist {
            list-style: none;
        }
        
        .autlist li {
            display: inline-block;
            width: 100%;
            vertical-align: baseline;
            font-size: 15px;
        }
        
        .autlist li::before {
            content: '';
            background: url(../img/automation-plus-logo.png) no-repeat center center;
            width: 25px;
            height: 25px;
            background-size: contain;
            display: inline-block;
            margin-right: 10px;
            vertical-align: middle;
            font-weight: 500;
        }
        
        .logosPAR .item {
            background: #fff;
            border-radius: 10px;
            margin: 0 auto;
            box-shadow: 1px 3px 4px rgb(0 0 0 / 20%);
            padding: 5px;
        }
        
        .logosPAR .owl-item {
            padding: 1px 10px 20px 1px;
        }
        
        @-webkit-keyframes rotateIt3 {
            0% {
                -webkit-transform: rotate(0);
                transform: rotate(0);
            }
            100% {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }
        
        @keyframes rotateIt3 {
            0% {
                -webkit-transform: rotate(0);
                transform: rotate(0);
            }
            100% {
                -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }
        
        @keyframes float-up {
            0% {
                transform: translatey(0) translateX(0px);
                filter: blur(0px);
            }
            50% {
                transform: translatey(-30px) translateX(-20px);
                filter: blur(1px);
            }
            to {
                transform: translatey(0) translateX(0px);
                filter: blur(0px);
            }
        }
        
        @keyframes float-down2 {
            0% {
                transform: translatey(0) scale(0.9);
            }
            50% {
                transform: translatey(15px) scale(1);
            }
            to {
                transform: translatey(0) scale(0.9);
            }
        }
        
        @keyframes float-down {
            0% {
                transform: translatey(0);
            }
            50% {
                transform: translatey(15px);
            }
            to {
                transform: translatey(0);
            }
        }
        
        @keyframes float-left {
            0% {
                transform: translatex(0);
            }
            50% {
                transform: translatex(-15px);
            }
            to {
                transform: translatex(0);
            }
        }
        
        @keyframes float-right {
            0% {
                transform: translatex(0);
            }
            50% {
                transform: translatex(15px);
            }
            to {
                transform: translatex(0);
            }
        }
        
        @keyframes float-top-left {
            0% {
                transform: translatex(0);
            }
            50% {
                transform: translatex(-15px) translateY(-15px);
            }
            to {
                transform: translatex(0);
            }
        }
        
        @keyframes float-top-right {
            0% {
                transform: translatex(0);
            }
            50% {
                transform: translatex(15px) translateY(-15px);
            }
            to {
                transform: translatex(0);
            }
        }
        
        @keyframes float-bottom-left {
            0% {
                transform: translatex(0);
            }
            50% {
                transform: translatex(-15px) translateY(-15px);
            }
            to {
                transform: translatex(0);
            }
        }
        
        @keyframes float-bottom-right {
            0% {
                transform: translatex(0);
            }
            50% {
                transform: translatex(-15px) translateY(15px);
            }
            to {
                transform: translatex(0);
            }
        }
        
        .float-up {
            animation: float-up 4s ease-in-out infinite;
        }
        
        .float-down {
            animation: float-down 4.3s ease-in-out infinite;
        }
        
        .float-left {
            animation: float-left 4.6s ease-in-out infinite;
        }
        
        .float-right {
            animation: float-right 4.9s ease-in-out infinite;
        }
        
        .float-top-left {
            animation: float-top-left 5.2s ease-in-out infinite;
        }
        
        .float-bottom-right {
            animation: float-bottom-right 5.5s ease-in-out infinite;
        }
        
        .float-bottom-left {
            animation: float-bottom-left 4.5s ease-in-out infinite;
        }
        
        .float-top-right {
            animation: float-top-right 4.2s ease-in-out infinite;
        }
        
        .pargraphs h3 {
            color: #fa5917;
            font-size: 28px;
            margin: 0px;
            padding: 0px;
            margin-bottom: 20px;
        }
        
        p.cops {
            font-size: 11px;
        }
        
        .bungeesuperfly {
            background: url(../img/bungee.png) no-repeat center center;
            width: 200px;
            height: 200px;
            background-size: contain;
            position: absolute;
            bottom: 12%;
            left: 40px;
        }
        
        .cardscons .slides a::after {
            width: 171px;
            height: 54px;
            content: "Read More → ";
            background: rgba(9, 33, 52, 0.6);
            position: absolute;
            left: -58px;
            top: 59px;
            border-radius: 0px 40px 0px 10px;
            line-height: 1em;
            text-align: center;
            font-weight: 400;
            font-size: 18px;
            padding: 14px 17px 15px 10px;
            color: #e3fcff;
            z-index: auto;
            transform: rotateZ(90deg);
            transition: all 0.1s linear;
        }
        
        .cardscons .slides a:hover::after {
            background: rgba(9, 33, 52, 0.7);
            color: #e3fcff;
            width: 100%;
            height: 100%;
            top: 0px;
            left: 0px;
            padding: 0px;
            transform: rotateZ(0);
            border-radius: 0px;
            line-height: 42vh;
            transition: all 0.1s linear;
        }
        
        .logos3 {
            list-style: none;
            padding: 0px;
            margin: 0px;
        }
        
        .logos3 li {
            display: inline-block;
            width: 230px;
            height: AUTO;
            margin-right: 20px;
        }
        
        .orange-black {
            background: url(../img/org-blk.svg) no-repeat center bottom;
            width: 100%;
            position: absolute;
            left: 0px;
            bottom: -2px;
            height: 100px;
            background-size: cover;
            z-index: 1;
        }
        
        .orange-black span {
            font-size: 30px;
            text-align: right;
            float: right;
            margin-top: 29px;
            color: #fff;
            margin-right: 22px;
            font-family: "Bebas Neue";
            font-weight: 700;
        }
        
        .gePro {
            background: url(../img/gpro-bg.jpg) no-repeat center center;
            background-size: cover;
        }
        
        .tiltlesPro {
            text-align: center;
            color: #fff;
        }
        
        .tiltlesPro .geprologo {
            background: url(../img/geproT.svg) no-repeat center center;
            width: 200px;
            height: 70px;
            background-size: contain;
            display: block;
            margin: 0 auto;
        }
        
        .tiltlesPro .ConsultationLog {
            background: url(../img/consltation.svg) no-repeat center center;
            width: 272px;
            height: 90px;
            background-size: contain;
            display: block;
            margin: 0 auto;
        }
        
        .tiltlesPro h1 {
            font-family: "Nike Combat Stencil", "Barlow", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 15px;
            font-weight: 300;
            color: #fc4807;
            padding-bottom: 2px;
            margin: 0px;
        }
        
        .tiltlesPro h2 {
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 29px;
            font-weight: 700;
            color: #e7ebf2;
            padding-bottom: 2px;
            margin: 0px;
        }
        
        img.imgrights {
            width: 80%;
            float: right;
            max-width: 430px;
        }
        
        .cont-app p {
            color: #9099a2;
            font-family: "Barlow", "Bebas Neue", "Nike Combat Stencil", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
        }
        
        .cont-app {
            margin-top: 6vh;
        }
        
        .special h3 {
            color: #fff;
            font-family: "Bebas Neue", "Nike Combat Stencil", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
        }
        
        img.imgPar {
            float: left;
            width: 113px;
            height: auto;
            margin-right: 18px;
            padding-bottom: 31px;
        }
        
        .special span {
            color: #fc4607;
            display: inline-block;
            background: url(../img/tail-heart.svg) no-repeat right 6px;
            width: 330px;
            background-size: 231px;
        }
        
        .list-card-mob li {
            display: inline-block;
            width: 130px;
            margin-right: 10px;
            text-align: center;
            border: 1px solid #fff;
            padding: 10px;
            border-radius: 20px;
            vertical-align: top;
            min-height: 200px;
            margin-bottom: 20px;
            color: #fff;
            font-family: "Barlow", "Bebas Neue", "Nike Combat Stencil", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 14px;
        }
        
        .avialbleapp .contacts {
            color: #fff;
            font-size: 15px;
            line-height: 24px;
            width: auto;
        }
        
        .avialbleapp .contacts:hover {
            color: #fc4607;
        }
        
        .list-card-mob li img {
            margin-bottom: 12px;
        }
        
        .special {
            margin-bottom: 20px;
            margin-top: 40px;
        }
        
        .sportMan2 {
            background: url(../img/sportMAN2.png) no-repeat center center;
            background-size: contain;
            width: 100%;
            height: 200px;
            display: block;
            z-index: 1;
            position: absolute;
            top: 42vh;
            right: -100px;
        }
        
        .spX {
            position: relative;
        }
        
        .avialbleapp span {
            display: inline-block;
            vertical-align: middle;
            color: #fff;
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-weight: 700;
            font-size: 25px;
            margin-right: 20px;
            margin-left: 20px;
        }
        
        .googlestore {
            background: url(../img/android.svg) no-repeat center center;
            width: 60px;
            height: 60px;
            background-size: cover;
        }
        
        .iosstore {
            background: url(../img/IOS.svg) no-repeat center center;
            width: 60px;
            height: 60px;
            background-size: cover;
        }
        
        .darkLine {
            background: url(../img/darkLine.svg) no-repeat bottom center;
            height: 80px;
            background-size: cover;
            display: block;
            position: absolute;
            bottom: -2px;
            width: 100%;
            left: 0px;
        }
        
        .consMan {
            background: url(../img/cons.png) no-repeat center center;
            background-size: cover;
        }
        
        .darlTXT h2 {
            color: #0f0f0f;
        }
        
        .tiltlesPro {
            margin: 0 auto;
        }
        
        .boxText {
            padding: 30px;
            text-align: center;
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            margin-top: 11vh;
            background: url(../img/man-side.png) no-repeat top left;
            background-size: contain;
            height: 280px;
        }
        
        .boxText h2 {
            font-size: 18px;
            font-weight: 600;
            color: #145c8e;
            padding-bottom: 2px;
            margin: 0px;
        }
        
        .boxText h3 {
            font-size: 26px;
            font-weight: 700;
            color: #1c1c1d;
            padding-bottom: 2px;
            margin: 0px;
        }
        
        .cardscons .slides {
            max-height: 510px;
            margin: 10px;
            border-radius: 13px;
            overflow: hidden;
            box-shadow: 1px 1px 9px rgb(0 0 0 / 30%);
        }
        
        .tiltlesPro.darlTXT {
            margin-bottom: 30px;
        }
        
        .consMan::after {
            position: absolute;
            width: 100%;
            height: 35%;
            background: #a1abaf;
            display: block;
            content: "";
            bottom: 0px;
        }
        
        div#counter {
            position: absolute;
            z-index: 2;
            text-align: right;
            margin-right: 40px;
            margin-top: 0px;
            font-size: 29px;
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-weight: 700;
            color: #545454;
            /* top: -32px; */
            width: 160px;
            right: 30px;
            bottom: -7px;
        }
        
        .cardscons.owl-carousel .owl-nav button.owl-prev {
            width: 50px;
            background: url(../img/lefts.svg) no-repeat center center;
            height: 15px;
            display: inline-block;
            background-size: contain;
        }
        
        .cardscons.owl-carousel .owl-nav button.owl-next {
            width: 50px;
            background: url(../img/rights.svg) no-repeat center center;
            height: 15px;
            display: inline-block;
            background-size: contain;
        }
        
        .cardscons.owl-carousel.owl-theme .owl-nav {
            margin-top: 50px;
            text-align: left;
            position: relative;
            font-size: 0;
        }
        
        .cardscons .owl-nav::after {
            border: 1px solid #59595a;
            content: "";
            width: 69%;
            position: absolute;
            top: 11px;
        }
        
        .FBque {
            background: url(../img/club.jpg) no-repeat center top;
            background-size: cover;
        }
        
        .topBTQ {
            background: url(../img/bg-btq.svg) no-repeat top center;
            position: absolute;
            top: -2px;
            width: 100%;
            height: 90px;
            left: 0px;
            background-size: cover;
        }
        
        .orangeBTQ {
            background: url(../img/ornage-dn.svg) no-repeat center bottom;
            position: absolute;
            bottom: 0px;
            left: 0px;
            width: 100%;
            height: 100px;
            background-size: cover;
        }
        
        .partners {
            background: rgb(252, 91, 24);
            background: -moz-linear-gradient( 180deg, rgba(252, 91, 24, 1) 29%, rgba(224, 56, 7, 1) 100%);
            background: -webkit-linear-gradient( 180deg, rgba(252, 91, 24, 1) 29%, rgba(224, 56, 7, 1) 100%);
            background: linear-gradient( 180deg, rgba(252, 91, 24, 1) 29%, rgba(224, 56, 7, 1) 100%);
            filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#fc5b18", endColorstr="#e03807", GradientType=1);
            padding-top: 50px;
            min-height: auto;
            padding-bottom: 30px;
        }
        
        .partners::after {
            background: url(../img/dots-right.png) no-repeat right center;
            position: absolute;
            right: 0px;
            height: 100%;
            width: 160px;
            background-size: contain;
            z-index: 0;
            content: "";
            top: -20px;
        }
        
        .partners::before {
            background: url(../img/dotsleft.png) no-repeat left center;
            position: absolute;
            left: 0px;
            height: 100%;
            width: 160px;
            background-size: contain;
            z-index: 0;
            content: "";
            top: -20px;
        }
        
        .footer {
            background: url(../img/footers.jpg) no-repeat top center;
            background-size: cover;
            padding-bottom: 30px;
        }
        
        .topOrange {
            background: url(../img/ornage-dn2.svg) no-repeat top center;
            height: 100px;
            width: 100%;
            position: absolute;
            left: 0px;
            top: 0px;
            background-size: cover;
        }
        
        .logosPAR {
            margin-top: 40px;
        }
        
        img.btqlog {
            width: 250px;
            margin: 0 auto;
        }
        
        .pargraphs p {
            color: #fff;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        
        .pargraphs span {
            color: #fc5b18;
        }
        
        .circles {
            background: url(../img/circlesW.svg) no-repeat center center;
            width: 50vw;
            height: 50vw;
            margin: 0 auto;
            border-radius: 100%;
            border: 2px solid #fff;
            max-width: 500px;
            max-height: 500px;
            position: relative;
            margin-top: 6%;
            margin-bottom: 14%;
            background-size: contain;
        }
        
        .bigcrcles {
            position: absolute;
            width: 90%;
            height: 90%;
            border-radius: 100%;
            left: 5%;
            top: 5%;
            overflow: hidden;
        }
        
        .circles span {
            color: #fff;
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 22px;
            display: block;
            margin: 0 auto;
            width: 100%;
            text-align: center;
            white-space: nowrap;
        }
        
        .circles .tabs-nav li {
            width: 100px;
            height: 100px;
            position: absolute;
            filter: grayscale(7) brightness(1.5);
            transition: all 0.2s linear;
            transform: scale(0.8);
        }
        
        .circles .tabs-nav li:nth-child(1) {
            top: 100%;
            left: 15%;
        }
        
        .circles .tabs-nav li:nth-child(2) {
            top: 78%;
            left: -21%;
        }
        
        .circles .tabs-nav li:nth-child(3) {
            top: 40%;
            left: -28%;
        }
        
        .circles .tabs-nav li:nth-child(4) {
            top: 1%;
            left: -21%;
        }
        
        .circles .tabs-nav li:nth-child(5) {
            top: -25%;
            left: 15%;
        }
        
        .circles .tabs-nav li:nth-child(6) {
            top: 100%;
            right: 15%;
        }
        
        .circles .tabs-nav li:nth-child(7) {
            top: 78%;
            right: -21%;
        }
        
        .circles .tabs-nav li:nth-child(8) {
            top: 40%;
            right: -28%;
        }
        
        .circles .tabs-nav li:nth-child(9) {
            top: 1%;
            right: -21%;
        }
        
        .circles .tabs-nav li:nth-child(10) {
            top: -25%;
            right: 15%;
        }
        
        .circles .tabs-nav li:hover {
            filter: none;
            cursor: pointer;
            color: #ff5722;
            transition: all 0.2s linear;
            transform: scale(0.9);
        }
        
        footer {
            overflow: visible;
            color: #fff;
        }
        
        footer * {
            overflow: visible;
            color: #fff;
            font-family: "Barlow", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif, "Montserrat", "NS", Arial, Helvetica, sans-serif;
        }
        
        .manfooters {
            background: url(../img/man-sports2.png) no-repeat center center;
            background-size: contain;
            width: 280px;
            height: 178px;
            display: block;
            position: absolute;
            left: calc(50% - 140px);
            top: -99px;
            z-index: 3;
        }
        
        .centralText {
            background: url(../img/power-center-text.svg) no-repeat center center;
            background-size: cover;
            transform: scale(0.9);
            margin-top: 150px;
        }
        
        .tabs-nav {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .tabs-nav a {
            display: block;
        }
        
        .tabs-stage {
            border-top: 0;
            clear: both;
            position: relative;
            top: -1px;
            width: 100%;
            height: 100%;
            left: 0px;
            padding: 40px;
        }
        
        .tabs-stage p {
            color: #fff;
        }
        
        .circles .tabs-nav li.tab-active,
        .circles .tabs-nav li.tab-active span {
            filter: none;
            color: #ff5722;
        }
        
        .bigcrcles .smallX {
            overflow: hidden;
            /* width: 0px; */
            /* height: 0px; */
            transition: all 0.2s linear;
            transform: scale(0);
            visibility: hidden;
        }
        
        .bigcrcles div {
            height: 84%;
            width: 84%;
            position: absolute;
            transform: scale(1);
            transition: all 0.3s linear;
            visibility: visible;
        }
        
        ul.socialsIcon li {
            display: inline-block;
            margin: 1px 15px;
            font-size: 20px;
        }
        
        ul.socialsIcon li a {
            display: block;
        }
        
        ul.socialsIcon li a i {
            color: #bbbbbb;
        }
        
        .logoFoters img,
        .sectionLogo img {
            max-width: 120px;
        }
        
        .sectionLogo ul li {
            margin-bottom: 10px;
            margin-top: 5px;
            line-height: 2em;
        }
        
        .sectionLogo ul li a {
            display: block;
        }
        
        .sectionLogo ul li a:hover,
        ul.socialsIcon li a:hover i {
            color: #ff5722;
        }
        
        .sectionLogo ul li::before {
            content: "-";
            display: block;
            float: left;
            margin-right: 10px;
        }
        
        .symbols-pulse>div {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }
        
        .symbols-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 0;
            opacity: 0.5;
            background: url(../img/line-text.svg) no-repeat center center;
            background-size: cover;
            width: 103%;
            height: 103%;
        }
        
        .symbols-pulse>div {
            width: 24rem;
            height: 24rem;
            border-radius: 100%;
            background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(227, 221, 246, 0.1)), color-stop(65%, rgba(227, 221, 246, 0.2)), to(rgba(227, 221, 246, 0.1)));
            background-image: -webkit-linear-gradient( top, rgba(227, 221, 246, 0.1) 0, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
            background-image: -o-linear-gradient( top, rgba(227, 221, 246, 0.1) 0, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
            background-image: linear-gradient( -180deg, rgb(227 221 246 / 2%) 0, rgb(227 221 246 / 16%) 65%, rgb(227 221 246 / 3%) 100%);
            z-index: -1;
        }
        
        .symbols-pulse .pulse-1 {
            -webkit-transform: translate(-50%, -50%) scale(0.67);
            -ms-transform: translate(-50%, -50%) scale(0.67);
            transform: translate(-50%, -50%) scale(0.67);
        }
        
        .symbols-pulse .pulse-2 {
            -webkit-transform: translate(-50%, -50%) scale(1.05);
            -ms-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
        }
        
        .symbols-pulse .pulse-3 {
            -webkit-transform: translate(-50%, -50%) scale(1.63);
            -ms-transform: translate(-50%, -50%) scale(1.63);
            transform: translate(-50%, -50%) scale(1.63);
        }
        
        .symbols-pulse .pulse-4 {
            -webkit-transform: translate(-50%, -50%) scale(2.1);
            -ms-transform: translate(-50%, -50%) scale(2.1);
            transform: translate(-50%, -50%) scale(2.1);
        }
        
        .symbols-pulse .pulse-x {
            will-change: transform;
            -webkit-animation: pulsate 3s infinite;
            animation: pulsate 3s infinite;
        }
        
        @-webkit-keyframes pulsate {
            0% {
                opacity: 1;
                -webkit-transform: translate(-50%, -50%) scale(0.5);
                transform: translate(-50%, -50%) scale(0.5);
            }
            to {
                opacity: 0;
                -webkit-transform: translate(-50%, -50%) scale(3);
                transform: translate(-50%, -50%) scale(3);
            }
        }
        
        @keyframes pulsate {
            0% {
                opacity: 1;
                -webkit-transform: translate(-50%, -50%) scale(0.5);
                transform: translate(-50%, -50%) scale(0.5);
            }
            to {
                opacity: 0;
                -webkit-transform: translate(-50%, -50%) scale(3);
                transform: translate(-50%, -50%) scale(3);
            }
        }
        
        .textsideleft {
            background: url(../img/expoler-text.svg) no-repeat center center;
            position: absolute;
            left: 20px;
            height: 300px;
            width: 37px;
            background-size: cover;
            top: calc(50% - 160px);
        }
        
        .slide__title h1 {
            color: #fff;
            font-size: 50px;
            font-weight: 900;
            /* max-width: 800px; */
            line-height: 1em;
        }
        
        .slide__title h4 {
            color: #ff4805;
            font-size: 20px;
            margin-bottom: 21px;
        }
        
        .slide__title p {
            font-size: 18px;
            color: #ffffff;
            font-weight: 300;
            margin: 0 auto;
        }
        
        .slide__content {}
        
        video#videoBG {
            position: absolute;
            z-index: 0;
            opacity: 0.3;
            /* background-blend-mode: color-burn; */
            backdrop-filter: blur(43px);
            /* filter: blur(7px); */
        }
        
        .linesB::before {
            content: "";
            background: url(../img/toplines.svg) no-repeat top center;
            width: 30px;
            height: 170px;
            position: absolute;
            display: block;
            top: -160px;
            right: -4px;
        }
        
        .linesB::after {
            content: "";
            background: url(../img/bottomlines.svg) no-repeat center center;
            width: 30px;
            height: 170px;
            position: absolute;
            display: block;
            bottom: -150px;
            right: -4px;
        }
        
        .no-touch #cd-vertical-nav a.is-selected .cd-dot {
            background-color: #e55c27;
        }
        
        .no-touch #cd-vertical-nav {
            right: 32px;
        }
        /*         
        .no-touch #cd-vertical-nav .appsicons span.cd-dot {
            background: url(../img/nav1.svg) no-repeat center center rgba(0, 0, 0, 0.5);
            border: 2px solid #fff;
            background-size: 80%;
            width: 50px;
            height: 50px;
            filter: grayscale(1) brightness(6);
            opacity: 0.6;
        }
        
        .no-touch #cd-vertical-nav .consltIcon span.cd-dot {
            background: url(../img/nav3.svg) no-repeat center center rgba(0, 0, 0, 0.5);
            border: 2px solid #fff;
            background-size: 80%;
            width: 50px;
            height: 50px;
            filter: grayscale(1) brightness(6);
            opacity: 0.6;
        }
        
        .no-touch #cd-vertical-nav .fitBTQicon span.cd-dot {
            background: url(../img/nav4.svg) no-repeat center center rgba(0, 0, 0, 0.5);
            border: 2px solid #fff;
            background-size: 80%;
            width: 50px;
            height: 50px;
            filter: grayscale(1) brightness(6);
            opacity: 0.6;
        } */
        
        .no-touch #cd-vertical-nav .cd-dot {
            height: 22px;
            width: 22px;
            background-color: #7d889d;
        }
        
        .no-touch #cd-vertical-nav {
            z-index: 6;
        }
        
        img.flags {
            max-width: 380px;
            margin: 0 auto;
            margin-top: 30px;
        }
        
        .logoFoters img {
            width: 230px !important;
            max-width: 183px;
            margin: 0 auto;
            margin-bottom: 20px;
        }
        
        .logoFoters {
            text-align: center;
        }
        
        ul.contactFitnes {
            position: absolute;
            width: 100%;
            top: 4%;
            text-align: center;
            z-index: 3;
        }
        
        .contactFitnes li {
            display: inline-block;
        }
        
        .contactFitnes li:nth-child(1) {
            position: relative;
            top: 10px;
        }
        
        .contactFitnes li:nth-child(2) {}
        
        .contactFitnes li:nth-child(3) {
            position: relative;
            top: 10px;
        }
        
        .contactFitnes li a {
            color: #fff;
            font-size: 20px;
            display: block;
            margin: 10px 20px;
        }
        
        .contactFitnes li a i {
            font-size: 30px;
        }
        
        p.textSpecal {
            font-weight: 600;
        }
        
        .textabout li {
            font-size: 15px;
            font-weight: 500;
        }
        
        .selcCard {
            background: #dfe0e0;
            border-radius: 30px;
            line-height: 2em;
            color: #2a3337;
            font-size: 18px !important;
            max-width: 270px;
            margin: 0 auto;
            margin-top: 30px;
        }
        
        .selcCard option {
            font-size: 16px;
            font-family: "Montserrat", Arial, Helvetica, sans-serif;
            text-align: center;
        }
        
        .contacts {
            color: #fff;
            border: 2px solid #ccc;
            padding: 3px 31px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 500;
            text-transform: capitalize;
            white-space: nowrap;
            clear: both;
            display: inline-block;
            margin: 0 auto;
            margin-top: 19px;
            width: 180px;
            text-align: center;
        }
        /*--------modal------*/
        
        .page-wrapperX {
            width: 100%;
            height: 100%;
            background: red;
            background-size: cover;
        }
        
        .blur-it {
            filter: blur(4px);
        }
        
        .modal-wrapper a.btn {
            width: 200px;
            padding: 18px 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: "Montserrat", Arial, Helvetica, sans-serif;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            color: #fff;
            border-radius: 0;
            background: #e2525c;
        }
        
        .modal-wrapper {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.8);
            visibility: hidden;
            opacity: 0;
            transition: all 0.25s ease-in-out;
            z-index: 99999;
        }
        
        .modal-wrapper.open {
            opacity: 1;
            visibility: visible;
        }
        
        .modal.cX {
            max-width: 600px;
            height: 562px;
            display: block;
            margin: 50% 0 0 -300px;
            position: relative;
            top: 50%;
            left: 50%;
            background: url(../img/modal.jpg) no-repeat center center #fff;
            background-size: cover;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            border-radius: 20px;
        }
        
        .modal-wrapper.open .modal {
            margin-top: -308px;
            opacity: 1;
        }
        
        .head {
            width: 100%;
            height: 52px;
            padding: 12px 30px;
            overflow: hidden;
        }
        
        .btn-close {
            font-size: 0;
            display: block;
            color: #ff3911;
            width: 30px;
            height: 30px;
            display: block;
            background: url(../img/closeModal.svg) no-repeat center center #222222;
            background-size: 20px;
            position: absolute;
            right: 11px;
            border-radius: 30px;
            top: 11px;
        }
        
        .btn-close:hover {
            background: url(../img/closeModal.svg) no-repeat center center #ff3911;
            background-size: 20px;
        }
        
        .modal-wrapper .content {
            padding: 0px;
        }
        
        .good-job {
            text-align: center;
            font-family: "Montserrat", Arial, Helvetica, sans-serif;
            color: #e2525c;
        }
        
        .good-job .fa-thumbs-o-up {
            font-size: 60px;
        }
        
        .good-job h1 {
            font-size: 45px;
        }
        
        .head h2 {
            text-align: center;
            color: #31313e;
        }
        
        .noscrolls {
            overflow: hidden;
        }
        
        .modalBlack .modal-dialog {
            position: absolute;
            top: 0px;
            height: 100vh;
            max-height: 100vh;
            max-width: 80vw;
            right: 0px;
            margin: 0px;
        }
        
        .modalBlack .modal-dialog .modal-content {
            /* background: #080808; */
            height: 100vh;
            transform: translateX(101%);
            transition: all 0.2s cubic-bezier(0, 0, 0.32, 0.9);
            background-color: #fff;
            background-size: 35%;
            background-repeat: no-repeat;
            background-position: left bottom;
        }
        
        .show.modalBlack .modal-dialog .modal-content {
            transform: translateX(0);
            transition: all 0.2s cubic-bezier(0, 0, 0.32, 0.9);
        }
        
        .modalBlack .close {
            width: 30px;
            height: 30px;
            left: 7px;
            right: auto;
            font-size: 0px;
            float: none;
            position: absolute;
            top: 7px;
            background: url(../img/closeModal.svg) no-repeat center center #ff3911;
            background-size: 20px;
            border-radius: 30px;
            opacity: 1;
        }
        
        .sidephoto {
            position: absolute;
            right: 0px;
            height: 100%;
            width: 23%;
            background-repeat: no-repeat;
            top: 0px;
            background-position: center top;
            background-size: cover;
        }
        
        .contX {
            padding-right: 22%;
            padding-top: 10px;
            padding-bottom: 20px;
        }
        
        .contX h1 {
            font-family: "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
            font-size: 46px;
            position: relative;
        }
        
        .cardscons a {
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .linesBTN {
            margin: 0 auto;
            width: 140px;
            display: block;
            background: #fc4909;
            padding: 10px 17px;
            text-align: center;
            border: 0px;
            border-radius: 40px;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            color: #fff !important;
            margin-bottom: 60px;
        }
        
        .slide__content a.btn {
            background: #ff4904;
            border-radius: 40px;
            min-width: 150px;
            text-transform: uppercase;
            margin-top: 7%;
            cursor: pointer;
            transition: all 0.2s linear;
            border: 1px solid rgba(255, 71, 4, 0);
        }
        
        .slide__content a.btn:hover,
        .slide__content a.btn:focus {
            border: 1px solid #ff4904;
            background: transparent;
        }
        
        .slide__content.leftTexts {
            position: absolute;
            left: 2vw;
        }
        
        a.findUS {
            margin: 0 auto;
            display: block;
            width: 150px;
            text-align: center;
            color: #fc4a08;
            font-size: 17px;
        }
        
        .pargraphs {
            text-align: center;
        }
        
        .pargraphs a {
            color: #ffffff;
            display: inline-block;
            width: 170px;
            font-size: 17px;
            border: 1px solid #ffffff;
            margin: 2px 10px;
            border-radius: 30px;
            padding: 4px 10px;
            cursor: pointer;
        }
        
        .pargraphs a i {
            font-size: 20px;
            margin-right: 4px;
        }
        
        .pargraphs a:hover,
        .pargraphs a:focus {
            color: #fc4a08;
            border: 1px solid #fc4a08;
        }
        
        .bluecolor {
            color: #fc4a08;
            font-size: 20px;
            display: block;
            margin-bottom: 20px;
            margin-top: 10px;
        }
        
        img.nameLogo {
            width: 210px;
            margin: 0 auto;
        }
        
        img.logoBanners {
            width: 40%;
            margin: 0 auto;
            min-width: 190px;
        }
        
        .cosTcolor span.bluecolor {
            color: #0a85d6;
            margin-top: -5px;
            font-size: 21px;
        }
        
        .slide__content .cosTcolor a.btn {
            background: #0a85d6;
        }
        /*-----video-----*/
        
        .mm-product-video-modal-container {
            position: fixed;
            top: 0px;
            left: 0px;
            z-index: 10000;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            overflow: scroll;
        }
        
        .mm-product-video-modal-container.open {
            display: block;
        }
        
        .mm-product-video-modal-close:hover {
            cursor: pointer;
        }
        
        .mm-product-video-modal-close {
            color: #fff;
            position: fixed;
            z-index: 1000000000;
            top: 20px;
            right: 20px;
            font-size: 40px;
        }
        
        .mm-product-video-modal {
            width: 60%;
            max-height: 800px;
            overflow: scroll;
            position: relative;
            top: -1000px;
            text-align: left;
            border-radius: 4px;
        }
        
        .mm-product-video-modal.open {
            top: 150px;
            margin-bottom: 150px;
        }
        
        .mm-video-overlay {
            position: fixed;
            top: 0px;
            left: 0px;
            background: transparent;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .mm-launch-container {
            margin-top: 100px;
        }
        
        .mm-launch {
            background: url(../img/video.svg) no-repeat center center;
            border: none;
            font-weight: 300;
            width: 100px;
            height: 100px;
            font-size: 0px;
            position: absolute;
            right: 17vw;
            z-index: 9;
        }
        
        .mm-launch-container p {
            text-align: justify;
            font-size: 16px;
            font-weight: 300;
            margin-bottom: 30px;
        }
        
        .mm-launch-container h2 {
            font-size: 50px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        
        .dropper {
            transition: top 0.5s ease-in-out;
        }
        
        .geprotitles {
            width: 100px;
            height: auto;
            margin: 0 auto;
            margin-bottom: 34px;
        }
        
        .slide__content {
            position: relative;
            z-index: 1;
        }
        
        a.contactsBTN {
            background: #ff4b12;
            height: auto;
            display: block;
            width: 170px;
            text-align: center;
            color: #fff;
            font-weight: 700;
            position: absolute;
            bottom: 160px;
            right: 50px;
            border-radius: 30px;
            padding: 5px 10px;
        }
        
        .scrollM2 {
            padding-right: 20px;
        }
        
        a.arrowmore {
            font-size: 13px;
            font-weight: 500;
            margin: 20px 0px 0px 0px;
            color: #292e35!important;
            border: #292e35 2px solid;
            padding: 5px 20px;
            border-radius: 40px;
            display: inline-block;
            cursor: pointer;
        }
        /*-------contactsUs-----*/
        
        form#contactForm {
            padding: 20px;
        }
        
        #contactForm .form-control {
            background: #fff;
            border-radius: 6px;
            border: 1px solid #a7a2a2;
            border-left: 3px solid #f95816;
            border-right: 3px solid #f95816;
        }
        
        .help-block.with-errors {
            color: #f44336;
            font-weight: 600;
            font-size: 14px;
        }
        
        .btn.solid-btn-dark {
            background: #ff3d00;
            border-radius: 50px;
            width: 200px;
            margin: 0 auto;
            display: block;
            color: #fff;
        }
        
        .btn.solid-btn-dark.disabled {
            background: #1a1a1a;
            color: #fff;
        }
        
        div#msgSubmit {
            margin-top: 20px;
        }
        /*----------7-oct------*/
        
        .slide__title h2 {
            color: #fde8c8;
            font-size: 52px;
            line-height: 49px;
        }
        
        .cont-app a {
            color: #ffffff!important;
            display: inline-block;
            width: 170px;
            font-size: 14px;
            border: 1px solid #ffffff;
            margin: 2px 10px;
            border-radius: 30px;
            padding: 4px 10px;
            cursor: pointer;
            text-align: center;
        }
        
        img.imgparg {
            display: inline-block;
            width: 36px;
            height: auto;
            margin-bottom: 1px;
            z-index: 2;
            /* background: #e5e5e5; */
            /* border-radius: 50px; */
        }
        
        b.bspicl {
            color: #3b4e68;
            font-weight: 600;
            font-size: 16px;
            display: block;
            margin-top: 25px;
            background: #ffffff;
            border-radius: 6px;
            padding: 18px 0px 20px 0px;
            width: 80%;
        }
        
        .boxW {
            border: 1px solid #fff;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 8px 21px 1px rgba(0, 0, 0, 0.2);
            height: 100%;
            margin-bottom: 20px;
        }
        
        .boxW img {
            width: 200px;
            margin: 0 auto;
        }
        
        .boxW li {
            font-size: 14px;
            margin-bottom: 6px;
            display: block;
            clear: both;
        }
        
        .boxW ol {
            list-style: none;
            counter-reset: item;
        }
        
        .boxW li {
            counter-increment: item;
            margin-bottom: 10px;
            /* border-bottom: 1px dashed #dbe1eb; */
        }
        
        .boxW li:before {
            margin-right: 2px;
            content: counter(item);
            background: #999999;
            border-radius: 100%;
            color: white;
            width: 20px;
            text-align: center;
            display: inline-block;
            height: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        
        section#aboutmore {
            background: #e7ebf1;
        }
        
        section.insidebanners {
            padding-top: 130px;
            min-height: 300px;
            background-size: cover;
        }
        
        section.insidebanners h3 {
            color: #fff;
            margin: 0 auto;
            text-align: center;
            max-width: 30%;
            font-family: "Nike Combat Stencil", "Barlow", "Bebas Neue", "Bebas Neue Book", "Montserrat", Helvetica, sans-serif;
        }
        
        .whyus {
            background: url(../img/gpro-bg.jpg) no-repeat top center #060606;
            padding: 20px 0px 100px 20px;
            background-size: cover;
        }
        
        .whyus .tiltles h2 {
            color: #FF5723;
        }
        
        .whyus .tiltles p {
            color: #fff;
            margin-bottom: 30px;
        }
        
        section#fitnessBoutique * {
            color: #212121;
        }
        
        section#fitnessBoutique h4 {
            color: #4a4143;
        }
        
        section#fitnessBoutique h2 {
            color: #fa6b41;
            font-size: 20px;
            border-left: 2px solid #fa6b41;
            padding-left: 9px;
            border-right: 2px solid #fa6b41;
            width: fit-content;
            padding-right: 10px;
            margin: 0 auto;
            margin-bottom: 10px;
        }
        
        #fitnessBoutique {
            background: url(../img/cons.png) no-repeat center center;
            background-size: cover;
        }
        
        .fitnessBoutique .row,
        .centersaln .row {
            align-items: center;
        }
        
        .fitnessBoutique a {
            background: #dfe0e0;
            padding: 9px 20px;
            border: 2px solid #4a4143;
            color: #4a4143!important;
            font-weight: 600;
            border-radius: 30px;
            margin-top: 20px;
            display: block;
            max-width: 370px;
            text-align: center;
        }
        
        .fitnessBoutique li::before {
            display: inline-block;
            content: ' ';
            margin-right: 10px;
            background: url(../img/bullets2.svg) no-repeat center center #fa6b41;
            width: 20px;
            height: 20px;
            border-radius: 30px;
            text-align: center;
            color: #fff;
            background-size: 11px;
            vertical-align: bottom;
        }
        
        .fitnessBoutique li {
            display: inline-block;
            margin-bottom: 10px;
            display: block;
        }
        
        .fitnessBoutique a:hover {
            color: #ffffff!important;
            border-color: #fd4a09!important;
            background-color: #fd4a09!important;
        }
        
        .logoPz a {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .articlesT h3 {
            font-size: 23px;
            color: #525b68;
            /* border: 1px dashed #8d96a3; */
            width: fit-content;
            padding: 10px;
        }
        
        a.rmcons {
            color: #437495;
            font-size: 16px;
            font-weight: 500;
        }
        
        .bluecolors h1 {
            color: #0a85d6!important;
        }
        
        .whyus.cardSlides {
            background-image: url(../img/gpro-bg2.jpg);
        }
        
        .servicesdetails h3 {
            text-align: center;
            font-size: 25px;
            width: 70%;
            color: #686767;
            margin: 0 auto;
        }
        /* .listcons li {
            display: inline-block;
            margin-right: 20px;
            min-width: 220px;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 10px;
        } */
        /* .listcons li::before {
            display: inline-block;
            content: ' ';
            margin-right: 10px;
            background: url(../img/bullets2.svg) no-repeat center center #187caf;
            width: 20px;
            height: 20px;
            border-radius: 30px;
            text-align: center;
            color: #fff;
            background-size: 11px;
            vertical-align: bottom;
        } */
        
        .listcons h4 {
            color: #187caf;
            font-size: 25px;
            margin-bottom: 30px;
        }
        
        b.hearts {
            color: #ff5722;
            font-size: 20px;
            margin-bottom: 10px;
            display: block;
            font-weight: 500;
        }
        
        .gridsgame {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            grid-auto-flow: row dense;
            grid-gap: 1.9vw;
            padding-bottom: 50px;
        }
        
        .itemgym {
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            color: #35353c;
            background: url(../img/ciclebulb.svg) no-repeat center center;
            background-size: contain;
        }
        
        .itemgym img {
            width: 150px;
            margin: 0 auto;
        }
        
        .sponsers img {
            max-width: 180px!important;
            height: auto;
            margin: 0 auto;
        }
        
        .sponsers .item h2 {
            text-align: center;
            color: #fff;
            font-size: 20px;
        }
        
        .bannersimg img {
            max-width: 440px;
            margin: 0 auto;
            opacity: 1;
            animation: shrink 4s infinite alternate;
        }
        
        .bannersimg {
            padding-top: 10vh;
            background: url(../img/radar.svg) no-repeat top center;
            background-size: 360px;
        }
        
        @keyframes shrink {
            0% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }
        
        body .slide__content .btnanim {
            background: linear-gradient(241deg, #ffb111, #e4a13d, #c54a19);
            background-size: 600% 600%;
            -webkit-animation: AnimationName 18s ease infinite;
            -moz-animation: AnimationName 18s ease infinite;
            animation: AnimationName 18s ease infinite;
            border: none;
        }
        
        body .slide__content .btnanim2 {
            background: linear-gradient(241deg, #ffce2e, #ff9b06, #f7b946);
            background-size: 600% 600%;
            -webkit-animation: AnimationName 18s ease infinite;
            -moz-animation: AnimationName 18s ease infinite;
            animation: AnimationName 18s ease infinite;
            margin-right: 10px;
            border: none;
            color: rgb(253, 253, 253);
        }
        
        img.digitsX {
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
        }
        
        @-webkit-keyframes Btnbganim {
            0% {
                background-position: 0% 83%
            }
            50% {
                background-position: 100% 18%
            }
            100% {
                background-position: 0% 83%
            }
        }
        
        @-moz-keyframes Btnbganim {
            0% {
                background-position: 0% 83%
            }
            50% {
                background-position: 100% 18%
            }
            100% {
                background-position: 0% 83%
            }
        }
        
        @keyframes Btnbganim {
            0% {
                background-position: 0% 83%
            }
            50% {
                background-position: 100% 18%
            }
            100% {
                background-position: 0% 83%
            }
        }
        
        .artsX {
            background: url(../img/circles-ban.svg) no-repeat center center;
            width: 100%;
            height: 100%;
            background-size: contain;
            position: absolute;
            left: 0px;
            top: 0px;
        }
        
        .artsX h5 {
            position: absolute;
            top: 20%;
            width: 60%;
            color: rgba(255, 240, 208, 0.8);
            font-size: 25px;
            left: 20%;
            top: 36%;
            text-align: center;
            font-family: "Montserrat", Helvetica, sans-serif;
            font-weight: 400;
        }
        
        .artsX h5 span {
            font-size: 14px;
            font-weight: 400;
            text-align: center;
            color: rgb(255, 253, 234);
        }
        
        #Partners .owl-theme .owl-dots .owl-dot span {
            height: 6px;
            width: 6px;
            background: #8b2102;
        }
        
        #Partners .owl-theme .owl-dots .owl-dot.active span {
            background: #f3a91f;
            width: 40px;
            height: 6px;
        }
        /*--------rsponsive------*/
        
        @media only screen and (max-width: 1400px) {
            .logos3 li {
                width: 160px;
            }
        }
        
        @media only screen and (min-width: 1200px) {
            img.nameLogo {
                width: 340px;
                margin: 0 auto;
            }
            body .container {
                max-width: 1300px;
            }
        }
        
        @media only screen and (max-width: 1200px) {
            .consMan::after {
                bottom: -92px;
            }
            .cardscons .owl-nav::after {
                width: 45%;
            }
            .centralText {
                margin-top: 130px;
            }
            .captionsTXT {
                padding: 18px 17px;
                font-size: 23px;
            }
            .bungeesuperfly {
                width: 90px;
                height: 90px;
                bottom: 32%;
                left: 14px;
                z-index: 0;
            }
        }
        
        @media only screen and (max-width: 1100px) {
            .mm-launch {
                right: auto;
                width: 40px;
                height: 40px;
                top: 18%;
                left: 55%;
                z-index: 999;
            }
        }
        
        @media only screen and (max-width: 800px) {
            .slide__title h1 {
                font-size: 28px;
            }
            .slide__title h4 {
                font-size: 21px;
            }
            .slide__title p {
                font-size: 18px;
            }
            .slide__content.leftTexts {
                position: relative;
                left: auto;
            }
            .slide__content {
                padding: 20px;
            }
            .mouse-down {
                bottom: 40px;
            }
            .whyus .col-md-4 {
                margin-bottom: 20px;
            }
        }
        
        @media only screen and (max-width: 768px) {
            .bannersimg {
                background-size: 260px;
            }
            .prslider__nav {
                display: none;
            }
            body .socialMedia {
                right: 32px;
                top: 27px;
            }
            body .slide__title p {
                font-size: 15px;
                text-align: center;
            }
            .slide__title h1 {
                text-align: center;
                font-size: 17px;
            }
            body .slide__content .btnanim {
                margin: 0 auto;
                margin-top: 40px;
                margin-bottom: 10px;
                height: 30px;
                padding: 9px 10px;
                font-size: 13px;
            }
            .mouse-down {
                bottom: 73px;
            }
            .prslider__ui {
                bottom: 34px;
            }
            .textInnovation {
                height: 500px;
                width: 47px;
                left: -5px;
                top: 60px;
            }
            .tiltles h2 {
                font-size: 23px;
                text-align: center;
            }
            #loader-logo {
                background-size: 200px;
            }
            .slide__title h2 {
                color: #fde8c8;
                font-size: 26px;
                line-height: 28px;
                text-align: center;
            }
            .slide__title h3 {
                text-align: center;
                font-size: 18px;
                font-family: "Montserrat", Helvetica, sans-serif;
                font-weight: 400;
            }
            .slide__title h1 {
                font-size: 30px;
                text-align: center;
                display: block;
                width: 100%;
            }
            .slide__title {
                padding-top: 5%;
            }
            .artsX h5 {
                top: 20%;
                width: 100%;
                font-size: 18px;
                left: 0px;
                top: 46%;
            }
            img.parimgr {
                margin-top: 0px;
            }
            .boxwx {
                margin-top: -45%;
            }
            .slide__title .btn {
                max-width: 138px!important;
                display: inline-block;
                min-width: 1px!important;
                vertical-align: middle;
                height: 30px;
                line-height: 1em;
                font-size: 12px;
                margin: 20px auto !important;
                padding: 10px 20px !important;
            }
            .w70,
            .w90 {
                width: 100%;
            }
            img.parimgr {
                margin-top: 0px;
                max-width: 260px;
                margin: 0 auto;
            }
        }
        
        @media only screen and (max-width: 620px) {
            .logoPz {
                width: 130px;
                height: 50px;
            }
            .socialMedia li a {
                height: 25px;
                width: 25px;
                font-size: 12px;
                margin: 0px 4px;
                line-height: 25px;
            }
            .logos3 li {
                width: 146px;
                margin: 0 auto;
            }
            .jumpArt {
                right: 2vw;
                bottom: 63px;
                width: 17vh;
                height: 16vh;
            }
            .orange-black span {
                font-size: 21px;
                margin-top: 42px;
                margin-right: 16px;
                text-align: center;
                float: right;
            }
            .tiltles h2 {
                font-size: 34px;
            }
            ul.list-card-mob {
                margin: 0 auto;
                display: block;
                width: 100%;
                text-align: center;
                height: auto;
            }
            .avialbleapp span {
                font-size: 17px;
                margin-right: 0px;
                margin-left: 12px;
            }
            .spX {
                text-align: center;
                margin: 0 auto;
                width: 100%;
            }
            img.imgrights {
                width: 80%;
                float: none;
                max-width: 170px;
                margin: 0 auto;
                margin-top: 40px;
                margin-bottom: 40px;
            }
            a.trigger.contacts {
                margin: 0 auto;
                display: block;
                margin-top: 40px;
            }
            .tiltlesPro.darlTXT {
                margin-bottom: 10px;
                max-width: 90%;
            }
            .boxText {
                height: 173px;
            }
            .cardscons {
                max-width: 80%;
                margin: 0 auto;
            }
            .cardscons .owl-nav::after {
                display: none;
            }
            .circles {
                width: 70vw;
                height: 70vw;
                margin: 0 auto;
                margin-top: 30%;
                margin-bottom: 44%;
                border: 0px;
            }
            .circles span {
                font-size: 15px;
            }
            .tabs-stage {
                padding: 21px;
            }
            .textsideleft {
                left: 10px;
                height: 200px;
                width: 17px;
                top: auto;
                bottom: 50px;
            }
            .circles .tabs-nav li {
                width: 87px;
                height: 1px;
                transform: scale(0.7);
            }
            .logoFoters {
                text-align: center;
            }
            .logoFoters img,
            .sectionLogo img {
                margin: 0 auto;
                max-width: 150px;
                margin-bottom: 10px;
            }
            .sectionLogo ul li {
                text-align: center;
            }
            .sectionLogo ul li::before {
                display: none;
            }
            .modal.cX {
                width: 90%;
                margin: auto;
                top: 50%;
                left: 0px;
            }
            .modalBlack .modal-dialog {
                max-width: 100vw;
            }
            .sidephoto {
                width: 0;
            }
            .contX {
                padding-right: 0px;
            }
            .modal-body .w90 {
                width: calc(100% - 20px);
                padding: 10px 0px;
            }
            a.contactsBTN {
                position: initial;
                margin: 0 auto;
                margin-top: 8px;
            }
            .pargraphs a {
                display: block;
                margin: 0 auto;
                margin-bottom: 10px;
            }
            .contactFitnes li {
                display: inline-block;
                transform: scale(0.5);
                top: -15px;
                position: relative;
            }
            .nitex,
            .nintex2 {
                overflow: hidden;
            }
        }