/*
░░██╗░░░░██╗██╗░░        ██████╗░███████╗░██████╗░█████╗░░█████╗░░██╗░░░░░░░██╗███████╗██████╗░
░██╔╝░░░██╔╝╚██╗░        ██╔══██╗██╔════╝██╔════╝██╔══██╗██╔══██╗░██║░░██╗░░██║██╔════╝██╔══██╗
██╔╝░░░██╔╝░░╚██╗        ██║░░██║█████╗░░╚█████╗░██║░░╚═╝███████║░╚██╗████╗██╔╝█████╗░░██████╦╝
╚██╗░░██╔╝░░░██╔╝        ██║░░██║██╔══╝░░░╚═══██╗██║░░██╗██╔══██║░░████╔═████║░██╔══╝░░██╔══██╗
░╚██╗██╔╝░░░██╔╝░        ██████╔╝███████╗██████╔╝╚█████╔╝██║░░██║░░╚██╔╝░╚██╔╝░███████╗██████╦╝
░░╚═╝╚═╝░░░░╚═╝░░        ╚═════╝░╚══════╝╚═════╝░░╚════╝░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░╚══════╝╚═════╝░
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

/** { outline: 1px solid black;*/
/*    outline-offset: -1px;*/
/*}*/

.transition-page-swipe {
    opacity: 1;
    transition: 300ms;
    transform: translateX(0);
    transform-origin: left;
}

html.is-animating .transition-page-swipe {
    opacity: 1;
    transform: translateX(100%);
}

html.is-leaving .transition-page-swipe {
    opacity: 0;
    transform: translateX(-100%);
}


* {
    cursor: none;
    box-sizing: border-box;
}

.cursor {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid beige;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 1000;
}

.cursor2 {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: beige;
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 1000;
}

.hover {
    background-color: red;
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

/*.link-hover:hover {*/
/*    color: red;*/
/*    transform: scale(150%);*/
/*}*/

/*.link-hover:hover a {*/
/*    color: red;*/
/*}*/

.link-hover {
    background-color: var(--background-color);
    border: 3px solid var(--border-color);
    font-family: monospace;
    color: white;
    padding: 8px;
    border-radius: 4px;
    cursor: none;
    width: 100%;
    transition: 300ms ease;
    text-align: center;
    max-width: 200px;
}

.link-hover:hover {
    background-color: white;
    color: var(--background-color);
    transform: scale(105%);
    border-color: var(--background-color);
}

.discreet-link-hover {
    font-family: monospace;
    color: white;
    cursor: none;
    width: 100%;
    transition: 300ms ease;
    text-align: start;
}

.discreet-link-hover:hover {
    color: red;
}

.discreet-link-hover h3{
    transition: 300ms ease;
}

.discreet-link-hover:hover h3{
    color: red;
}

.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
}

:root {
    --background-color: rgb(30, 30, 30);
    --background-color-hover: rgb(79, 79, 79);
    --border-color: rgb(0, 0, 0);
    --nav-height: 140px;
}

h1, h2, h3, a, p, span {
    font-family: monospace;
    font-weight: 400;
    color: white;
}

a {
    text-decoration: none;
}

a i {
    text-decoration: none;
    transition: 300ms ease;
}

a i:hover {
    transform: scale(150%);
}

body {
    background-color: var(--background-color);
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
}

body::-webkit-scrollbar{
    width: 10px;
}

body::-webkit-scrollbar-thumb{
    background: rgba(100, 100, 100, 0.8);
    border-radius: 10px;
}

nav {
    display: flex;
    background-color: var(--background-color);
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    height: var(--nav-height);
    position: fixed;
    top: 0;
    z-index: 2;
}

nav > .nav-section {
    display: flex;
    gap: 1rem;
    padding: 3rem 2rem;
    border-left: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

nav > .nav-section > #nav-links {
    display: flex;
    gap: 1rem;
    padding: 3rem 2rem;
    align-items: center;
    justify-content: center;
}

#nav-logo-section {
    justify-content: flex-start;
}

#nav-logo-section > a > img {
    height: 80px;
    width: 80px;
}

#nav-logo-section > a {
    transition: 300ms ease;
}

.overlay-links > a {
    transition: 300ms ease;
}

#nav-logo-section > a:hover,
#nav-link-section > #nav-links > a:hover,
.overlay-links > a:hover {
    transform: scale(150%);
}

nav div a[aria-current=page] {
    transform: scale(150%);
}

.scaleUp {
    transform: scale(150%);
}

#nav-link-section > #nav-links {
    gap: 6rem;
}

#nav-link-section > #nav-links > a {
    font-family: monospace;
    font-weight: 400;
    color: white;
    transition: 300ms ease;
}

.nav-link-button {
    background-color: unset;
    border: unset
}

#nav-social-section {
    gap: 3rem;
}

#nav-logo-section {
    flex-basis: calc(100% / 4)
}


#nav-link-section {
    flex-grow: 1;
}

nav > #nav-button-section {
    display: flex;
    flex-basis: calc(100% / 3)
}

nav > #nav-button-section > .nav-left-button {
    border-right: 1px dotted var(--border-color);
    border-top: unset;
    border-left: unset;
    border-bottom: unset;
}

nav > #nav-button-section > .nav-right-button {
    border: unset;
}

nav > #nav-button-section > .nav-left-button,
nav > #nav-button-section > .nav-right-button {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
}

nav > #nav-button-section > .nav-left-button > span,
nav > #nav-button-section > .nav-right-button > span {
    font-size: 5rem;
    transition: 300ms ease;
}

.nav-left-button:hover > span {
    transform: translateX(-50%);
}

.nav-right-button:hover > span {
    transform: translateX(50%);
}

nav > #nav-link-section .nav-hamburger {
    display: none;

}

main {
    flex-grow: 1;
    position: relative;
    top: var(--nav-height);
}

main > .article-main {
    max-width: 100vw;
}

main > .article-main > .article-top {
    display: flex;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    /*height: calc(100vh - var(--nav-height));*/
}

main > .article-main > .article-top > .article-title-section {
    min-width: calc(100% - calc(100% / 3));
    min-height: calc(100% / 3);
}

main > .article-main > .article-top > .article-image-section {
    min-width: calc(calc(100% / 3) * 2);
    min-height: calc(95vh - calc(100vh / 3));
}

main > .article-main > .article-top > .article-arrow-section {
    width: calc(100% / 3);
}

main > .article-main > .article-top > .article-description-section {
    width: calc(100% / 3);
}

main > .article-main > .article-top > .article-section {
    /*height: 100%;*/
}

main > .article-main > .article-top > .article-description-section,
main > .article-main > .article-top > .article-arrow-section {
    border-left: 1px solid var(--border-color);
}

main > .article-main > .article-top > .article-title-section,
main > .article-main > .article-top > .article-arrow-section {
    border-top: 1px solid var(--border-color);
}

#article-img-1 {
    background-size: cover;
    background-position: top center;
    background-image: url("../img/training.webp");
}

#article-img-2 {
    background-size: cover;
    background-position: top center;
    background-image: url("../img/charlie-comp.jpg");
}

#article-img-3 {
    background-size: cover;
    background-position: top center;
    background-image: url("../img/article-3.jpg");
}

#article-img-4 {
    background-size: cover;
    background-position: center;
    background-image: url("../img/traning1.webp");
}

#article-img-5 {
    background-size: cover;
    background-position: top center;
    background-image: url("../img/portugal-23.jpg");
}

main > .article-main > .article-top > .article-description-section {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 2rem;
}

main > .article-main > .article-top > .article-description-section > p {
    font-size: 1rem;
}

main > .article-main > .article-top > #article-desc-section-0 {
    flex-direction: column;
}

main > .article-main > .article-top > #article-desc-section-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main > .article-main > .article-top > #article-desc-section-3 {
    position: relative;
    flex-direction: column;
    font-family: monospace;
    max-height: calc(100vh - calc(100vh / 3) - 2rem);
}

main > .article-main > .article-top > #article-desc-section-4 {
    flex-direction: column;
    font-size: 1rem;
    color: white;
    font-family: monospace;
}

main > .article-main > .article-top > .article-title-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 7rem;
}

main > .article-main > .article-top > .article-title-section > h1 {
    font-size: 3.5rem;
    font-weight: 1000;
}

main > .article-main > .article-top > .article-arrow-section {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main > .article-main > .article-top > .article-description-section > .session-times {
    display:flex;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: white;
    overflow-y: scroll;
    padding-bottom: 25px;
}

main > .article-main > .article-top > .article-description-section > #scrollForMore {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%);
    transition: 100ms ease;
    padding: 1rem;
    background-color: rgba(0,0,0,0.8);
}

main > .article-main > .article-top > #article-desc-section-3 > .session-times::-webkit-scrollbar{
    width: 10px;
}

main > .article-main > .article-top > #article-desc-section-3 > .session-times::-webkit-scrollbar-thumb{
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

main > .article-main > .article-top > .article-description-section > .session-times div {
    width:50%;
}

.scroll-btn {
    background-color: var(--background-color);
    border: unset;
}

.scroll-btn {
    font-size: 6rem;
    animation: uparrow 0.6s infinite alternate ease-in-out;
}

.scroll-btn > span {
    font-size: 6rem;
    transition: 300ms ease;
}

.scroll-btn > span:hover {
    transform: scale(150%) translateY(25%);
}

@keyframes uparrow {
    0% { transform: translateY(0); opacity: 0.4 }
    100% { transform: translateY(0.1em); opacity: 0.9 }
}


.article-bottom {
    display: flex;
    border-top: 1px solid var(--border-color);
}

.article-bottom > .col-3 {
    border-left: 1px solid var(--border-color);
    width: calc(100vw / 3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    font-size: 0.9rem;
    min-height: calc(100% - calc(100% / 4));
    padding: 5% 0;
}

.article-bottom > .col-3 > video,
.article-bottom > .col-3 > img {
    border: 3px solid var(--border-color);
    max-height: 80vh;
}

.col-3-section {
    margin: 3% 6.5%;
    max-width: 500px;
}

main > .article-main > .article-bottom > .col-3 > .latest-blog {
    margin: 30px 6.5%;
    max-width: inherit;
}

.join-us-link-container {
    display: flex;
    justify-content: center;
    margin-top: 5vh;
    font-size: 1rem;
}

.link-container {
    display: inline-block;
    /*border: 1px solid var(--border-color);*/
    /*border-radius: 5px;*/
    /*font-size: 1rem;*/
    /*padding: 0.5em;*/
    margin-top: 0.5em;
    transition: 300ms ease;
}

.link-container:hover {
    transform: scale(105%);
}

.article-bottom > .col-2 {
    border-left: 1px solid var(--border-color);
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    padding: 5% 0;
}

.article-bottom > .col-2 > .map-container {
    margin: 20px;
    width: 80%;
    height: 400px;
}

.article-bottom > .col-2 > .venue-locations {
    margin: 0 20px;
    width: 80%;
}

.article-bottom > .col-2 > .map-container > iframe {
    width: 100%;
    height: 100%;
}

.form-container{
    display: block;
    background: inherit;
    max-width: 600px;
    width: 80%;
}
.field {
    padding: 5px;
    margin-top: 10px;
}

input[type=text], input[type=email], textarea[id=message], select[id=reason]{
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 1px;
    font-family: monospace;
    color: grey;
}

textarea[id=Message] {
    resize: none;
    height: 130px;
}

input[type=text]:focus, input[type=email]:focus, textarea[id=message]:focus, select[id=reason]:focus {
    outline: 2px solid #ccc;
}

.form-button-div{
    display: flex;
    padding: 5px;
    margin-top: 10px;
}

button[type=submit] {
    background-color: var(--background-color);
    border: 3px solid var(--border-color);
    font-family: monospace;
    color: white;
    padding: 8px;
    border-radius: 4px;
    cursor: none;
    width: 100%;
    transition: 300ms ease;
}

button[type=submit]:hover {
    background-color: white;
    color: var(--background-color);
    transform: scale(105%);
    border-color: var(--background-color);
}

.field.error input, .field.error textarea {
    border-color: red;
}

.field.success input, .field.success textarea {
    border-color: limegreen;
}

.field small {
    color: red;
    font-family: monospace;
}


.social-buttons-container {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.social-buttons {
    font-size: 20px;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: 300ms ease;
}

main > .overlay {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    font-size: 2rem;
    padding-top: 15%;
    height: calc(100vh - var(--nav-height));
    width: 0;
    position: absolute;
    overflow-y: hidden;
    background-color: #1e1e1e;
    z-index: 3;
    transition: 300ms ease;
}

main > .overlay > .overlay-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

main > .overlay.responsive {
    /*width: 100%;*/
}

.overlay-hide.responsive {
    overflow-y: hidden;
}

nav > #nav-link-section > .nav-hamburger.responsive {
    animation: rotate 300ms ease;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/*testimonials*/
.testimonials {
    margin: 0;
    padding: 50px 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    border-top: 1px solid var(--border-color);
}

.testimonials > h1 {
    margin: 0;
}

.testimonials > p {
    font-size: 1.5em;
    margin: 0;
    text-align: center;
}

.testimonials > h1 b {
    font-size: 1.5em;
    color: white;
}

.testimonials .swiper {
    width: 100%;
    height: 330px;
}

.testimonials .swiper-slide {
    box-shadow: 0 4px 10px rgba(45, 45, 45, 0.5);
    border-radius: 5px;
    height: 275px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    background-color: grey;
}

.testimonials .testimonials-slide {
    max-width: 300px;
}

.testimonials .testimonials-slide .review-link {
    text-decoration: none;
    padding: 30px 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.testimonials .testimonials-slide .name-star h3,
.portfolio.testimonials .testimonials-slide .name-star p {
    margin: 5px 0;
}

.testimonials .testimonials-slide .name-star span {
    color: #F6BB06;
}

.testimonials .testimonials-slide .name-star .review-date {
    font-size: 1em;
    color: lightgrey;
}

.testimonials .testimonials-slide .review-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

.testimonials .testimonials-slide .review-read-more {
    color: lightgrey;
    font-size: 0.9em;
}

.testimonials .testimonials-slide .review-read-more:hover {
    text-decoration: underline;
}


@media only screen and (max-width: 1020px) {
    main > .article-main > .article-top {
        display: flex;
        max-width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
    }

    main > .article-main > .article-top > .article-title-section {
        min-width: 100%;
        min-height: calc(100% / 3);
        order: -1;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    main > .article-main > .article-top > .article-title-section > h1 {
        font-size: 2rem;
        font-weight: 1000;
    }

    main > .article-main > .article-top > .article-image-section {
        min-width: 100%;
        min-height: 30vh;
    }

    main > .article-main > .article-top > .article-arrow-section {
        display: none;
    }

    main > .article-main > .article-top > .article-description-section {
        width: 100%;
    }

    #article-img-1 {
        background-position: center;
    }

    main > .article-main > .article-bottom {
        max-width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
    }

    main > .article-main > .article-bottom > .col-3 {
        min-width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    main > .article-main > .article-bottom > .member-login {
        order: 1;
    }

    main > .article-main > .article-bottom > .latest-blog-col {
        order: 2;
    }

    main > .article-main > .article-bottom > .video-col {
        order: 3;
    }

    main > .article-bottom > .col-3 > video,
    main > .article-bottom > .col-3 > img {
        max-height: 80vh;
    }

    main > .article-main > .article-top > #article-desc-section-3 {
        flex-direction: column;
        font-family: monospace;
        padding-top: 2rem;
        max-height: unset;
    }

    main > .article-main > .article-top > #article-desc-section-3 > .session-times {
        overflow-y: unset;
    }

    main > .article-main > .article-top > #article-desc-section-3 > #scrollForMore {
        display: none;
    }

    * {
        cursor: default;
    }
    .cursor {
        display: none;
    }
    .cursor2 {
        display: none;
    }
}

@media only screen and (max-width: 1350px) {
    nav > #nav-button-section {
        display: none;
    }

    nav > #nav-link-section > #nav-links {
        display: none;
    }

    nav > #nav-link-section > .nav-hamburger {
        display: block;
    }

    nav {
        max-width: 100vw;
    }

    main > .article-main > .article-bottom-contact {
        max-width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .article-bottom > .col-2 {
        min-width: 100%;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--border-color);
    }
}
