@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* fallback */
@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/material-symbols-rounded.woff2') format('woff2');
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

:root{
    --color-main: #c8b554;
    --color-main-dark: #8f741d;
    --color-main-light: #ebe8df;
    --light-gray: #f5f5f5;
    --gray: #656565;
    --dark-gray: #0a1821;
    --green: #3fb149;
    --green-dark: #3a9344;
    --red: #f03545;
    --blue: #1d9bf0;
    --white: #ffffff;
    --color-scrollbar: #c6b354;
    --font: 'Outfit', sans-serif;
    --font-second: 'Outfit', sans-serif;
}
*, ::after, ::before {
    box-sizing: border-box
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 200;
    line-height: 1.2;
}
h1, .h1{ font-size: 2.5em;}
h2, .h2{ font-size: 2.3em;}
h3, .h3{ font-size: 2.1em;}
h4, .h4{ font-size: 1.8em;}
h5, .h5{ font-size: 1.6em;}
h6, .h6{ font-size: 1.4em;}
p { margin: 0 0 10px 0;}
p:last-child { margin: 0;}
img { width: 100% }
a{ color: var(--color-main); text-decoration: none; transition: all 0.3s}
a:hover{ color: var(--color-main-dark)}

body{
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    background-color: var(--light-gray);
    line-height: 1.2;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-image: url("../images/bg1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.button{
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 18px;
    background-color: #055989;
    color: #fff;
    border: 1px solid #055989;
    cursor: pointer;
}
.button:hover{
    background-color: #052d4a;
    border: 1px solid #052d4a;
    color: #fff;
}
.button.button-outline{
    background-color: transparent;
    border: 1px solid #055989;
    color: #055989;
}
.button.button-outline:hover{
    background-color: #055989;
    border: 1px solid #055989;
    color: #fff;
}
.button.button-block{
    display: block;
    text-align: center;
}
header{
    background: -moz-linear-gradient(top,rgba(143, 116, 29,.9) 0%,rgba(0,0,0,.001) 100%);
    background: -webkit-linear-gradient(top,rgba(143, 116, 29,.9) 0%,rgba(0,0,0,.001) 100%);
    background: linear-gradient(to bottom,rgba(143, 116, 29,.9) 0%,rgba(0,0,0,.001) 100%);
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0 20px 0;
}

@media (max-width: 768px) {
    header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 0 0 0px 0;
        transition: background 0.5s;
    }
}

.page{

}

.header-main{
    height: 100px;
    display: flex;
    align-items: center;
}
.nav-icon {
    /*flex-grow: 1;*/
    width: 30px;
    height: 30px;
    position: relative;
    margin: 0 15px 0 5px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon:hover span {
    background: var(--color-main);
}
.nav-icon span:nth-child(1) {
    top: 6px;
    width: 24px;
}
.nav-icon span:nth-child(2) {
    top: 14px;
    width: 12px;
}
.nav-icon span:nth-child(3) {
    bottom: 6px;
    width: 18px;
}
.header-main .logo{
    flex-grow: 4;
    text-align: center;
}
.header-main .logo img{
    height: 60px;
    width: auto;
    margin-left: 0px;
}

@media (max-width: 768px) {
    .header-main{
        height: 80px;
    }
    .nav-icon {
        flex-grow: unset;
    }
    .header-main .logo{
        text-align: center;
    }
    .header-main .logo img{
        width: auto;
        height: 50px;
        margin-left: 0;
    }
}
@media (max-width: 568px) {
    .header-main{
        height: 60px;
    }
    .header-main .logo img{
        width: auto;
        height: 40px;
        margin-left: 0;
    }
}
.header-main .header-icons{
    /*flex-grow: 1;*/
    display: flex;
    justify-content: flex-end;
    margin: 0 5px 0 15px;
}

.header-main .header-icons .header-icon{
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #fff;
}
.header-main .header-icons .header-icon:hover{
    color: var(--color-main);
}
.header-main .header-icons .header-icon i{
    font-size: 26px;
}

.header-main .header-icons .header-icon span{
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: 0;
    right: 0;
}
.header-main .header-icons .header-icon span.loggedout{
    background-color: var(--red);
}
.header-main .header-icons .header-icon span.loggedin{
    background-color: var(--green);
}

@media (max-width: 768px) {
    header.fixed{
        background: rgba(143, 116, 29, 1);
        padding: 0 0 0 0;
    }
}


/* Main Menu - Side Menu */
.main-menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-second);
}
.main-menu ul div{
    margin: 0;
    padding: 15px 0 5px 0px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #989898;
    border-top: 1px solid #ddd;
}
.main-menu ul div:first-child{
    border-top: none;
}
.main-menu ul li{
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-blue);
    /*border-bottom: 1px solid #ddd;*/
}
.main-menu ul li a{
    display: block;
    position: relative;
    padding: 10px 15px 10px 0;
    color: var(--dark-blue);
    cursor: pointer;
}
.main-menu ul li a:hover{
    color: var(--color-main);
}
.main-menu ul li a.active{
    color: var(--color-main);
}
.main-menu ul li.has-children a:before{
    content: "\e313";
    font-family: "Material Symbols Rounded";
    font-size: 18px;
    color: var(--dark-blue);
    position: absolute;
    top: 10px;
    right: 10px
}
.main-menu ul li.has-children a.active:before{
    color: var(--color-main);
}

.main-menu ul li ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}
.main-menu ul li ul li{
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-blue);
    border: none;
}
.main-menu ul li ul li a{
    display: block;
    padding: 5px 0;
    margin: 0 15px;
    color: var(--dark-gray);
}
.main-menu ul li.has-children ul li a:before{
    content: "";
}
.main-menu ul li ul li a:hover{
    color: var(--color-main);
}

.main-menu ul li ul li ul{
    margin: 0;
    padding: 0 10px 5px;
    list-style: none;
    display: none;
}
.main-menu ul li ul li ul li{
    background-color: transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}
.main-menu ul li ul li ul li a{
    display: block;
    padding: 5px 0;
    margin: 0 15px;
    color: var(--dark-gray);
}
.main-menu ul li.has-children ul li.has-children a:before{
    content: "\e313";
    font-family: "Material Symbols Rounded";
    font-size: 18px;
    color: var(--dark-gray);
    position: absolute;
    top: 3px;
    right: -15px
}
.main-menu ul li.has-children ul li.has-children ul li a:before{
    content: "";
}
.main-menu ul li ul li ul li a:hover{
    color: var(--color-main);
}
.offcanvas-social, .footer-social{
    padding: 15px 0 0 0;
}
.offcanvas-social .social, .footer-social .social{
    display: flex;
    justify-content: center;
}
.offcanvas-social .social .icon, .footer-social .social .icon{
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 7.5px;
    display: block;
}
.offcanvas-social .social .icon.facebook svg .facebook0, .footer-social .social .icon.facebook svg .facebook0{
    fill: #1d46b5;
}
.offcanvas-social .social .icon.facebook svg .facebook1, .footer-social .social .icon.facebook svg .facebook1{
    fill:none;stroke: #1d46b5;stroke-width:5;
}
.offcanvas-social .social .icon.facebook:hover svg .facebook0{
    fill: var(--dark-gray);
}
.footer-social .social .icon.facebook:hover svg .facebook0{
    fill: var(--white);
}
.offcanvas-social .social .icon.facebook:hover svg .facebook1{
    fill:none;stroke: var(--dark-gray);stroke-width:5;
}
.footer-social .social .icon.facebook:hover svg .facebook1{
    fill:none;stroke: var(--white);stroke-width:5;
}
.offcanvas-social .social .icon.instagram svg .insta0, .footer-social .social .icon.instagram svg .insta0{
    fill: #f25c44;
}
.offcanvas-social .social .icon.instagram:hover svg .insta0{
    fill: var(--dark-gray);
}
.footer-social .social .icon.instagram:hover svg .insta0{
    fill: var(--white);
}
.offcanvas-social .social .icon.twitter svg .twiiter0, .footer-social .social .icon.twitter svg .twiiter0{
    fill: #1d9bf0;
}
.offcanvas-social .social .icon.twitter:hover svg .twiiter0{
    fill: var(--dark-gray);
}
.footer-social-social .social .icon.twitter:hover svg .twiiter0{
    fill: var(--white);
}

.panel{
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}
.panel-flex{
    display: flex;
    align-items: center;
}
.panel-icon{
    font-size: 28px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .panel{
        padding: 15px;
    }
}

.breadcrumb{
    padding: 0 0;
    margin: 0;
}
.breadcrumb .breadcrumb-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb .breadcrumb-list .breadcrumb-item{
    display: inline-block;
    padding: 0 0 0 20px;
    position: relative;
    font-size: 12px;
}
.breadcrumb .breadcrumb-list .breadcrumb-item:before{
    content: "\e409";
    font-family: "Material Symbols Rounded";
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}
.breadcrumb .breadcrumb-list .breadcrumb-item:first-child{
    padding: 0;
}
.breadcrumb .breadcrumb-list .breadcrumb-item:first-child:before{
    display: none;
}
.breadcrumb .breadcrumb-list .breadcrumb-item a{
    color: var(--dark-gray);
    transition: all 0.4s;
}
.breadcrumb .breadcrumb-list .breadcrumb-item a:hover{
    text-decoration: underline;
}

.module-title{
    font-size: 2.5em;
    font-weight: 200;
    text-align: center;
    margin: 15px 0;
}
@media (max-width: 768px) {
    .module-title{
        font-size: 2em;
        margin: 15px 0;
    }
    .category-title{
        font-size: 22px;
        font-weight: 600;
        margin: 15px 0;
    }
}

/* Slider-module */
.slider-module{
    overflow: hidden;
    overflow: unset;
}
/* Grid */
.grid-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.grid-4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.grid-5{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
.grid-6{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}
@media (max-width: 1399px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .grid-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media (max-width: 991px) {
    .grid-6, .grid-5 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .grid-6, .grid-5, .grid-4, .grid-3{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 599px) {
    .grid-6, .grid-5, .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Homepage Big banner*/
.home-banner{
    position: relative;
    height: 700px;
}
.home-banner .banner-item{
    width: 100%;
    height: 700px !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.home-banner .banner-item .banner-overlay{
    width: 100%;
    height: 700px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.home-banner .banner-item .banner-content {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 160px;
    padding-top: 100px;
    text-align: center;
    background: -moz-linear-gradient(top,rgba(0,0,0,.001) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.9) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,.001) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.9) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,.001) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.9) 100%);
}
.home-banner .banner-item .banner-content .banner-title{
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 4px 3px 0px var(--color-main-dark);
    text-transform: uppercase;
}
.home-banner .banner-item .banner-content .banner-text{
    font-size: 28px;
    font-weight: 600;
    color: var(--color-main);
    text-shadow: 1px 1px 0px var(--color-main-dark);
}
.home-banner .banner-item .banner-content .banner-url{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    background-color: rgba(255,255,255, 0.1);
    animation: bounce 2s infinite;
}
.home-banner .banner-item .banner-content .banner-url:hover{
    background-color: #a67c00;
    border: 2px solid #a67c00;
}

.banner-scroll-down{
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 15px;
    left: calc(50% - 25px);
    cursor: pointer;
}
.banner-scroll-down:after{
    content: '\e5cf';
    font-family: "Material Symbols Rounded";
    font-size: 50px;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top:0;
    left:0;
    text-shadow: 1px 1px 2px #000;
    animation: bounce 3s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .home-banner .banner-item .banner-content {
        padding-bottom: 70px;
        padding-top: 100px;
    }
    .home-banner .banner-item .banner-content .banner-title{
        font-size: 50px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 2px;
        text-shadow: 4px 3px 0px var(--color-main-dark);
        text-transform: uppercase;
    }
    .home-banner .banner-item .banner-content .banner-text{
        font-size: 24px;
        font-weight: 600;
        color: var(--color-main);
        text-shadow: 1px 1px 0px var(--color-main-dark);
    }
}

@media (max-width: 568px) {
    .home-banner{
        height: 500px;
    }
    .home-banner .banner-item{
        height: 500px !important;
    }
    .home-banner .banner-item .banner-overlay{
        height: 500px;
    }
    .home-banner .banner-item .banner-content {
        padding-bottom: 70px;
        padding-top: 100px;
    }
    .home-banner .banner-item .banner-content .banner-title{
        font-size: 40px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 2px;
        text-shadow: 4px 3px 0px var(--color-main-dark);
        text-transform: uppercase;
    }
    .home-banner .banner-item .banner-content .banner-text{
        font-size: 20px;
        font-weight: 600;
        color: var(--color-main);
        text-shadow: 1px 1px 0px var(--color-main-dark);
    }
}

@media (max-width: 1080px) and (orientation:landscape) {
    .home-banner{
        height: 500px !important;
    }
    .home-banner .banner-item{
        height: 500px !important;
    }
}

.not-find{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

/* Module programs */
.module-programs{}
.module-programs-title{
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 3px 2px 0px var(--color-main);
    color: var(--color-main-dark);
}
.module-programs-free-item{
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    padding: 10px;
    border-radius: 6px;
    margin-top: 40px;
}
.module-programs-free-item-inner{
    position: relative;
    border: 1px dashed rgba(143, 116, 29, 0.1);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}
.module-programs-free-item-inner .content{
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .001) 0%, rgba(0, 0, 0, .66) 50%, rgba(0, 0, 0, .3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .001) 0%, rgba(0, 0, 0, .66) 50%, rgba(0, 0, 0, .3) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}
.module-programs-free-item-inner .program-title{
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 0px var(--color-main);
    text-align: left;
}
.module-programs-free-item-inner .program-intro{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.module-programs-items{
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 30px;
}
.module-programs-item{
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    padding: 10px;
    border-radius: 6px;
}
.module-programs-item-inner{
    position: relative;
    border: 1px dashed rgba(143, 116, 29, 0.1);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}
.module-programs-item-inner .overlay, .module-programs-free-item-inner .overlay{
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.module-programs-item-inner .content{
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .001) 0%, rgba(0, 0, 0, .66) 50%, rgba(0, 0, 0, .3) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .001) 0%, rgba(0, 0, 0, .66) 50%, rgba(0, 0, 0, .3) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
}
.module-programs-item .program-title{
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 0px var(--color-main);
    text-align: left;
}
.module-programs-item .program-intro{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.module-programs-item .program-intro ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.module-programs-item .program-intro ul li{
    display: block;
    text-align: left;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.module-programs-item .program-intro ul li i{
    color: var(--green);
    display: inline-block;
    margin-right: 5px;
}
.module-programs-item .program-price{
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-main);
    text-align: left;
}
.module-programs-item .program-price s{
    font-size: 18px;
    font-weight: 700;
    color: var(--red);
}
.module-programs-item .program-btn, .module-programs-free-item-inner .program-btn{
    margin-top: 20px;
    display: block;
    padding: 10px 15px;
    text-align: center;
    border: 2px solid var(--color-main);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-main);
    cursor: pointer;
}
.module-programs-item .program-btn:hover, .module-programs-free-item-inner .program-btn:hover{
    border: 2px solid var(--color-main);
    color: #fff;
    background-color: var(--color-main);
}

@media (max-width: 1280px) {
    .module-programs-items{
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .module-programs-item-inner{
        height: 400px;
    }
    .module-programs-title{
        font-size: 40px;
    }
    .module-programs-free-item-inner .content{
        grid-template-columns: 1fr;
        align-items: center;
        gap: 20px
    }
}

@media (max-width: 568px) {
    .module-programs-title{
        font-size: 40px;
    }
    .module-programs-items{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
}

/* Module Gallery */
.module-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    margin-top: 40px;
    border: 10px solid #fff;
    border-radius: 8px;
    gap: 10px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}
.module-gallery-item{
    cursor: pointer;
    overflow: hidden;
}
.module-gallery-item img{
    transition: all .2s;
    opacity: 0.95;
    filter: grayscale(15%);
}
.module-gallery-item:hover img{
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 768px) {
    .module-gallery{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
}

.module-contact-map{
    margin-top: 40px;
    border: 10px solid #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}
.contact-company{
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-shadow: 1px 1px 0px var(--color-main);
    color: var(--color-main-dark);
}
.contact-data{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}
.contact-data .contact-item{
    display: flex;
    justify-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    align-items: center;
    gap: 15px;
}
.contact-data .contact-item .icon{
    font-size: 40px;
    color: var(--color-main);
}
.contact-data .contact-item .value{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--gray);
}
@media (max-width: 768px) {
    .contact-data{
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-data .contact-item{
        display: flex;
        justify-content: start;
        background-color: #fff;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
        align-items: center;
        gap: 15px;
    }
    .contact-data .contact-item .icon{
        font-size: 30px;
        color: var(--color-main);
    }
    .contact-data .contact-item .value{
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        color: var(--gray);
    }
}

/* Module about */
.module-about{
    display: grid;
    grid-template-columns: .7fr 1fr;
    grid-template-rows: auto auto auto;
}
.module-about-image{
    grid-column: 1 / 2;
    grid-row: 1 / 4;
}
.module-about-image img{
    border-radius: 50%;
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 2px 20px rgba(0,0,0,0.2);
}
.module-about-title{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 3px 2px 0px var(--color-main);
    color: var(--color-main-dark);
    align-content: center;
    padding-left: 50px;
}
.module-about-title .subtitle{
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
}
.module-about-intro{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 22px;
    font-weight: 500;
    padding-left: 50px;
}
.module-about-link{
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    padding-left: 50px;
}

.module-btn{
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--color-main-dark);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-main-dark);

}
.module-btn:hover{
    border: 2px solid var(--color-main-dark);
    color: #fff;
    background-color: var(--color-main-dark);
}

@media (max-width: 1420px) {
    .module-about-link{
        padding-top: 30px;
    }
    .module-about-title{
        font-size: 26px;
    }
    .module-about-title .subtitle{
        font-size: 40px;
    }
    .module-about-intro{
        font-size: 18px;
    }
}

@media (max-width: 1200px) {

}

@media (max-width: 768px) {
    .module-about{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        padding: 0;
    }
    .module-about-image{
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        padding: 0;
    }
    .module-about-title{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        padding: 0;
        padding-top: 0px;
        margin-bottom: 20px;
        text-align: center;
    }
    .module-about-intro{
        grid-column: 1 / 1;
        grid-row: 3 / 4;
        padding: 0;
        padding-top: 20px;
        text-align: center;
    }
    .module-about-link{
        grid-column: 1 / 1;
        grid-row: 4 / 5;
        padding: 0;
        padding-top: 20px;
    }
    .module-about-link .module-btn{
        display: block;
        text-align: center;
    }
}

.programs-page{
    font-size: 18px;
    font-weight: 500;
}

.program-info-blok{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.termin-item{
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px
}
.termin-item.not-allowed{
    box-shadow: inset 0 0 0 1px #999;
    background-color: #f1f1f1;
}
.termin-item.occupied{
    box-shadow: inset 0 0 0 1px red;
    background-color: #ffebeb;
}
.termin-item.my-termin{
    box-shadow: inset 0 0 0 1px #badbcc;
    background-color: #e1f7ed;
}
.termin-col{
    display: grid;
    align-items: center;
    text-align: center;
}
.termin-col .lable{
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}
.termin-col .week-day{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}
.termin-col .date{
    font-weight: 700;
    font-size: 15px;
}
.termin-col .time{
    font-weight: 700;
    font-size: 16px;
}
.termin-col .available{
    font-weight: 700;
    font-size: 16px;
}
.termin-col .add-btn{
    padding: 7px 12px;
    background-color: var(--green);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    width: 100px;
}
.termin-col .add-btn:hover{
    background-color: #308738;
    color: #fff;
}
.termin-col .remove-btn{
    padding: 7px 12px;
    background-color: var(--red);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    width: 100px;
}
.termin-col .remove-btn:hover{
    background-color: #a52631;
    color: #fff;
}
.available .active{
    color: #C3C3C3;
    font-size: 20px;
}
.available .inactive{
    color: var(--green);
    font-size: 20px;
}
.termin-occupied{
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    display: inline-block;
    width: 100px;
    text-align: center;
}

@media (max-width: 568px) {
    .termin-item{
        padding: 15px;
        margin-bottom: 15px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }
    .termin-col{
        text-align: center;
        justify-items: center;
    }
}

#filterUsersForm{
    background-color: #fff;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 40px;
    grid-template-rows: auto;
    gap: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
}

#filterOrderForm{
    background-color: #fff;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr 40px;
    grid-template-rows: auto;
    gap: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
}
#filterOrderForm .form-control, #filterUsersForm .form-control{
    display: block;
    width: 100%;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--gray);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#filterOrderForm .form-control:focus, #filterUsersForm .form-control:focus{
    box-shadow: 0px 0px 0px 3px var(--color-main-light);
    border: 1px solid var(--color-main-light);
}
#filterOrderForm #doOrderFilter, #filterUsersForm #doUsersFilter{
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    background-color: var(--color-main);
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}
#filterOrderForm #doOrderFilter:hover, #filterUsersForm #doUsersFilter:hover{
    background-color: var(--color-main-dark);
}

.order-list .order-item{
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 7px;
    display: grid;
    grid-template-columns: 1fr 130px;
    grid-template-rows: auto;
    gap: 10px;
}
.order-list .order-item .label{
    font-weight: 500;
    font-size: 13px;
    color: var(--color-main-dark);
}
.order-list .order-item .value{
    font-weight: 600;
    font-size: 16px;
}
.order-list .order-item .data{
    display: grid;
    grid-template-columns: 100px 1fr 100px 1.5fr 1.5fr 100px 100px;
    gap: 10px;
}

.order-info-customer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-bottom: 1px solid #DDD;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.order-info-customer:last-child{
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.order-info-customer div{
    font-size: 14px;
    font-weight: 600;
}
.order-info-customer div .label{
    font-size: 14px;
    font-weight: 600;
    color: var(--color-main);
}
.order-info-customer .form-item{
    display: grid;
    grid-template-columns: 50px 80px;
    gap: 5px;
}
.order-info-customer .form-item input{
    border: 1px solid #cdcdcd;
    border-radius: 4px;
    padding: 4px 10px;
}
.order-info-customer .form-item #saveSessionsLeft{

}

.users-list .user-item{
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 7px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
}
.users-list .user-item .label{
    font-weight: 500;
    font-size: 13px;
    color: var(--color-main-dark);
}
.users-list .user-item .value{
    font-weight: 600;
    font-size: 16px;
}
.users-list .user-item .data{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

@media (max-width: 768px) {
    #filterOrderForm{
        gap: 10px;
    }
    .order-list .order-item{
        grid-template-columns: 1fr;
    }
    .order-list .order-item .data{
        grid-template-columns: 1fr 1fr;
    }
    .order-list .order-item .data .order-customer-email{
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
    .order-list .order-item .data .order-payment{
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    .order-list .order-item .data .order-expire{
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
    .order-list .order-item .actions{
        border-top: 1px solid #eee;
        padding-top: 10px;
        text-align: right;
    }

    .users-list .user-item{
        grid-template-columns: 1fr;
    }
    .users-list .user-item .data{
        grid-template-columns: 1fr;
    }
}

.termins-list .termin-item{
    display: grid;
    grid-template-columns: 1fr 42px;
    grid-template-rows: auto;
    gap: 15px;
    align-items: center;
}
.termins-list .termin-item .data{
    display: grid;
    grid-template-columns: 42px 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 30px;
    align-items: center;
}
.termins-list .termin-item .label{
    font-weight: 500;
    font-size: 13px;
    color: var(--color-main-dark);
    text-align: center;
}
.termins-list .termin-item .value{
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}
.termins-list .termin-item .value2{
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.termins-list .termin-item .value i{
    font-weight: 600;
    font-size: 30px;
}
.termins-list .termin-item .data .termin-icon{
    font-size: 42px;
}
.termins-list .termin-item .delete-termin-btn{
    display: block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: var(--red);
    background-color: #eee;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}
.termins-list .termin-item .delete-termin-btn:hover{
    color: #fff;
    background-color: var(--red);
}

@media (max-width: 768px) {
    .termins-list .termin-item .data{
        display: grid;
        grid-template-columns:  1fr 1fr;
        grid-template-rows: auto;
        gap: 15px;
        align-items: center;
    }
    .termins-list .termin-item .value{
        font-weight: 600;
        font-size: 15px;
        text-align: center;
    }
    .termins-list .termin-item .value i{
        font-weight: 600;
        font-size: 24px;
    }
    .termins-list .termin-item .data .termin-icon{
       display: none;
    }
}

.color-green{
    color: var(--green);
}
.color-red{
    color: var(--red);
}

.paginator{
    margin: 0 0 0 0;
    list-style: none;
    padding: 10px 0;
    display: flex;
    justify-content: start;
    gap: 10px;
}
.paginator-item .paginator-link{
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #f1f1f1;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    border-radius: 8px;
}
.paginator-item .paginator-link:hover, .paginator-item .paginator-link.active{
    color: #fff;
    background-color: var(--color-main);
}

.title-bar{
    position: relative;
    min-height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.title-bar .page-title{
    padding: 250px 0 50px;
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 4px 3px 0px var(--color-main-dark);
    text-transform: uppercase;
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.001) 30%,rgba(0,0,0,.6) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,.001) 30%,rgba(0,0,0,.6) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.001) 30%,rgba(0,0,0,.6) 100%);
    text-align: center;
}
.title-bar .page-title h1{
    font-size: 50px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .title-bar .page-title{
        padding: 150px 0 50px;
        font-size: 28px;
    }
    .title-bar .page-title h1{
        font-size: 28px;
        font-weight: 700;
    }
}
section{
    position: relative;
    padding: 15px 0 30px;
}
section.bg1{
    overflow: hidden;
}
section.bg1:before{
    content: "";
    position: absolute;
    top: -400px;
    left: -700px;
    width: 1500px;
    height: 1500px;
    background-color: rgba(143, 116, 29, 0.1);
    rotate: -30deg;
    z-index: -1;
}

.section-title{
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .section-title{
        font-size: 26px;
        text-align: center;
    }

    section.bg1:before{
        top: -1000px;
        left: -700px;
        width: 1500px;
        height: 1500px;
        rotate: -40deg;
        z-index: -1;
    }
}

/* Login Page */

/* Contact page */
.section-contact{
    margin: 30px 0 40px 0;
}
.contact{
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}
.contact .con-1, .contact .con-2{
    padding: 30px;
}
.contact .con-1{
    border-right: 1px solid var(--light-gray);
}
.contact .con-1 .buttons{
    margin: 30px 0 20px 0;
}
.contact-info-block{
    padding: 15px;
    border: 1px solid #ddd;
}
.contact-company{
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-info{
    font-family: var(--font-second);
    text-align: center;
    font-size: 20px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .section-contact{
        margin: 0px 0 30px 0;
    }
    .contact{
        grid-template-columns: 1fr;
    }
    .contact .con-1, .contact .con-2{
        padding: 15px;
    }
    .contact .con-1{
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }
    .contact-company{
        font-size: 22px;
    }
    .contact-info{
        font-size: 16px;
    }
}

.list-item{
    font-size: 15px;
    font-weight: 600;
    padding: 3px 0;
    border-bottom: 1px solid var(--light-gray);
}
.list-item:last-child{
    border-bottom: none;
}
.list-item span{
    display: inline-block;
    width: 80px;
    font-size: 14px;
    font-weight: 400;
}

/* Program checkout */
.reservation-panel{
    padding: 15px;
    background-color: var(--color-main-light);
    border-radius: 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}
.reservation-panel .label{
    font-size: 16px;
    font-weight: 700;
    color: var(--color-main-dark);
    margin-bottom: 10px;
}
.reservation-panel .name{
    font-size: 20px;
    font-weight: 700;
}
.reservation-panel .name span{
    font-size:16px;
    font-weight: 400;
}
.small-notice{
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-main-dark);
}
#programReservationModal .modal-footer {
    display: block;
}
.checkout-btn{
    display: block;
    padding: 15px 25px;
    text-align: center;
    border: 2px solid var(--color-main-dark);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-main-dark);
    cursor: pointer;
}
.checkout-btn:hover{
    border: 2px solid var(--color-main-dark);
    color: #fff;
    background-color: var(--color-main-dark);
}
.checkout-cancel-btn{
    display: block;
    padding: 15px 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-main-dark);
    cursor: pointer;
}

/* Info page */
.info{
    background: #fff;
    padding: 30px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px 0 40px 0;
    font-size: 15px;
}
.info img{
    width: auto;
    height: auto;
}
@media (max-width: 768px) {
    .info{
        background: #fff;
        padding: 15px;
        margin-bottom: 0 0 30px 0;
    }
}

/* Page Cover Title */
.page-cover{
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.page-cover .caption{
    width: 100%;
    position: absolute;
    top: calc(50% - 100px);
    left: 0;
    text-align: center;
}
.page-cover .caption .title{
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
}
.page-cover .caption .address{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
}
.page-cover .caption .scroll-down{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    background-color: rgba(255,255,255, 0.1);
    animation: bounce 2s infinite;
    cursor: pointer;
}
.page-cover .caption .scroll-down:hover{
    background-color: #a67c00;
    border: 2px solid #a67c00;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .page-cover .caption{
        top: calc(50% - 60px);
    }
    .page-cover .caption .title{
        font-size: 40px;
        line-height: 1.2;
    }
    .page-cover .caption .address{
        font-size: 20px;
        line-height: 1.2;
    }
}

/* Footer */
footer{
    position: relative;
    padding: 50px 0 0 0;
    box-shadow: 0 0 5px 0 var(--shadow);
    background-color: #0a1821;
    background: -moz-linear-gradient(top,  rgba(10,24,33,1) 0%, rgba(10,24,33,1) 50%, rgba(0,17,28,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(10,24,33,1) 0%,rgba(10,24,33,1) 50%,rgba(0,17,28,1) 100%);
    background: linear-gradient(to bottom,  rgba(10,24,33,1) 0%,rgba(10,24,33,1) 50%,rgba(0,17,28,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a1821', endColorstr='#00111c',GradientType=0 );
}
footer .footer-logo{
    text-align: center;
    margin-top: 40px;
}
footer .footer-logo img{
    width: 150px;
}
footer .footer-contact ul{
    text-align: center;
    padding-left: 0;
    margin: 20px 0 0 0;
}
footer .footer-contact ul li{
    display: inline-block;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 18px;
}
footer .footer-contact ul li a{
    color: var(--white);
}
footer .footer-contact ul li a:hover{
    color: var(--color-main);
}

footer .footer-menu ul{
    text-align: center;
    padding-left: 0;
    margin: 20px 0 0 0;
}
footer .footer-menu ul li{
    display: inline-block;
    padding: 0 7px 10px 7px;
    font-weight: 600;
    font-size: 18px;
}
footer .footer-menu ul li a{
    color: var(--white);
}
footer .footer-menu ul li a:hover{
    color: var(--color-main);
}
footer .powered-by{
    padding: 20px 0 20px 0;
    text-align: center;
}
footer .powered-by div{
    margin-top: 10px;
    color: var(--white);
    font-size: 12px;
}

.back-to-top{
    display: block;
    position: absolute;
    top: -30px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0 0 0 5px #f1f1f1;
    box-shadow: 0 0 0 5px #f1f1f1;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}
.back-to-top:hover{
    background-color: var(--color-main);
}
.back-to-top:after{
    content: "\e5ce";
    display: block;
    font-family: "Material Symbols Rounded";
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    color: var(--color-main);
}
.back-to-top:hover:after{
    color: #fff;
}

/* Cookies */
.cookie-notice{
    z-index: 99;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    transition: all 1s;
    display: flex;
    justify-content: center;
}

.cookie-notice .cn-inner{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px;
    grid-template-rows: auto;
    grid-column-gap: 14px;
    grid-row-gap: 10px;
    background-color: var(--white);
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    border-radius: 8px;
    padding: 15px;
    width: 700px;
}
.cookie-notice .cn-inner .cn-text{
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font);
}
@media (max-width: 768px) {
    .cookie-notice .cn-inner{
        grid-template-columns: 1fr
    }
}

@media (max-width: 576px) {
    .hide-576{
        display: none;
    }
    .mobile-hpn{
        padding-left: 0;
        padding-right: 0;
    }
}

.offcanvas-bottom {
    right: 0;
    left: 0;
    height: auto;
    max-height: 100%;
    border-top: none;
    transform: translateY(100%);
    -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 20px 0 rgba(0,0,0,.3);
    background: #fff;
}
.offcanvas-bottom .offcanvas-body{
    padding: 30px;
}
.offcanvas .offcanvas-header.offcanvas-header-border{
    border-bottom: 1px solid #eee;
}
.offcanvas.height-50{
    max-height: 54%;
}

.offcanvas .product-item{
    -webkit-box-shadow: 0 0 0 1px #eee;
    box-shadow: 0 0 0 1px #eee;
}

.field{
    margin-bottom: 15px;
    color: var(--dark-gray);
}
.field.transparent{
    color: var(--white);
}
.field .field-label{
    color: inherit;
}
.field.transparent .field-label{
    color: inherit;
}
input.input-field{
    font-family: var(--font);
    font-size: 16px;
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 0px;
    outline-color: var(--color-main);
}
textarea.input-field{
    font-family: var(--font-third);
    font-size: 16px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    max-height: 500px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 0px;
    outline-color: var(--color-main);
}
.field.transparent input.input-field{
    font-size: 18px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255, 0);
    border-radius: 0px;
    outline-color: var(--color-main);
    background-color: rgba(255,255,255, 0.6);
}
.field.transparent input.input-field:-webkit-autofill,
.field.transparent input.input-field:-webkit-autofill:hover,
.field.transparent input.input-field:-webkit-autofill:focus,
.field.transparent input.input-field:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px rgba(255,255,255, 0.5) inset !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

.checkbox-field input{
    display: none;
}
.checkbox-field label{
    font-family: var(--font);
    background: #fff;
    padding: 10px 10px 10px 50px;
    border-radius: 0px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    -webkit-box-shadow:inset 0 0 0 1px #ddd;
    box-shadow:inset 0 0 0 1px #ddd;
}
.checkbox-field label:after{
    content: '\e835';
    font-family: "Material Symbols Rounded";
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 28px;
    font-weight: 200;
    text-align: center;
    color: #ddd;
    top: calc(50% - 14px);
    left: 10px;
}
.checkbox-field label .label-inner{
    display: flex;
    align-items: center;
}

.checkbox-field label .label-inner .info{
    flex-shrink: 1;
    justify-content: center;
}
.checkbox-field label .name, .checkbox-field label .price{
    transition: 0.4s;
    font-weight: 400;
    font-size: 15px;
}
.checkbox-field label .price{
    font-size: 15px;
}

.checkbox-field input:checked + label .name, .checkbox-field input:checked + label .price{
    color: var(--color-main);
    font-weight: 600;
}
.checkbox-field input:checked + label:after{
    content: '\e834';
    font-family: "Material Symbols Rounded";
    color: var(--color-main);
}
/*---Radio---*/
.radio-field input{
    display: none;
}
.radio-field label{
    background: #fff;
    padding: 0;
    border-radius: 5px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.4s;
    cursor: pointer;
    overflow: hidden;
}
.radio-field label .field-info{
    padding: 10px 10px 10px 50px;
    position: relative;
}
.radio-field label .field-info:after{
    content: '\e836';
    font-family: "Material Symbols Rounded";
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 28px;
    font-weight: 200;
    text-align: center;
    color: #ddd;
    top: calc(50% - 14px);
    left: 10px;
}
.radio-field label .name{
    transition: 0.4s;
    font-weight: 600;
    font-size: 18px;
}
.radio-field label .desc{
    transition: 0.4s;
    font-weight: 500;
    font-size: 14px;
}

.radio-field input:checked + label{
    -webkit-box-shadow:inset 0 0 0 1px var(--color-main-dark);
    box-shadow:inset 0 0 0 1px var(--color-main-dark);
}
.radio-field input:checked + label .name{
    color: var(--color-main-dark);
    font-weight: 600;
}
.radio-field input:checked + label .price{
    color: var(--color-main-dark);
    font-weight: 700;
}
.radio-field input:checked + label .field-info:after{
    content: '\e86c';
    font-family: "Material Symbols Rounded";
    color: var(--color-main-dark);
}
.radio-field label .description{
    padding: 15px;
    display: none;
    transition: all 0.3s;
}
.radio-field label .description p:last-child{
    margin-bottom: 0;
}
.radio-field input:checked + label .description{
    display: block;
}
/*---*/
.dropdown-radio input{
    display: none;
}
.dropdown-radio label{
    background: #fff;
    padding: 5px 10px 5px 35px;
    display: block;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 13px;
}
.dropdown-radio label:after{
    content: '\e836';
    font-family: "Material Symbols Rounded";
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    color: #ddd;
    top: calc(50% - 11px);
    left: 10px;
}
.dropdown-radio input:checked + label{
    color: var(--color-main);
}
.dropdown-radio input:checked + label:after{
    content: '\e86c';
    font-family: "Material Symbols Rounded";
    color: var(--color-main);
}


.btn {
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none
    }
}
.btn:hover {
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: var(--white);
}
.btn.disabled, .btn:disabled {
    pointer-events: none;
    opacity: .65
}
.quick-add.disabled{
    pointer-events: none;
    opacity: .65
}
.btn-black-transparent{
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0);
    color: var(--white);
}
.btn-black-transparent:hover{
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0);
    color: var(--white);
}
.btn-light{
    background-color: #eee;
    border: 1px solid #eee;
    color: var(--gray);
}
.btn-light:hover{
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    color: var(--white);
}
.btn-outline {
    background-color: transparent;
    border: 1px solid #0a1821;
    color: #0a1821;
}
.btn-outline:hover {
    background-color: transparent;
    border: 1px solid var(--color-main);
    color: var(--color-main);
}
.btn-block{
    display: block;
}
button.btn-block{
    width: 100%;
}
.btn-sm{
    padding: 5px 12px;
    font-size: 14px;
}
.btn-lg{
    padding: 15px 20px;
    font-size: 18px;
}
.btn:focus{
    outline: 0;
}
.btn.btn-dropdown{
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--dark-gray);
    display: inline-block;
    padding: 5px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: all 0.4s;
    margin-right: 15px;
}
.custom-dropdown-menu{
    border: none;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 5px 0 var(--shadow);
    box-shadow: 0 0 5px 0 var(--shadow);
}

/* Collapses */
.collapse-item {
    border: 1px solid var(--white);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    margin-bottom: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}
.collapse-item:last-child{
    margin-bottom: 0;
}
.collapse-item .title{
    display: block;
    position: relative;
    padding: 15px 50px 15px 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.4s;
}
.collapse-item .title:after{
    content: "\e145";
    font-family: "Material Symbols Rounded";
    font-size: 24px;
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.2s;
}
.collapse-item .title.open:after{
    transform: rotate(135deg);
}
.collapse-item .title.open{
    color: var(--blue);
}
.collapse-item .content{
    padding: 15px 15px 15px 15px;
    border-top: 1px solid #eee;
}
.offcanvas-header{
    border-bottom: 1px solid #ddd;
}
#offcanvasMenu, #offcanvasUserMenu{
    width: 330px;
}
.mini-user-menu{
    margin-top: 15px;
}
.mini-user-menu .title{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-main);
}
.user-menu-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark-gray);
    padding: 10px 15px;
    cursor: pointer;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
}
.user-menu-item.active{
    color: var(--color-main);
}
.user-menu-item:hover{
    color: var(--color-main);
}
.user-menu-item .bi{
    font-size: 20px;
    margin-right: 10px;
}

.menu-next-termins{
    margin-top: 40px;
}
.menu-next-termins .title{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-main);
}
.next-termin-item{
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
    color: var(--gray);
}
.next-termin-item .icon{
    color: var(--color-main-dark);
    text-align: center;
}
.next-termin-item .week-day{
    font-size: 14px;
    font-weight: 500;
}
.next-termin-item .time{
    font-size: 16px;
    font-weight: 600;
}

.menu-active-program{
    margin-top: 40px;
}
.menu-active-program .title{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-main);
}
.my-active-program{
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .05);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    margin-bottom: 10px;
    align-items: center;
}
.my-active-program .icon{
    color: var(--color-main-dark);
    text-align: center;
}
.my-active-program .name{
    font-size: 18px;
    font-weight: 600;
}
.my-active-program .sessionsRemaining{
    font-size: 14px;
    font-weight: 500;
}
.my-active-program .sessionsRemaining span{
     font-size: 16px;
     font-weight: 700;
}
.my-active-program .expire{
    font-size: 14px;
    font-weight: 500;
}
.my-active-program .expire span{
    font-size: 16px;
    font-weight: 700;
}



.order-product{
    border-bottom: 1px solid var(--color-main-dark);
}
.order-product .label{
    font-size: 15px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 5px;
}
.order-product .product{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.payment-description{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.payment-description .label{
    font-size: 15px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 5px;
}
.payment-description .item{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .payment-description{
        grid-template-columns: 1fr;
    }
}

.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
}

.common-btn{
    display: block;
    padding: 15px 25px;
    text-align: center;
    border: 2px solid var(--color-main-dark);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main-dark);
    cursor: pointer;
    line-height: 1;
}
.common-btn2{
    padding: 15px 25px;
    text-align: center;
    border: 2px solid var(--color-main-dark);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main-dark);
    cursor: pointer;
    line-height: 1;
}
.common-btn:hover, .common-btn2:hover{
    border: 2px solid var(--color-main-dark);
    color: #fff;
    background-color: var(--color-main-dark);
}

.form-control{
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus{
    box-shadow: 0px 0px 0px 3px var(--color-main-light);
    border: 1px solid var(--color-main-light);
}
.form-select{
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 19px 15px;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    font-size: 16px;
}

#loginModal .modal-footer, #registerModal .modal-footer{
    display: block;
}

/* Globals */
.or-divider{
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 35px 0;
}
.or-divider:after{
    content: "ILI";
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: calc(50% - 20.5px);
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    color: var(--gray);
    background-color: var(--white);
    border-radius: 50%;
    border: 1px solid #ddd;
}

hr{ width: 100%; height: 1px; background-color: #f1f1f1; margin: 15px 0; border: none; opacity: 1}
.border-bottom{border-bottom: 1px solid #ddd !important;}
.float-right{float: right;}
.float-left{float: left;}
.text-center{ text-align: center}
.text-right{ text-align: right}
.text-left{ text-align: left}
.text-justify{ text-align: justify}
.bg-light-gray{background-color: #f1f1f1;}
.bg-blue{background-color: #0093d3;}
.bg-blue-gradient{
    background: #0093d3;
    background: -moz-linear-gradient(top, #055989 0%, #0093d3 50%);
    background: -webkit-linear-gradient(top, #055989 0%, #0093d3 50%);
    background: linear-gradient(to bottom, #055989 0%, #0093d3 50%);
}
.bg-dark-blue{background-color: #055989;}
.color-white{ color: #fff;}
.fw200{ font-weight: 200 !important;}
.fw300{ font-weight: 300 !important;}
.fw400{ font-weight: 400 !important;}
.fw500{ font-weight: 600 !important;}
.fw600{ font-weight: 600 !important;}
.fw700{ font-weight: 700 !important;}
.fw800{ font-weight: 800 !important;}
.fs10{ font-size: 10px !important;}
.fs11{ font-size: 11px !important;}
.fs12{ font-size: 12px !important;}
.fs13{ font-size: 13px !important;}
.fs14{ font-size: 14px !important;}
.fs15{ font-size: 15px !important;}
.fs16{ font-size: 16px !important;}
.fs17{ font-size: 17px !important;}
.fs18{ font-size: 18px !important;}
.fs19{ font-size: 19px !important;}
.fs20{ font-size: 20px !important;}
.fs21{ font-size: 21px !important;}
.fs22{ font-size: 22px !important;}
.fs23{ font-size: 23px !important;}
.fs24{ font-size: 24px !important;}
.fs25{ font-size: 25px !important;}
.fs26{ font-size: 26px !important;}
.fs27{ font-size: 27px !important;}
.fs28{ font-size: 28px !important;}
.fs29{ font-size: 29px !important;}
.fs30{ font-size: 30px !important;}
.fs40{ font-size: 40px !important;}
.fs50{ font-size: 50px !important;}
.fs60{ font-size: 60px !important;}
.pn {padding: 0 !important;}
.p1 {padding: 1px !important;}
.p2 {padding: 2px !important;}
.p3 {padding: 3px !important;}
.p4 {padding: 4px !important;}
.p5 {padding: 5px !important;}
.p6 {padding: 6px !important;}
.p7 {padding: 7px !important;}
.p8 {padding: 8px !important;}
.p10 {padding: 10px !important;}
.p12 {padding: 12px !important;}
.p15 {padding: 15px !important;}
.p20 {padding: 20px !important;}
.p25 {padding: 25px !important;}
.p30 {padding: 30px !important;}
.p35 {padding: 35px !important;}
.p40 {padding: 40px !important;}
.p50 {padding: 50px !important;}
.ptn {padding-top: 0 !important;}
.pt5 {padding-top: 5px !important;}
.pt7 {padding-top: 7px !important;}
.pt10 {padding-top: 10px !important;}
.pt15 {padding-top: 15px !important;}
.pt20 {padding-top: 20px !important;}
.pt25 {padding-top: 25px !important;}
.pt30 {padding-top: 30px !important;}
.pt35 {padding-top: 35px !important;}
.pt40 {padding-top: 40px !important;}
.pt50 {padding-top: 50px !important;}
.pt60 {padding-top: 60px !important;}
.pt70 {padding-top: 70px !important;}
.pt80 {padding-top: 80px !important;}
.pt90 {padding-top: 90px !important;}
.pt100 {padding-top: 100px !important;}
.prn {padding-right: 0 !important;}
.pr5 {padding-right: 5px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr25 {padding-right: 25px !important;}
.pr30 {padding-right: 30px !important;}
.pr35 {padding-right: 35px !important;}
.pr40 {padding-right: 40px !important;}
.pr50 {padding-right: 50px !important;}
.pbn {padding-bottom: 0 !important;}
.pb5 {padding-bottom: 5px !important;}
.pb7 {padding-bottom: 7px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb35 {padding-bottom: 35px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb50 {padding-bottom: 50px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb70 {padding-bottom: 70px !important;}
.pb80 {padding-bottom: 80px !important;}
.pb90 {padding-bottom: 90px !important;}
.pb100 {padding-bottom: 100px !important;}
.pln {padding-left: 0 !important;}
.pl5 {padding-left: 5px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl25 {padding-left: 25px !important;}
.pl30 {padding-left: 30px !important;}
.pl35 {padding-left: 35px !important;}
.pl40 {padding-left: 40px !important;}
.pl50 {padding-left: 50px !important;}
.mn { margin: 0 !important; }
.mbn { margin-bottom: 0 !important; }
.mb5 {margin-bottom: 5px !important;}
.mb7 {margin-bottom: 7px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb100 {margin-bottom: 100px !important;}
.mtn { margin-top: 0 !important; }
.mt5 {margin-top: 5px !important;}
.mt7 {margin-top: 7px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}
.mt90 {margin-top: 90px !important;}
.mt100 {margin-top: 100px !important;}
@media (max-width: 992px) {
    .mobile-hide{display: none !important;}
}
.grecaptcha-badge{
    z-index: -99999;
    display: none !important;
}
.alert{
    font-family: var(--font);
}

::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: var(--color-scrollbar);
    border-radius: 4px;
}