@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

* {

    margin: 0px;

    padding: 0px;

    box-sizing: border-box;

    font-family: 'Poppins';

}



body,

html {

    margin: 0;

    padding: 0;

    perspective: 1px;

    transform-style: preserve-3d;

    height: 100%;

    overflow-y: auto;

    overflow-x: hidden;

    scroll-behavior: smooth;

}







nav {

    display: flex;

    justify-content: space-around;

    align-items: center;

    height: 100px;

    background-color: rgb(255, 255, 255);

    position: sticky;

    top: 0;

    left: 0;

    background-blend-mode: darken;

    width: 100%;

    transition: .5s;

    z-index: 5;

    box-shadow: #2c2c2c 0px 10px 70px;

}



nav img {

    height: 90px;

}



nav.green {

    background-color: rgb(230, 230, 230);

}



nav.green .logo .img1 {

    opacity: 0;

    transition: .5s;

}



.logo {

    font-size: 22px;

    letter-spacing: 5px;

}



.nav-links {

    display: flex;

    justify-content: space-around;

    width: 50%;

}

@media screen and (max-width : 1400px) {

    .nav-links {

        width: 70%;

    }

}

@media screen and (max-width : 950px) {

    .nav-links {

        width: 90%;

    }

}

.nav-links li {

    align-items: center;

    list-style-type: none;

}



.nav-links a {

    text-decoration: none;

    letter-spacing: 3px;

    font-weight: bold;

    color: #44bd32;

    font-size: 16px;

}



nav h1 {

    color: rgb(250, 239, 224);

}



.burger {

    display: none;

    cursor: pointer;

}



.burger div {

    width: 30px;

    height: 3px;

    background-color: #44bd32;

    margin: 5px;

    transition: all 0.3s ease;

}



@media screen and (max-width : 768px) {

    body {

        overflow-x: hidden;

    }



    .nav-links {

        position: absolute;

        right: 0px;

        height: 92vh;

        top: 100px;

        background-color: rgb(255, 255, 255);

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        width: 50%;

        clip-path: circle(0px at 90% -10%);

        -webkit-clip-path: circle(0px at 90% -10%);

        transition: clip-path 0.5s ease-in;

    }



    .nav-links li {

        opacity: 0;

        margin-top: 5vh;

        margin-bottom: 5vh;

    }



    .burger {

        display: block;

    }



    .illustration {

        display: none;

    }

}



.top-container {

    padding: 0 25px;

    display: flex;

    margin: auto;

    width: 90vw;

    justify-content: space-around;

    position: relative;

    bottom: 10vh;

}



.nav-active {

    clip-path: circle(100vh at 90% -10%);

    -webkit-clip-path: circle(100vh at 90% -10%);

}



@keyframes navLinkFade {

    from {

        opacity: 0;

        transform: translateX(50px);

    }



    to {

        opacity: 1;

        transform: translateX(0px);

    }

}



.toggle .line1 {

    transform: rotate(-45deg) translate(-5px, 6px);

}



.toggle .line2 {

    opacity: 0;

}



.toggle .line3 {

    transform: rotate(45deg) translate(-5px, -6px);

}



.under {

    height: 2px;

    width: 0%;

    background-color: #3d9c2e;

    transition: all 0.5s ease;

    position: relative;

    left: -5%;

}



.nav-links li:hover .under {

    width: 110%;

    transition: all 0.5s ease;

}



.logo img {

    height: 6vh;

    margin-top: 1vh;

}



footer {

    background-color: #007419;

}



























.top_container

{

    padding: 0 25px;

}

.nav-active

{

    clip-path: circle(800px at 90% -10%);

    -webkit-clip-path: circle(800px at 90% -10%);}



@keyframes navLinkFade

{

    from

    {

        opacity : 0;

        transform: translateX(50px);

    }

    to

    {

        opacity: 1;

        transform: translateX(0px);

    }

}



.toggle .line1

{

    transform: rotate(-45deg) translate(-5px,6px);

}

.toggle .line2

{

    opacity: 0;

}

.toggle .line3

{

    transform: rotate(45deg) translate(-5px,-6px);

}

.under

{

    height: 2px;

    width: 0%;

    background-color: #3d9c2e;

    transition: all 0.5s ease;

    position: relative;

    left: -5%;

}

.nav-links li:hover .under

{

    width: 110%;

    transition: all 0.5s ease;

}

.logo img

{

    height: 6vh;

    margin-top: 1vh;

}



form

{

    display: flex;

    flex-direction: column;

    width: 50%;

    margin: auto;

    overflow-x: hidden;

    padding-top: 50px;

}

form input

{

    height: 30px;

    border: none;

    outline: none;

    margin-top: -15px;

    font-size: 16px;

}

form textarea

{

    border: none;

    outline: none;

    margin-bottom: 2px;

    font-size: 16px;

    resize: none;

}

form label

{

    position: relative;

    bottom: 60px;

    height: 60px;

    border-bottom: 1px solid black;

    pointer-events: none;

}

form label span

{

    position: absolute;

    bottom: 2px;

    transition: .5s;

}

form label::after

{

    content: "";

    position: absolute;

    left: 0px;

    bottom: -1px;

    height: 100%;

    width: 100%;

    border-bottom: 3px solid #1c6e0f;

    transform: translateX(-100%);

    transition: transform .3s ease;



}

form input:focus + .label-name .content-name, 

form input:valid + .label-name .content-name

{

    transform: translateY(-40px);

    transition: transform .5s ease;

    font-size: 14px;

    color: #44bd32;

}

form input:focus + .label-name::after,

form input:valid + .label-name::after

{

    transform: translateX(0%);

}

form button

{

    width: 25%;

    height: 40px;

    background: #1c6e0f;

    border: none;

    color: white;

    border-radius: 5px;

}





form textarea:focus + .label-name .content-name, 

form textarea:valid + .label-name .content-name

{

    transform: translateY(-45px);

    transition: transform .5s ease;

    font-size: 14px;

    color: #44bd32;

}

form textarea:focus + .label-name::after,

form textarea:valid + .label-name::after

{

    transform: translateX(0%);

}

.tit_container

{

    text-align: center;

    display: flex;

    justify-content: center;

}

.tit_container h2

{

    display: block;

    position: relative;

    text-align: center;

    width: 1000px;

    font-weight: normal;

    font-size: 30px;

    margin: 0;

    padding-top: 50px;

}

.tit_container h2:before

{

	content: "";

	display: block;

	width: 150px;

	height: 2px;

	background: #000;

	position: absolute;

	left: 0;

	top: 50%;

	z-index: -2;

}

.tit_container h2:after

{

	content: "";

	display: block;

	width: 150px;

	height: 2px;

	background: #000;

	position: absolute;

	right: 0;

	top: 50%;

	z-index: -2;

}

.dark-mode

{

    filter: invert(1) hue-rotate(180deg);

    transition: 1.5s;

}

.white-mode

{

    filter: invert(1) hue-rotate(180deg);

}

:root

{

    transition: 1.5s;

}

section

{

    background: white;

}

.infos {

    max-width: 500px;

    max-height: 500px;

    width: 90vw;

    height: 90vh;

    background-color: #609349;

    color: white;

    padding: 20px;

}



section {

    background: white;

    padding: 25px 0;

}



section:nth-of-type(even) {

    background: rgb(252, 252, 252);

}

.flex {

    display: flex;

    flex-wrap: wrap;

}

.map {

    max-width: 500px;

    max-height: 500px;

    height: 90vh;

}



.map_cont {

    justify-content: center;

}



.line {

    width: 104%;

    height: 3px;

    background-color: white;

    position: relative;

    right: 10px;

}



section:nth-of-type(4) {

    padding-bottom: 100px;

}



.infos .flex img {

    width: 27px;

    height: 27px;

}



.infos .flex {

    margin: 20px 0;

    align-items: center;

}



.infos .flex h3 {

    margin-left: 10px;

}



.nowrap {

    flex-wrap: nowrap;

}



.clock {

    display: flex;

    align-items: unset;

}



.clock img {

    margin-bottom: 37%;

}



.infos {

    position: relative;

}



.infos p {

    position: absolute;

    bottom: 0;

}





.contributions div a {

    color: black;

    text-decoration: none;

    font-size: 10px;

    display: inline;

}

.contributions div p {

    display: inline;

    font-size: 10px;

}