/*Fonts => Poppins imported from Google font*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*Variables*/
:root{
    --the-principal-color: #6CA507;
    --the-secondary-color: #00FFF0; 
    --the-page-color: #001819;
}

/*Default Style*/

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    
}

/*The body of website*/

body{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('assets/gazon.png');
    overflow-x: hidden;
    background-position: center;
}

body::after{
    content: '';
    background-color: rgb(0, 13, 14, 0.75);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
}

/*The infos section*/

#infos{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 30px;
    padding: 0 30px;
    height: 30px;
    background-color: var(--the-principal-color);
}

#infos div{
    display: flex;
    align-items: center;
    gap: 10px;
}

#infos div box-icon{
    width: 19px;
    aspect-ratio: 1/1;
}

#infos div span{
    font-size: 12px;
    font-weight: 700;
}

@media screen and (max-width : 744px) {
    #infos{
        justify-content: space-between;
        padding-left: 30px;
    }
    #infos div{
        gap: 8;
    }
}

@media screen and ( max-width: 450px ) {
    #infos{
        display: none;
    }
}

/*The navbar*/

#navbar{
    width: 100%;
    height: auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(44.4px);
    background-color: rgba(0, 24, 25, 0.6);
    position: sticky;
    top: -1px;
    z-index: 1;
}

.navbar-container{
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: space-between;
}

.logo{
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.logo h1{
    font-weight: 700;
    font-size: 20px;
    color: var(--the-principal-color);
}

.logo span{
    font-weight: 400;
    text-transform: uppercase;
    font-size: 15px;
}

nav{
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 15px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.translate{
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.translate ion-icon{
    font-size: 19px;
}

select{
    border: none;
    background-color: transparent;
    outline: none;
    color: white;
}

select option{
    background-color: var(--the-page-color);
    color: white;
}

select option :hover{
    background-color: var(--the-principal-color);
    color: black;
}

.menu{
    display: none;
    cursor: pointer;
}


@media screen and (max-width : 830px) {
    .menu{
        display: flex;
    }
    nav{
        display: none;
        position: absolute;
        background-color: var(--the-page-color);
        width: 200px;
        height: auto;
        justify-content: center;
        flex-direction: column;
        bottom: -400px;
        right: 0;
        align-items: center;
        gap: 0;
    }
    .display{
        display: flex;
    }
    nav a:hover{
        background-color: #002b2d;
    }

    nav a{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
    }

    .translate{
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .translate select{
        cursor: pointer;
    }

    .translate:hover{
        background-color: #002b2d;
    }

    .logo h1{
        font-size: 16px;
    }

    .logo span{
        font-size: 12px;
    }
}

/*The main section*/

#home{
    width: 100%;
    height: auto;
    padding: 100px 0 100px 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

#home span{
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: #c0c0c0;
}

#home h1{
    font-weight: 700;
    font-size: 100px;
}

#home button{
    background-color: var(--the-principal-color);
    color: white;
    border-radius: 10px;
    padding: 20px 40px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

#home::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00181900, #001819);
    z-index: -1;
}

@media screen and (max-width : 1336px){
    #home h1{
        font-size: 75px;
    }
}

@media screen and (max-width : 830px) {
    #home span{
        font-size: 12px;
    }
    #home button{
        font-size: 12px;
        padding: 13px 17px;
    }
}


@media screen and (max-width : 660px) {
    #home button{
        font-size: 10px;
    }
}


@media screen and (max-width : 990px) {
    #home h1{
        font-size: 50px;
    }
}

@media screen and (max-width : 660px) {
    #home{
        padding: 50px 0 30px 0;
    }
    #home h1{
        font-size: 35px;
    }
}

@media screen and (max-width : 460px) {
    #home h1{
        font-size: 25px;
    }
    #home span{
        font-size: 10px;
    }
}

/*The services section*/

#services{
    background-color: var(--the-page-color);
    color: white;
    padding: 50px 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 30px;
    flex-direction: column;
}

#services h1 .ser{
    color: var(--the-principal-color);
}

.services-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.details{
    font-size: 12px;
    font-weight: 300;
    width: 200px;
    color: #c0c0c0;
}

.details:nth-child(1){
    text-align: right;
}

.details:nth-child(2){
    text-align: left;
}

.services{
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.services div{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: white solid 1px;
}

.services div:nth-child(1){
    left: 40px;
}

.leaf{
    right: 40px;
}

.services img{
    width: 328px;
}

@media screen and (max-width : 1100px) {
    .services img{
        width: 250px;
    }
    .services div{
        width: 60px;
        height: 60px;
    }
    .services-container span{
        font-size: 12px;
    }
}

@media screen and (max-width : 900px){
    .services-container{
        flex-direction: column;
        gap: 50px;
    }
    .details:nth-child(1){
        order: 2;
    }
    .services-container .details{
        text-align: center;
        width: 255px;
    }
}

@media screen and (max-width : 530px){
    .services{
        gap: 20px;
    }
    .services img{
        width: 150px;
    }
    .services div{
        width: 40px;
        height: 40px;
    }
    .services div box-icon{
        width: 15px;
    }
}

/*The process section*/

#process{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-color: var(--the-page-color);
    color: white;
    padding-bottom: 50px;
}

#process h1 .pro{
    color: var(--the-secondary-color);
}

.prozess-part{
    width: 1000px;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 1000px;
    justify-content: center;
}

.reverse{
    flex-direction: row-reverse;
}

.prozess-part span{
    font-size: 300px;
    font-weight: 800;
    opacity: 5%;
    color: var(--the-secondary-color);
}

.prozess-part div{
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 500px;
    gap: 20px;
}

@media screen and (max-width : 500px) {
	.prozess-part h1{
    	text-align: center;
	}
}

.prozess-part div hr{
    width: 100px;
    border: 2.5px solid var(--the-secondary-color);
    border-radius: 2.5px;
}

.prozess-part div p{
    opacity: 50%;
    font-weight: 300;
}

.how{
    opacity: 50%;
    font-weight: 200;
    position: relative;
}

.how::after{
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

@media screen and (max-width : 1100px) {
    .prozess-part{
        width: 800px;
        gap: 50px;
    }
}

@media screen and (max-width : 880px) {
    .prozess-part{
        width: 577px;
    }
    .prozess-part span{
        font-size: 200px;
    }
    .prozess-part div{
        width: 400px;
    }
    .prozess-part div h1{
        font-size: 20px;
        width: max-containt;
    }
    .prozess-part div p{
        font-size: 12px;
        width: 260px;
    }
}

@media screen and (max-width : 700px) {
    .prozess-part{
        width: auto;
        flex-direction: column;
        align-items: center;
    }
    .prozess-part h1{
        width: 300px;
    }
    .prozess-part div{
        width: 400px;
        align-items: center;
    }
    .prozess-part div h1{
        width: auto;
    }
    .prozess-part div p{
        width: auto;
        text-align: center;
    }
}

@media screen and (max-width : 500px){
    .prozess-part div{
        width: 300px;
    }
}


/*The about section*/

.main-about{
    font-size: 150px;
    font-weight: 700;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    padding: 30px 0;
    background-color: rgba(0, 24, 25, 0.8);
}

.main-about::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #001819);
    bottom: 0;
    z-index: -1;
}
.main-about::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #001819, rgba(255, 255, 255, 0));
    top: 0;
    z-index: -1;
}

.main-about .green{
    color: var(--the-principal-color);
}

#about{
    background-color: var(--the-page-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
    padding: 100px 0;
}

.us{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.us h1{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.text-us{
    width: 660px;
}

.text-us p{
    color: rgb(175, 175, 175);
    font-weight: 300;
}

.quality{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 50px;
}

.quality div{
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-quality{
    text-align: center;
}

@media  screen and (max-width: 500px) {
    .main-quality{
        width: 300px;
    }    
}

.quality div h1{
    text-align: center;
}

.quality div p{
    text-align: center;
    font-weight: 300;
    color: rgb(155, 155, 155);
}

.faq-section{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr{
    width: 1000px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qr:hover{
    background-color: rgba(0, 255, 238, 0.1);
    transition: 0.3s;
    cursor: pointer;
}



.qr:not(:nth-child(1)){
    border-bottom: solid 2px rgba(255, 255, 255, 0.5);
}

.qr:nth-child(1){
    border-top: solid 1px rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.q{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 40px;
    width: 95%;
}

.qr box-icon{
    min-width: 15px;
}

@media screen and (max-width : 1100px) {
    .us{
        gap: 100px;
    }
}



@media screen and (max-width : 880px){
    .main-about{
        font-size: 100px;
    }
    .us{
        flex-direction: column;
    }
    .text-us{
        text-align: center;
    }
    .us h1 br{
        display: none;
    }
}

@media screen and (max-width : 540px){
    .main-about{
        font-size: 60px;
    }
}

@media screen and (max-width : 780px) {
    #about{
        gap: 50px;
    }
    .us{
        gap: 50px;
    }
    .us h1{
        font-size: 20px;
    }
    .main-quality{
        font-size: 20px;
    }
    .text-us{
        font-size: 12px;
        width: 80%;
    }
    
    .quality h1{
        font-size: 20px;
    }
    .quality p{
        font-size: 12px;
    }
}

@media screen and (max-width : 500px){
    .us{
        width: 350px;
    }
}

@media screen and (max-width : 1000px) {
    .quality{
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1080px) {
    .qr{
        width: 800px;
    }
}

@media screen and (max-width: 880px){
    .qr{
        width: 600px;
        font-size: 12px;
    }
}

@media screen and (max-width: 680px){
    .q{
        width: 400px;
        gap: 10px;
    }
    .q{
        width: 80%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 500px) {
    .qr{
        width: 300px;
    }
}

/*The contact section*/

#contact{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
    width: 100%;
    height: auto;
    background-color: var(--the-page-color);
    color: white;
}

.contact-infos{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-infos div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  	cursor: pointer;
}

.contact-infos div span{
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}

#contact form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#contact form input{
    width: 350px;
    height: 40px;
    padding-left: 10px;
    background-color: transparent;
    border: solid 2px rgba(255, 255, 255, 0.5);
    outline: none;
    color: white;
}

#contact form textarea{
    width: 350px;
    resize: none;
    height: 100px;
    padding: 10px;
    background-color: transparent;
    border: solid 2px rgba(255, 255, 255, 0.5);
    outline: none;
    color: white;
}

#contact form button{
    background-color: #6CA507;
    color: #001819;
    width: 350px;
    padding: 10px 0;
    border: none;
    outline: none;
    transition: .3s;
    font-weight: bold;
    cursor: pointer;
}

#contact form button:active{
    transform: scale(0.9);
}

.map-infos{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.main-text-form{
    text-align: center;
    font-weight: 200;
}

.main-text-form span{
    font-size: 15px;
    font-weight: 300;
}

.main-text-form span{
    font-size: 30px;
    font-weight: 700;
}

iframe{
    width: 100%;
}

@media screen and (max-width: 600px) {
    #contact form input, #contact form textarea, #contact form button{
        width: 300px;
    }
}

/*The footer section*/

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 50px;
    background-color: rgba(0, 24, 25, 0.8);
    color: white;
    gap: 30px;
    margin: 0;
}

footer box-icon{
    cursor: pointer;
    transition: 0.3s;
}

footer box-icon:hover{
    color: var(--the-principal-color);
}

footer .navbar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

footer .navbar .logo{
    font-size: 15px;
    font-weight: 300;
}

footer .navbar .logo span{
    font-weight: bold;
    font-size: 20px;
    color: var(--the-principal-color);
}

.followUs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

.mailBox{
    display: flex;
    align-items: center;
    gap: 10px;
}

.mailBox input{
    width: 250px;
    background-color: var(--the-page-color);
    color: white;
    padding: 10px;
    border: none;
    outline: none;
}

.mailBox button{
    background-color: var(--the-principal-color);
    color: #001819;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-weight: 700;
}

.copyright{
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

.socialMedia{
    display: flex;
    align-items: center;
    gap: 30px;
}

.socialMedia box-icon{
    padding: 10px;
    background-color: rgba(0, 24, 25, 0.8);
    border-radius: 50%;
}

#github{
    padding: 5px 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 300;
    color: white;
    background-color: var(--the-page-color);
    font-size: 10px;
    justify-content: center;
    margin: 0;
}

.r{
    display: none;
    align-items: left;
    width: 95%;
    padding: 10px 0 20px 0;
    color: #ababab;
    font-weight: 300;
}

.viewed{
    display: flex;
}

.myGithub{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 10px;
    color: white;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
  	text-align: center;
  	flex-direction: column;
}