@charset "UTF-8";

@font-face {
  font-family: "Mattone";
  src: url('../fonts/Mattone-Regular.otf') format('truetype');
  font-weight: normal;
}

/*
* Layout
*/

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

.body-wrap {
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1560px;
}

@media screen and (max-width:768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/*
* Typography & Listing
*/

h1 {
  font-family: "Mattone", sans-serif;
  font-size: 3rem;
  color: #333;
}

h2 {
  font-family: "Mattone", sans-serif;
  font-size: 2.5rem;
  color: #333;
}

h3 {
  font-family: "Mattone", sans-serif;
  font-size: 1.5rem;
  color: #333;
}

h4 {
  font-family: "Mattone", sans-serif;
  font-size: 1.25rem;
  color: #333;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #eee;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    h4 {
        font-size: 1rem;
    }
    
}


/*
* Header & Navbar
*/

.navbar-expand-lg .navbar-nav{
    gap: 30px;
}

.navbar-brand img {
    width: 190px;
    height: auto;
}

.header-area .header-nav {
    background: #070E1C;
}

.header-area .header-nav.sticky {
    width: 100%;
    position: fixed !important;
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
    -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
            animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 9999;
}
.header-area .header-nav.sticky .header-nav-menu {
    padding-top: 0px;
}
.header-area .header-nav.sticky .drop-down {
    top: 55px;
}
.header-area .nav-item {
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.header-area .nav-item a {
    font-family: "Mattone", sans-serif;
    font-size: 16px;
    color: #fff;
}

.offcanvas {
    background: #070E1C;
}

.offcanvas .btn-close {
    color: #fff !important;
}

.offcanvas-body .nav-item a {
    color: #FFF;
    font-size: 18px;
}

.offcanvas-body .navbar-nav {
    gap: 10px;
}

.offcanvas-header i {
    color: #fff;
    font-size: 2em;
    margin-top: 10px;
}

.header-area .nav-item:hover {
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.header-area .nav-item:hover .drop-down {
    display: block;
}
.header-area .mode-and-button .mode .light-mode {
    margin-right: 20px;
    font-size: 16px;
    color: #212121;
}

.drop-down {
    display: none;
    transition: 0.6s;
    content: "";
    display: none;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    top: 82px;
    position: fixed;
    -webkit-animation: 0.3s ease-in-out normal none 1 fadeInUp;
            animation: 0.3s ease-in-out normal none 1 fadeInUp;
}
.drop-down .drop-down-wrap {
    width: 470px;
    height: 300px;
    background-color: #fff;
    overflow: hidden;
}
.drop-down .drop-down-wrap .drop-down-menu {
    padding: 30px;
}
.drop-down .drop-down-wrap .drop-down-menu .dropdown-item:not(:last-child) {
    margin-bottom: 20px;
}
.drop-down .drop-down-wrap .drop-down-menu .dropdown-item .item-content {
    margin-left: 8px;
}
.drop-down .drop-down-wrap .drop-down-menu .dropdown-item .item-content .item-title {
    font-size: 16px;
    line-height: 19px;
    margin: 0px;
    padding: 0px;
}
.drop-down .drop-down-wrap .drop-down-menu .dropdown-item .item-content .item-sub {
    font-size: 12px;
    line-height: 12px;
    color: #797979;
}
.drop-down .drop-down-wrap .dropdown-thumb {
    background-size: cover;
    background-position: center;
    height: 100%;
}
.drop-down .drop-down-wrap .dropdown-thumb .dropdown-sub {
    bottom: 40px;
    left: 40px;
    font-size: 18px;
    color: #fff;
}

.header-nav-2 .drop-down {
    top: 55px;
}

@media screen and (max-width: 768px) {
    .header-area .header-nav {
        height: 70px;
    }

    .mobile-view-header .icon i {
        color: #fff;
        font-size: 2em;
        margin-top: 10px;
    }
}

/* mobile menu custom */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    line-height: 1;
}
.mobile-menu-toggle i {
    color: #fff;
    font-size: 1.8em;
    pointer-events: none;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: #070E1C;
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu-panel.active {
    left: 0;
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.mobile-menu-backdrop.active {
    display: block;
}

.mobile-menu-inner {
    padding: 20px;
}

.mobile-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.mobile-menu-head img {
    width: 140px;
    height: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4em;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-list li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-family: "Mattone", sans-serif;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-list li a:hover {
    color: #15D677;
}

.mobile-menu-cta {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 20px;
    background-color: #1660A7;
    color: #fff !important;
    font-family: "Mattone", sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.mobile-menu-cta:hover {
    background-color: #fff;
    color: #000 !important;
}

/*
* Buttons
*/

button {
    font-family: "Mattone", sans-serif;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 800;
    background-color: #1660A7;
    color: #FFF;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

button.custom-btn2 {
    padding: 8px 15px;
    font-size: 16px;
}
button.custom-btn2:hover {
    background-color: #FFF;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

button.custom-btn2 a {
    color: #FFF !important;
    text-decoration: none;
}

button.custom-btn2:hover a {  
    color: #000 !important;
    text-decoration: none;
}

a.custom-btn2 {
    padding: 8px 15px;
    font-size: 16px;
    color: #FFF !important;
    text-decoration: none;
    display: inline-block;
}
a.custom-btn2:hover {
    background-color: #FFF;
    color: #000 !important;
    text-decoration: none;
}

button.custom-btn {
    padding: 15px 25px;
    font-size: 20px;
}

button.custom-btn:hover {
    background-color: #15D677;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.va button.custom-btn:hover {
    background-color: #FFF;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/*
* Hero
*/  

.hero-sec2 {
    background-image: url(../images/hero-bg-mobile.jpg);
    height: 90vh;
    position: relative;
    background-position: top center;
    background-size: cover;
    font-family: "Mattone", sans-serif;
}

.hero-sec2 .hero-content .row .col-lg-7 {
    margin-top: -100px;
}

.hero-sec2 .hero-content .hero-logo {
    width: 600px;
}

.hero-sec2 .hero-content h1.title {
    font-size: 90px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-top: 20px;
    line-height: 1;
}

.hero-sec2 .hero-content .date {
    font-size: 50px;
    font-weight: 800;
    color: #FFFFFF;
    margin-top: 10px;
}


.green {
    color: #15D677;
}

.hero-sec2 .hero-content .title-masterclass {
    font-size: 30px;
    font-weight: 800;
    color: #333;
    margin-top: 60px;
}

.hero-sec2 .hero-content .title-masterclass h2 {
    color: #15D677;
    font-weight: 900;
}

.info-sec {
    position: relative;
    top: -100px;
}

.info-sec .info-countdown {
    background: linear-gradient(97.48deg,#15D677 0%,#11c46e 100%);
    font-family: "Mattone", sans-serif;
    background-size: cover;
    background-position: center;
    padding: 30px 0px;
    position: relative;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 0px 100px rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 100px rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.info-sec .info-countdown .dots {
    position: absolute;
    bottom: -50px;
    right: -40px;
    opacity: 0.8;
    z-index: -1;
}

.info-sec .info-countdown .counter-box {
    text-align: center;
    margin-bottom: 0;
}

.info-sec .info-countdown .counter-box li {
    width: 25%;
    flex-grow: 1;
    color: #000 !important;
}

.info-sec .info-countdown .counter-box li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.info-sec .info-countdown .counter-box li strong {
    font-size: 60px;
    background: #FFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-align: center;
    color: #000 !important;
}

.info-sec .info-countdown .counter-box li span {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-sec2 .hero-content .hero-logo {
        width: 90%;
    }

    .hero-sec2 {
        background-image: url(../images/hero-bg-mobile.jpg);
        margin-top: 0px;
    }
    

    .dots {
        display: none;
    }

    .info-sec .info-countdown .counter-box {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
    }

    .hero-sec2 .hero-content .date {
        font-size: 30px;
    }

    .hero-sec2 .hero-content .title-masterclass {
        font-size: 20px;
        color: #FFF;
    }

    .info-sec .info-countdown .counter-box li {
        text-align: center;
        width: 100%;
    }

    .info-sec .info-countdown .counter-box li:not(:last-child) {
        border-right: none;
    }
}

/*
* About Section
*/

.about-sec {
    margin-top: -80px;
    position: relative;
}

.about-sec .shape {
    position: absolute;
    bottom: -40%;
    right: 0px;
}

.about-sec .shape img {
    width: 300px;
    height: 600px;
}

.about-sec .about-items-wrap {
    background: url(../images/banner-master-26.png);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    margin-top: 80px;
    height: 500px;
}

.about-sec .about-items-wrap img {
    width: 80%;
    margin-top: -30px;
}

.about-sec .about-items-wrap .about-item .item-thumb .item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    bottom: 50px;
    left: 30px;
    width: 80%;
}

.about-sec .about-items-wrap .about-item .item-thumb .item-content .content-title .date {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-sec .about-items-wrap .about-item .item-thumb .item-content .content-title .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
}

.about-sec .about-items-wrap .about-item .item-thumb .item-content .about-video .video-btn1 {
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ddddef5c;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    border-radius: 5px;
}

.about-sec .about-items-wrap .about-item .item-thumb .item-content .about-video .video-btn1 i {
    color: #fff;
}

.about-sec .about-items-wrap .about-item .item-thumb .item-content .about-video .video-btn1:hover {
    background-color: #7d207d;
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.about-sec .about-items-wrap .dots {
    position: absolute;
    bottom: -35px;
    left: -70px;
    opacity: 0.5;
    z-index: -1;
}

.section-head .label {
    font-size: 24px;
    color: #15D677;
    padding: 5px 30px;
    display: inline-block;
    margin-bottom: 22px;
    border-radius: 10px;
    border: 2px solid #15D677;
    font-weight: bold;
    transition: all .2s ease-in;
}

.section-head .label.btn {
    font-size: 24px;
    color: #fff;
    background: linear-gradient(90deg, rgb(73, 96, 139) 0%, rgb(38, 49, 79) 100%);
    padding: 5px 30px;
    display: inline-block;
    margin-bottom: 22px;
    border-radius: 10px;
    font-weight: bold;
    border: none;
    transition: all .2s ease-in;
}

.section-head .label.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.section-head .label a:hover {
    color: #FFF !important;
}

.section-head .title {
    font-weight: 600;
}

.about-sec .desc {
    color: #797979;
}

.about-sec .subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #092541;
}

.about-sec .card {
    /* background: linear-gradient(180deg,#0cca6e 0%,#31ed8f 100%); */
    background: linear-gradient(180deg, rgb(71 92 132) 0%, rgb(56 66 97) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-sec .card .title-list {
    font-size: 28px;
    font-weight: 600;
    font-family: "Mattone", sans-serif;
    margin-bottom: 20px;
    color: #FFF;
    min-height: 200px;
    display: flex;
    align-items: center;
    height: 100%;
}

.about-sec .desc p {
    color: #000;
    font-weight: 300;
}

.about-sec .desc ul {
    list-style: none;
}

.about-sec .desc ul li {
    margin-bottom: 10px;
    display: flex;
}

.about-sec .desc ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    color: #1660A7;
    font-size: 22px;
    margin-right: 20px;
    display: block;
}

.about-sec .subtitle.banner {
    color: #000;
    font-family: "Mattone", sans-serif;
    padding: 30px 0;
}

.about-sec .subtitle.banner h3 {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding-top: 20px;
    font-size: 30px;
    color: #14b465;
    font-weight: 800;
}

@media screen and (max-width: 768px) {
    
    .section-head .title {
        font-size: 26px !important;
    }
    
    .about-sec .subtitle {
        font-size: 16px;
    }

    .about-sec .card .title-list {
        font-size: 24px;
        min-height: 150px;
    }

    .about-sec .about-items-wrap {
        min-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

/*
* Speaker
*/

.speakers-gallery-sec {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 100px 0px;
}

.speakers-gallery-sec .shape {
    position: absolute;
    bottom: -28%;
    left: 0px;
    z-index: -1;
}

.speakers-gallery-sec .shape img {
    width: 350px;
    height: 700px;
}

.speakers-gallery-sec .speakers-gallery-items-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin-top: 100px !important;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #1660A7 0%, #092541 100%);
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .speakers-gallery-item-thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    clip-path: circle(240% at 50% -140%);
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .speakers-gallery-item-thumb img {
    width: 100%;
    height: fit-content;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .item-content {
    padding: 20px 20px 0 20px;
    border-radius: 0px 0px 10px 10px;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .item-content .title {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .item-content .role {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px;

}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .item-content .sub {
    font-size: 16px;
    color: #797979;
    display: none;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item:hover .speakers-gallery-item-thumb {
    opacity: 0.9;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item:hover .speakers-gallery-item-thumb:after {
    content: "";
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.speakers-gallery-item-thumb.speaker-tba {
    background: #1a2540;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}
.speaker-tba-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 4em;
}

.speakers-gallery-sec .speakers-gallery-items-wrap .dots {
    position: absolute;
    top: -120px;
    right: -45px;
    z-index: -1;
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .speakers-gallery-sec .speakers-gallery-items-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .speakers-gallery-sec .speakers-gallery-items-wrap .speakers-gallery-item .speakers-gallery-item-thumb img {
        height: auto !important;
    }
}

/*
* CTA
*/

.cta-sec {
    position: relative;
    padding-bottom: 120px;
}

.cta-sec .shape {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.cta-sec .shape img {
    width: 700px;
}

.cta-sec .cta-content-wrap {
    position: relative;
}

.cta-sec .cta-content-wrap .cta-title {
    font-size: 40px;
    font-weight: 600;
    color: #212121;
}

.cta-sec .cta-content-wrap .desc {
    font-size: 20px;
    color: #212121;
}

.cta-sec .cta-content-wrap form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cta-sec .cta-content-wrap form input {
    height: 50px;
    border: none;
    background-color: #F3F3F3;
    max-width: 280px;
    margin-right: 12px;
    padding-left: 30px;
}

.cta-sec .cta-content-wrap form input::-webkit-input-placeholder {
    margin-left: 30px;
}

.cta-sec .cta-content-wrap form input::-moz-placeholder {
    margin-left: 30px;
}

.cta-sec .cta-content-wrap form input:-ms-input-placeholder {
    margin-left: 30px;
}

.cta-sec .cta-content-wrap form input::-ms-input-placeholder {
    margin-left: 30px;
}

.cta-sec .cta-content-wrap form input::placeholder {
    margin-left: 30px;
}

.cta-sec .cta-content-wrap .dots .cta-dots-1 {
    position: absolute;
    top: 100px;
    left: 0px;
    opacity: 0.5;
}

.cta-sec .cta-content-wrap .dots .cta-dots-2 {
    position: absolute;
    top: -310px;
    right: 0px;
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .cta-sec .cta-content-wrap .cta-title {
        font-size: 30px;
    }
    
}


/*
* Section Video
*/

.video-sec {
    padding: 100px 0px;
    background-size: cover;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    background: url('../images/hero_bg_youcoach25.jpg');
    background-size: cover;
}

.video-sec .video-wrap {
    position: relative;
}

.video-sec .video-wrap .video-image img {
    width: 80%;
}

.video-sec .video-wrap .video-play {
    position: absolute;
    top: 250px;
    right: 0px;
  }

  .video-sec .video-wrap .video-play img {
    max-width: 400px;
  }

.video-sec .video-wrap .dots {
    position: absolute;
    top: -50px;
    right: 160px;
    opacity: 0.9;
    z-index: -1;
}

.video-sec .video-content-wrap {
    position: relative;
    margin-left: 108px;
}


.video-sec .video-content-wrap .title {
    margin-bottom: 25px;
    color: #FFF;
    font-size: 28px;
    line-height: 1.5;
}

.video-sec .video-content-wrap .desc {
    font-size: 18px;
    color: #FFF;
    font-weight: 300;
    margin-bottom: 40px;
}

.video-sec .video-content-wrap .desc strong {
    font-size: 22px;
    font-weight: 300;
    color: #47fda5;
}

.video-sec .video-content-wrap .management {
    margin-bottom: 20px;
}

.video-sec .video-content-wrap .management .count-block {
    font-size: 22px;
    font-weight: 600;
    color: #212121;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.9);
    padding: 20px;
}

.video-sec .video-content-wrap .management span {
    background: #15D677;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

.video-sec button.custom-btn2 {
    background-color: #15D677;
    padding: 15px 25px;
    font-size: 20px;
    margin-top: 10px;
}
ƒ√
.video-sec button.custom-btn2:hover {
    background: #FFF;
    color: #000;
}

.video-sec .video-content-wrap .dots {
    position: absolute;
    bottom: 20px;
    right: -50px;
    opacity: 0.8;
}

.img-moving-anim1 {
    position: reletive;
    -webkit-animation: glide1 3s linear infinite alternate;
    animation: glide1 3s linear infinite alternate;
}

.img-moving-anim2 {
    position: absolute;
    -webkit-animation: glide2 4s ease-in-out alternate infinite;
    animation: glide2 4s ease-in-out alternate infinite;
}

@-webkit-keyframes glide1 {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.img-moving-anim3 {
    position: relative;
    -webkit-animation: glide2 3s ease-in-out alternate infinite;
            animation: glide2 3s ease-in-out alternate infinite;
  }
  
  @-webkit-keyframes glide2 {
    0% {
      -webkit-transform: translateY(-20px) translateX(50px);
      transform: translateY(-20px) translateX(50px);
    }
    100% {
      -webkit-transform: translateY(-20px) translateX(0px);
      transform: translateY(-20px) translateX(0px);
    }
  }
  
  @keyframes glide2 {
    0% {
      -webkit-transform: translateY(-20px) translateX(50px);
      transform: translateY(-20px) translateX(50px);
    }
    100% {
      -webkit-transform: translateY(-20px) translateX(0px);
      transform: translateY(-20px) translateX(0px);
    }
  }

@media screen and (max-width: 768px) {

    .video-sec {
        padding: 50px 0px;
    }

    .video-sec .video-wrap .video-image {
        z-index: 9;
    }

    .video-sec .video-wrap {
        text-align: center;
    }

    .video-sec .video-content-wrap {
        margin-top: 50px;
        margin-left: 0px;
    }

    .video-sec .video-wrap .video-play {
        position: relative;
        top: -20px;
        z-index: 0;
    }

    .video-sec .video-wrap .video-play img {
        width: 90%; 
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .video-sec .video-content-wrap {
        margin-top: 50px;
        margin-left: 0px;
    }
}

/*
* Schedule Section
*/

.schedule-sec {
    padding-top: 80px;
    padding-bottom: 0px;
    position: relative;
}

.schedule-sec .section-head .subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #092541;
}

.schedule-sec .shape {
    position: absolute;
    top: 25%;
    left: 0px;
    z-index: -1;
}

.schedule-sec .shape img {
    width: 300px;
    height: 850px;
}

.schedule-sec .schedule-content-wrap {
    background-color: #fff;
    position: relative;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
}

.schedule-sec h3.label-day {
    background: linear-gradient(90deg,#1660A7 0%,#092541 100%);
    color: #fff;
}

.schedule-sec .schedule-content-wrap .schedule-nav-tab {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.schedule-sec .schedule-content-wrap .schedule-nav-tab .schedule-nav-item button {
    background-color: transparent;
    color: #212121;
    font-size: 24px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.schedule-sec .schedule-content-wrap .schedule-nav-tab .schedule-nav-item button.active {
    background: linear-gradient(90deg,#1660A7 0%,#092541 100%);
    color: #fff;
}

/* .schedule-sec .schedule-content-wrap .schedule-nav-tab .schedule-nav-item button.active:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #77BF41;
    margin-left: -112px;
    top: 92px;
} */

.schedule-sec .schedule-content-wrap .schedule-nav-tab .schedule-nav-item:hover button {
    color: #32529D;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.schedule-sec .schedule-content-wrap .schedule-nav-tab .schedule-nav-item:hover button.active {
    color: #fff;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content {
    padding: 0px;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item {
    padding: 40px 30px 40px 30px;
    overflow: hidden;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-filter: drop-shadow(0px 40px 70px rgba(75, 3, 116, 0.15));
    filter: drop-shadow(0px 40px 70px rgba(75, 3, 116, 0.15));
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-thumb {
    text-align: center;
}


.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-description .name {
    font-size: 20px;
    color: #1660A7;
    font-weight: 700;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-description .date {
    font-size: 14px;
    color: #999;
    font-weight: 200;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-description .time {
    font-size: 19px;
    color: #212121;
    font-weight: 600;
    font-family: "Mattone", sans-serif;
    margin-bottom: 10px;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .col-lg-7 {
    padding-left: 3em;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-title-area .title {
    font-size: 18px;
    color: #212121;
    font-weight: 600;
    line-height: 1.5;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-title-area .title-desc {
    font-size: 18px;
    color: #797979;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-title-area .title-desc a {
    color: #e02831;
}

.schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.schedule-sec .dots {
    position: absolute;
    bottom: -51px;
    right: -35px;
    opacity: 0.5;
    z-index: -1;
}

@media screen and (max-width: 768px) {

    .schedule-sec .schedule-content-wrap {
        height: 700px;
        overflow: hidden;
    }

    .schedule-sec .schedule-content-wrap .schedule-nav-tab .schedule-nav-item button {
        font-size: 18px;
        border: 1px solid #ddd;
    }

    .schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .card-thumb {
        text-align: left;
    }

    .schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item {
        gap: 20px;
    }

    .schedule-sec .schedule-content-wrap .schedule-tab-content .schedule-item .col-lg-7 {
        padding-left: calc(var(--bs-gutter-x) * .5);;
    }
}

/*
* Pricing Section
*/

.pricing-sec {
    padding: 50px 0px;
    position: relative;
}

.pricing-sec .shape {
    position: absolute;
    top: -165px;
    left: 0px;
    z-index: -1;
}

.pricing-sec .shape img {
    width: 300px;
}

.section-head .title {
    font-weight: 600;
    font-size: 40px;
}

.section-head .desc {
    font-size: 24px;
    color: #1275d1;
    font-weight: 700;
}

.pricing-cart-wrap {
    position: relative;
}

.pricing-cart-wrap .card {
    background: linear-gradient(180deg,#1660A7 0%,#092541 100%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 20px;
}

.pricing-cart-wrap .va .card {
    background: linear-gradient(180deg,#0cca6e 0%,#31ed8f 100%);
    border: 0;
}

.pricing-cart-wrap .card .card-body {
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
}

.pricing-cart-wrap .card .card-body .badge {
    white-space: break-spaces;
    line-height: 1.2;
}

.pricing-cart-wrap .card .card-body .title {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-cart-wrap .card .card-body .desc {
    color: #FFF;
    font-size: 17px;
    text-align: center;
}

.pricing-cart-wrap .card .card-body .card-lable {
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
}

.pricing-cart-wrap .card .card-body .card-lable i {
    color: #77BF41;
    margin-right: 10px;
}

.pricing-cart-wrap .card .card-body .price-pacage {
    font-family: "Open Sans", sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #15D677;
    text-align: center;
    margin-bottom: auto;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.pricing-cart-wrap .va .card .card-body .price-pacage {
    color: #333;
    text-shadow: 0 0 30px rgba(255, 255,255 , 0.8);
}

.pricing-cart-wrap .va .card .card-body .desc {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #333;
    padding: 10px;
    border: 2px solid #FFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pricing-cart-wrap .card .card-body .price-pacage .regular-price {
    font-size: 18px;
    background: linear-gradient(97.14deg, #e02831 7.11%, #fd0202 97.04%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    font-weight: 400;
}

.pricing-cart-wrap .card .card-body ul {
    line-height: 2;
    height: 100%;

}

.pricing-cart-wrap .card .card-body ul li {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.pricing-cart-wrap .card .card-body ul li a i {
    color: #77BF41;
    padding-right: 8px;
}

.pricing-cart-wrap .card .card-body .card-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pricing-cart-wrap .card .card-body .card-btn button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.pricing-cart-wrap .card .card-body .card-btn .card-footer-label {
    display: inline-block;
    font-size: 14px;
    color: #BCBCBC;
    margin: auto;
}

.pricing-cart-wrap .card:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: drop-shadow(0px 0px 20px rgba(75, 3, 116, 0.15));
    filter: drop-shadow(0px 0px 20px rgba(75, 3, 116, 0.15));
}

.pricing-cart-wrap .dots {
    position: absolute;
    content: "";
    top: -55px;
    right: -35px;
    opacity: 0.5;
    z-index: -1;
}

.pricing-cart-wrap .va-images .card {
    background: url('../images/hero_bg_youcoach25.jpg');
    background-position: center;
}

@media screen and (max-width: 768px) {
    .pricing-sec .section-head {
        padding-right: unset !important;
        padding-left: unset !important;
    }

    .section-head .label.btn {
        font-size: 20px;
    }

    .pricing-cart-wrap .card .card-body .title {
        height: auto;
    }
    
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .about-sec .card .title-list {
        flex-direction: column;
        justify-content: center;
        min-height: 150px;
    }
}

/*
* Faq Section
*/

.faq-sec {
    padding: 80px 0px;
  }
  .faq-sec .title-area .title {
    line-height: 44.2px;
    padding-right: 55px;
    font-size: 42px;
  }
  .faq-sec .desc {
    font-size: 20px;
    color: #797979;
  }

  .faq-sec .question-area {
    border: 1px solid #ddd;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  }

  .faq-sec .question-area .accordion .accordion-item {
    border: none;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .faq-sec .question-area .accordion .accordion-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }

  .faq-sec .question-area .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: #32529D;
    padding: 25px 0px;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .faq-sec .question-area .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background-color: transparent !important;
  }
  .faq-sec .question-area .accordion .accordion-item .accordion-collapse .accordion-body {
    color: #788190;
    padding-top: 0px;
    padding-left: 0px;
    font-size: 18px;
    font-weight: 300;
  }
  
  .accordion-button:not(.collapsed)::after {
    content: "✕";
    color: black;
    background-image: none;
  }
  
  .accordion-button.collapsed::after {
    content: "+";
    color: black;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    background-image: none;
  }

@media screen and (max-width: 768px) {
.faq-sec .title-area .title {
    padding-right: unset;
    font-size: 26px;
    line-height: 1;
}
}


.loader {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: relative;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 3px solid #000;
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 2s linear infinite;
}

.loader::after {
    animation-delay: 1s;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}