/*****************************************************************
    Template Name    : Naldeo
    Author           : Clair de Lune Design
    Created          : 2024
    File Description : Main css file of the template
*****************************************************************/

/*****************************************************************

** - 01 - Default CSS
** - 02 - Cookies Section CSS
** - 03 - Navbar Section CSS
** - 04 - Go Top CSS
** - 05 - Home All Section CSS
** - 06 - Home carousel CSS
** - 07 - Services Section CSS
** - 08 - Activités Section CSS
** - 09 - About Section CSS
** - 10 - Overview Section CSS
** - 11 - Counter Section CSS
** - 12 - Parallax Section CSS
** - 13 - Portfolio Section CSS
** - 14 - Portfolio Details Page CSS
** - 15 - Team Section CSS
** - 16 - Hire Section CSS
** - 17 - Partner Section CSS
** - 18 - Publications Section CSS
** - 19 - Publications Details Page CSS
** - 20 - Publications Page Sidebar Widget CSS
** - 21 - Publications Page Number Pagination CSS
** - 22 - Other Page Banner Title Section CSS
** - 23 - Contact Page CSS
** - 24 - Map Section CSS
** - 25 - 404 Error Page CSS
** - 26 - Terms & Conditions Page CSS
** - 27 - Privacy Policy Page CSS
** - 28 - All Page Footer Section CSS
** - 29 - All Page Copyright Section CSS
** - 30 - Jobboard CSS

*****************************************************************/

/**************************************
 ** - 01 - Default CSS
 **************************************/
*, *:before, *:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html, body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
	padding: 0;
	font-size: 16px;
	font-family:'Cabin', sans-serif;
  	font-weight: 400;
	color:#666666;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

button {
	outline: 0 !important;
}

dl, ol, ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
.pb-15 {
	padding-bottom: 15px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-70 {
	padding-bottom: 70px;
}
.ptb-70 {
	padding-bottom: 70px;
	padding-top: 70px;
}
.pb-80 {
	padding-bottom: 80px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-80 {
	padding-top: 80px;
}
.pt-100 {
	padding-top: 100px;
}

.bg-grey {
	background-color: #f7f8f8;
}

.section-padding {
	padding: 70px 0;
}

a {
	color: #38ABAE;
	text-decoration: none;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	outline: 0 !important;
}

a:hover {
	color: #375B6A;
	text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	line-height: 1.4;
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
	margin: 0;
	color: #375B6A;
}
.h2, h2 {
    color: #375B6A;
	font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.h3, h3 {
    color: #375B6A;
	font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
	margin-bottom: 20px;
	margin-top: 20px;
}
p {
	color:#666666;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	font-family:'Cabin', sans-serif;
	margin-bottom: 15px;
}
p:last-child {
	margin-bottom: 0;
}

.underline-small{
  display:inline-block;
  position:relative;
  padding-bottom:30px;
}
.underline-small::after{
  content:'';
  height:2px;
  width:50px;
  background: linear-gradient(to right, #912329 0%,#FF9C00 25%, #52B264 50%, #24A3dA 75%, #2B388F 100%);
  position:absolute;
  left:0;
  bottom:25px;
}
.underline-small-centered{
  display:inline-block;
  position:relative;
  padding-bottom:30px;
}
.underline-small-centered::after{
  content:'';
  height:2px;
  width:50px;
  background: linear-gradient(to right, #912329 0%,#FF9C00 25%, #52B264 50%, #24A3dA 75%, #2B388F 100%);
  position:absolute;
  left:calc(50% - 25px);
  bottom:25px;
}

.underline-small-menu{
  display:inline-block;
  position:relative;
  padding-bottom:30px;
}
.underline-small-menu::after{
  content:'';
  height:2px;
  width:50px;
  background: linear-gradient(to right, #912329 0%,#FF9C00 25%, #52B264 50%, #24A3dA 75%, #2B388F 100%);
  position:absolute;
  left:calc(50% - 25px);
  bottom:-5px;
}

.read-more {
    color: #38ABAE;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}
.read-more i {
	color: #38ABAE;
    font-size: 24px;
    display: flex;
    align-items: center;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    margin-right: 5px;
}
.read-more:hover i {
    color: #38ABAE;
	transform: translateX(5px);
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.more-button-box {
	text-align: center;
    margin-top: 40px;
}

.default-btn {
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
	font-weight:300;
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 13px;
	padding-bottom: 13px;
	border-radius: 5px;
	display: inline-block;
	background-color: #38ABAE;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
	margin-top: 5px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
}


.default-btn span {
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	display: block;
	border-radius: 30px;
	background-color: #375B6A;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}
.default-btn:hover, .default-btn:focus {
	color: #ffffff;
}

.default-btn2 {
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
	font-weight:300;
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: #375B6A;
	font-size: 16px;
	text-align: center;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 13px;
	padding-bottom: 13px;
	border-radius: 5px;
	display: inline-block;
	background-color: #ffffff;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
	margin-top: 5px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
}

.default-btn2 span {
	position: absolute;
	z-index: -1;
	width: 0;
	height: 0;
	display: block;
	border-radius: 30px;
	background-color: #375B6A;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.default-btn2:hover, .default-btn2:focus {
	color: #ffffff;
}


.default-btn-inverted:hover, .default-btn-inverted:focus {
	color: #38ABAE;
}
.default-btn:hover span, .default-btn:focus span {
	width: 200%;
	height: 500px;
}
.default-btn2:hover span, .default-btn2:focus span {
	width: 200%;
	height: 500px;
}

.section-title {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 65px;
}
.sub-title, .h2 {
    color: #375B6A;
	font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sub-title-inverted, .h2{
    color: #ffffff;
	font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-title h2 {
	color: #404040;
	font-size: 40px;
	font-weight: 800;
	margin: 10px 0 0 0;
}

.color-text {
    color: #38ABAE;
}

.text-gradient {
	/** TEXT GRADIENT */
    color: #f44336;
    background-image: -webkit-linear-gradient(45deg, #f44336 48%, #375B6A 56%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


/**************************************
 ** - 02 - Cookies Section CSS
 **************************************/
#cb-cookie-banner { 
	position: fixed;
	background-color:#38ABAE;
	color:#ffffff;
	bottom: 0; 
	left: 0; 
	width: 100%; 
	z-index: 999; 
	border-radius: 0; 
	border:0;
	font-size:14px;
	display: none;
} 
#cb-cookie-banner a{ 
	color:#ffffff;
	text-decoration:underline;
} 
#cb-cookie-banner a:hover, #cb-cookie-banner a:focus{ 
	color:#375B6A;
	text-decoration:underline;
} 

#cb-cookie-banner .default-btn {
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
	font-weight:300;
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: #ffffff;
	font-size: 14px;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 5px;
	display: inline-block;
	background-color: #375B6A;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
	margin-top: 5px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
}

#cb-cookie-banner .default-btn:hover, #cb-cookie-banner .default-btn:focus {
	color: #375B6A;
	background-color:#ffffff;
}


/*************************************
 ** - 03 - Navbar Section CSS
 *************************************/
.naldeo-responsive-nav {
	display: none;
}

.naldeo-nav {
	/*padding-top: 15px;*/
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 15px;
	background-color: transparent;
}

.naldeo-nav .navbar {
	padding-top: 15px;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}

.naldeo-nav .navbar ul {
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
}

.naldeo-nav .navbar .navbar-nav {
	margin: auto;
}

.naldeo-nav .navbar .navbar-nav .nav-item {
	font-family:'Signika', sans-serif;
	font-weight:300;
	color:#375B6A;
	text-transform:uppercase;
	position: relative;
	padding-top: 15px;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 15px;
}

.naldeo-nav .navbar .navbar-nav .nav-item a {
	color: #ffffff;
	font-size: 16px;
	text-transform:uppercase;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-left: 15px;
	margin-right: 15px;
}

.naldeo-nav .navbar .navbar-nav .nav-item a i {
	position: relative;
	top: -1px;
	font-size: 10px;
	margin-left: 2px;
}

.naldeo-nav .navbar .navbar-nav .nav-item:last-child a {
	margin-right: 0;
}

.naldeo-nav .navbar .navbar-nav .nav-item:first-child a {
	margin-left: 0;
}

.naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu {
	top: 67px;
	left: 0;
	width: 250px;
	padding: 0;
	position: absolute;
	z-index: 99;
	/*overflow: hidden;*/
	border-radius: 3px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: none;
}

.naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
}
.naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
	border-bottom: 0px solid transparent;
}

.naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
	position: relative;
	font-family:'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
	color: #666666;
	text-transform:none;
	padding: 10px 15px;
	margin: 0;
	white-space: normal;
}

.naldeo-nav.index-navber .navbar .navbar-nav .nav-item a {
	color: #555;
}

.naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .naldeo-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
	color: #ffffff;
    background-color: #38ABAE;
}



.naldeo-nav .navbar .other-option {
	margin-top: 3px;
	margin-left: 0;
}
.dropdown-toggle::after {
	border: 0;
}
.naldeo-nav .black-logo {
	display: none;
}

.navbar-section {
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background-color: transparent;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-section.is-sticky {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff !important;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	-webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
	animation: 500ms ease-in-out 0s normal fadeInDown;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-section.is-sticky .navbar-nav .nav-item a {
	color: #375B6A;
}

.navbar-section.is-sticky .navbar-nav .nav-item a:hover, .navbar-section.is-sticky .navbar-nav .nav-item a:focus, .navbar-section.is-sticky .navbar-nav .nav-item a.active {
	color: #38ABAE;
}

.navbar-section.is-sticky .naldeo-nav .navbar-brand .white-logo {
	display: none;
}

.navbar-section.is-sticky .naldeo-nav .navbar-brand .black-logo {
	display: block;
}

@media only screen and (max-width: 991px) {
	.navbar-section {
		/*padding-top: 20px;*/
		padding-bottom: 20px;
	}

	.navbar-section.is-sticky {
		/*padding-top: 20px;*/
		padding-bottom: 20px;
		border-bottom: none;
		-webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
	}

	.navbar-section.is-sticky .logo .white-logo {
		display: none;
	}

	.navbar-section.is-sticky .logo .black-logo {
		display: block;
	}
	
	.navbar-section.is-sticky .topbanner {
		display: none;
	}

	.naldeo-responsive-nav {
		display: block;
	}

	.naldeo-responsive-nav .naldeo-responsive-menu {
		position: relative;
		padding-top:20px;
	}
		
	.navbar-section.is-sticky .naldeo-responsive-nav .naldeo-responsive-menu.mean-container .mean-nav {
		margin-top: 55px;
	}
	
		.naldeo-responsive-nav .naldeo-responsive-menu.mean-container .mean-nav ul {
		font-size: 15px;
	}

	.naldeo-responsive-nav .naldeo-responsive-menu.mean-container .mean-nav ul li a {
		font-family:'Signika', sans-serif;
		font-weight:300;
		color:#375B6A;
		text-transform:uppercase;
		font-size: 16px;
		border-top: 1px solid #E3E8EB;
	}

	.naldeo-responsive-nav .naldeo-responsive-menu.mean-container .mean-nav ul li a.active {
		color: #38ABAE;
	}

	.naldeo-responsive-nav .naldeo-responsive-menu.mean-container .mean-nav ul li li a {
		font-family:'Cabin', sans-serif;
		font-size: 15px;
		font-weight: 400;
		text-transform:none;
		color:#666666;
		
	}

	.naldeo-responsive-nav .naldeo-responsive-menu.mean-container .navbar-nav {
		overflow-y: scroll;
		height: 300px;
		-webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
	}

	.naldeo-responsive-nav .naldeo-responsive-menu.mean-container .others-options {
		display: none;
	}

	.naldeo-responsive-nav .mean-container a.meanmenu-reveal {
		color: #38ABAE;
	}

	.naldeo-responsive-nav .mean-container a.meanmenu-reveal span {
		background: #38ABAE;
	}
	
	 .navbar-section.is-sticky .naldeo-responsive-nav .mean-container a.meanmenu-reveal span {
		background: #38ABAE;
	}

	.naldeo-responsive-nav .logo {
		position: relative;
		width: 50%;
		z-index: 999;
	}

	.naldeo-responsive-nav .logo .white-logo {
		display: block;
	}

	.naldeo-responsive-nav .logo .black-logo {
		display: none;
	}

	.naldeo-nav {
		display: none;
	}
}

.naldeo-nav .navbar .other-option .call-btn {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #38ABAE;
    padding: 8px 10px;
    padding-right: 15px;
    border-radius: 5px;
}

.naldeo-nav .navbar .other-option .call-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #38ABAE;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.topbanner {
	background-color: #375B6A;
	padding: 10px;
}
.topbanner p{
	color: #ffffff;
	font-size: 14px;
}
.topbanner a {
	color: #85dddf;;
	text-decoration: underline;
}
.topbanner a:hover{
	color: #ffffff;
}

.navbar-section.is-sticky .naldeo-nav .topbanner {
	display: none;
}

/*********************************
 ** - 04 -  Go Top CSS
 *********************************/
.go-top {
	color: #ffffff;
	position: fixed;
	z-index: 4;
	top: 0;
	right: 15px;
	width: 45px;
	height: 45px;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	background-color: #38ABAE;
	-webkit-transition: .9s;
	transition: .9s;
	cursor: pointer;
}

.go-top.active {
	top: 98%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}

.go-top i {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin: 0 auto;
}

.go-top i:last-child {
	top: 60%;
	opacity: 0;
	visibility: hidden;
}

.go-top::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	border-radius: 5px;
	background-color: #375B6A;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.go-top:hover, .go-top:focus {
	color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
	opacity: 1;
	visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
	top: 50%;
	opacity: 1;
	visibility: visible;
}

.skip {
  border:0;
  clip:rect(1px,1px,1px,1px);
  -webkit-clip-path:inset(50%);
  clip-path:inset(50%);
  height:1px;
  margin:-1px;
  overflow:hidden;
  padding:0;
  position:absolute;
  width:1px;
  word-wrap:normal!important
}
.skip:focus {
  background-color:#ffffff;
  clip:auto!important;
  -webkit-clip-path:none;
  clip-path:none;
  color:#375B6A;
  display:block;
  font-size:1em;
  height:auto;
  left:0px;
  line-height:normal;
  padding:14px 23px;
  text-decoration:none;
  top:0px;
  width:auto;
  z-index:100000
}
/*********************************
 ** - 05 - Home Section CSS
 *********************************/
.home-section {
	overflow: hidden;
	position: relative;
	z-index: 1;
	display: flex;
    align-items: center;
	height: 800px;
	min-height: 100vh;
}

.home {
	position: relative;
	z-index: 1;
	height: 750px;
	min-height: 100vh;
	background: url(../img/home-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.main-banner-content {
    padding-top: 50px;
}

.main-banner-content h1 {
	color: #ffffff;
	font-size: 36px;
	font-weight: 300;
	text-align:center;
	margin: 75px 0 15px 0;
}

.home .main-banner-content {
	padding-top: 70px;
}

.home .main-banner-content h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    margin: 0 0 50px 0;
}

.home .banner-image {
    padding-top: 70px;
}

.main-banner-content ul {
	margin-top: 12px;
	margin-bottom: 0;
	text-align:center;
}
.main-banner-content ul li {
	display: inline-block;
	position: relative;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
}
.main-banner-content h6 {
	color: #375B6A;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.main-banner-content p {
	color: #ffffff;
	font-size: 24px;
	margin: 0 0 0 0;
	text-align: center;
}
.main-banner-content .banner-btn {
	margin-top: 25px;
}

.home-section .banner-image {
    text-align: center;
    padding-top: 50px;
}

.home-section .creative-shape {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: auto;
}

#particles-js {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	pointer-events: none;
}

/**************************************
 ** - 06 - Home carousel CSS
 **************************************/
 
 .carousel-inner {
  padding: 1em;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #38ABAE;
  opacity:1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:active,
.carousel-control-next:active {
  background-color: #ffffff;
  color:#38ABAE;
}

@media (min-width: 768px) {
  .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  .carousel-inner {
    display: flex;
  }
  .carousel-control-prev,
  .carousel-control-next {
  top: 105%;
  }
  .carousel-control-prev {
  left:41%;
  }
  .carousel-control-next {
  left:55%;
  }
}

/**************************************
 ** - 07 - Services Section CSS
 **************************************/
.services-section .section-title {
	margin-bottom: 35px;
}

.single-services-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: left;
	padding: 35px 30px;
	border-radius: 5px;
	background-color: #ffffff;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
	margin-top: 30px;
}

.services-icon {
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 15px;
    will-change: transform;
}
.services-icon i {
    color: #ff561d;
	font-size: 50px;
	
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services-item h3 {
	font-size: 18px;
    font-weight: 300;
	color:#375B6A;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
	margin-bottom: 0;
	margin-top: 30px; 
}
.single-services-item h3 a {
	display: inline-block;
	color:#38ABAE;
	
}
.single-services-item h3 a:hover{
	color:#375B6A;
}
.single-services-item p {
	font-size: 16px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
	margin-top: 15px;
	margin-bottom: 15px;
}
.single-services-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.single-services-item:hover .services-icon {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.steps .step {
    display: block;
    width: 100%;
    text-align: center
}

.steps .step .step-icon-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center
}
.steps .step .step-icon-wrap a {
    color: #375B6A;
}
.steps .step .step-icon-wrap a:hover {
    color: #38ABAE;
}
.steps .step .step-icon-wrap::before,
.steps .step .step-icon-wrap::after {
    display: block;
    position: absolute;
    top: 50%;
    width: 50%;
    height: 2px;
    margin-top: -1px;
    background-color: #375B6A;
    content: '';
    z-index: 1
}
.steps .step .step-icon-wrap::before {
    left: 0
}
.steps .step .step-icon-wrap::after {
    right: 0
}
.steps .step .step-icon {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    border: 2px solid #375B6A;
    border-radius: 50%;
    background-color: #ffffff;
    color: #375B6A;
    font-size: 38px;
    line-height: 1.3;
    z-index: 5
}
.steps .step .step-title {
    margin-top: 16px;
    margin-bottom: 0;
    color: #666666;
    font-size: 14px;
    font-weight: 300;
	padding: 0 15px;
}
.steps .step .step-title a {
    color: #375B6A;
}
.steps .step .step-title a:hover {
    color: #38ABAE;
}
.steps .step:first-child .step-icon-wrap::before {
    display: none
}
.steps .step:last-child .step-icon-wrap::after {
   background: url(../img/icon/timeline-arrow.svg) no-repeat;
	display: block;
    position: absolute;
    top: 50%;
	left:60%;
    height: 22px;
    margin-top: -10px;
    content: '';
    z-index: 1 ;
}
.steps .step.completed:last-child .step-icon-wrap::after {
    background-color: transparent;
}
.steps .step.completed .step-icon-wrap::before,
.steps .step.completed .step-icon-wrap::after, {
    background-color: #38ABAE;
}
.steps .step.completed .step-icon {
    border-color: #38ABAE;
    background-color: #38ABAE;
    color: #fff
}

@media (max-width: 576px) {
    .flex-sm-nowrap .step .step-icon-wrap::before,
    .flex-sm-nowrap .step .step-icon-wrap::after,
	.steps .step:last-child .step-icon-wrap::after	{
        display: none
    }
}

@media (max-width: 768px) {
    .flex-md-nowrap .step .step-icon-wrap::before,
    .flex-md-nowrap .step .step-icon-wrap::after {
        display: none
    }
}

@media (max-width: 991px) {
    .flex-lg-nowrap .step .step-icon-wrap::before,
    .flex-lg-nowrap .step .step-icon-wrap::after {
        display: none
    }
}

@media (max-width: 1200px) {
    .flex-xl-nowrap .step .step-icon-wrap::before,
    .flex-xl-nowrap .step .step-icon-wrap::after {
        display: none
    }
}


/**************************************
 ** - 08 - Activités Section CSS
 **************************************/

.metiers-section  {
	background-color: #E3E8EB;	
}

.metiers-section .section-title {
	margin-bottom: 35px;	
}
.metiers-content {
	margin-right: 15px;
}

.metiers-content h2 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 20px;
}

.metiers-content p {
	margin-bottom: 15px;
}

.metiers-content p a{
	color: #38ABAE;
}

.metiers-content p a:hover{
	color: #375B6A;
	text-decoration:underline;
}

.metiers-content p:nth-last-child(1) {
	margin-bottom: 0px;
}

.metiers-btn-box {
    display: inline-block;
    margin-top: 25px;
}

.metiers-image {
	position: relative;
	text-align: center;
	margin-left: 0px;
}
.metiers-image img {
	border-radius: 5px;
}

.metiers-content .features-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 16px;
	margin-left: -10px;
	margin-right: -10px;
}
.metiers-content .features-list li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 18px;
	padding-left: 10px;
	padding-right: 10px;
}
.metiers-content .features-list li span {
	position: relative;
	z-index: 1;
	color: #404040;
	font-size: 16px;
	font-weight: 600;
	display: block;
	padding: 13px 15px;
	border-radius: 5px;
	border-left: 2px solid #38ABAE;
	background-color: #ffffff;
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.metiers-content .features-list li span::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 5px;
	background-color: #38ABAE;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.metiers-content .features-list li span:hover {
	color: #ffffff;
}
.metiers-content .features-list li span:hover::before {
	width: 100%;
}

.single-metiers-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
	padding: 35px 0px;
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
	margin-top: 30px;
}

.metiers-icon {
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 15px;
    will-change: transform;
}
.metiers-icon i {
    color: #375B6A;
	font-size: 4em;
	line-height:1;
	
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-activites-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
	padding: 35px 30px;
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}

.activites-icon {
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    will-change: transform;	
}
.activites-icon i {
    color: #375B6A;
	font-size: 128px;
	line-height:0;
	vertical-align:0.4em;
	
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-metiers-item h3 {
	font-size: 18px;
    font-weight: 300;
	color:#375B6A;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
	margin-bottom: 0;
}
.single-metiers-item h3 a {
	display: inline-block;
	color:#38ABAE;
}
.single-metiers-item h3 a:hover{
	color:#375B6A;
	
}
.single-metiers-item p {
	font-size: 16px;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
	margin-top: 15px;
	margin-bottom: 15px;
}
.single-metiers-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.single-metiers-item:hover .metiers-icon {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.single-activites-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.single-activites-item:hover .activites-icon {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.underline-small-centered-metier{
  display:inline-block;
  position:relative;
  padding-bottom:20px;
}
.underline-small-centered-metier::after{
  content:'';
  height:3px;
  width:50px;
  background:#375B6A;
  position:absolute;
  left:calc(50% - 25px);
  bottom:0px;
}
.underline-small-centered-eau::after{
  background:#24A3dA;
}
.underline-small-centered-environnement::after{
  background:#52B264;
}
.underline-small-centered-energie::after{
  background:#FA2D19 ;
}
.underline-small-centered-dechets::after{
  background:#FF9C00;
}


/***********************************
 ** - 09 - About Section CSS
 ***********************************/
.about-area {
	position: relative;
	z-index: 1;
}

.about-content {
	margin-right: 15px;
}

.about-content h3 {
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 20px;
	margin-top: 20px;
	color:#375B6A;
}

.about-content a {
	text-decoration: underline;
}

.about-content ul{
	list-style:disc;
	list-style-position:outside;
	margin-bottom:30px;
}

.about-content ul li{
	color:#666666;
	font-size: 16px;
  	font-weight: 400;
	line-height: 1.7;
	margin-left:15px;
}

.about-content li::marker {
  color:#375B6A;
}

.inverted ul li{
	color:#ffffff;
}

.inverted li::marker {
  color:#85dddf;
}

.inverted p {
	color:#ffffff;
}

.inverted h3 {
	color:#ffffff;
}

.inverted div {
	color:#ffffff;
}

.about-area .inverted a {
	color: #85dddf;
	text-decoration: underline;
}
.about-area .inverted a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.inverted a, .inverted p > a  {
	color: #85dddf;
	text-decoration: underline;
}
.inverted a:hover, .inverted a:active, .inverted p > a:hover, .inverted p > a:active {
	color: #ffffff;
	text-decoration: underline;
}	

.sublist {
	margin-left:30px;
}

.sublist li::marker {
  color:#38ABAE;
}

.about-content p {
	margin-bottom: 15px;
}

.about-content p a{
	color: #38ABAE;
}

.about-content p a:hover {
	color: #375B6A;
	text-decoration:underline;
}

.about-content .link-inverted a {
	color: #85dddf;
	text-decoration: underline;
}

.about-content .link-inverted a:hover, .about-content .link-inverted a:active {
	color: #ffffff;
	text-decoration: underline;
}	
}

.about-content p:nth-last-child(1) {
	margin-bottom: 0px;
}

.about-btn-box {
    display: inline-block;
    margin-top: 25px;
}

.about-btn-box a {
    text-decoration: none;
}

.about-image {
	position: relative;
	text-align: center;
	margin-left: 0px;
}
.about-image img {
	border-radius: 5px;
}

.internationalmap-image {
	position: relative;
	border-radius: 0;
	margin-top:30px;	
}
.internationalmap-image > img{
  position: absolute;
  /*top:0;
  left:0;*/
}

.single-valeurs-item {
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
	padding: 35px 30px;
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
	margin-top: 30px;
}

.single-valeurs-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
}
.single-valeurs-item:hover .valeurs-icon  {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.valeurs-icon {
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    will-change: transform;
}
.valeurs-icon i {
    color: #375B6A;
	font-size: 92px;
	line-height:1;
	vertical-align:0.4em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.checkmark {
      display: inline-block;
      transform: rotate(45deg);
      height: 20px;
      width: 12px;
      border-bottom: 3px solid #375B6A;
      border-right: 3px solid #375B6A;
	  margin-right:15px;
}

/**************************************
 ** - 10 - Overview Section CSS
 **************************************/
.overview-content h2 {
	color: #404040;
	font-size: 38px;
	margin: 8px 0 15px 0;
}

.overview-content h3 {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
}

.overview-content p {
	margin: 0 0 0 0;
}

.overview-content .features-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
	margin-top: 16px;
	margin-left: -10px;
	margin-right: -10px;
}
.overview-content .features-list li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	margin-top: 18px;
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 576px) {
	.overview-content .features-list li {
		min-width: 490px;
	}
}
.overview-content .features-list li span {
	position: relative;
	z-index: 1;
	color: #666666;
	font-size: 16px;
	font-weight: 400;
	display: block;
	padding: 13px 15px;
	border-radius: 5px;
	border-left: 2px solid #38ABAE;
	background-color: #ffffff;
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.overview-content .features-list li span::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 5px;
	background-color: #38ABAE;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
.overview-content .features-list li span:hover {
	color: #ffffff;
}
.overview-content .features-list > li > a:hover > span > div {
	color: #ffffff;
}
.overview-content .features-list > li > a:hover > span > div > h3 {
	color: #ffffff;
}
.overview-content .features-list li span:hover::before {
	width: 100%;
}
.overview-content .features-list li div {
	display:inline-block;
	padding:15px;
	color: #375B6A;
	font-size: 16px;
	font-weight: 300;
	text-transform:uppercase;
}

.services-icon {
    display: inline-block;
    margin-bottom: 0px;
	
}

.overview-content .features-list i {
    color: #375B6A;
	font-size: 3em;
	line-height:0;
	vertical-align:0.2em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.overview-content .features-list span:hover i {
    color: #ffffff;
}

.services-name {
    height:61px;
}

.overview-image {
	text-align: center;
}

/*************************************
 ** - 11 - Counter Section CSS
 *************************************/
.counter-area {
	position: relative;
	z-index: 1;
	padding: 120px 0;
	text-align: center;
	background: url(../img/banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.counter-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: #375B6A;
}
.counter-area .section-title h5 {
	color: #ffffff;
}

.counter-contents .counter-figures {
	color: #fff;
	font-size: 72px;
	font-weight: 300;
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
	margin-bottom: 5px;
	word-spacing: -5px;
}

.counter-contents .counter-heading {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
	margin-bottom: 20px;
}

.counter-contents h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
}

.counter-home-area {
	position: relative;
	z-index: 1;
	padding: 35px 0;
	text-align: center;
	background-color:#375B6A;
}

.item-counterapropos {
	background: url(../img/apropos-banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 35px 0;
}

/*************************************
 ** - 12 - Parallax Section CSS
 *************************************/
.parallax-area {
	position: relative;
	z-index: 1;
	padding: 120px 0;
	text-align: center;
	background: url(../img/banner-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.parallax-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: #375B6A;
}
.parallax-area .section-title h5 {
	color: #ffffff;
}
.parallax-area .section-title h2 {
	color: #fff;
}
.parallax-contents h2 {
	color: #fff;
	font-size: 72px;
	font-weight: 300;
	margin-bottom: 5px;
	word-spacing: -5px;
}
.parallax-contents h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
}

/*************************************
 ** - 13 - Portfolio Section CSS
 *************************************/
.portfolio-area {
	position: relative;
}

.portfolio-area .portfolio-list {
	text-align: center;
	margin-bottom: 25px;
}

.portfolio-area .portfolio-list .nav .portfolio-content-icon-overlay {
	position: relative;
	display: inline-block;
	margin: 0;
}

.portfolio-area .portfolio-list .nav li {
	display: inline-block;
    font-size: 16px;
    font-weight: 400;
	color:#38ABAE;
    cursor: pointer;
    padding: 14px 0px;
	vertical-align: bottom;
    text-transform: capitalize;
    background-color: #ffffff;
	width: 56px;
    height: 56px;
    /*line-height: 56px;*/
    text-align: center;
    border-radius: 56px;
    border: 1px solid #38ABAE;
    -webkit-box-shadow: 0px 5px 15px 0px rgb(94, 94, 94, 0.15);
    box-shadow: 0px 5px 15px 0px rgb(94, 94, 94, 0.15);
    transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
    margin: 0 5px;
}

.icons-projets-filtres i{
	font-size:2em;
	line-height:0;
	vertical-align:0.1em;
}

.portfolio-area .portfolio-list .nav li img {
	height: 32px;
	width:32px;
    padding: 0px;
}

.portfolio-area .portfolio-list .nav li:hover, .portfolio-area .portfolio-list .nav li.filter-active {
    color: #fff;
    background-color: #38ABAE;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.portfolio-area .portfolio-container {
	width: 100%;
	display: inline-block;
}

.portfolio-area .portfolio-grid-item {
	overflow: hidden;
}

.portfolio-grid-item img {
	width: 100%;
    border-radius: 0px;
}

.portfolio-item {
	position: relative;
	display: block;
	overflow: hidden;
    border-radius: 5px;
	margin-top: 30px;
}

.portfolio-item .portfolio-content-overlay {
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px 20px;
	opacity: 0.8;
	overflow: hidden;
    border-radius: 5px;
    background-color: #ffffff;
}

.portfolio-item .portfolio-content-overlay p {
    color: #38ABAE;
	font-family:'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
}
.portfolio-item .portfolio-content-overlay h3 {
    color: #38ABAE;
    font-size: 14px;
    font-weight: 300;
	text-transform:uppercase;
}
.portfolio-item .portfolio-content-overlay h3 a {
    color: #38ABAE;
}
.portfolio-item .portfolio-content-overlay h3 a:hover {
    color: #375B6A;
}
.portfolio-item:hover .portfolio-content-overlay p,
.portfolio-item:hover .portfolio-content-overlay h3 {
	opacity: 1;
	visibility: visible;
}
.portfolio-item:hover .portfolio-content-overlay {
    bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.portfolio-item .portfolio-image img {
	width: 100%;
	height: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.portfolio-item:hover .portfolio-image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio-item .portfolio-content-icon-overlay {
    position: absolute;
    z-index: 3;
    left: 10px;
    right: 10px;
    top: 10px;
    padding: 15px 0px;
	opacity: 1;
	overflow: hidden;
}

.portfolio-content-icon-overlay li {
	display: inline-block;
    font-weight: 400;
	color:#ffffff;
    padding: 11px 8px;
	vertical-align: bottom;
    text-transform: capitalize;
    background-color: #38ABAE;
	width: 40px;
    height: 40px;
    /*line-height: 56px;*/
    text-align: left;
    border-radius: 40px;
    -webkit-box-shadow: 0px 5px 15px 0px rgb(94, 94, 94, 0.15);
    box-shadow: 0px 5px 15px 0px rgb(94, 94, 94, 0.15);
    transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
    margin: 0 5px;
}
.icons-projets-overlay i{
	font-size:1.5em;
	line-height:0;
	vertical-align:2em;
}

.portfolio-item .portfolio-content-overlay .portfolio-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    color: #fff;
    height: 100%;
    padding: 0 20px;
    font-size: 25px;
	overflow: hidden;
	line-height: normal;
    background-color: #38ABAE;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out 0s;
    transition-delay: 0.2s;
}
.portfolio-item:hover .portfolio-content-overlay .portfolio-link-icon {
    transform: translateX(0);
	visibility: visible;
}

/******************************************
 ** - 14 - Portfolio Details Page CSS
 ******************************************/
.portfolio-details-image {
	margin-bottom: 30px;
}

.portfolios-details-desc {
	margin-top: 5px;
}

.portfolios-details-desc h3 {
	font-size: 25px;
	margin-bottom: 13px;
}

.portfolios-details-desc .features-text {
	margin-top: 25px;
	margin-bottom: 25px;
}

.portfolios-details-desc .features-text a {
	color:#38ABAE;
	text-decoration:none;
}

.portfolios-details-desc .features-text a:hover {
	color:#375B6A;
	text-decoration:underline;
}

.portfolios-details-desc .features-text h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

.portfolios-details-desc .features-text h4 i {
	color: #38ABAE;
	font-size: 16px;
	margin-right: 4px;
}

.portfolios-details-desc .portfolio-details-info {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 35px;
	margin-left: -15px;
	margin-right: -15px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box {
	-ms-flex: 0 0 33%;
	-webkit-box-flex: 0;
	flex: 0 0 33%;
	max-width: 33%;
	padding-left: 15px;
	padding-right: 15px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box h4 {
	font-size: 16px;
	font-weight: 400;
	color:#375B6A;
	margin-top:30px;
	margin-bottom: 15px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box span {
	display: block;
	color: #5f5f5f;
	font-size: 16px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.icons-projets i{
	font-size:2em;
	line-height:1;
	vertical-align:0.4em;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social li {
	display: inline-block;
	margin-right: 8px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social li a {
    color: #38ABAE;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    display: inline-block;
    border-radius: 56px;
    border: 1px solid #38ABAE;
    background-color: transparent;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .social li a:hover {
	color: #ffffff;
	border: 1px solid #38ABAE;
	background-color: #38ABAE;
}


.portfolios-details-desc .portfolio-details-info .single-info-box .article-tags {
	
	color: #5f5f5f;
	line-height: 2.5em;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .article-tags span {
	display: inline-block;
	color: #333;
	font-size: 15px;
	font-weight: 700;
	margin-right: 5px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .article-tags a {
	display: inline-block;
	color: #38ABAE;
	font-size: 14px;
	padding: 7px 15px;
	border-radius: 56px;
	border: 1px solid #38ABAE;
	background-color: transparent;
	margin-top:0px;
	margin-right: 5px;
}

.portfolios-details-desc .portfolio-details-info .single-info-box .article-tags a:hover {
	color: #ffffff;
    border-color: #38ABAE;
    background-color: #38ABAE;
}

/************************************
 ** - 15 - Team Section CSS
 ************************************/
.team-area {}

.team-area .section-title {
	margin-bottom: 35px;
}
.single-team-box {
	margin-top: 30px;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-image {
	position: relative;
	z-index: 1;
	border-radius: 5px;
	overflow: hidden;
}

.team-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #375B6A;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.single-team-box:hover .team-image::before {
    opacity: .3;
    visibility: visible;
}

.single-team-box .team-image img {
	width: 100%;
	height: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-team-box:hover .team-image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-social-icon {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 100%;
	text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.team-social-icon a {
	color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    margin: 0 2px;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #ffffff;
    display: inline-block;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    will-change: transform;
}

.single-team-box:hover .team-social-icon a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.single-team-box .team-social-icon a:hover {
	color: #fff;
	background-color: #38ABAE;
    border: 1px solid #38ABAE;
	
}
.team-info {
	text-align: center;
	min-height:11em;
	padding: 20px 15px 20px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-info h2 {
	font-size: 20px;
	font-weight: 300;
	color:#375B6A;
	margin-bottom: 5px;
	text-align:left;
}
.team-info span {
	color: #666666;
	font-size: 16px;
	font-weight: 400;
	display: block;
}

.temoignage h3 {
	font-size: 16px;
	font-weight: 400;
	color:#375B6A;
	margin-bottom: 5px;
	margin-top:30px;
	text-align:left;
}

.temoignage {
	position:relative;
	background-color: #E3E8EB; 
	padding:10px 30px 30px 30px;
}

.temoignage p {
	text-align:left;
}

.btn-temoignage {
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: #ffffff;
	font-size: 16px;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 13px;
	padding-bottom: 13px;
	border-radius: 5px;
	display: inline-block;
	background-color: #38ABAE;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
	margin-top: 5px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
}
.btn-temoignage:hover, .btn-temoignage:focus {
	color: #375B6A;
	background-color: #E3E8EB;
}

.linkedin a {
	color:#38ABAE;
	text-decoration: underline;
}
.linkedin a:hover {
	color:#375B6A;
}


/**********************************
 ** - 16 - Hire Section CSS
 **********************************/
.hire-section {
	position: relative;
	z-index: 1;
	padding: 70px 0;
	text-align: center;
	background: url(../img/hire-banner-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.hire-section::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background-color: #375B6A;
}

.hire-content h2 {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	margin: 0;
}

.hire-content p {
	color: #fff;
	font-size: 16px;
	margin: 20px 0 0 0;
}

.hire-content p a{
	color: #85dddf;
	text-decoration:underline;
}

.hire-content p a:hover{
	color: #ffffff;
	text-decoration:underline;
}

.hire-content .hire-btn .hire-btn2 {
	margin-top: 20px;
}

.hire-section .hire-btn a {
	color: #ffffff;
	text-decoration:none;
}
.hire-section .hire-btn2 a {
	text-decoration:none;
}

.hire-content .hire-btn .hire-btn2 .default-btn {
    margin-right: 15px;
}

/************************************
 ** - 17 - Partner Section CSS
 ************************************/
.partner-section {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: #fff;
}

.partner-section a {
	color: #38ABAE;
	text-decoration: underline;
}

.partner-section a:hover {
	color: #375B6A;
	text-decoration: underline;
}

.partner-title {
	text-align: left;
	line-height: 1.5;
	margin-bottom: 65px;
}

.partner-title h2 {
	color: #404040;
	font-size: 40px;
	font-weight: 800;
	margin: 10px 0 0 0;
}

.partner-title a {
	color: #38ABAE;
	text-decoration: none;
}

.partner-title a:hover {
	color: #375B6A;
	text-decoration: underline;
}

.partner-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
	text-align: center;
}

.partner-list .partner-item {
	-ms-flex: 0 0 20%;
	-webkit-box-flex: 0;
	flex: 0 0 20%;
	max-width: 20%;
	padding-left: 10px;
	padding-right: 10px;
}

.partner-list .partner-item a {
	position: relative;
    display: block;
    padding: 5px 20px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #E3E8EB;
    margin-bottom: 30px;
	background-color:#ffffff;
}

.partner-list .partner-item:nth-child(6) {
	margin-left: 10%;
}

/***********************************
 ** - 18 - Publications Section CSS
 ***********************************/
.blog-single-item {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: 0px 5px 20px 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-bottom: 30px;
}

.blog-single-item .blog-description {
	padding: 20px 25px;
}

.blog-single-item .blog-description .blog-info {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-bottom: 0;
}

.blog-single-item .blog-description .blog-info li {
	color: #38ABAE;
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	list-style-type: none;
	margin-right: 15px;
}

.blog-single-item .blog-description .blog-info li:last-child {
	margin-right: 0;
}

.blog-single-item .blog-description .blog-info li i {
	position: relative;
	top: 0px;
	color: #38ABAE;
	margin-right: 3px;
}

.blog-single-item .blog-description .blog-info li i::before {
	font-size: 15px;
}

.blog-single-item .blog-description .blog-info a {
	color: #555;
	text-decoration: none;
}

.blog-single-item .blog-description .blog-text {
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.blog-single-item .blog-description .blog-text h3 {
	color: #375B6A;
	font-size: 16px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin: 10px 0px 10px 0px;
}


.blog-single-item .blog-description .blog-text p {
	color: #666666;
	font-size: 16px;
	font-weight: 400;
	margin: 0;
}

.blog-single-item .blog-description .blog-text a {
	text-decoration: none;
}

.blog-single-item .blog-description .blog-text .blog-btn {
	margin-top: 15px;
}

.blog-single-item:hover .blog-description {
	border-top: none;
}

.blog-single-item .blog-image img {
	width: 100%;
	height: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.blog-single-item:hover .blog-image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}



.goog-te-combo {
    border: 0;
	color: #666666;
    width: 200px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
    border-radius: 5px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
    box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
}


/**************************************
 ** - 19 - Publications Details Page CSS
 **************************************/
.blog-details-desc .article-content {
	/*margin-top: 30px;*/
}

.blog-details-desc .article-content .entry-meta {
	margin-bottom: 8px;
}

.blog-details-desc .article-content .entry-meta ul {
	margin-bottom: 0;
}

.blog-details-desc .article-content .entry-meta ul li {
	position: relative;
	color: #375B6A;
	display: inline-block;
	margin-right: 20px;
}

.blog-details-desc .article-content .entry-meta ul li span {
	display: inline-block;
    color: #375B6A;
    font-size: 16px;
    font-weight: 600;
    margin-right: 3px;
}

.blog-details-desc .article-content .entry-meta ul li a {
	display: inline-block;
    color: #38ABAE;
    font-size: 16px;
    font-weight: 600;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
	color: #38ABAE;
}

.blog-details-desc .article-content .entry-meta ul li i {
	color: #38ABAE;
	margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
	content: '';
	position: absolute;
	top: 10px;
	right: -15px;
	width: 6px;
	height: 1px;
	background-color: #404040;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
	margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
	display: none;
}

.blog-details-desc .article-content .article-text h2 {
	font-size: 24px;
	font-weight: 300;
	color:#375B6A;
	margin-bottom: 15px;
	margin-top:30px;
	text-align:left;
}

.blog-details-desc .article-content .article-text h3 {
	font-size: 16px;
	font-weight: 500;
	color:#375B6A;
	margin-bottom: 15px;
	margin-top:30px;
	text-align:left;
}

.blog-details-desc .article-content h4 {
	font-size: 24px;
	margin-top: 25px;
	margin-bottom: 15px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-1 {
	padding-left: 0;
	list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;	
}

.blog-details-desc .article-content .wp-block-gallery.columns-1 li {
	text-align: center;
	
}

.blog-details-desc .article-content .wp-block-gallery.columns-2 {
	padding-left: 0;
	list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 30px;
	justify-content: center;
}

.blog-details-desc .article-content .wp-block-gallery.columns-2 li {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.blog-details-desc .article-content .wp-block-gallery.columns-2 li figure {
	margin-bottom: 0;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
	padding-left: 0;
	list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 30px;
	justify-content: center;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
	-ms-flex: 0 0 33%;
	-webkit-box-flex: 0;
	flex: 0 0 33%;
	max-width: 33%;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
	margin-bottom: 0;
}

.blog-details-desc .article-content .article-text ul{
	list-style:disc;
	list-style-position:outside;
	margin-bottom:30px;
}

.blog-details-desc .article-content .article-text ul li{
	color:#666666;
	font-size: 16px;
  	font-weight: 400;
	line-height: 1.7;
	margin-left:15px;
}

.blog-details-desc .article-content .article-text li::marker {
  color:#375B6A;
}

.blog-details-desc .article-content .article-date > p {
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	color:#375B6A;	
}

.blog-details-desc .article-footer {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	color: #5f5f5f;
}

.blog-details-desc .article-footer .article-tags span {
	display: inline-block;
	color: #666666;
	font-size: 15px;
	font-weight: 700;
	margin-right: 5px;
}

.blog-details-desc .article-footer .article-tags a {
	display: inline-block;
	color: #38ABAE;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 15px;
	border-radius: 50px;
	border: 1px solid #38ABAE;
	background-color: transparent;
	margin-top: 5px;
	margin-right: 5px;
}

.blog-details-desc .article-footer .article-tags a:hover {
	color: #ffffff;
    border-color: #38ABAE;
    background-color: #38ABAE;
}

.blog-details-desc .article-footer .article-share {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
	padding-left: 0;
	list-style-type: none;
	text-align: right;
	margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
	display: inline-block;
	margin-left: 5px;
}

.blog-details-desc .article-footer .article-share .social li span {
	display: inline-block;
	color: #666666;
	font-size: 15px;
	font-weight: 700;
	margin-right: 5px;
}

.blog-details-desc .article-footer .article-share .social li a {
	display: block;
    color: #38ABAE;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #38ABAE;
    background-color: transparent;
}

.blog-details-desc .article-footer .article-share .social li a i {
	font-size: 15px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
	color: #ffffff;
    border: 1px solid #38ABAE;
	background-color: #38ABAE;
}

.blog-details-desc .post-navigation {
	margin-top: 30px;
}

blockquote, .blockquote {
	position: relative;
	z-index: 1;
	overflow: hidden;
	text-align: center;
	padding: 50px !important;
	background-color: #fafafa;
	margin-top: 20px;
	margin-bottom: 20px;
}

blockquote p, .blockquote p {
	color: #404040;
	font-size: 24px !important;
	font-weight: 500;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 0;
}

blockquote cite, .blockquote cite {
	display: none;
}

blockquote::before, .blockquote::before {
	content: "\f10e";
	position: absolute;
	z-index: -1;
	top: -50px;
	left: 50px;
	color: #efefef;
	font-size: 15px;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
}

blockquote::after, .blockquote::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 3px;
	background-color: #38ABAE;
	margin-top: 20px;
	margin-bottom: 20px;
}

.post-navigation {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
}

.post-navigation .navigation-links {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
	margin-right: 2px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.post-navigation .navigation-links .nav-previous a:hover i {
	margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
	-webkit-transition: 0.4s;
	transition: 0.4s;
	margin-left: 2px;
}

.post-navigation .navigation-links .nav-next a:hover i {
	margin-left: 0;
}

.post-navigation .navigation-links div a {
	display: inline-block;
	font-weight: 600;
}

/************************************************
 ** - 20 - Publications Page Sidebar Widget CSS
 ************************************************/
.widget-area .widget {
	margin-bottom: 35px;
}

.widget-area .widget:last-child {
	margin-bottom: 0;
}

.widget-area .widget .widget-title {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color:#375B6A;
	text-align:left;
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 25px;
}

.widget-area .widget .widget-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 50px;
	height: 1px;
	background-color: #38ABAE;
}

.widget-area .widget_search {
	/*padding: 15px 15px;*/
	border-radius: 3px;
	background-color: #ffffff;
	-webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
}

.widget-area .widget_search form {
	position: relative;
}

.widget-area .widget_search form label {
	display: block;
	margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
	display: none;
}

.widget-area .widget_search form .search-field {
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 15px;
    font-weight: 400;
    border-radius: 5px;
	border:none;
    /*border: 1px solid #38ABAE;
    border-left: 2px solid #38ABAE;*/
    background-color: transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    outline: 0;
	color: #666666;
}

.widget-area .widget_search form .search-field:focus {
	border-color: #38ABAE;
}

.widget-area .widget_search form button {
	color: #ffffff;
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	background-color: #38ABAE;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border: none;
	outline: 0;
}

.widget-area .widget_search form button:hover {
	color: #ffffff;
	background-color: #375B6A;
}

/************************************************
 ** - 21 - Publications Page Number Pagination CSS
 ************************************************/
.pagination-area {
	text-align: center;
	margin-top: 20px;
}

.pagination-area .page-numbers {
	color: #666666;
	font-size: 18px;
	font-weight: 700;
	width: 45px;
	height: 45px;
	line-height: 48px;
	display: inline-block;
	border-radius: 3px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
	margin: 0 5px;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
	color: #ffffff;
	background-color: #38ABAE;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
}

/**************************************************
 ** - 22 - Other Page Banner Title Section CSS
 **************************************************/
.page-title-area {
	position: relative;
	z-index: 1;
	height: 400px;
	background-image: url(../img/page-title-bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.page-title-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-color: #061f2a;
}

.page-title-content {
	text-align: center;
	margin-top: 75px;
}

.page-title-content h2 {
	color: #ffffff;
	font-size: 42px;
	font-weight: 300;
	text-transform:uppercase;
	margin-bottom: 0;
}

.page-title-content ul {
	margin-top: 12px;
	margin-bottom: 0;
}

.page-title-content ul li {
	display: inline-block;
	position: relative;
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
}

.page-title-content ul li a {
	display: inline-block;
	color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.page-title-content ul li a:hover {
	color: #38ABAE;
}

.page-title-content ul li::before {
	content: '';
	position: absolute;
	top: 10px;
	right: -15px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #ffffff;
}

.page-title-content ul li:last-child::before {
	display: none;
}

.item-bg1 {
	background-image: url(../img/page-title-bg-2.jpg);
}

.item-bg2 {
	background-image: url(../img/page-title-bg-3.jpg);
}

.item-bgapropos {
	background-image: url(../img/page-title-apropos-bg.jpg);
}

.item-bgitc {
	background-image: url(../img/page-title-itc-bg.jpg);
}

.item-bgtransitionenergetique {
	background-image: url(../img/page-title-bg-transitionenergetique.jpg);
}

.item-bgtransitionhydrique {
	background-image: url(../img/page-title-bg-transition-hydrique.jpg);
}

.item-bgterritoires {
	background-image: url(../img/page-title-bg-territoires.jpg);
}

.item-bgdechets {
	background-image: url(../img/page-title-bg-dechets.jpg);
}

.item-bgenvironnement {
	background-image: url(../img/page-title-bg-environnement.jpg);
}

.item-bgetudesenvironnementales {
	background-image: url(../img/page-title-bg-etudes-environnementales.jpg);
}

.item-bgaudit {
	background-image: url(../img/page-title-bg-audit.jpg);
}

.item-bgamoa {
	background-image: url(../img/page-title-bg-amoa.jpg);
}

.item-bgingenierie {
	background-image: url(../img/page-title-bg-ingenierie.jpg);
}

.item-bgsuiviexploitation {
	background-image: url(../img/page-title-bg-suivi-exploitation.jpg);
}

.item-bginnovation {
	background-image: url(../img/page-title-bg-innovation.jpg);
}

.item-bgmodelisation {
	background-image: url(../img/page-title-bg-modelisation.jpg);
}

.item-bgdigital {
	background-image: url(../img/page-title-bg-digital.jpg);
}

.item-bgprojets {
	background-image: url(../img/page-title-bg-projets.jpg);
}

.item-bgcollaborateurs {
	background-image: url(../img/hire-banner-bg.webp);
}

.item-bgpublications {
	background-image: url(../img/page-title-bg-publications.jpg);
}

.item-bgrejoindre {
	background-image: url(../img/page-title-bg-rejoindre.jpg);
}

.item-bgcontact {
	background-image: url(../img/page-title-bg-contact.jpg);
}

/**********************************
 ** - 23 - Contact Page CSS
 **********************************/
.contact-section {
	position: relative;
    z-index: 1;
    background: url(../img/dot-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contact-form .form-group {
	margin-bottom: 30px;
}

.contact-form form .form-control {
    border: 0;
	color: #666666;
    width: 100%;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
	border: 1px solid transparent;
    border-left: 2px solid #38ABAE;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
    box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
}

.contact-form form .form-select {
    border: 0;
	color: #666666;
    width: 100%;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
	border: 1px solid transparent;
    border-left: 2px solid #38ABAE;
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
    box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
}

.contact-form form .form-check-input {
	border: 1px solid #38ABAE;
    -webkit-box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
    box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
	
}

.contact-form form .form-check-input:checked {
	border: 1px solid #38ABAE;
    border-left: 1px solid #38ABAE;
	background-color: #38ABAE;
}

.contact-form form .form-control:focus {
	border: none;
	outline: none;
	border: 1px solid #38ABAE;
    border-left: 2px solid #38ABAE;
}

.contact-form form textarea.form-control {
	height: auto;
	padding-top: 15px;
	line-height: initial;
}

.contact-info-wrapper {
	padding: 100px 0;
}

.contact-info-wrapper .section-title {
	text-align: center;
	margin-bottom: 45px;
}

.contact-info-content {
	padding: 25px 20px;
	text-align: center;
	border-radius: 5px;
	background-color: #fff;
	-webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
	margin-top: 30px;
}

.contact-info-content h5 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.contact-info-content h4 {
	font-size: 16px;
	font-weight: 400;
	color:#375B6A;
	margin-bottom: 15px;
}
	
.contact-info-content a {
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.contact-info-content p {
	font-size: 16px;
	margin-bottom: 12px;
}

.contact-section .form-message.success {
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	background-color: #03b103;
	margin-bottom: 30px;
}

.contact-section .form-message.error {
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	background-color: #ff4d15;
	margin-bottom: 30px;
}

/*******************************
 ** - 24 - Map Section CSS
 *******************************/
.map-section {
    margin-bottom: -10px;
}

.map-section .google-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.zone_ville {
	cursor: pointer;
}

/************************************
 ** - 25 - 404 Error Page CSS
 ************************************/
.error-area {
	height: 100vh;
    padding: 100px 0;
}

.error-content {
	max-width: 700px;
	text-align: center;
	margin: 0 auto;
}

.error-content h3 {
	font-size: 35px;
	margin-top: 10px;
	margin-bottom: 18px;
}

.error-content p {
    max-width: 520px;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 auto 20px;
}

.error-content .default-btn-one {
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 30px;
	border: 1px solid #38ABAE;
	background-color: #38ABAE;
	-webkit-transition: .6s;
	transition: .6s;
	margin-right: 0;
}

.error-content .default-btn-one:hover {
	color: #38ABAE;
	background-color: #ffffff;
	text-decoration: none;
}

/*******************************************
 ** - 26 - Terms & Conditions Page CSS
 *******************************************/
.terms-conditions-info h4 {
	font-size: 24px;
	margin: 0 0 15px 0;
}

.terms-conditions-info h3 {
	font-size: 16px;
	font-weight: 400;
	color:#375B6A;
	margin-top:30px;
	margin-bottom:15px;
}

.terms-conditions-info a {
	text-decoration: underline;
}

/*************************************
 ** - 27 - Privacy Policy Page CSS
 *************************************/
.privacy-policy-info h3 {
	font-size: 24px;
	margin: 0 0 15px 0;
}

/******************************************
 ** - 28 - All Page Footer Section CSS
 ******************************************/
.footer-subscribe-wrapper {
	position: relative;
	z-index: 1;
	background-color: #375B6A;
}

.footer-subscribe-wrapper:before {
	content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background-image: url(../img/eo-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-heading {
	margin-bottom: 20px;
}

.footer-heading h3 {
	position: relative;
	color: #ffffff;
	font-size: 20px;
	font-weight: 300;
	padding-bottom: 10px;
	/*border-bottom: 1px solid rgb(255, 255, 255, 0.2);*/
	margin: 0;
}

.single-footer-widget .footer-social {
	padding-left: 0;
	margin-top: 20px;
	margin-bottom: 0;
}

.single-footer-widget .footer-social li {
	display: inline-block;
	margin-right: 10px;
}

.single-footer-widget .footer-social li:last-child {
	margin-right: 0;
}

.single-footer-widget .footer-social i {
	color: #38ABAE;
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-social i:hover {
	color: #ffffff;
	border: 1px solid #38ABAE;
	background-color: #38ABAE;
}

.single-footer-widget p {
	color: #ececec;
	font-size: 16px;
	font-weight: 400;
}

.single-footer-widget .footer-heading {
	margin-bottom: 25px;
}

.single-footer-widget .footer-heading h3 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 300;
	margin: 0;
}

.single-footer-widget .footer-quick-links {
	padding-left: 0;
	margin-bottom: 0;
}

.single-footer-widget .footer-quick-links li {
	padding-bottom: 0.2em;
	list-style-type: none;
}

.single-footer-widget .footer-quick-links li:last-child {
	padding-bottom: 0;
}

.single-footer-widget .footer-quick-links li a {
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
}

.single-footer-widget .footer-quick-links li a:hover {
	color: #38ABAE;
	text-decoration: underline !important;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact {
	position: relative;
	padding-left: 35px;
	margin-bottom: 16px;
}

.single-footer-widget .footer-info-contact:last-child {
	margin-bottom: 0;
}

.single-footer-widget .footer-info-contact i {
	color: #ffffff;
	position: absolute;
	top: 0;
	left: 0;
}

.single-footer-widget .footer-info-contact i::before {
	font-size: 20px;
}

.single-footer-widget .footer-info-contact h3 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.single-footer-widget .footer-info-contact span {
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
}

.single-footer-widget .footer-info-contact p {
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
}

.single-footer-widget .footer-info-contact span a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact p a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact span a:hover {
	color: #38ABAE;
}

.single-footer-widget .footer-info-contact p a:hover {
	color: #38ABAE;
}
/*********************************************
 ** - 29 - All Page Copyright Section CSS
 *********************************************/
.copyright-area {
	padding: 35px 0;
	background-color: #375B6A;
	/*border-top: 2px solid  rgb(255, 255, 255, 0.2);*/
	border-width: 2px 0px 0px 0px;
 	border-style: solid;
  	border-image: linear-gradient(to right, #912329 0%,#FF9C00 25%, #52B264 50%, #24A3dA 75%, #2B388F 100%) 1;
}

.copyright-area p {
	color: #ffffff;
	font-size: 16px;
}

.copyright-area p a {
	color: #ececec;
	font-weight: 600;
	display: inline-block;
}

.copyright-area p a:hover {
	color: #38ABAE;
}

.copyright-area ul {
	padding-left: 0;
	text-align: right;
	margin-bottom: 0;
}

.copyright-area ul li {
	position: relative;
	color: #ececec;
	font-size: 16px;
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

.copyright-area ul li a {
	color: #ffffff;
	display: inline-block;
}

.copyright-area ul li a:hover {
	color: #38ABAE;
}

.copyright-area ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	right: -13px;
	width: 1px;
	height: 14px;
	background-color: #ffffff;
}

.copyright-area ul li:last-child {
	margin-right: 0;
}

.copyright-area ul li:last-child::before {
	display: none;
}

.copyright-area ul li:first-child {
	margin-left: 0;
}

/**************************************
 ** - 30 - Jobboard CSS
 **************************************/
.table-jobs {
	background-color:#ffffff;
}

.table-jobs thead > tr {
	background-color:transparent;
}

.table-group-divider{
	border-color:#375B6A;
}

.table-jobs th {
	color:#375B6A;
	font-weight: 400;
	line-height: 1.4;
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
}

.table-jobs .poste {
	color:#38ABAE;
	font-weight: 300;
	line-height: 1.4;
	font-family:'Signika', sans-serif;
	text-transform:uppercase;
}
.table-jobs .poste a{
	color:#38ABAE;
}
.table-jobs .poste a:hover {
	color:#375B6A;
	text-decoration:underline;
}
  
 .table-jobs tr:hover {
	/*background-color:rgba(55, 91, 106, 0.2);*/
	background-color:rgba(56, 171, 174, 0.2);
}
 .jobmission > div {
	color:#ffffff;
}


.btn-pagination {
	font-size: 18px;
	font-weight:700;
	color: #666666;
	width: 45px;
	height: 45px;
	display: inline-block;
	border:none;
	background-color: #ffffff;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
	margin: 0 5px;
}

.btn-pagination:hover, .btn-pagination:focus, .btn-pagination:active, .btn-pagination.current, .btn-pagination-active {
	color: #ffffff;
	background-color: #38ABAE;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
}



.job-search-filters-section .form-control {
    border: 0;
	color: #666666;
    width: 100%;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
    background-color: #ffffff;
}


.job-search-filters-section .form-select {
    border: 0;
	color: #666666;
    width: 100%;
    height: 55px;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 5px;
	border: 1px solid transparent;
    border-left: 2px solid #38ABAE;
    background-color: #ffffff;
	
}

.dashboardcode-bsmultiselect, .search-form {
	margin-bottom: 30px;
}

.job-search-filters-section .search-top .search-form .search-field {
	color:  #666666;
}

.job-search-filters-section .form-check-label, .dashboardcode-bsmultiselect div.dropdown-menu > ul > li {
	color:  #666666;
}
.job-search-filters-section .form-control::placeholder {
	color:  #666666;
}
.job-search-filters-section .form-check-label:active, .job-search-filters-section .form-check-label:hover {
	color:  #38ABAE;
}

.job-search-filters-section .badge span {
	color:  #666666;
	padding-left:10px;
}
.job-search-filters-section .badge {
	background-color:#E3E8EB;
}
.job-search-filters-section .btn-close{
	padding-left:10px;
}

.job-search-filters-section .form-check-input {
	border: 1px solid #38ABAE;
    -webkit-box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
    box-shadow: 0 5px 20px rgba(218, 225, 232, 0.8);
}

.job-search-filters-section .form-check-input:checked {
	border: 1px solid #38ABAE;
    border-left: 1px solid #38ABAE;
	background-color: #38ABAE;
}



/*.job-search-filters-section textarea.form-control {
	height: auto;
	padding-top: 15px;
	line-height: initial;
}*/

 
 .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 5px;
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
	border-bottom:0px;
	border-bottom-color: transparent;
}


 .accordion-button:not(.collapsed) {
	color: #ffffff;
	background-color: #38ABAE;
	-webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-left: 2px solid #ffffff;
	
}

.accordion-button:not(.collapsed) h3 {
	color: #ffffff;
}


.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}
.accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
	font-size: 1rem;
	color: var(--bs-accordion-btn-color);
	text-align: left;
	background-color: var(--bs-accordion-btn-bg);
	border-radius: 5px;
	border-left: 2px solid #38ABAE;
	overflow-anchor: none;
	transition: var(--bs-accordion-transition);
}

.accordion-button:focus {
	border:0;
	box-shadow: none;
	border-left: 2px solid #38ABAE;
}

.accordion-item {
	background-color: #E3E8EB;
}

.accordion-item-rejoindre {
    margin-bottom: 15px; 
	background-color:#375B6A; 
	border-bottom:0;
}
.accordion-body-inverted {
	color:#ffffff;
	background-color:#375B6A;
	border: 0;
}
.accordion-header h3 {
	padding-right: 10px;
}
