/* ATOMIC DESIGN ############################################################################### */
a.mainButton {
    display: table;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid rgb(var(--main-orange));
    background-color: rgb(var(--main-black));
    color: rgb(var(--main-orange));
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 32px;
    font-weight: bold;
    transition: border 0.3s, color 0.3s, box-shadow 0.3s;
}

a.mainButton:hover {
    cursor: pointer;
    border: 2px solid rgb(var(--main-light-orange));
    color: rgb(var(--main-light-orange));
    box-shadow: 0 0 5px 1px rgb(var(--main-light-orange));
}

a.secondButton {
    display: table;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid rgb(var(--main-orange));
    color: rgb(var(--main-orange));
    background-color: transparent;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 24px;
    font-weight: bold;
    transition: border 0.3s, color 0.3s, box-shadow 0.3s;
}

a.secondButton:hover {
    cursor: pointer;
    border: 2px solid rgb(var(--main-light-orange));
    color: rgb(var(--main-light-orange));
    box-shadow: 0 0 5px 1px rgb(var(--main-light-orange));
}

.outline {
    text-shadow: -1px -1px 0 rgb(var(--main-black)), 1px -1px 0 rgb(var(--main-black)), -1px 1px 0 rgb(var(--main-black)), 1px 1px 0 rgb(var(--main-black));
}

section {
    position: relative;
    display: block;
    min-height: 600px;
    width: 100%;
}

.text_56px {
    font-size: 56px;
}
.text_48px {
    font-size: 48px;
}
.text_40px {
    font-size: 40px;
}
.text_32px {
    font-size: 32px;
}
.text_24px {
    font-size: 24px;
}

.height_800px {
    height: 800px;
}

@media all and (max-width: 1050px) {
    a.mainButton {
        font-size: 24px;
    }
    a.secondButton {
        font-size: 16px;
    }
    .text_56px {
        font-size: 48px;
    }
    .text_48px {
        font-size: 40px;
    }
    .text_40px {
        font-size: 32px;
    }
    .text_32px {
        font-size: 24px;
    }
    .text_24px {
        font-size: 20px;
    }
}

@media all and (max-width: 760px) {
    a.mainButton {
        font-size: 20px;
    }
    a.secondButton {
        font-size: 16px;
    }
    .text_56px {
        font-size: 40px;
    }
    .text_48px {
        font-size: 32px;
    }
    .text_40px {
        font-size: 24px;
    }
    .text_32px {
        font-size: 20px;
    }
    .text_24px {
        font-size: 16px;
    }
}


@media all and (max-width: 680px) {
    a.mainButton {
        font-size: 16px;
        text-align: center;
    }
    a.secondButton {
        font-size: 14px;
        text-align: center;
    }
    .text_56px {
        font-size: 32px;
    }
    .text_48px {
        font-size: 24px;
    }
    .text_40px {
        font-size: 20px;
    }
    .text_32px {
        font-size: 18px;
    }
    .text_24px {
        font-size: 16px;
    }
}



/* FIRST SECTION ############################################################################### */
.firstSection {
    top: 0;
    border-bottom: 4px solid rgb(var(--main-orange));
}
@media all and (max-width: 680px) {
    .firstSection {
        min-height: 70vh;
    }
}

.firstSection .bgImage {
    z-index: -1;
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("../img/firstBackground.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
@media all and (max-width: 680px) {
    .firstSection .bgImage {
        background-position: center;
    }
}

.firstSection .textContainer {
    position: absolute;
    left: 5%;
    bottom: 20%;
    width: 60%;
}
@media all and (max-width: 1050px) {
    .firstSection .textContainer {
        width: 80%;
        bottom: 20%;
    }
}
@media all and (max-width: 680px) {
    .firstSection .textContainer {
        left: 10%;
        text-align: center;
    }
}


.firstSection h1 {
    color: rgb(var(--main-orange));
    font-weight: bold;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.firstSection p {
    color: rgb(var(--main-text-light));
    width: 80%;
}
@media all and (max-width: 680px) {
    .firstSection p {
        width: 100%;
    }
}

.firstSection a.mainButton {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(52%);
    -moz-transform: translateX(-50%) translateY(52%);
}



/* DIV SCROLLTOBOTTOM ############################################################################### */
div.scrollToBottom {
    position: relative;
    display: block;
    margin-top: 80px !important;
    width: 40%;
    right: 0;
    left: 0;
    margin: 0 auto;
}
div.scrollToBottom img {
    margin: 0 auto;
    right: 0;
    left: 0;
    display: block;
}

div.scrollToBottom .arrow1 {
    position: absolute;
    width: 90px;
    bottom: 15px;
    animation: arrow1 infinite 2s;
    z-index: 1;
}
@keyframes arrow1 {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(10%);
    }
    100% {
        transform: translateY(0%);
    }
}

div.scrollToBottom .arrow2 {
    width: 100px;
    top: 0;
    animation: arrow2 infinite 2.5s;
}
@keyframes arrow2 {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(15%);
    }
    100% {
        transform: translateY(0%);
    }
}


/* SECOND SECTION ############################################################################### */
.secondSection {
    margin-top: 80px;
}

.secondSection h2 {
    text-align: center;
    letter-spacing: 12px;
    color: rgb(var(--main-orange));
    text-transform: uppercase;
    font-weight: lighter;
}
@media all and (max-width: 680px) {
    .secondSection h2 {
        letter-spacing: 10px;
    }
}

.secondSection h2 span {
    padding-top: 10px;
    display: block;
    letter-spacing: 6px;
    font-weight: bold;
}

.secondSection ul.chooseClassContainer {
    margin-top: 100px;
}

.secondSection ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;

    border-top: solid 2px rgb(var(--main-orange));
    border-bottom: solid 2px rgb(var(--main-orange));
    font-size: 0;
    height: 64px;
    padding: 0;
}


.secondSection ul li {
    line-height: 32px;
    margin: auto 0;
    height: 32px;
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 4px;
    color: rgba(var(--main-orange),0.4);
}
@media all and (max-width: 1050px) {
    .secondSection ul li {
        width: 25%;
    }
}
@media all and (max-width: 680px) {
    .secondSection ul {
        height: 48px;        
    }
    .secondSection ul li {
        width: unset;
        margin: auto 8px;
        font-size: 12px;
        letter-spacing: 2px;
    }
}

.secondSection ul li.active {
    color: rgb(var(--main-orange));
    letter-spacing: 6px;
}
@media all and (max-width: 680px) {
    .secondSection ul li.active {
        letter-spacing: 4px;
    }
}

.secondSection ul li span{
    transition: color 0.3s, letter-spacing 0.3s;
}
.secondSection ul li span:hover {
    cursor: pointer;
    color: rgb(var(--main-orange));
    letter-spacing: 6px;
}
@media all and (max-width: 680px) {
    .secondSection ul li span:hover {
        letter-spacing: 4px;
    }
}

.secondSection .contentClassContainer {
    top: 0;
    width: 100%;
    background-image: radial-gradient(rgb(var(--main-dark-gray2)) 15%, rgb(var(--main-dark-gray)) 15%);
    background-size: 15px 15px;
    padding-top: 100px;
    padding-bottom: 60px;
}
@media all and (max-width: 1050px) {
    .secondSection .contentClassContainer {
        padding-top: 50px;
    }
}

.secondSection .contentClassContainer .textClass {
    position: relative;
    width: 40%;
    left: 10%;
    padding-top: 120px;
    min-height: 300px;
}
@media all and (max-width: 1050px) {
    .secondSection .contentClassContainer .textClass {
        width: 60%;
        margin: 0 auto;
        left: 0;
        right: 0;
        min-height: 300px;
        padding-top: 60px;
    }
}
@media all and (max-width: 680px) {
    .secondSection .contentClassContainer .textClass {
        width: 80%;
        min-height: 320px;
    }
}


.secondSection .contentClassContainer h3 {
    letter-spacing: 4px;
    color: rgb(var(--main-orange));
    margin-bottom: 0;
    margin-top: 0;
}
.secondSection .contentClassContainer p {
    margin-top: 10px;
    margin-left: 10%;
    line-height: 28px;
    color: rgb(var(--main-text-light));
}

@media all and (max-width: 1050px) {
    .secondSection .contentClassContainer h3 {
        letter-spacing: 4px;
        color: rgb(var(--main-orange));
        margin-bottom: 0;
        margin-top: 0;
        text-align: center;
    }
    .secondSection .contentClassContainer p {
        margin-top: 10px;
        margin-left: 0;
        line-height: 28px;
        text-align: center;
    }
}

.secondSection .classImageBackground {
    opacity: 0.15;
    width: 40%;
    height: 50%;
    bottom: 15%;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("/assets/img/artisanatBG.webp");
    left: 12.5%;
    pointer-events: none;
    transition: background-image 0.4s;
    -webkit-transition: background-image 0.4s;
    -moz-transition: background-image 0.4s;
    -o-transition: background-image 0.4s;
}
@media all and (max-width: 1050px) {
    .secondSection .classImageBackground {
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 5%;
    }
}
@media all and (max-width: 680px) {
    .secondSection .classImageBackground {
        width: 70%;
        bottom: 8%;
    }
}


.secondSection .classImage {
    position: absolute;
    height: 40%;
    width: 35%;
    top: 40%;
    border: 2px solid rgb(var(--main-orange));
    border-right: none;
    right: 0;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    z-index: 1;
    background-color: rgb(var(--main-dark-gray));
    background-image: url("/assets/img/artisanat.webp");
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    transition: background-image 0.4s;
}
@media all and (max-width: 1050px) {
    .secondSection .classImage {
        position: relative;
        display: block;
        height: 40vw;
        width: 40vw;
        border: 2px solid rgb(var(--main-orange));
        border-right: 2px solid rgb(var(--main-orange));
        border-radius: 30px;
        background-size: 100%;
        margin: 0 auto;
    }
}
@media all and (max-width: 680px) {
    .secondSection .classImage {
        height: 60vw;
        width: 60vw;
    }
}


.secondSection .secondButton {
    position: relative;
    margin: 0 auto;
    margin-top: 100px;
}
@media all and (max-width: 1050px) {
    .secondSection .secondButton {
        margin-top: 0px;
    }
}

/* THIRD SECTION ############################################################################### */
.thirdSection {
    height: 800px;
    border-bottom: 2px solid rgb(var(--main-orange));
}
@media all and (max-width: 1050px) {
    .thirdSection {
        height: 600px;
    }
}

.thirdSection .bgImage {
    z-index: -1;
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("../img/thirdBackground.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
@media all and (max-width: 680px) {
    .thirdSection .bgImage {
        background-position: 20%;
    }
}

.thirdSection .textContainer {
    margin-top: 150px;
    position: relative;
    float: right;
    width: 70%;
}
@media all and (max-width: 1050px) {
    .thirdSection .textContainer {
        width: 80%;
    }
}
@media all and (max-width: 680px) {
    .thirdSection .textContainer {
        width: 100%;
        margin-top: 0;
        position: absolute;
        bottom: 17.5%;
    }
}

.thirdSection h2 {
    margin-top: 0;
    color: rgb(var(--main-orange));
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10%;
    text-align: right;
    margin-right: 10%;
}
@media all and (max-width: 680px) {
    .thirdSection h2 {
        margin-top: 0;
        letter-spacing: 6px;
        margin-bottom: 10%;
        text-align: center;
        margin-right: 0;
        margin-left: 5%;
        width: 90%;
    }
}

.thirdSection p {
    margin-left: 20%;
    width: 70%;
    color: rgb(var(--main-text-light));
    margin-top: 2%;
}
@media all and (max-width: 1050px) {
    .thirdSection p {
        width: 75%;
    }
}
@media all and (max-width: 680px) {
    .thirdSection p {
        width: 80%;
        margin-left: 0%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}


.thirdSection a.secondButton {
    margin-left: 20%;
}
@media all and (max-width: 680px) {
    .thirdSection a.secondButton {
        margin: 0 auto;
    }
}


/* FOURTH SECTION ############################################################################### */
.fourthSection {
    height: 800px;
    border-bottom: 2px solid rgb(var(--main-orange));
}
@media all and (max-width: 1050px) {
    .fourthSection {
        height: 600px;
    }
}

.fourthSection .bgImage {
    z-index: -1;
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("../img/fourthBackground.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
}
@media all and (max-width: 680px) {
    .fourthSection .bgImage {
        background-position: 90%;
    }
}

.fourthSection .textContainer {
    margin-top: 150px;
    position: relative;
    float: left;
    width: 60%;
}
@media all and (max-width: 1050px) {
    .fourthSection .textContainer {
        width: 80%;
    }
}
@media all and (max-width: 680px) {
    .fourthSection .textContainer {
        width: 100%;
        margin-top: 0;
        position: absolute;
        bottom: 17.5%;
    }
}

.fourthSection h2 {
    margin-top: 0;
    color: rgb(var(--main-orange));
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-left: 10%;
    margin-bottom: 10%;
}
@media all and (max-width: 680px) {
    .fourthSection h2 {
        margin-top: 0;
        letter-spacing: 6px;
        margin-bottom: 10%;
        text-align: center;
        margin-left: 5%;
        width: 90%;
    }
}

.fourthSection p {
    margin-left: 10%;
    width: 70%;
    color: rgb(var(--main-text-light));
    margin-top: 2%;
}
@media all and (max-width: 1050px) {
    .fourthSection p {
        width: 75%;
    }
}
@media all and (max-width: 680px) {
    .fourthSection p {
        width: 80%;
        margin-left: 0%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.fourthSection a.secondButton {
    margin-left: 10%;
}
@media all and (max-width: 680px) {
    .fourthSection a.secondButton {
        margin: 0 auto;
    }
}


/* FIFTH SECTION ############################################################################### */
.fifthSection {
    height: 800px;
    border-bottom: 2px solid rgb(var(--main-orange));
}
@media all and (max-width: 1050px) {
    .fifthSection {
        height: 600px;
    }
}

.fifthSection .bgImage {
    z-index: -1;
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: url("../img/fifthBackground.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
@media all and (max-width: 680px) {
    .fifthSection .bgImage {
        background-position: 35%;
    }
}

.fifthSection .textContainer {
    margin-top: 150px;
    position: relative;
    float: right;
    width: 70%;
}
@media all and (max-width: 1050px) {
    .fifthSection .textContainer {
        width: 80%;
    }
}
@media all and (max-width: 680px) {
    .fifthSection .textContainer {
        width: 100%;
        margin-top: 0;
        position: absolute;
        bottom: 17.5%;
    }
}

.fifthSection h2 {
    margin-top: 0;
    color: rgb(var(--main-orange));
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: right;
    margin-right: 10%;
    margin-bottom: 10%;
}
@media all and (max-width: 680px) {
    .fifthSection h2 {
        margin-top: 0;
        letter-spacing: 6px;
        margin-bottom: 10%;
        text-align: center;
        margin-right: 0;
        margin-left: 5%;
        width: 90%;
    }
}

.fifthSection p {
    margin-top: 2%;
    margin-left: 30%;
    width: 60%;
    color: rgb(var(--main-text-light));
}
@media all and (max-width: 1050px) {
    .fifthSection p {
        width: 65%;
    }
}
@media all and (max-width: 680px) {
    .fifthSection p {
        width: 80%;
        margin-left: 0%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.fifthSection a.secondButton {
    margin-left: 30%;
}
@media all and (max-width: 680px) {
    .fifthSection a.secondButton {
        margin: 0 auto;
    }
}


/* SIXTH SECTION ########################################## */
.sixthSection {
    min-height: 650px;
}
@media all and (max-width: 1050px) {
    .sixthSection {
        min-height: 450px;
    }
}

.sixthSection .bgImage {
    color: rgb(var(--main-orange));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url("/assets/img/sixthBackground.webp");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}
@media all and (max-width: 680px) {
    .sixthSection .bgImage {
        background-position: 60%;
    }
}

.sixthSection h2 {
    margin-top: 0;
    padding-top: 10%;
    margin-left: 6%;
    color: rgb(var(--main-orange));
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 8px;
}
@media all and (max-width: 680px) {
    .sixthSection h2 {
        margin-left: 0;
        margin: 0 auto;
        text-align: center;
        padding-top: 20%;
        letter-spacing: 6px;
    }
}

.sixthSection h2 span {
    margin-top: 1%;
    text-align: center;
    width: 100%;
    left: 0;
    position: absolute;
    display: block;
    font-weight: bold;
    letter-spacing: 4px;
}
@media all and (max-width: 680px) {
    .sixthSection h2 span{
        margin-top: 5%;
        font-size: 24px;
        width: 80%;
        margin-left: 10%;
    }
}


.sixthSection .clickBottom img {
    margin: 170px auto 0 auto;
    display: block;
}
.sixthSection .clickBottom .arrow2 {
    width: 120px;
    top: 0;
    animation: arrow2 infinite 2.5s;
}
@media all and (max-width: 680px) {
    .sixthSection .clickBottom .arrow2 {
        width: 80px;
    }
}

.sixthSection .mainButton {
    margin: 30px auto 0 auto;
}