header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.indexheight {
    height: 100vh;
}

.videodiv {
    position: absolute;
    height: 100vh;
    width: 100%;
}

.videodiv::before{
    content: "";
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.594);
    z-index: 2;
}

video {
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}

nav {
    display: flex;
    align-items: center;
    width: 95%;
    margin-top: 2rem;
    background-color: var(--nav-light);
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    z-index: 5;
}

nav .nav-left {
    width: 10%;
}

nav .nav-left img {
    width: 8rem;
    border-radius: 50%;
    margin: 1rem;
    margin-left: 3rem;
}

.logo-director {
    margin: 0 !important;
    padding: 0;
}

.logo-director:hover {
    border: none !important;
}

nav .nav-center {
    text-align: center;
    width: 70%;
}

nav .nav-right {
    text-align: end;
    width: 20%;
}

nav a {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1rem 3rem;
    color: var(--secondary-color);
    transition:  color .5s;
    padding-bottom: .5rem;
}

.nav-a-active {
    color: var(--primary-color) !important;
}

nav a:hover {
    color: var(--primary-color);
    border-bottom: var(--primary-color) 3px solid;
}

nav .join-us {
    background-color: var(--primary-color);
    padding: 2rem 3rem;
    color: var(--light-color);
    border-radius: 1.5rem;
}

.join-us:hover {
    border: none;
    color: var(--light-color);
}

.join-us-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
    z-index: 5;
}

.join-us-container strong {
    color: var(--light-color);
    font-size: 5rem;
    text-shadow: 0px 1px 1px #0000004e;
    font-family: 'Teko', sans-serif;
}

.join-us-container .littlestrong{
    font-size: 2.5rem;
}

.join-us-container .join-us {
    background-color: var(--primary-color);
    padding: 2.5rem 5rem;
    color: var(--light-color);
    border-radius: 1.5rem;
    margin-top: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

/*  */
.responsive-nav-main {
    background-color: var(--low-opacity-primary-nav);
    height: 100vh;
    width: 100%;
    right: -100%;
    position: fixed;
    transition: all .4s;
    z-index: 999999999;
}

.responsive-nav-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.responsive-nav-container .responsive-nav-top {
    position: absolute;
    top: 3rem;
    left: 3rem;
}

.responsive-nav-container .responsive-nav-center {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem 5rem;
    border-radius: .5rem;

}

.responsive-nav-container .responsive-nav-top i {
    font-size: 2.5rem;
    color: var(--light-color);
    cursor: pointer;
}

.responsive-nav-container .responsive-nav-center a {
    margin: 2rem 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-color);
}

/*  */
.nav-right i {
    display: none;
}
/*  */

/*  */

article {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.club-promation {
    margin-top: 12rem;
    text-align: center;
    width: 90%;
}

article h1 {
    font-size: 5rem;
    font-family: 'Teko', sans-serif;
    text-align: center;
}

.club-promation p {
    font-size: 1.5rem;
}

hr {
    margin: 12rem 0!important;
    width: 100%;
    opacity: 1 !important;
}

.club-events {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.event-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3.3%;
    width: 90%;
}

.event-container {
    width: 30%;
    display: flex;
    margin-top: 3rem;
    flex-direction: column;
    background-color: var(--light-color);
    border-radius: .5rem .5rem 0 0 ;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: .5rem;
}

.event-container img {
    width: 100%;
    height: 31rem;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
    transition: all .5s;
}

.event-container .event-top {
    border-radius: .5rem .5rem 0 0;
}

.event-container img:hover {
    scale: 102%;
    transform: rotate(.4deg);
}

.event-container .event-center {
    padding: 1rem;
}

.event-container .event-center h4 {
    font-size: 3rem;
    font-family: 'Teko', sans-serif;
}

.event-center p {
    font-size: 1.6rem;
}

.event-bottom {
    display: flex;
    width: 100%;
    padding: 1rem;
}

.event-bottom a {
    width: 100%;
    padding: 1rem;
    border-radius: .5rem;
    font-size: 1.5rem;
    color: var(--light-color);
    font-weight: 600;
    text-align: center;
    background-color: var(--primary-color);
}

.group-lessons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.teacher-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.teacher-main {
    display: flex;
    width: 90%;
    border-radius: 1rem;
    background-color: var(--light-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-bottom: 3rem;
}

.teacher-main .teacher-left {
    width: 30%;
    padding: 3rem;
}

.teacher-main .teacher-left img {
    width: 100%;
    height: 45rem;
    object-fit: cover;
    border-radius: 1rem;
}

.teacher-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    padding: 3rem;
    height: auto;
}

.teacher-right h3 {
    font-size: 4.5rem;
    margin-bottom: 4rem;
    font-family: 'Teko', sans-serif;
}

.teacher-right p {
    font-size: 1.5rem;
}

.teacher-right a {
    padding: 2rem 4rem;
    background-color: var(--primary-color);
    margin-top: 3rem;
    text-align: center;
    width: 20%;
    border-radius: .8rem;
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.de-active {
    color: var(--alert-color);
}

footer {
    display: flex;
    flex-direction: column;
    background-color: var(--light-color);
    padding: 3rem;
    width: 100%;
    margin-top: 10rem;
}

.footer-main-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-top-left {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10%;
    margin-left: 5rem;
}

.footer-top-left_section {
    display: flex;
    flex-direction: column;
}

.footer-top-left_section h4 {
    font-size: 2.8rem;
    font-weight: 400;
    font-family: 'Teko', sans-serif;
    color: var(--footer-title);
    border-bottom: 2px solid var(--primary-color);
}

.footer-top-left_section a {
    font-size: 1.4rem;
    color: var(--footer-text);
    margin: 1rem 0;
}

.footer-top-right {
    width: 13%;
    margin-right: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-top-right img{
    width: 100%;
    border-radius: 50%;
}

.footer-main-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgb(228, 228, 228);
    margin-top: 3rem;
    padding-top: 3rem;
}

.footer-main-bottom a {
    font-size: 1.3rem;
    color: var(--footer-text);
    transition: all .5s;
}

.footer-main-bottom a:hover {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: underline;
}


/* gallery */

article .gallery-title {
    margin-top: 10rem;
}


.event-main_article {
    border-radius: 1rem;
}

.event-main_article img{
    border-radius: 1rem;
}

/* contact */

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
}

.contact-hr {
    width: 70%;
    margin: 7rem !important;
}

.contact-container h3 {
    font-size: 2.5rem;
    font-family: 'Teko', sans-serif;
}

.contact-items {
    width: 70%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.contact-left {
    text-align: center;
    width: 33.3%;
    padding: 0 4rem;
}

.contact-center {
    text-align: center;
    width: 33.3%;
}

.contact-right {
    text-align: center;
    width: 33.3%;
}

.contact-items i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-items h5 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-items p {
    font-size: 1.3rem;
}

/* deals */

.deals-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.deals-container {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.deal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    background-color: white;
    box-shadow: var(--primary-color) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    border-radius: .5rem;
    padding: 2rem;
}

.private-box {
    transform: translateY(-1rem);
}

.deal-box h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-radius: .5rem;
    color: white;
    background-color: var(--primary-color);
}

.deal-box h2 i {
    font-size: 1.2rem;
    margin: 0 1rem;
}

.deal-box h3 {
    margin: 3.5rem;
    font-size: 3.5rem;
    font-family: 'Teko', sans-serif;
}

.deal-box span {
    font-size: 1.2rem;
    color: gray;
    margin-left: .5rem;
}

.deal-box-hr {
    margin: 0rem !important;
}

.deal-informations {
    width: 100%;
    display: flex;
}

.deal-informations ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    font-size: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem 1rem 0rem;
    color: rgb(68, 68, 68);
}

ul li i {
    margin-right: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.deal-deactive {
    text-decoration: line-through;
}

/* announcement */

.announcement-main {
    width: 100%;
    display: flex;
    justify-content: center;
}

.announcement-container {
    width: 70%;
    gap: 5%;
    flex-wrap: wrap;
    display: flex;
}

.announcement {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    min-width: 281px;
    border-radius: .5rem;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin-bottom: 4rem;
}

.announcement-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}

.announcement img {
    width: 100%;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
    height: 25rem;
}

.announcement h2 {
    font-size: 2.6rem;
    width: 60%;
    padding: 1rem;
    font-family: 'Teko', sans-serif;
    overflow-wrap: break-word;
}

.announcement span {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    width: 35%;
    text-align: end;
}

.announcement p {
    font-size: 1.5rem;
    padding: 1rem;
}

.announcement a {
    padding: 1rem;
    width: 95%;
    margin: 1rem 0;
    align-self: center;
    text-align: center;
    border-radius: .5rem;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    background-color: var(--primary-color);
}

.join-us-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
}

.join-us-container-index {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    width: 50%;
    background-color: var(--light-color);
    border-radius: .5rem;
    box-shadow: rgba(1, 69, 20, 0.4) 0px 0px 0px 2px, var(--primary-color) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.join-us-container-index h2 {
    font-size: 2rem;
    color: var(--footer-title);
}

.join-us-container-index h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--footer-text);
}

.join-us-container-index input {
    padding: 2rem 3rem;
    margin-top: 4rem;
    font-size: 2rem;
    color: var(--footer-text);
    outline: none;
    border-radius: .5rem;
    border: none;
    border: 1px solid var(--footer-text);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.join-us-container-index .join-us {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    margin-top: 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
}

.inspect-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.inspect-img-info {
    position: relative;
}

.inspect-img::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.509);
    z-index: 2;
}

.inspect-img-info p {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 50%;
    font-size: 2.9rem;
    color: var(--light-color);
    z-index: 5;
    font-family: 'Teko', sans-serif;
}

.inspect-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    background-color: var(--light-color);
    border-radius: .5rem;
    box-shadow: rgba(1, 34, 10, 0.4) 0px 0px 0px 2px, rgba(1, 69, 20, .4) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    padding: 3rem;
}

.inspect-container img {
    width: 100%;
    height: 50rem;
    object-fit: cover;
    border-radius: .5rem;
    object-position: top;
}

.inspect-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.inspect-left, .inspect-center, .inspect-right {
    width: 32%;
    text-align: center;
    border-radius: .5rem;
    border: 2px solid var(--inspect-container-border);
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    min-width: 244px;
    margin-top: 3rem;
}

.inspect-left h3, .inspect-center h3, .inspect-right h3 {
    font-size: 1.5rem;
    color: var(--footer-title);
}

.inspect-left hr, .inspect-center hr, .inspect-right hr {
    margin-top: 3rem !important;
    margin-bottom: 0px !important;
    border: 1px solid var(--primary-color);
    border-radius: 1rem !important;
}

.inspect-left li, .inspect-center li, .inspect-right li {
    display: flex;
    align-items: center;
    gap: 2%;
    font-size: 1.3rem;
    text-align: start;
    margin-top: 3rem;
    color: var(--footer-text);
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    border-radius: .2rem;
    padding: 1rem;
    background-color: var(--list-selector-bg);
}

.inspect-left span, .inspect-center span, .inspect-right span {
    width: 60%;
}

.gallery-inspect {
    flex-direction: row;
    gap: 3%;
}

.gallery-inspect-left {
    width: 40%;
}

.gallery-inspect-right {
    width: 57%;
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.gallery-inspect img {
    width: 100%;
}

.gallery-inspect-right h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.gallery-inspect-right p {
    font-size: 1.7rem;
}

.gallery-inspect-right img {
    width: 30%;
    height: 30rem;
    align-self: center;
    margin-top: auto;
}

.exercise-container {
    justify-content: center;
    align-items: center;
}

.exercise-container hr {
    margin: 0 !important;
    margin-top: 4rem !important;
}

.exercise-container h2 {
    font-size: 1.9rem;
    margin-top: 1rem;
}

.exercise-advice-container {
    display: flex;
    gap: 3.3%;
    flex-wrap: wrap;
}

.exercise-advice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    border: 2px solid var(--low-opacity-primary);
    padding: 3rem;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
    width: 30%;
    min-width: 321px;
}

.exercise-advice h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.exercise-advice img {
    width: 40%;
    height: auto;
    margin-top: 3rem;
}

.exercise-way {
    text-align: center;
    margin-top: 3rem;
    border-bottom: 2px solid var(--secondary-color);
    width: 70%;
    padding: .3rem;
    border-radius: .3rem;
}

.exercise-way p {
    font-size: 1.5rem;
    margin: .5rem;
    color: var(--footer-text);
}

.announcement-inspect-main {
    margin-top: 8rem;
}

.announcement-inspect {
    align-items: center;
    flex-direction: row;
    gap: 3%;
}

.announcement-inspect-left {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-inspect-left img {
    width: 100%;
    height: 30rem;
}

.announcement-inspect-right {
    width: 57%;
    display: flex;
    flex-direction: column;
}

.announcement-inspect img {
    width: 100%;
}

.announcement-inspect-right h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.announcement-inspect-right p {
    font-size: 1.7rem;
}

.announcement-inspect-right img {
    width: 30%;
    height: 30rem;
    align-self: center;
    margin-top: auto;
}