@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700;900&display=swap");

body {
  font-family: "Source Sans Pro", sans-serif;
  color: #444444;
}

a {
  color: #009cdf;
}

a:hover {
  color: #fc8129;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 5px;
  bottom: 50%;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgb(0 0 0 / 60%);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #009cdf;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 2px 2px 2px #ddd;
}

#header .logo h1 {
  margin: 0;
  padding: 0;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 4px 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #6b6b6b;
  padding: 5px 10px 7px 10px;
  transition: 0.3s;
  font-weight: 400;
  font-size: 14px;
  font-family: "Source Sans Pro", sans-serif;
}
.nav-menu a::before{
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #37cf20;
  transition: 0.5s transform ease;
  transform: scale3d(0,1,1);
  transform-origin: 0 50%;
}
.nav-menu a:hover::before{
  transform: scale3d(1,1,1);
}
.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  background: #fff;
  text-decoration: none;
  color: #009cdf; 
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 15px;
  margin-top: 5px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #2a2c39;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #009cdf;
  background: none;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

/*nampiana*/

.nav-menu ul.menu,
.nav-menu ul.menu ul {
  list-style-type: none;
  padding: 0;
}
.nav-menu ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.nav-menu ul.menu li {
  position: relative;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
}

.nav-menu ul.menu li a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px;
	font-family: "Raleway", sans-serif;
}
.nav-menu ul li.menu-item-has-children {
  padding: 0 14px 0 0!important;
}

.nav-menu ul.menu li ul {
  background: #fff;
  display: none;
  min-width: 200px;
  position: absolute;
  z-index: 100;
  left: 0;
  border-radius: 0;
  top: 100%;
  border: #eeeeee 1px solid;
}

.nav-menu ul.menu li ul ul {
  left: 100%!important;
  top: 0;
}
.nav-menu ul li:hover > ul {
  display: block;
}
.title-page {
  color: #009ddf;
  border-bottom: 1px solid #009ddf;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-weight: 500;
  letter-spacing: -1px;
  font-size: 26px;
}

.has:hover {
  fill: #d00000;
}

/*nampiana*/
@media (max-width: 1366px) {
  .nav-menu .menu .menu ul {
    left: -90%;
  }
  .nav-menu .menu .menu:hover > ul {
    left: -100%;
  }
  .nav-menu .menu .menu > a:after {
    content: "\ea9d";
  }
}

.bg-gray {
  background: #fbfbfb;
}
.bg-orange {
  background: #f0af31;
}

.f-18 {
  font-size: 18px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #009cdf;
}

.icofont-close:before {
  color: #009cdf!important;
}

.mobile-nav-toggle {
  top: 15px!important;
}

.mobile-nav-toggle {
  background-color: #fff;
  border-radius: 4px;
  padding: 4px;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2a2c39;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #009cdf;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(20, 21, 28, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

#pricing {
  padding: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.fond-fd {
  background: rgba(0, 0, 0, 0.42);
  width: 100%;
}
.fond-fd-2 {
  background: rgb(0, 157, 224);
  background: linear-gradient(
    90deg,
    rgb(0, 125, 179) 0%,
    rgba(42, 225, 207, 0.8183648459383753) 100%
  );
  width: 100%;
}

#hero .carousel-inner {
  height: 80vh;
  width: 100%;
}

#hero .carousel-caption {
  top: 25%;
  line-height: 45px;
  left: 8%;
}
#hero .carousel-caption h1 {
  font-size: 30px;
  font-weight: 600;
}
#hero .carousel-caption p {
  font-size: 24px;
}

@media (min-width: 1024px) {
  #hero p {
    width: 100%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
    z-index: 30;
  }
}

@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }
  #hero h2 {
    font-size: 28px;
  }
  #hero .carousel-caption h1 {
    font-size: 25px;
  }
  #hero .carousel-caption p {
    font-size: 20px;
  }
  h1 {
    font-size: 18px;
  }
  .actu-page {
    text-align: center;
  }
  .image img {
    width: 50% !important;
  }
}

.image img {
  width: 75%;
}

.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  margin-top: -60px;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Source Sans Pro", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fd9042;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  color: #2a2c39;
}

.banniere-page {
  padding-top: 0;
  max-height: 74vh;
  height: 100%;
  overflow: hidden;
}

.bloc-compo p:first-child {
  font-size: 20px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 1px solid #d4d6df;
  padding: 15px;
  transition: 0.3s;
  color: #2a2c39;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: #009cdf;
}

.features .nav-link.active {
  background: #009cdf;
  color: #fff;
  border-color: #009cdf;
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #009cdf;
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*-------------------------------------
#counter ---------------*/

.counter {
  background-color: rgba(0, 26, 64, 0.68);
  padding: 20px 0;
  border-radius: 5px;
  min-height: 315px;
}
.count-title {
  font-size: 50px;
  font-weight: 300 !important;
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 0;
  text-align: center;
}
.count-text {
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
  color: white;
  padding: 15px;
  margin-bottom: 0;
  text-align: center;
}

.col-half-offset {
  margin-left: 4.166666667%;
}

.image img {
  /* La transition s'applique à la fois sur la largeur et la hauteur, avec une durée d'une seconde. */
  -webkit-transition: all 1s ease; /* Safari et Chrome */
  -moz-transition: all 1s ease; /* Firefox */
  -ms-transition: all 1s ease; /* Internet Explorer 9 */
  -o-transition: all 1s ease; /* Opera */
  transition: all 1s ease;
}
.image img:hover {
  /* L'image est grossie de 25% */
  -webkit-transform: scale(1.25); /* Safari et Chrome */
  -moz-transform: scale(1.25); /* Firefox */
  -ms-transform: scale(1.25); /* Internet Explorer 9 */
  -o-transform: scale(1.25); /* Opera */
  transform: scale(1.25);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fedac0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #009cdf !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
  #hero .carousel-caption {
    top: 18%;
  }
}

#hero {
  position: relative;
}
#hero .bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0.4738270308123249) 0%, rgba(0,0,0,0.4654236694677871) 50%, rgba(0,0,0,0) 50%);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
  background: url(../img/bg-footer.jpg) bottom right no-repeat;
  background-size: cover;
  padding: 0;
}
.bg-white2 {
  background: rgba(255, 255, 255, 0.46);
  padding: 60px 0;
}

.contact .info,
.contact .php-email-form {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #009cdf;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #555974;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #f0af31;
  color: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type="submit"] {
  background: #f0af31;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #009ddf;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ariane.breadcrumbs .breadcrumb {
  background: none !important;
  padding: 10px 0 !important;
  margin-bottom: 0;
}
.ariane.breadcrumbs .breadcrumb a {
  padding-right: 8px;
}

.inner-page {
  padding: 30px 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f7f8f9;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
  .search-top {
    display: none;
  }
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #404356;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

.container {
  width: 100%;
  max-width: 1400px;
}

/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: "";
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #f0af31 transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:hover,
.hvr-bubble-float-top:focus,
.hvr-bubble-float-top:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before,
.hvr-bubble-float-top:focus:before,
.hvr-bubble-float-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background: #313131;
}
footer p, footer li {
  font-size: 14px;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer li {
  list-style-type: none;
}
footer li a {
  color: white;
  text-decoration: none;
}
.sociaux-footer a {
  padding: 0 5px;
}
.sociaux-footer i {
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 6px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 27px;
}
.sociaux-footer i:hover {
  color: #009cdf;
  border: 2px solid #009cdf;
}

#bg-portofolio {
  padding: 0;
}
.fond-porto {
  background: rgba(255, 255, 255, 0.7411764705882353);
  padding: 60px 0;
}
.vc_sep_line {
  border-bottom: 1px solid #6fecde !important;
  border-top: 1px solid #6fecde !important;
  height: 4px !important;
  width: 100%;
  display: block;
}

/*----------*/
.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

.hover img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.hover-content {
  position: relative;
  z-index: 99;
}

/* DEMO 4 ============================== */
.hover-4 img {
  width: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hover-4 .hover-overlay {
  background: rgba(0, 0, 0, 0.4);
  z-index: 90;
}

.hover-4-title {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 3rem;
  z-index: 99;
}

.hover-4-description {
  position: absolute;
  top: 2rem;
  left: 2rem;
  text-align: right;
  border-right: 3px solid #fff;
  padding: 0 1rem;
  z-index: 99;
  transform: translateX(-1.5rem);
  opacity: 0;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .hover-4-description {
    width: 50%;
  }
}

.hover-4:hover img {
  width: 100%;
}

.hover-4:hover::after {
  opacity: 1;
  transform: none;
}

.hover-4:hover .hover-4-description {
  opacity: 1;
  transform: none;
}

.hover-4:hover .hover-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.wp-block-embed__wrapper iframe {
  width: 75%;
  margin: 0 auto;
  text-align: center;
  min-height: 550px;
  display: block;
  padding: 50px 0;
}

.card-img-top img {
  width: 100% !important;
}

.bloc-card {
  display: flex !important;
}

.pagination {
  text-align: center;
  margin: 0 auto;
}
.page-numbers {
  background: #009ddf;
  border-radius: 4px;
  padding: 5px 12px;
  margin: 0 5px;
  text-align: center;
  color: #fff;
}
.page-numbers:hover {
  background: #0069d9;
  color: #fff;
}

/*---hover--->
.img-list {
list-style: none;
padding: 0;
margin: 0;
}
.img-list li {
border: 5px solid transparent;
box-sizing: border-box;
width: 33.33%;
float: left;
position: relative;
cursor: pointer;
}
.img-list img {
max-width: 100%;
vertical-align: middle;
}

/* Image Placeholder Styles
-------------------------------------------------------------- */
.img-placeholder:before,
.img-placeholder:after {
  padding-top: 33.33%;
  content: "";
  display: block;
}
.img-placeholder {
  background: #222;
  box-shadow: 0 0 0 8px #222 inset, 0 0 0 9px #333 inset;
  color: #444;
  line-height: 0;
  text-align: center;
  display: block;
}

/* Body & Image List Styles
-------------------------------------------------------------- */
.img-list {
  list-style: none;
}
.img-list a {
  box-sizing: border-box;
  width: 100%;
  float: left;
  position: relative;
  cursor: pointer;
}
.img-list img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  height: 100%;
  overflow: hidden;
}

/* The hover effect
  -------------------------------------------------------------- */
.img-list a:before {
  transition: all 0.5s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  transform: scale(0);
}
.img-list a:hover:before {
  opacity: 0.5;
  transform: scale(1);
}
.img-list a:after {
  transition: all 0.6s ease 0.2s;
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid #aaa;
  background: #000;
  opacity: 0;
  transform: scale(0);
}
.img-list a:hover:after {
  opacity: 0.35;
  transform: scale(1);
}

.bt-form input {
  background: #f0af31;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.a_la_une img {
  width: 100% !important;
  max-width: 960px;
  height: auto !important;
  border: 4px solid #fff;
  box-shadow: 0 2px 2px #33333354;
}

#accordion-style-1 img {
  border: 6px solid #fff;
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.28);
}
.member-info {
  line-height: 16px;
  text-align: center;
  padding: 10px 0 25px;
}
.member-info h4 {
  font-weight: 600;
  color: #009ddf;
  font-size: 15px;
}

.banniere-page-2 {
  height: 250px;
  color: #fff;
  background: rgb(240, 175, 49);
  background: linear-gradient(
    36deg,
    rgba(240, 175, 49, 1) 0%,
    rgba(0, 158, 223, 1) 0%,
    rgba(55, 206, 31, 1) 100%
  );
}

/*--accordeon--*/
#accordion-style-1 h1,
#accordion-style-1 a {
  color: #009ddf;
}
#accordion-style-1 .btn-link {
  font-weight: 700;
  color: #009ddf;
  background-color: transparent;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: bold;
  padding-left: 35px;
}

#accordion-style-1 .card-body {
  border-top: 2px solid #009ddf;
}

#accordion-style-1 .card-header .btn.collapsed .fa.main {
  display: none;
}
.main-pic {
  background: #009ddf;
  padding: 13px 11px;
  color: #ffffff;
  width: 35px;
  height: 41px;
  position: absolute;
  left: -1px;
  top: 10px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  display: block;
}

.member-img img {
  border-radius: 8px;
  border: 6px;
  box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.22);
}

#st-1.st-left {
  left: 0px;
  top: 35%;
}

map [title]:hover::after {
  content: attr(title);
  background: #000;
  color: #fff;
  font-size: 18px;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  position: absolute;
  top: 55px;
  left: 35px;
}

.goog-te-gadget {
  display: none !important;
}

.prisna-gwt-flags-container li {
  padding: 0 4px !important;
}

.bann-top {
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .bann-top {
    width: auto !important;
  }
}

/*test*/

.top-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  background: #009cdf;
  padding: 0 10px;
}

.f {
  color: #fff;
  text-align: center
}

.f2 {
  margin-right: auto
}

.f3 {
  flex-basis: 260px;
}

.menu-head {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 480px) {
  #header .logo img {
    width: 100%!important;
  }
  .top-flex {
    justify-content: flex-start!important;
  }
  .h2, h2 {
      font-size: 1.5rem;
  }
  .section-title p {
    font-size: 28px;
  }
}

.logo {
  border-bottom: 1px solid #cdcdcd;
}

.menu-item-has-children:after {
  content: "\f107";
  font-family: FontAwesome;
  right: 7px;
  position:absolute;
  top:8px;
}

.eg-wrap .eg-overlay-wrapper div.eg-mask {
	width: 97%!important;
}

.bg-gradient-single {
  padding-top: 95px;
  max-height: 74vh;
  height: 100%;
  overflow: hidden;
  background: rgb(240,175,49);
  background: linear-gradient(159deg, rgba(240,175,49,1) 20%, rgba(0,158,223,1) 100%, rgba(55,206,31,1) 100%);
}

.elementor-section {
    padding: 25px 0!important;
}

.ttl-pafe-interne {
  color: #fff;
  background: #ee9f26;
  font-size: 22px;
  padding: 15px;
  border-radius: 4px;
  font-weight: 500;
}

.carousel-indicators {
  display: none;
}

.scroll-down {
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid #FFF;
  background-size: 14px auto;
  border-radius: 50px;
  z-index: 20;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  transform: scale(1)
}

.scroll-down:before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*fin-test*/

.drop-footer ul{
  list-style: none;
  position: relative;
  display: block;
}

.drop-footer ul li:hover { color: white;}
.drop-footer ul li:hover > ul{display: block;}
.drop-footer ul li a{
      display: block; 
      color: rgb(185, 185, 185); 
      text-decoration: none;
      background: none;
    }
    .drop-footer ul ul{
      display: none;
      position: absolute;
      z-index: 10;
      top: 0;
      left: 100%;
      border: 1px solid rgba(97, 97, 97, 0.1);
    }
    .drop-footer ul ul li { position: relative;}
    .drop-footer ul ul li {
          border-bottom: 1px solid rgba(0,0,0,.05);
          width: 100%;
        }
        .drop-footer ul ul {
          padding: 7px 15px;
          background-color: #000;
          min-width: 240px;
        }
        .drop-footer ul ul li a:hover {
          color: white;
        }
        .drop-footer ul ul ul {
          position: absolute; 
          left: 100%; 
          top:0;
        }
        
        
/*--countdown--*/
.slogan {
	padding: 0;
	text-align: center;
	color: #fff;
	font-size: 1.3rem;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.233),
		0px 18px 23px rgba(0, 0, 0, 0.295);
}

.countdown {
	align-items: center;
	text-align: center;
	flex-direction: column;
	justify-content: top;
	padding: 50px 0;
	background-color: #012b67;
}

.cd-number {
	font-size: 5rem;
	margin-bottom: 0;
	font-weight: bolder;
	text-align: center;
	color: #def7e0;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.233),
		0px 18px 23px rgba(0, 0, 0, 0.295);
}

.cd-text {
	font-size: 1.3rem;
	padding-bottom: 20px;
	display: block;
	font-weight: lighter;
	text-align: center;
	color: #93a194;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.233),
		0px 18px 23px rgba(0, 0, 0, 0.295);
}

.dev {
	display: flex;
	padding: 100px ;
}

.proj-by {
	/* display: flex; */
	color: #aaaaaa;
	padding-left: 750px;
	text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.233),
		0px 18px 23px rgba(0, 0, 0, 0.295);
}

.bigger {
	display: flex;
	font-size: 1.5rem;
	font-style: italic;
	padding-left: 20px;
	font-weight: bold;
}

/*invitation*/

.invit .box {
  position:relative;
  background:#000;
  float:left;
  margin: 25px;
  box-sizing:border-box;
  overflow:hidden;
  box-shadow:0 5px 10px rgba(0,0,0,.8);
}

.invit .box:before {
  content:'';
  position:absolute;
  top:10px;
  left:10px;
  right:10px;
  bottom:10px;
  border-top:1px solid #fff;
  border-bottom:1px solid #fff;
  box-sizing:border-box;
  transition:0.5s;
  transform: scaleX(0);
  opacity:0;
}

.invit .box:hover:before {
  transform:scaleX(1);
  opacity:1;
}

.invit .box:after {
  content:'';
  position:absolute;
  top:10px;
  left:10px;
  right:10px;
  bottom:10px;
  border-left:1px solid #fff;
  border-right:1px solid #fff;
  box-sizing:border-box;
  transition:0.5s;
  transform: scaleY(0);
  opacity:0;
}

.invit .box:hover:after {
  transform:scaleY(1);
  opacity:1;
}
.invit .box .imgBox {
  position:relative;
}

.invit .box .imgBox img {
  width:100%;
  transition:0.5s;
}

.invit .box:hover .imgBox img {
  opacity:.2;
  transform:scale(1.2);
}
.invit .box .content {
  position:absolute;
  width:100%;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  padding:20px;
  box-sizing:border-box;
  text-align:center;
}

.invit .box .content h2 {
  margin: 0 0 10px;
  padding:0;
  color:#fff;
  transition:0.5s;
  transform:translateY(-50px);
  opacity:0;
  font-size: 22px;
  visibility:hidden;
}

.invit .box .content p {
  margin:0;
  padding:0;
  color:#fff;
  transform:translateY(50px);
  opacity:0;
  visibility:hidden;
}
.invit .box:hover .content h2,
.invit .box:hover .content P {
  opacity:1;
  visibility:visible;
  transform:translateY(0px);
}
/*fin-invitation*/
.nav-menu::before {
    content: "\f015";  /* this is your text. You can also use UTF-8 character codes as I do here */
    font-family: FontAwesome; 
    position: absolute;
    top: 3px;
    left: 0;
    color: #009cdf;
}

ul.sub-menu li {
	border-bottom: 1px dotted #212121!important;
}