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

@font-face {
 font-family: "Fontastique";
 src: url("../font/fontastique.ttf");
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #232323;
  font-weight: 500;
  line-height: 1.6;
  font-smoothing: antialiased;
}


html {
  overflow-x: hidden;
}

a {
  color: #078c79;
}
a:hover {
  color: #20a794;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.fa,
.fab,
.fal,
.far,
.fas {
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6{
	font-family: Fontastique;
}
.btn-tel{
	display: block;
	position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5;
    background: #078c79;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 26px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
}
.section-title{
	position: relative
}

.section-title:before{
	content: '';
    height: 1px;
    background: #487B74;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 200px;
}
.section-title:after{
	content: '';
    width: 70px;
    height: 3px;
    background: #e05208;
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
}

/* ----------------------
*	Loading
---------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ececec;
  z-index: 99999;
}

.load-circle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.load-circle span {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.load-circle span:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  border-color: #ffffff transparent #ffffff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Background color
-------------------------------*/
.theme-bg {
  background-color: #078c79;
}

.dark-bg {
  background-color: #20247b;
}

.black-bg {
  background-color: #000000;
}

.gray-bg {
  background-color: #f5f5f5;
}

.white-bg {
  background-color: #ffffff;
}

.blue-bg {
  background-color: #58b2a5;
}

/* Text color
-------------------------------*/
.white-color {
  color: #ffffff;
}

.white-color-light {
  color: rgba(255, 255, 255, 0.65);
}

.dark-color {
  color: #20247b;
}
.dark-theme .dark-color {
  color: #ffffff;
}

.body-color {
  color: #6F8BA4;
}

.blue-color {
  color: #46d8c3;
}

.green-color {
  color: #11e279;
}

/*	Toggle Menu
-------------------------*/
.navbar-toggler,
.toggler-menu {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0;
  border-radius: 0;
  padding: 0;
  margin-left: 15px;
  background: #078c79;
  border: none;
}
.navbar-toggler span,
.toggler-menu span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 2px;
  margin: auto;
  box-shadow: 0px -8px 0 0px currentColor, 0px 8px 0 0px currentColor;
  background: #ffffff;
  color: #ffffff;
}

.mob-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  left: 0;
  padding: 12px 15px;
}
@media (min-width: 1201px) {
  .mob-header {
    padding: 20px 50px;
  }
  .mob-header.mh-desk {
    display: none;
  }
}
@media (max-width: 1201px) {
  .mob-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(7, 140, 121, 0.44);
  }
  .header-left .hl-top{
	display: none
  }
  .header-left{
	padding-top: 100px
  }
}
.mob-header .toggler-menu {
  margin-left: auto;
  border-radius: 2px;
  margin-top: 3px;
}
.mob-header .navbar-brand {
  font-size: 30px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .mob-header .navbar-brand {
    border: none;
    padding: 0;
  }
}
.mob-header .navbar-brand a {
  color: #078c79;
  font-weight: 700;
}

/* Side Menu
-----------------------------*/
.header-left {
  position: fixed;
  top: 0;
  width: 250px;
  overflow: hidden;
  border-radius: 0;
  bottom: 0;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.29);
  z-index: 3;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
  left: -350px;
  background: #007161;
}
.header-left.menu-open {
  left: 0;
}
@media (min-width: 1201px) {
  .header-left.hl-desk {
    left: 0;
  }
}
.header-left .hl-top {
  text-align: center;
  padding-bottom: 25px;
  padding-top: 25px;
}
.header-left .hl-top .hl-logo {
  text-align: center;
  font-size: 32px;
  line-height: 30px;
  color: #ffffff;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
}
.header-left .hl-top .hl-logo a {
  color: #ffffff;
  text-decoration: none;
}
.header-left .hl-top .hl-logo span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  letter-spacing: 2px;
}
.header-left .nav li {
  width: 100%;
}
.header-left .nav li a {
  font-size: 17px;
  letter-spacing: 1px;
  padding: 12px 20px 12px 20px;
  display: block;
  position: relative;
  color: #e2e2e2;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-left .nav li a:after {
  content: "";
  width: 3px;
  background:#46d8c3;
  height: 0;
  top: auto;
  bottom: 0;
  right: 0;
  position: absolute;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
}
.header-left .nav li a.active, .header-left .nav li a:hover {
  color: #c5c5c5;
}
.header-left .nav li a.active:after, .header-left .nav li a:hover:after {
  height: 100%;
  top: 0;
  bottom: auto;
}
.header-left .nav li:last-child a {
  border-bottom: none;
}

/* Header Dark
-----------------------------*/
@media (min-width: 992px) {
  .header-dark {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .fixed-header .header-dark {
    background: #ffffff;
  }
  .header-dark .navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: #20247b;
  }
  .header-dark .navbar-brand span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    background: #078c79;
  }
  .header-dark .navbar-nav .nav-link {
    line-height: 60px;
    padding: 0 10px !important;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;
    color: #20247b;
  }
  .header-dark .navbar-nav .nav-link.active, .header-dark .navbar-nav .nav-link:hover {
    color: #078c79;
  }
}
/* Header white
-----------------------------*/
@media (min-width: 992px) {
  .header-white {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .header-white.header-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .fixed-header .header-white {
    background: #ffffff;
  }
  .header-white .navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
  }
  .header-white .navbar-brand span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    background: #ffffff;
  }
  .fixed-header .header-white .navbar-brand {
    color: #20247b;
  }
  .fixed-header .header-white .navbar-brand span {
    background: #078c79;
  }
  .header-white .navbar-nav .nav-link {
    line-height: 80px;
    padding: 0 10px !important;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
  }
  .fixed-header .header-white .navbar-nav .nav-link {
    color: #20247b;
  }
  .header-white .navbar-nav .nav-link.active, .header-white .navbar-nav .nav-link:hover {
    color: #ffffff;
  }
  .fixed-header .header-white .navbar-nav .nav-link.active, .fixed-header .header-white .navbar-nav .nav-link:hover {
    color: #078c79;
  }
}
/* Mobile 
-----------------------------*/
@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
  }
  .fixed-header .header-nav {
    background: #ffffff;
  }
  .header-nav .navbar-brand {
    font-weight: 600;
    font-size: 24px;
    color: #20247b;
  }
  .header-nav.header-white .navbar-brand {
    color: #ffffff;
  }
  .fixed-header .header-nav.header-white .navbar-brand {
    color: #20247b;
  }
  .header-nav .navbar-nav {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #ffffff;
  }
  .header-nav .navbar-nav > li + li .nav-link {
    border-top: 1px solid #ddd;
  }
  .header-nav .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.035rem;
    color: #20247b;
  }
  .header-nav .navbar-nav .nav-link.active, .header-nav .navbar-nav .nav-link:hover {
    color: #078c79;
  }
}
.footer {
  padding: 12px 0;
  position: relative;
  border-top: 1px solid #F36922;
}

.footer .nav a:hover {
  color: #078c79;
}
.footer p {
  color: #A8A8A8;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 991px) {
  .section-title {
    padding-bottom: 25px;
  }
}
.section-title h2 {
  font-weight: 700;
  color: #20247b;
  font-size: 45px;
  margin: 0 0 15px;
  border-left: 5px solid #078c79;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 35px;
  }
}
.section-title p {
  margin: 0;
  font-size: 18px;
}

/* Page title
--------------------------------*/
.page-title {
  padding: 160px 0 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .page-title {
    padding-top: 130px;
  }
}
.page-title h1 {
  font-weight: 700;
  margin-bottom: 15px;
}

@media (min-width: 1201px) {
  .main-left {
    padding-left: 250px;
  }
}

.m-15px-tb {
  margin-bottom: 15px;
  margin-top: 15px;
}

/* Section
---------------------*/
.section {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 991px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.masonry {
    margin: 10px;
    padding: 0;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px;
    transition-duration: .4s;
    -webkit-transition-duration: .4s
}

.masonry a {
    display: block;
    margin-top: 10px
}

.masonry a:first-child {
    margin-top: 0
}

.masonry-item {
    position: relative;
    overflow: hidden;
    -webkit-transition-duration: .4s;
    transition-duration: .4s
}

.masonry-item img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition-duration: .4s;
    transition-duration: .4s
}

.masonry-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    max-height: 100%;
    width: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    border: 8px solid rgba(255, 255, 255, 0.65);
    padding: 3%;
    -webkit-transition-duration: .4s;
    transition-duration: .4s
}

.masonry-item:hover .masonry-item-overlay {
    position: absolute;
    opacity: 1;
    -webkit-transition-duration: .5s;
    transition-duration: .5s
}

.masonry-item:hover .masonry-item-overlay h4 {
    opacity: 1;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    text-align: center;
    -webkit-transition-duration: .6s;
    transition-duration: .6s
}

.masonry-item:hover .masonry-item-overlay ul {
    opacity: 1;
    transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    text-align: center;
    -webkit-transition-duration: .5s;
    transition-duration: .5s
}

.masonry-item-overlay h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    bottom: 40px;
    margin: 0 0 20px 0;
    line-height: 20px
}

.masonry-item-overlay ul {
    position: absolute;
    padding-left: 0;
    bottom: 25px;
    margin: 0
}

.masonry-item-overlay ul li {
    list-style-type: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding-left: 0;
    opacity: .7
}

.masonry-item-overlay ul li:last-child:after {
    content: none
}

.masonry-item-overlay ul li:after {
    content: ' / ';
    font-size: 8px;
    font-weight: 700;
    margin: 0 5px
}

.masonry-item-overlay ul li a {
    color: #fff
}

.masonry-item:first-child {
    margin-top: 0
}

@media screen and (min-width: 576px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2
    }
}

@media screen and (min-width: 768px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2
    }
}

@media screen and (min-width: 992px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3
    }
}

@media screen and (min-width: 1200px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3
    }
}

.masonry-4 {
    margin: 10px;
    padding: 0;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;
    column-gap: 10px
}

.masonry-4 a {
    display: block;
    margin-top: 10px
}

.masonry-4 a:first-child {
    margin-top: 0
}

@media screen and (min-width: 576px) {
    .masonry-4 {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2
    }
}

@media screen and (min-width: 768px) {
    .masonry-4 {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2
    }
}

@media screen and (min-width: 992px) {
    .masonry-4 {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3
    }
}

@media screen and (min-width: 1200px) {
    .masonry-4 {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4
    }
}

.go-to-next {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  width: 35px;
  margin: auto;
  z-index: 1;
  text-align: center;
}
.go-to-next a {
  width: 35px;
  height: 35px;
  position: relative;
  display: inline-block;
  background: #078c79;
  border-radius: 50%;
  animation: down 1s linear infinite;
  -webkit-animation: down 1s linear infinite;
}
.go-to-next a span {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@-webkit-keyframes down {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 15px;
    opacity: 1;
  }
  60% {
    top: 15px;
    opacity: 0.60;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}
@keyframes down {
  0% {
    top: 5px;
    opacity: 0;
  }
  30% {
    top: 15px;
    opacity: 1;
  }
  100% {
    top: 25px;
    opacity: 0;
  }
}

.home{
    min-height: 100vh;
	background: #232323
}

.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn{
	text-transform: uppercase;
    padding: 10px 30px 10px;
    line-height: 1;
    display: inline-block;
    text-align: center;
    color: #fff;
    border: solid 3px;
    background-color: #e05208;
    border-radius: 355px 45px 225px 75px/15px 225px 15px 255px;
    position: relative;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    transition: all 0.4s linear 0s;
    border-color: #e05208;
    letter-spacing: 1px;
}

.btn:hover{
    background: none;
    border-color: #e05208;
	color: #e05208
}
button span{
	font-family: Poppins;
	font-weight: normal
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #007161;
    border-color: #007161;
    box-shadow: 0 0 0 0.2rem rgba(243,105,34,.3);
}

header img {
    display: block;
    height: 160px;
}


.inner-column {
    position: relative;
    padding-right: 100px;
    padding-top: 40px
}

.inner-column .image {
    position: relative
}

.inner-column .image img {
    position: relative
}

.inner-column .image:before {
    position: absolute;
    content: '';
    left: 40px;
    top: -40px;
    bottom: 60px;
    right: -40px;
    border: 3px solid #007161
}

.inner-column .small-img {
    position: absolute;
    right: 0px;
    bottom: 50px;
    border: 10px solid #ffffff
}

@media screen and (max-width: 991px) {
    .inner-column {
        padding-right: 90px;
        padding-top: 0
    }
    .inner-column .image:before {
        display: none
    }
    .inner-column .small-img {
        right: -25px
    }
}

@media screen and (max-width: 767px) {
    .inner-column {
        padding-right: 0
    }
    .inner-column .small-img {
        display: none
    }
}


@media screen and (max-width: 767px){
	.callto-action-imgbox {
		padding-left: 15px;
		padding-top: 15px;
		margin: 0 auto 25px auto !important;
		max-width: 95%;
	}
}
@media screen and (max-width: 991px){
	.callto-action-imgbox {
		padding-left: 20px;
		padding-top: 20px;
		margin: 0 auto 30px auto !important;
		max-width: 75%;
	}
}
@media screen and (max-width: 1199px){
	.callto-action-imgbox {
		padding-left: 30px;
		padding-top: 30px;
	}
}

.callto-action-imgbox {
    display: block;
    padding-left: 30px;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}
.callto-action-imgbox:before {
    border: 2px solid #078c79;
    bottom: 40px;
    content: "";
    left: 0;
    position: absolute;
    right: 40px;
    top: 0;
    z-index: -1;
}

.callto-action-imgbox h2{
	color: #f36922;
	text-align: center
}

.services-block{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.services-block:hover {
    transform: translateY(-0.5em);
}

.services-block:hover .icon-service {
    background: #d6d6d6;
	transition: all .8s;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.icon-service{
	width: 70px;
    height: 70px;
	color: #6F8BA4;
    border: solid 2px #6F8BA4;
    border-radius: 50%;
    margin: auto;
    text-align: center;
    font-size: 28px;
    line-height: 66px;
    margin-bottom: 12px;
	transition: all .8s
}

#valeurs{
	background: url('../img/3.png') no-repeat;
	background-size: cover;
	background-position: right;
}

.bg-valeurs{
	background: url("../img/france.png") no-repeat;
    background-size: contain;
	background-position: center;
    height: 500px;
	
}

#contact .icon{
	font-size: 22px;
    float: left;
    width: 50px;
    text-align: center;
    margin-top: 4px;
	color: #6F8BA4
}
#contact .cont{
	margin-left: 55px;
	padding-top: 6px;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #007161;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,113,97,.26);
}

.form-group{
	position: relative
}
p.error {
    position: absolute;
    right: 0;
    top: -15px!important;
    color: #b70101;
    text-align: right;
    font-size: 10px!important;
    opacity: 1!important;
    visibility: visible;
    z-index: 10;
}
input.error, input:focus.error, select.error, select:focus.error, textarea.error, textarea:focus.error {
    border-color: #b70101;
}

.neileb {
    display: block;
    margin: 0;
    padding: 0;
    height: 31px;
    float: right;
    font-family: calibri, Relaway, arial;
    color: #bdbdbd!important;
    line-height: 35px;
    padding-right: 70px;
    background: url(../img/neileb-footer.svg) no-repeat;
    background-position: right;
    text-decoration: none!important;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all .8s;
    margin-top: 14px;
}
.neileb:hover {
    background: url(../img/neileb-footer-hover.svg) no-repeat;
    background-position: right;
    text-decoration: none!important;
    color: #007161 !important;
}

/** Vegas CSS **/
#vegas{position:absolute;width:100%;height:100%;top:0;left:0}.vegas-slide,.vegas-slide-inner{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:transparent center center no-repeat;transform:translateZ(0);will-change:transform,opacity}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}.vegas-animation-kenburns{-webkit-animation:kenburns ease-out;animation:kenburns ease-out}@-webkit-keyframes kenburns{0%{transform:scale(1.5)}100%{transform:scale(1)}}@keyframes kenburns{0%{transform:scale(1.5)}100%{transform:scale(1)}}