/* Reset & Common Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    outline: none;
}

:root {
    /* --font-primary: 'Raleway', sans-serif; */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Jost', sans-serif;
    /* --font-i-ico: 'Moul', sans-serif; */
    --font-additional-one: 'Playfair Display', serif;
    --font-additional-two: 'Abril Fatface', serif;
    /* --font-additional-three: 'Prata', serif; */
    --font-footer-one: 'Poppins', sans-serif;
    --font-footer-two: 'Antic', sans-serif;
}

html {
    font-size: 10px;
    font-family: var(--font-primary);
    scroll-behavior: smooth;
}

.languages {
    position: absolute;
    top: 2vh;
    left: 5vw;
    font-size: 1.5rem;
}

.languages p.lang {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    color: #fff;
    transition: 0.5s;
}

.languages p.lang.on {
    font-weight: 400;
}

.languages p.lang:hover {
    font-weight: 100;
    text-decoration: none;
    font-size: 4rem;
}

.languages p.lang:visited {
    font-weight: 400;
    color: #fff;
}

.burger-menu {
    position: fixed;
    top: 2rem;
    right: 4rem;
    width: 5rem;
    height: 3rem;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
    /* background-color: coral; */
    transition: right 0.7s;
    z-index: 200;
}

.change .burger-menu {
    right: 80vw;
}

.line {
    width: 100%;
    height: 0.2rem;
    background-color: #fff;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
}

.change .line {
    background-color: rgba(0, 0, 0, 0.8);
}

.change .up-line {
    transform: rotate(45deg) translate(0.3rem, 0.8rem);
}

.change .medium-line {
    opacity: 0;
    visibility: hidden;
}

.change .down-line {
    transform: rotate(-45deg) translate(0.3rem, -0.8rem);
}

.burger-menu span {
    position: absolute;
    left: 5rem;
    width: 10rem;
    height: 4rem;
    background-color: #e2b646;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.change .burger-menu:hover span {
    opacity: 1;
    visibility: visible;
}

.burger-menu span::before {
    content: "";
    position: absolute;
    border-left: 1rem solid transparent;
    border-right: 1rem solid #e2b646;
    border-bottom: 1rem solid transparent;
    border-top: 1rem solid transparent;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
}

.section-heading {
    padding: 5vh;
    padding-top: 8vh;
    font-family: var(--font-primary);
    /* font-family: var(--font-additional-two); */
    font-size: 2.3rem;
    color: #fff;
    text-align: center;
}

/* sm */
@media (min-width: 576px) {
    .change .burger-menu {
        right: 85vw;
    }
}

/* md */
@media (min-width: 768px) {
    .languages {
        font-size: 1.7rem;
    }

    .burger-menu {
        top: 2rem;
        right: 5rem;
    }


    .section-heading {
        font-size: 3rem;
    }
}


/* @media (min-width: 868px) {
    .change .burger-menu {
        right: 80vw;
    }
} */

/* xl */
@media (min-width: 1000px) {
    .languages {
        font-size: 2rem;
    }

    .burger-menu {
        top: 5rem;
        right: 5rem;
    }

    .change .burger-menu {
        right: 50rem;
    }
}

/* xxl */
@media (min-width: 1400px) {
    .change .burger-menu {
        right: 75rem;
    }
}



/* End of Reset & Common Styles */


/* Set 1 - Header */

.title-page {
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
}

.img-frame {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0);
    overflow: hidden;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    animation: zoom 25s;
}

@keyframes zoom {
    0% {
        transform: scale(1.3);
    }

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

.banner {
    position: absolute;
    top: 35%;
    left: 10%;
}

.banner h1 {
    width: 50%;
    font-size: 2.7rem;
    font-weight: 600;
    color: #fff;
    line-height: 3.5rem;
    letter-spacing: 0.2rem;
    text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: appearBanner 1s 0.5s forwards;
}

.banner p {
    width: 80%;
    font-family: var(--font-secondary);
    font-weight: 100;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.1rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: appearBanner 1s 0.7s forwards;
}

.banner button {
    width: 20rem;
    height: 4.5rem;
    background-color: transparent;
    border: 0.1px solid #fff;
    /* border: none; */
    border-radius: 4rem;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    animation: appearBanner 1s 0.9s forwards;
}

.banner button:hover {
    color: #000;
    background-color: #fff;
}

@keyframes appearBanner {
    0% {
        transform: translateY(40rem) rotate(-20deg);
    }

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



/* sm */
/* @media (min-width: 576px) {} */

/* md */
@media (min-width: 768px) {
    .banner h1 {
        font-size: 3.5rem;
        line-height: 4.5rem;
    }

    .banner p {
        width: 50%;
        margin-bottom: 2rem;
        font-size: 1.4rem;
    }

    .banner button {
        width: 22rem;
        height: 4.7rem;
        font-size: 1.3rem;
    }
}

@media (min-width: 800px) and (orientation: portrait) {
    .banner h1 {
        font-size: 4.5rem;
        line-height: 5.5rem;
    }

    .banner p {
        width: 50%;
        margin-bottom: 2rem;
        font-size: 1.7rem;
    }

    .banner button {
        width: 22rem;
        height: 5rem;
        font-size: 1.5rem;
    }

}


/* xl */
@media (min-width: 1000px) {
    .banner h1 {
        font-size: 6rem;
        line-height: 7rem;
    }

    .banner p {
        width: 50%;
        margin-bottom: 3rem;
        font-size: 1.8rem;
    }

    .banner button {
        width: 25rem;
        height: 6rem;
        font-size: 1.5rem;
    }
}

/* xxl */
@media (min-width: 1600px) {
    .banner h1 {
        font-size: 8rem;
        line-height: 9rem;
    }

    .banner p {
        width: 50%;
        margin-bottom: 3rem;
        font-size: 2rem;
    }

    .banner button {
        width: 25rem;
        height: 6rem;
        font-size: 1.5rem;
    }
}

/* End of Set 1 - Header */



/* Set 2 - Sidebar */

.sidebar {
    /* display: none; */
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    transition: right 0.5s;
    z-index: 100;
}

.change .sidebar {
    right: 0;
}

.menu-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50rem;
    transform: translate(-50%, -50%);
    /* background-color: aquamarine; */
}

.menu-item {
    text-align: center;
    /* text-align: right; */

}

.menu-item-link {
    font-family: var(--font-primary);
    /* font-family: var(--font-secondary); */
    font-size: 1.8rem;
    color: #555;
    position: relative;
}

.menu-item-link:before {
    content: attr(data-content);
    position: absolute;
    top: 0;
    left: 0;
    color: #c29525;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease-in-out
}

.menu-item-link:hover::before {
    width: 100%;
}

.social {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.social i {
    margin: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.2rem;
    color: #fff;
    border-radius: 50%;
    background-color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.social i:hover {
    background-color: #c29525;
}


@media (min-width: 400px) {
    .menu-item-link {
        font-size: 2rem;
    }
}


/* sm */
/* @media (min-width: 576px) {} */

/* md */
@media (min-width: 963px) {
    .sidebar {
        right: -60rem;
        width: 60rem;
    }

    .menu-item-link {
        font-size: 3rem;
    }
}

/* xl */
/* @media (min-width: 1200px) {} */

/* xxl */
@media (min-width: 1400px) {
    .sidebar {
        right: -90rem;
        width: 90rem;
    }

    .menu-nav {
        width: 80rem;
    }

    .menu-item-link {
        font-size: 4rem;
    }
}


/* End of Set 2 - Sidebar */




/* Set 3 - Categories */

.section3 {
    /* width: 100vw; */
    /* height: 180vh; */
    padding: 0 5vw;
    padding-bottom: 30vh;
    background-color: rgb(25, 34, 62);
    background-color: rgb(30, 37, 57);
    clip-path: polygon(100% 0, 0 0, 0% 99%, 33% 95%, 63% 95%, 75% 94%, 91% 91%, 100% 90%);

}

.container-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    max-width: 1220px;
    margin: 0 auto;
    /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr; */
    /* background-color: greenyellow; */
}

.zone-category {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /* background-color: #e2b646; */
    margin-top: 2rem;
}

.category-image {
    margin: 2rem 1rem;
    /* padding: 2rem; */
    cursor: pointer;
    /* align-items: center; */
}

.category-image>img {
    /* width: 100%; */
    width: 20rem;
    height: 20rem;
    /* border-radius: 20%; */
    border-radius: 50%;
    transition: 0.3s;
}

.category-image>img:hover {
    box-shadow: 0.5rem 0.5rem 3rem #777;
    transform: scale(1.1);
}

.category-title {
    text-align: center;
}

a .category-title {
    /* padding: 5vh; */
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #fff;
    /* text-align: center; */
    transition: 0.3s;
    color: #d4d4d4;
    /* color: rgb(0, 202, 172); */
}


a .category-title:hover {
    font-weight: 100;
}

/* 
.zone1 {
    grid-row: 3/4;
    grid-column: 3/4;
}

.zone2 {
    grid-row: 2/3;
    grid-column: 2/3;
}

.zone3 {
    grid-row: 3/4;
    grid-column: 2/3;
}

.zone4 {
    grid-row: 1/2;
    grid-column: 3/4;
}

.zone5 {
    grid-row: 2/3;
    grid-column: 4/5;
}

.zone6 {
    grid-row: 3/4;
    grid-column: 4/5;
}

.zone7 {
    grid-row: 3/4;
    grid-column: 5/6;
}

.zone8 {
    grid-row: 4/5;
    grid-column: 2/3;
}

.zone9 {
    grid-row: 3/4;
    grid-column: 1/2;
}

.zone10 {
    grid-row: 4/5;
    grid-column: 4/5;
}

.zone11 {
    grid-row: 5/6;
    grid-column: 3/4;
} */




/* End of Set 3 - Categories */




/* Set 4 - Team */
.team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem 20rem 5rem;
}

.underline {
    width: 100vw;
    /* margin-bottom: 3rem; */
    padding: 2vh 10vw;
    font-family: var(--font-secondary);
    font-weight: 100;
    font-size: 1.4rem;
    color: #000;
    letter-spacing: 0.1rem;
    text-align: center;
    text-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.3);
    /* opacity: 0; */
    /* animation: appearBanner 1s 0.7s forwards; */
}

.cards-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 8rem;
    width: 100%;
}

.card {
    width: 23rem;
    height: 31rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.card-img-frame {
    width: 100%;
    height: 100%;
    background-color: #262626;
    border-radius: 0.5rem;
}

.card-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
}

.card:hover .card-img-frame img {
    opacity: 0.5;
}


.card-note {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.card:hover .card-note {
    bottom: 2rem;
    opacity: 1;
    visibility: visible;
}

.card-note h2 {
    font-family: 'Baloo Da 2', sans-serif;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 300;
    color: #eee;
}

.card-note h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #a52a2a;
    color: yellowgreen;
    margin-bottom: 1rem;
}

.card-note p {
    font-family: 'Baloo Da 2', sans-serif;
    font-size: 1.1rem;
    line-height: 1.1rem;
    font-weight: 300;
    color: #eee;
    width: 90%;
    margin-bottom: 2rem;
}

.card-note button {
    width: 10rem;
    height: 3rem;
    background-color: #c29525;
    border: none;
    font-family: 'Baloo Da 2', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5rem;
    color: #eee;
    border-radius: 0.3rem;
    box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4)
}


/* sm */
@media (min-width: 768px) {
    .underline {
        padding: 2vh 10vw;
        font-size: 1.8rem;
    }

    .cards-container {
        flex-direction: row;
    }

    .card {
        width: 27rem;
        height: 35rem;
        /* margin-left: 3rem; */
        margin: 0 3rem;
        margin-bottom: 0;
    }
}

/* md */
/* @media (min-width: 768px) {} */

/* xl */
@media (min-width: 1000px) {
    .card {
        width: 30rem;
        height: 38rem;
        margin-left: 0;
    }
}

/* xxl */
/* @media (min-width: 1400px) {} */

/* End of Set 4 - Team */


/* Set 5 - Footer*/
footer {
    position: relative;
    width: 100vw;
    max-width: 1920px;
    margin: 0 auto;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    /* background-color: rgb(41, 41, 68); */
    /* background-color: rgb(75, 74, 74); */
}

footer p.footlogo {
    position: absolute;
    left: 10%;
    top: 10%;
    /* font-family: 'Poppins', sans-serif; */
    font-family: var(--font-footer-one);
    font-size: 3.4rem;
    font-weight: 100;
    color: #fff;
}

footer .fictunit,
footer .imgnote {
    position: absolute;
    left: 12%;
    top: 65%;
    /* font-family: 'Poppins', sans-serif; */
    /* font-family: var(--font-secondary); */
    font-family: var(--font-footer-one);
    font-size: 0.9rem;
    font-weight: 200;
    color: #888;
}

footer .imgnote {
    top: 75%;
}

footer p.notes {
    position: absolute;
    left: 10%;
    bottom: 5%;
    padding: 12px;
    margin-bottom: 1.5vh;
    border-left: 5px solid white;
    /* font-family: 'Antic', sans-serif; */
    font-family: var(--font-footer-two);
    font-size: 0.8rem;
    color: white;
}

footer .contact {
    position: absolute;
    right: 10%;
    bottom: 5%;
    padding: 1.5rem 2% 0 11%;
    margin-bottom: 1vh;
    border-top: 1px solid #999;
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .contactchannel {
    font-size: 2.8rem;
    color: #999;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

footer .contactchannel i:hover {
    color: #fff;
}

footer .contactchannel a {
    color: #999;
}

footer .contactchannel a:visited {
    color: #999;
}

.contact-form {
    width: 80vw;
    height: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #111;
    /* background-color: #000; */
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /* border: 0.1rem solid #fff; */
    color: #fff;
    outline: none;
    /* border-radius: 2rem; */
}

.contact-form-heading {
    margin: 1rem 0 0 0;
    font-family: var(--font-secondary);
    color: #999;
    font-size: 1.8rem;
}

.contact-form input {
    width: 60%;
    height: 15%;
    padding: 1rem 3rem;
    border: 0.1rem solid #888;
    border-radius: 1rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    background-color: transparent;
    /* outline: none; */
    margin: 0.5rem 0;
}

.contact-form textarea {
    width: 60%;
    height: 35%;
    padding: 1rem 3rem 2rem;
    border-radius: 1rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    background-color: transparent;
    /* outline: none; */
    margin: 0.5rem 0 0 0;
}

.btn-contact {
    width: 20%;
    margin: 1rem 0;
    border-radius: 1rem;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    color: #999;
    font-family: var(--font-secondary);
    background-color: transparent;
    cursor: pointer;
}


/* -- responsive - breakpoints -- */

/* sm */
@media (min-width: 530px) and (orientation: landscape) {

    footer .fictunit,
    footer .imgnote {
        position: absolute;
        left: 12%;
        top: 65%;
        z-index: 3;
    }

    footer .imgnote {
        top: 75%;
    }
}

@media (min-width: 576px) {
    footer p.footlogo {
        font-size: 5rem;
    }

    footer p.notes {
        font-size: 1.1rem;
    }
}


/* md */
@media (min-width: 768px) {

    footer p.footlogo {
        font-size: 6rem;
    }

    footer .contact {
        position: absolute;
        right: 10%;
        bottom: 5%;
        padding: 1.5rem 2% 0 11%;
        margin-bottom: 3vh;
        border-top: 1px solid #999;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    footer p.notes {
        font-size: 1.3rem;
    }
}


/* xxl */
@media (min-width: 1400px) {

    footer p.footlogo {
        font-size: 8rem;
    }

    footer .fictunit,
    footer .imgnote {
        /* top: 23%; */
        font-size: 1.5rem;
        font-weight: 100;
    }


    footer p.notes {
        padding: 20px;
        margin-bottom: 2vh;
        font-size: 1.2rem;
    }

    footer .contactchannel {
        font-size: 3.2rem;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .contact-form {
        width: 60vw;
    }

    footer p.notes {
        font-size: 1.7rem;

    }

}

/* End of Set 5 - Footer */




/* -- responsive - breakpoints -- */

/* sm */
/* @media (min-width: 576px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* xl */
/* @media (min-width: 1200px) {} */

/* xxl */
/* @media (min-width: 1400px) {} */