@import url('https://fonts.googleapis.com/css2?family-Poppins:wght@300;400;500;600;700;800;9008display=swap');

* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.sec li {
    font-size: 1em; 
    color: #fff; 
    font-weight: 300;
}

nav {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .mainMenu {
    display: flex;
    list-style: none;
    padding: 1%;
}

nav .mainMenu li a {
    display: inline-block;
    padding: 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    transition: 0.2 ease;
    white-space: nowrap;
}

nav .mainMenu li a:hover {
    background: rgb(255,94,0);
}

nav .openMenu {
    font-size: 2rem;
    margin: 4%;
    display: none;
    cursor: pointer;
}

nav .mainMenu .closeMenu , .icons i {
    font-size: 2rem;
    display: none;
    cursor: pointer;
}

.fa-facebook:hover {color: rgb(0, 110, 255);}
.fa-twitter:hover {color: rgb(0, 110, 255);}
.fa-instagram:hover {color: rgb(0, 110, 255);}
.fa-github:hover {color: rgb(0, 110, 255);}

nav .logo {
    margin: 1%;
    margin-right: -3%;
    margin-left: 2%;
    text-transform: uppercase;
    cursor: pointer;
}

@media(max-width: 1000px){
    nav .mainMenu {
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 8;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #000;
        transition: top 1s ease 0s;
        display: none;
    }
    nav .mainMenu .closeMenu {
        display: block;
        position: absolute;
        top: 3%;
        right: 3%;
    }
    nav .openMenu {
        display: block;
    }
    nav .mainMenu li a:hover {
        background: none;
        color: rgb(255, 123, 0);
    }
    .icons i {
        display: inline-block;
        padding: 12%;
    }
}

.parallax { 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text {
    position: absolute; 
    padding: 6%;
    font-size: 5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .2);
}

#list {
    color: #fff;
    font-size: 1em; 
    font-weight: 300;
    padding: .5%;
    margin-left: 12%;
    margin-right: 12%;
}

#contact {
    color: #fff;
    font-size: 1em; 
    font-weight: 300;
}

ul {
    list-style-type: none;
  }

.parallax img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sec {
    position: relative;
    background: #003329;
    padding: 6%;
}

.sec h2 {
    font-size: 3em; 
    color:#fff;
    margin-bottom: 10px;
    padding: .5%;
    margin-left: 12%;
    margin-right: 12%;
} 

.sec p {
    font-size: 1em; 
    color: #fff; 
    font-weight: 300;
    padding: .5%;
    margin-left: 12%;
    margin-right: 12%;
}

.sec2 {
    position: relative;
    background: #3eaa94;
    padding: 6%;
}

.sec2 h2 {
    font-size: 3em; 
    color:#fff;
    margin-bottom: 10px;
    padding: .5%;
    margin-left: 12%;
    margin-right: 12%;
} 

.sec2 p {
    font-size: 1em; 
    color: #fff; 
    font-weight: 300;
    padding: .5%;
    margin-left: 12%;
    margin-right: 12%;
}

.reveal{
    position: relative;
    transform: translate(150px);
    opacity: 0;
    transition: all 2s ease;
    }

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
    }

.link-style {
    color: rgb(20, 0, 56); /* Set the color you want for the link text */
    text-decoration: underline; /* Underline the text to resemble a link */
    cursor: pointer; /* Change the cursor to a pointer on hover for link-like behavior */
    }

#scrollToTopBtn {
    position: fixed;
    bottom: 5%;
    right: 5%;
    border: none;
    cursor: pointer;
    display: block;
    background-color: transparent;
}

.languageChange {
    margin-left: 5%;
    margin-right: -17%;
}

.french {
    margin-left: 2%;
}

.japan {
    margin-left: 2%;
}

.america {
    margin-left: 2%;
}

.remove {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit the color from the parent */
}