/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-family: Raleway;
	background-color: #F8F8F8;
}

main {
	max-width: 90%;
	margin: 0 auto;
}

hr {
	margin: 100px 0px; 
	height: 3px;
	background-color: #FC594A;
}

a {
    text-decoration: none;
    list-style: none;
    color: #000;
    box-shadow: inset 40px 5px 40px rgba(255, 255, 255, 0.25);
}


/* Text Styles */

h1 {
	font-size: 64px;
	font-weight: 600;
}

h2 {
	font-size: 40px;
	font-weight: 600;
}

h3{
	font-size: 24px;
	font-weight: 600;
}

p {
	font-size: 20px;
	font-weight: 400;
}

span {
    font-size: 20px;
}

.banner {
	width: 100%;
	height: 490px;
	background-size: cover;
	background-position: top center;
}


.banner p {
	font-size: 64px;
	font-weight: 600;
	text-align: center;
	color: #FFF;
	position: absolute;
	top: 40%;
}


/*Header*/

header {
	background-color: #FFF;
	position: sticky;
	z-index: 6;
	top: 0;

}

.logo {
    width: auto;
    height: 70px;
}

.navbar {
	width: 100%;
	height: 80px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
	padding: 0px 20px;
}

.nav_links {
	display: flex;
	width: 30%;
	justify-content: space-evenly;
}

.nav_links li {
	justify-items: space-evenly;
}

.nav_links li:hover {
	border-bottom: 2px solid #FC594A;
}

.Menu_mobiiile {
    z-index: 3;
}

.Menu_mobiiile span {
    padding: 15px;
    display: inline;
    border-radius: 7px;
    font-family: 'Raleway', sans-serif;
    background: red;
    box-shadow: inset 40px 5px 40px rgba(255, 255, 255, 0.25);
    font-size: 15px;    
    line-height: 15px;
    color: white;
    width: auto;
    height: auto;
    box-sizing: content-box;
    border: 1px solid red;
    margin-bottom: 2px;
}

.Menu_mobiiile span:hover {
    color: black;
    background-color: white;
    border: 1px solid red;
}

.Menu_mobiiile a:hover {
    border: 1px solid #5BBE83;
}

.navbar .menu-hamburger {
    display: none;
    position: absolute;
    top: 10px;
    right: 35px;
    width: 60px;
}

.nav_links1 {
    display: none;
}

.menu-hamburger {
    display: none;
}


/* Footer */

.hr-footer {
	height: 8px;
	background-color: #5BBE83;
	margin: 0;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
    padding: 50px 50px;
}

footer li {
    font-size: 20px;
    margin: 20px 0;
}

footer ul {
    margin: 0 20px;
}

.footer-left {
    border-right: solid black 2px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 0 50px 0 0;
}

.footer-left-right {
    display: block;
    width: fit-content;
}

.footer-left-right li {
    display: block;
}

.footer-rsc {
    display: flex;
    justify-content: center;
}

.rsc24 {
    width: 24px;
}

.footer-rsc a {
    display: flex;
    justify-content: center;
    width: fit-content;
}

.footer-rsc img {
    margin: 0 5px;
}

.footer-right {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    width: fit-content;
    justify-content: center;
    height: 100%;
}

.submit {
    background-image: url(images/newsletter-send.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: #5BBE83;
    width: 50px;
    border-radius: 0 10px 10px 0;
}

.footer-newsletter-input {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.footer-newsletter input {
    display: flex;
    margin: 0;
    padding: 10px;
    border: solid #5BBE83 2px;
}

.nowrap {
    white-space: nowrap;
}

#footer-mail {
    width: 100%;
    border-radius: 10px 0 0 10px;
}



/* Buttons */

.btn-rouge {
	padding: 15px 30px;
	color: #FFF;
	border-radius: 10px;
	background-color: #FC594A;
	font-weight: 600;
	font-size: 20px;
	text-decoration: none;
}

.btn-rouge:hover {
	background-color: #FFF;
	color: #FC594A;
	box-shadow:0px 0px 0px 2px #FC594A inset
}

.btn-vert {
    border: none;
	padding: 15px 30px;
    color: white;
	border-radius: 10px;
	background-color: #5BBE83;
	font-weight: 600;
    font-size: 20px;
	text-decoration: none;
}

.btn-vert:hover {
	background-color: #FFF;
	color: #5BBE83;
    box-shadow:0px 0px 0px 2px #5BBE83 inset
}






/* VERSION MOBILE */

/* Header */

@media screen and (max-width:900px) {

    .menu-hamburger {
        display: block;
        width: 70px;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .logo {
        position: absolute;
        top: 10px;
        left: 10px;
    }

    .nav_links ul {
        display: none;
    }

    .navbar a {
        display: none;
    }

    .nav_links ul li a {
        display: none;
    }

    .navbar img {
        display: none;
    }

    .nav_links1 ul {
        background-color: white;
        backdrop-filter: blur(10px);
        width: 70%;
        height: 90vh;
        border-top-left-radius: 10px;
        border-bottom-left-radius:10px ;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }

    .nav_links1 {
        display: flex;
    }

    .nav_links1 ul {
        border-left: 4px solid #5BBE83;
    }

    .nav_links1 ul span {
        margin-bottom: 1em;
    }

    .close {
        color: #aaaaaa;
        position: relative;
        left:30%;
        top: 0;
        font-size: 28px;
        font-weight: bold;
    }

    #Menu_mobile {
        display: none;
        position: absolute;
        right: 0;
    }

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

    header {
        width:100%;
    }
}