@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 400;
    src: url('/files/exo-2-v18-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/files/exo-2-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/files/exo-2-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/files/exo-2-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/files/exo-2-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/files/exo-2-v18-latin-regular.svg#Exo2') format('svg'); /* Legacy iOS */
  }
/* exo-2-800 - latin */
@font-face {
    font-family: 'Exo 2';
    font-style: normal;
    font-weight: 800;
    src: url('/files/exo-2-v18-latin-800.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('/files/exo-2-v18-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/files/exo-2-v18-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
         url('/files/exo-2-v18-latin-800.woff') format('woff'), /* Modern Browsers */
         url('/files/exo-2-v18-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/files/exo-2-v18-latin-800.svg#Exo2') format('svg'); /* Legacy iOS */
}
@keyframes ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
@keyframes fromLeft {
    0% {transform: translateX(-50px); opacity: 0}
    100%   {transform: translateX(0); opacity: 1}
}
@keyframes toLeft {
    0% {transform: translate(150px, -5px); opacity: 0}
    100%   {transform: translate(20px, -5px); opacity: 1}
}
@keyframes fromTop {
    0% {transform: translateY(-50px); opacity: 0}
    100%   {transform: translateY(0); opacity: 1}
}
@keyframes toTop {
    0% {transform: translateY(150); opacity: 0}
    100%   {transform: translateY(0); opacity: 1}
}
html {
    scroll-behavior: smooth;
  }
body {
    background: linear-gradient(to right, #090909 0%, #050505 100%);
    background: #232323;
    color: #d6d6d6;
    font-size: 18px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family:'Exo 2', sans-serif;;
    overflow-x: hidden;
}
.content-wrapper{
    flex-grow: 1;
}
* {
    box-sizing: border-box;
}
img{
    width: 100%;
    aspect-ratio: attr(width) / attr(height);

}
h1 {
    font-size: 55px;
    margin-bottom: 5px;
    background: linear-gradient(to right, #30CFD0 0%, #a6ffa5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2{
    color: #fff;
    text-shadow: 0px 0px 2px black;
    font-size: 40px;
    margin: 0;
    text-shadow: 0 0 10px black;
}

h3{
    color: #fff;
    font-size: 30px;
    margin-bottom: 5px;
}
h4{
    color: #fff;
    margin-bottom: 0;
}
ul{
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
}
svg{
    transform: translateY(6px);
}
  
tr:nth-child(even){
    background-color: #313131;
}

a, a:visited{
    color: #64e4be;
    cursor: pointer;
}
a.button, a.button:visited{
    color: #000;
    text-decoration: none;
}
input, input:focus, input:active, button, textarea, .button{
    color: #333;
    outline: none;
    background-color: #d6dae0;
    border-radius: 3px;
    padding: 15px 25px;
    font-size: 16px;
    border: none;
}
b{
    color: #fff;
}
.col{
    display: grid;
    column-gap: 50px;
}
.cols-2{
    grid-template-columns: 1fr 1fr;
}
.upload {
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
}
.upload-wrapper label, .btn-primary {
    position: relative;
    margin: auto;
    width: auto;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(27deg, #30CFD0 35%, #a6ffa5 100%);
    box-shadow: 0 4px 7px rgb(0 0 0 / 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform .2s ease-out;
}
.btn-primary:hover,
.btn-primary:focus{
  transform: scale(1.1);
}
label{
    font-size: 14px;
}
button, .button{
    margin: 10px 0;
    border-radius: 3px;
    cursor: pointer;
    background-color: #64e4be;
    color: black;
}
button.gray, .button.gray{
    background-color: #ababab;
}
button.cancel{
    background: #e68484;
}
input[type="text"],input[type="email"],input[type="password"], textarea{
    outline: 0;
    font-size: 14px;
    height: 45px;
    margin: 5px 0;
    box-sizing: border-box;
    width: 100%;
    padding: 3px 5px;
    border: none;
    box-shadow: none;
    font-family: 'Libre Franklin', sans-serif;
}
input[type="file"]{
    padding: 0;
    background: none;
    color: #fff;
    display: block;
    height: auto;
}
progress{
    margin: 20px 0 0 0;
    width: 100%;
}
input::placeholder, textarea::placeholder{
    color: gray;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
.gray-box{
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px 0px black;
}
.gray-wrapper-dark{
    background: #151515;
}
.black-wrapper-dark{
    background: #000;
}
.image-wrapper{
    width: 322px;
}
.event-overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    cursor: pointer;
    transition: opacity 600ms;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
    background: rgb(0 0 0 / 76%);
    opacity: 0;
}
.event-overlay.active{
    opacity: 1;
    pointer-events: auto
}
.loading-inicator {
    display: none;
    background: rgba(0,0,0,.5);
    z-index: 1200;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.lds-ring {
    display: inline-block;
    position: absolute;
    margin: auto;
    width: 80px;
    height: 80px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: ring 1.2s cubic-bezier(.5,0,.5,1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
body.loading .loading-inicator {
    display: block;
    pointer-events: auto;
}
body.modal-active{
    overflow: hidden;
}
.success-msg .error, .success-msg .success, .error{
    padding: 10px 0 10px 0;
    border-radius: 5px;
}
.success-msg .error, .error{
    color: #e84d4d;
}
.success-msg .success, .success{
    color: #26bb41;
}
.logged-in, .logged-out, .admin{
    display: none;
}
.displayed{
    display: inline-block;
}
.table.displayed{
    display: table;
}
.block.displayed{
    display: block;
}
.modal{
    position: fixed;
    transition: opacity 200ms, bottom 200ms;
    opacity: 0;
    z-index: 1100;
    pointer-events: none;
    border: 2px solid black;
    bottom: -200px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 50vh;
    height: fit-content;
    padding: 85px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 20px 2px #000000;
    background: #22222273;
    backdrop-filter: blur(8px);
}
.modal video{
    width: 100%;
}
.modal.modal-details{
    width: 80%;
    max-width: 800px;
}
.modal.modal-details video{
    margin: 20px 0 10px 0
}

.modal.modal-pricing{
    text-align: center;
    overflow: hidden;
    padding: 0;
    padding-top: 45px;
    max-width: 710px;
    width: auto;
    margin: auto auto;
}
.modal.modal-pricing img{
    float: left;
}
.modal.modal-pricing .price{
    position: absolute;
    right: 63px;
    font-size: 80px;
    width: 280px;
    height: 280px;
    line-height: 280px;
    border-radius: 50%;
    background: #ffffff;
    color: black;
    font-weight: bold;
    bottom: 145px;
}
.modal.modal-pricing .buy-btn{
    margin: 0;
    font-size: 63px;
    height: 110px;
}
.modal .modal-close:not(.no-styling){
    position: absolute;
    width: 100%;
    top: 0px;
    text-align: right;
    left: 0;
    padding: 0 14px 4px 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
}
.modal .modal-close svg{
    pointer-events: none;
    transform: translateY(5px);
}
.modal.active{
    pointer-events: auto;
    opacity: 1;
    bottom: 0;
    overflow: auto;
    max-height: 90vh;
}
.modal .block{
    margin-bottom: 50px;
}
.modal .block:last-child{
    margin-bottom: 0;
}
.modal input, .modal button{
    width: 100%;
    margin-bottom: 5px;
}
.modal button.modal-open{
    display: inline-block;
    width: auto;
    padding: 0;
    background: none;
    color: #64e4be;
}
.modal-video.video-container{
    width: 80vw;
    padding: 60px 15px 15px 15px;
}
.modal-video .price{
    font-size: 88px;
    font-weight: bold;
    color: #64e4be;
    text-align: center;
    margin: 34px 0 72px 0;
}
.modal-video video{
    width: 100%;
    border: 20px solid black;
    border-radius: 10px;
}
.modal .reset-pass{
    font-size: 16px;
    margin-top: 5px;
}
.modal.error .block{
    margin: 50px 0;
}
.top-nav{
    padding: 5px 30px;
    position: absolute;
    right: 0;
}

.heading span{
    font-size: 25px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 10px black;
}

.content{
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    padding:  0 0 100px 0;
}

.content-wrapper{
    padding: 0 10px;
    position: relative;
    max-width: 1400px;
    margin: auto;
}
.trainer-wrapper, .plan-wrapper{
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 20px;
}
.trainer-wrapper img, .plan-wrapper img {
    margin-top: 20px;
    border-radius: 10px;
}
.card-el{
    transition: box-shadow 800ms, transform 200ms;
    position: relative;
    overflow: hidden;
    height: 220px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 0 17px -5px black;
    background: #64e4be;
}
.card-el.pricing.card-video{
    height: 300px;
}
.card-el.card-video .btn-primary{
    position: absolute;
    bottom: 25px;
    width: 80%;
}
.pricing .btn-primary.disabled{
    background: gray;
    color: #c6c6c6;
    cursor: not-allowed;
}
.pricing .btn-primary.disabled:hover{
    transform: none;
}
.card-el.card-video .description{
    display: none;
}
.card-el.card-video:hover{
    transform: scale(1.1);
}
.card-el .card-thumb img{
    width: 100%;
}
.card-el.pricing{
    width: 30%;
    height: 390px;
    margin-bottom: 55px;
    padding-bottom: 20px;
    height: auto;
}
.card-el .title{
    text-transform: uppercase;
    font-size: 20px;
}
.card-el .title, .card-el .info{
    text-align: center;
    display: block;
    margin-top: 10px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
}
.card-el .info{
    color:#fff;
}
.evt-el::before{
    content: "";
    position: absolute;
    cursor: pointer;
    z-index: 100;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
/*======= TOPNAV START  ============================================================== */
.top-nav ul{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}
.top-nav ul li{
    white-space: nowrap;
    margin-left: 15px;
    padding: 0 10px;
}
.top-nav a{
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 10px black;
}
.top-nav button{
    padding: 3px 10px;
    font-weight: bold;
    font-size: 14px;
}
/*======= TOPNAV END  ================================================================ */





/*======= SLIDER START  ============================================================== */
.slider-wrapper .slider{
    white-space: nowrap;
    overflow-y: auto;
}
.slider-wrapper .slider::-webkit-scrollbar {
    display: none;
}
.slider-wrapper{
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.slider-wrapper .arrow-left, .slider-wrapper .arrow-right{
    cursor: pointer;
    transition: opacity 200ms;
    height: 70px;
    width: 70px;
    z-index: 101;
    box-shadow: 0 0 20px 1px #000000b3;
    background: #64e4be;
    position: absolute;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    transform: rotate(90deg);
}
.slider-wrapper .arrow-right{
    transform: rotate(-90deg);
}
.slider-wrapper .arrow-right{
    right: 0;
    left: auto;
}
.slider-wrapper .arrow-left div, .slider-wrapper .arrow-right div{
    height: 25%;
    width: 3px;
    transform: rotate(45deg);
    background: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    transform-origin: bottom;
}
.slider-wrapper .arrow-left div:last-child, .slider-wrapper .arrow-right div:last-child{
    transform: rotate(-45deg);
}
.slider-wrapper .slide-el{
    display: inline-block;
}
.slider-wrapper .slide-el:first-child{
    margin-left: 0;
}
.slider-wrapper .slide-el:last-child{
    margin-right: 0;
}
.slider-wrapper.left-end .arrow-left{
    opacity: 0.2;
    pointer-events: none;
    cursor: not-allowed;
}
.slider-wrapper.right-end .arrow-right{
    opacity: 0.2;
    pointer-events: none;
    cursor: not-allowed;
}
/*======= SLIDER END  ================================================================ */

.video-collection, .pricing-collection{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.video-collection{
    padding-top: 30px
}

.video-collection .card-el{
    margin-top: 20px;
    margin-bottom: 20px;
}

.dual-btn-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

.btn-cancel{
    background: #e46464;
}

footer{
    text-align: center;
    padding: 40px 20px;
    margin-top: 100px;
    font-size: 14px;
    color: gray;
    line-height: 22px;
}

footer a, footer a:visited, footer a:focus{
    color: gray;
    text-decoration: none;
}

.s-only{
    display: none;
}
.info-msg{
    display: none;
}
.info-msg::before{
    content:url(/img/warning.svg);
    margin-right: 30px;
}
.info-msg.active{
    padding: 25px;
    margin: 25px 0;
    background: #a7b8ff;
    color: #1f1fa1;
    border-radius: 3px;
    font-size: 20px;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 1220px) {
    .card-el.pricing {
        width: 40%;
    }
}

@media only screen and (max-width: 900px) {
    h1{
        font-size: 45px;
    }
    .heading span{
        font-size: 22px;
    }
    .top-nav{
        padding: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 660px) {
    .s-not{
        display: none;
    }
    .s-only{
        display: initial;
    }
    .trainer-wrapper, .plan-wrapper{
        display: grid;
        grid-template-columns: 1fr;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 32px;
    }
    .heading span {
        font-size: 16px;
    }
    .card-el {
        height: 185px;
        width: 80%;
    }
    .card-el.pricing{
        width: 80%;
    }
    .modal{
        width: 90%;
        padding: 50px 5% 5% 5%;
    }
    .slider-wrapper .arrow-left, .slider-wrapper .arrow-right{
        height: 50px;
        width: 50px;
    }
    .top-nav ul{
        display: flex;
        margin: 0;
        padding: 0;
        justify-content: space-around;
        flex-direction: row;
    }
    .top-nav a{
        margin: 0;
    }
}

