/**
* template:  GREENEN

TABLE OF CONTENTS

        + Global
        + Header
        + About Us
        + Services
        + Pricing
        + FAQ
        + Testimonials
        + Contact
*/

@import 'reset.css';
@import 'all.min.css';
/*@import 'magnific-popup.css';*/
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&amp;family=Poppins:wght@400;900&amp;display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-black: rgb(0, 0, 0);
	--color-text: rgb(84, 89, 95);
	--color-white: rgb(255, 255, 255);
	--color-dark-blue: rgb(8, 25, 43);
	--color-light-green: rgb(43, 196, 138);
	--color-orange: rgb(246, 145, 16);
	--color-gray: rgb(248, 248, 248);
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	background-color: var(--color-dark-blue);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	display: block;
	width: 32px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	margin-bottom: 30px;
	line-height: 1.2;
	color: var(--color-black);
	text-transform: capitalize;
}

h1 {
	font-size: 5rem;
	color: var(--color-white);
	text-transform: none;
}

h2 {
	font-size: 60px;
}

a {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

img {
	height: auto;
}

::-moz-selection {
	background-color: var(--color-light-green);
	color: var(--color-white);
}

::selection {
	background-color: var(--color-light-green);
	color: var(--color-white);
}

.suptitle {
	display: inline-block;
	color: var(--color-light-green);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--color-light-green);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.social-link li {
	float: left;
	margin-left: 20px;
}

.social-link li a:hover {
	color: var(--color-orange);
}

.btn {
	padding: 19px 40px;
	font-weight: 800;
	font-size: 14px;
	color: var(--color-white);
	text-transform: uppercase;
	background-color: var(--color-light-green);
	border-radius: 3px;
}

.btn:hover {
	background-color: var(--color-orange);
}

.align-center {
	text-align: center;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 20px;
}

.header-bottom.fixedmenu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--color-dark-blue);
	z-index: 100;
}

#openmenu,
#closemenu {
	font-size: 30px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-orange);
}

.res-form {
	display: none;
	font-size: 16px;
	margin-top: 20px;
	padding-left: 10px;
}

.res-form .error {
	color: #ff0000;
}

.res-form .send {
	color: var(--color-white);
}


/**************************************
*
*         HEADER  
*
***************************************/


header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.1);
}

.wrapper-header-top,
.wrapper-header-bottom {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.wrapper-header-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-top {
	font-size: 14px;
}

.header-top p {
	color: var(--color-white);
}

.header-bottom a,
.header-top a {
	color: var(--color-white);
}

.header-contacts {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-contacts p,
.header-contacts a {
	margin-right: 20px;
}

.header-contacts a:hover {
	color: var(--color-orange);
}

.header-contacts i {
	margin-right: 5px;
}

.menu li {
	float: left;
	margin-left: 30px;
}

.menu li a {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	border-bottom: 1px solid transparent;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.menu li a:after {
	content: "";
	width: 0%;
	height: 1px;
	display: block;
	background-color: var(--color-white);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	margin-top: 5px;
}

.menu li a:hover:after {
	width: 100%;
}

.wrapper-header-content {
	min-height: 900px;
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(8, 25, 43, 1)), to(transparent)), url('../images/bg-header.webp');
	background-image: -o-linear-gradient(left, rgba(8, 25, 43, 1), transparent), url('../images/bg-header.webp');
	background-image: linear-gradient(90deg, rgba(8, 25, 43, 1), transparent), url('../images/bg-header.webp');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: cover;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-links-header-content {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-links-header-content .btn {
	margin-right: 20px;
}

.wrapper-links-header-content .popup-youtube {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--color-white);
	text-transform: uppercase;
	font-weight: 800;
}

.wrapper-links-header-content .popup-youtube span {
	display: block;
	width: 60px;
	height: 60px;
	background-color: var(--color-white);
	color: var(--color-light-green);
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
}

.wrapper-links-header-content .popup-youtube span i {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 20px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-links-header-content .popup-youtube:hover span i {
	color: var(--color-orange);
}


/**************************************
*
*         ABOUT US 
*
***************************************/


#aboutus {
	position: relative;
}

.wrapper-progress {
	position: absolute;
	background-color: var(--color-light-green);
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-progress {
	width: 33.333333%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}

.single-progress:after {
	content: "";
	display: block;
	width: 1px;
	height: 80px;
	background-color: var(--color-white);
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.single-progress:last-child:after {
	display: none;
}

.single-progress img {
	display: block;
	width: 64px;
	height: auto;
	margin-right: 20px;
}

.progress-content {
	color: var(--color-white);
}

.progress-content p {
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	margin-bottom: 10px;
}

.single-progress h3 {
	font-size: 16px;
	margin-bottom: 0px;
	color: var(--color-white);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

.wrapper-aboutus {
	padding-top: 100px;
	max-width: 1400px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.aboutus-img {
	width: 40%;
	position: relative;
}

.aboutus-img img {
	width: 100%;
	border-radius: 100px 0px 100px 0px;
}

.aboutus-content {
	width: 60%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 50px;
}

.aboutus-content p {
	margin-bottom: 20px;
}

.experiences {
	position: absolute;
	bottom: -20px;
	left: -20px;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--color-orange);
	color: var(--color-white);
	border: 10px solid var(--color-white);
	border-radius: 0px 10px 0px 0px;
}

.experiences span {
	font-size: 40px;
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	margin-bottom: 10px;
}

.experiences p {
	text-transform: uppercase;
	font-size: 16px;
}

.tab-content .item-tab:not(:first-child) {
	display: none;
}

.tab-content .item-tab {
	background-color: var(--color-white);
	padding: 20px;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.tab-list {
	margin-top: 40px;
}

.tab-list ul {
	overflow: hidden;
}

.tab-list ul li {
	float: left;
	margin-right: 20px;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.tab-list ul li a {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--color-black);
	padding-bottom: 5px;
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
}

.tab-list .active a {
	color: var(--color-orange);
	border-bottom: 1px solid var(--color-orange);
}


/**************************************
*
*         SERVICES 
*
***************************************/


#services {
	background-image: url('../images/bg-services.webp');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.wrapper-services {
	width: 60%;
	height: 100%;
	background-color: var(--color-dark-blue);
	padding-left: 50px;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-white);
}

.wrapper-services h2 {
	color: var(--color-white);
}

.single-service {
	width: 50%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-white);
}

.single-service span {
	font-size: 18px;
	margin-bottom: 10px;
	display: block;
	color: var(--color-light-green);
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
}

.single-service h3 {
	color: var(--color-white);
	margin-bottom: 20px;
	font-size: 25px;
}


/**************************************
*
*         PRICING
*
***************************************/


#pricing {
	background-color: var(--color-gray);
}

.wrapper-pricing {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.single-pricing {
	width: calc(33.333333% - 20px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 10px;
	padding: 80px 40px;
	background-color: var(--color-white);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-pricing:nth-child(2) {
	background-color: var(--color-dark-blue);
	padding: 90px 40px;
}

.single-pricing:nth-child(2) .pricing-plan {
	display: inline-block;
	background-color: var(--color-orange);
	padding: 5px 15px;
}

.pricing-plan {
	display: block;
	margin-bottom: 20px;
	text-transform: uppercase;

}

.single-pricing h3 {
	font-size: 50px;
}

.single-pricing h3 span {
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
}

.single-pricing li {
	margin-bottom: 20px;
}

.single-pricing li i {
	margin-right: 10px;
	color: var(--color-light-green);
}

.single-pricing:nth-child(2) h3 {
	color: var(--color-white);
}

.single-pricing:nth-child(2) li {
	color: var(--color-white);
}


/**************************************
*
*         FAQ
*
***************************************/


#faq {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 25, 43, 0.8)), to(rgba(8, 25, 43, 0.8))), url('../images/bg-faq.png');
	background-image: -o-linear-gradient(rgba(8, 25, 43, 0.8), rgba(8, 25, 43, 0.8)), url('../images/bg-faq.png');
	background-image: linear-gradient(rgba(8, 25, 43, 0.8), rgba(8, 25, 43, 0.8)), url('../images/bg-faq.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;
	background-attachment: fixed;
}

.wrapper-faq h2 {
	color: var(--color-white);
}

.content-accordion {
	display: none;
}


.wrapper-faq h3 {
	font-size: 20px;
	padding: 15px;
	border-left: 5px solid var(--color-light-green);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	margin-bottom: 0px;
	color: var(--color-white);
}

.wrapper-accordion h3 i {
	margin-right: 10px;
	font-size: 16px;
}

.wrapper-faq .content-accordion {
	padding: 40px 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-left: 5px solid var(--color-white);
	box-sizing: border-box;
	color: var(--color-white);
}


/**************************************
*
*         TESTIMONIALS
*
***************************************/


.wrapper-testimonials {
	max-width: 1000px;
	text-align: center;
}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.single-testimonials p {
	font-size: 20px;
	margin-bottom: 20px;
}

.wrapper-author h3 {
	margin-bottom: 10px;
}

.wrapper-author p {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-light-green);
}


/**************************************
*
*         TCONTACT
*
***************************************/


#contact {
	background-color: var(--color-dark-blue);
	padding-top: 100px;
}

#contact h2 {
	color: var(--color-white);
}

.contact-content {
	width: 100%;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-white);
}

.contact-content h3 {
	color: var(--color-white);
	margin-bottom: 20px;
	font-size: 20px;
}

.contact-form {
	width: 60%;
}

.single-contact {
	margin-bottom: 30px;
}

.contact-content a {
	color: var(--color-white);
}

.contact-content a:hover {
	color: var(--color-orange);
}

.contact-content li {
	margin-left: 0px;
	margin-right: 20px;
}

.wrapper-input {
	width: 100%;
}

.wrapper-input input {
	width: calc(50% - 20px);
	display: block;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	margin: 10px;
	background-color: var(--color-gray);
}

.wrapper-input textarea {
	width: calc(100% - 20px);
	display: block;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	border: none;
	margin: 10px;
	height: 180px;
	background-color: var(--color-gray);
}

.wrapper-input input::-webkit-input-placeholder,
.wrapper-input textarea::-webkit-input-placeholder {
	color: var(--color-dark-blue);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.wrapper-input input::-moz-placeholder,
.wrapper-input textarea::-moz-placeholder {
	color: var(--color-dark-blue);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.wrapper-input input:-ms-input-placeholder,
.wrapper-input textarea:-ms-input-placeholder {
	color: var(--color-dark-blue);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.wrapper-input input::-ms-input-placeholder,
.wrapper-input textarea::-ms-input-placeholder {
	color: var(--color-dark-blue);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

.wrapper-input input::placeholder,
.wrapper-input textarea::placeholder {
	color: var(--color-dark-blue);
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

#send {
	outline: none;
	border: none;
	cursor: pointer;
	margin: 10px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-map {
	width: 100%;
	padding-top: 100px;
}

.wrapper-map iframe {
	width: 100%;
	display: block;
	height: 400px;
}

.copyright {
	padding-top: 40px;
	padding-bottom: 40px;
	font-size: 14px;
	color: var(--color-white);
}



/**************************************
*
*         CUSTOM
*
***************************************/
html{
	scroll-behavior: smooth;
}

.flex-row-container {
    /*background: #aaa;*/
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Align items to the top */
    justify-content: flex-start;
}
.flex-row-container > .flex-row-item {
    flex: 1 1 33.33%; /*grow | shrink | basis */
	box-sizing: border-box; /* Ensure padding/borders don't affect the flex basis */
    /*height: 100px;*/
	padding-bottom: 1rem;
}

/* Media query pour les écrans de 768px et moins */
@media (max-width: 830px) {
    .flex-row-container > .flex-row-item {
        flex: 1 1 100%; /* Chaque élément prendra une ligne entière */
		padding-bottom: initial;
    }
}

/***.flex-row-item {
  background-color: #fff4e6;
  border: 1px solid #f76707;
}***/