

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #e29b11;
}

a:hover {
    color: #e29b11;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: #e29b11;
    color: #fff;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i:hover {
    color: #fff;
    background: #191919;
    border: 2px solid #e29b11;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #e29b11;
    border-top-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: rgba(255, 255, 255, 0.6);
}

#topbar.topbar-scrolled {
    top: -40px;
}

#topbar .contact-info a {
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #e29b11;
    padding-right: 4px;
}

#topbar .contact-info i.icofont-phone {
    margin-left: 15px;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
    margin-right: -2px;
    padding: 6px 8px;
    margin-left: -2px;
    display: inline-block;
    line-height: 2px;
    transition: 0.3s;
    border: 0px solid #000000;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding-top: 10px;
     
}

#topbar .social-links a:hover {
    color: #fff;

}



#topbar .social-links a:nth-child(4){
    border-top: 4px solid #00acee;
    
}

#topbar .social-links a:nth-child(1){
    border-top: 4px solid #3b5998;
    
}

#topbar .social-links a:nth-child(3){
   border-top: 4px solid #8a3ab9;
    
}

#topbar .social-links a:nth-child(2) {
    border-top: 4px solid #4FCE5D;
  
}

#topbar .social-links a:nth-child(5){
   border-top: 4px solid #006192;
   
}




#topbar .social-links a:nth-child(4):hover {
    background: #00acee;
    color: #fff;
}

#topbar .social-links a:nth-child(1):hover {
    background: #3b5998;
    color: #fff;
}

#topbar .social-links a:nth-child(3):hover {
    background: #8a3ab9;
    color: #fff;
}

#topbar .social-links a:nth-child(2):hover {
    background: #4FCE5D;
    color: #fff;
}

#topbar .social-links a:nth-child(5):hover {
    background: #006192;
    color: #fff;
}


#topbar .social-links a:hover {
    color: #191919;
    background: #ffffff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(52, 58, 64, 0);
    transition: all 0.5s;
    z-index: 997;
    top: 20px;
    margin-top: 30px;
}

#header.header-scrolled {
    top: 0;
    background: #101010;
    height: 60px;
    padding: 5px 0;
    margin-top: 0px;
}

#header.header-scrolled .logo img {
  height: 40px;   
}

#header .logo img {
    max-height: 50px;
}

@media (max-width: 992px) {
    #header {
        top: 0;
        padding: 15px 0;
        background: transparent;
    }

    #header .logo {
        font-size: 28px;
    }
}

.header-inner-pages {
    background: rgba(0, 0, 0, 0.9) !important;
}

@media(max-width:768px)
{
    #header .logo img {
    max-height: 40px;
        top: px;
    }
    #header {
        margin-top: 0px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {

}
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;

}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 5px 5px;
    margin-left: 5px;
    transition: 0.3s;
}


.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    padding: 3px 12px 3px 12px;
    margin: 0px 2px 0px 2px;
    border-radius: 25px;

}


.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: #fff;
    text-decoration: none;
    background-color: #e29b11;
}

.nav-menu .drop-down ul {

    display: block;
    position: absolute;
    left: 0;
    margin-top: 14px;
    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: 0.3s;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;


}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;


}



.nav-menu .drop-down li {
    min-width: 100px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: none;
    margin-top: 5px;
    color: #fff;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: #e29b11;
    background: #fff;
}





.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #191919;
}



.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;
}



@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 10px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 25px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.7);
    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: #fff;
    padding: 10px 20px;
    font-weight: 600;
    outline: none;
    font-size: 20px;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #e29b11;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}


.mobile-nav .drop-down:hover ul {

    visibility: visible;
    display: block;
}

.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(0, 0, 0, 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;
}







/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 101vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
    border-bottom: 6px solid #e29b11;
    z-index: 0;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 110px;
  left: 50px;
  right: 50px;
}


#hero .container {
  text-align: center;
}

#hero .phone img{
    width: 100%;
}
#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
    
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #cccccc;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
/*  background: rgba(255, 255, 255, 0.2);*/
  border-radius: 50px;
/*  padding: 10px;*/
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.38);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.37);
  color: rgba(255, 255, 255, 0.76);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #428bca;
}

#hero .btn-get-started {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #e29b11;
}

#hero .btn-get-started:hover {
  background: #191919;
    border: 2px solid #e29b11;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
    
    #hero .container{
/*        margin-top: 200px;*/
    }
}


@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}









/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-title {
    padding-bottom: 40px;
    padding-top: 30px;
}

.section-title h2 {
    padding-bottom: 0px;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    padding: 0;
    margin: 0 0 5px 0;
    letter-spacing: 0px;
    line-height: 25px;
    /*  text-transform: uppercase;*/
    color: #2a2c39;
    font-family: "Nunito", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background: #e29b11;
    margin: 4px 10px;
}

.section-title h2::before {
    content: "";
    width: 100px;
    height: 2px;
    display: inline-block;
    background: #e29b11;
    margin: 4px 10px;
    line-height: 25px;
}

.section-title p {
    padding-top: 8px;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    /*  text-transform: uppercase;*/
    font-family: "Open sans", sans-serif;
    color: #aaaaaa;
}

@media(max-width: 768px) {
    .section-title h2 {
        padding-bottom: 0px;
        font-size: 25px;
        font-weight: 800;
        text-align: center;
        padding: ;
        line-height: 25px;
        margin: 0 0 5px 0;
        letter-spacing: 0px;

        /*  text-transform: uppercase;*/
        color: #2a2c39;
        font-family: "Nunito", sans-serif;
    }

    .section-title h2::after {
        content: "";
        width: 20px;
        height: 2px;
        display: inline-block;
        background: #e29b11;
        margin: 4px 10px;
    }

    .section-title h2::before {
        content: "";
        width: 20px;
        height: 2px;
        display: inline-block;
        background: #e29b11;
        margin: 4px 10px;
    }

}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    background: #292929;
   padding-top: 50px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 36px;
    text-align: center;
      
}

.about .content ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #e29b11;
}

.about .content p {
    padding: 0 80px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.about h3 {
    color: #e29b11;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding-top: 0px;
    background: #292929;
}

.why-us .box {
    text-align: center;
    padding: 3px 30px 0px 30px;
    /*  box-shadow: 1px 3px 4px  rgba(68, 68, 68, 0.15);*/
    transition: all ease-in-out 0.3s;
    /*    border-top: 3px solid #fff;*/
    height: 120px;
    background: #292929;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.why-us .box span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #e29b11;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #fff;
}

.why-us h3 {
    text-align: center;
    font-size: 36px;
    padding: 25px 0;
    color: #eee;
}

.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
    visibility: hidden;
}

.why-us .box:hover {

    padding: 3px 30px 0px 30px;
    height: 220px;
    border: 2px #fff solid;
    box-shadow: 1px 3px 4px rgba(68, 68, 68, 0.35);
    /*    border-top: 5px solid #191919;*/

}

.why-us .box:hover p {
    visibility: visible;

}

.why-us .box:hover .why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}

/*--------------------------------------------------------------
# clients2
--------------------------------------------------------------*/
.clients2 {
    background: #f8f8f8;
    padding: 10px 0;
    text-align: center;
}

.clients2 img {
    width: 100%;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 5px 0;
}

.clients2 img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .clients2 img {
        width: 40%;
    }
}





/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
    border-top: 1px solid #eceff0;
    border-left: 1px solid #eceff0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #eceff0;
    border-bottom: 1px solid #eceff0;
    overflow: hidden;
    background: #fff;
    height: 120px;
    padding: 40px;
}

.clients .client-logo img {
    max-width: 100%;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
}

.clients .client-logo:hover img {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.1);
}

.clients img {
    transition: all 0.4s ease-in-out;
}

@media(max-width:768px) {
    .clients .client-logo img {
        max-width: 65%;
        -webkit-filter: grayscale(100);
        filter: grayscale(100);
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
    background: #f8f8f8;
    margin-top: 0px;
    padding-top: 40px;
    padding-bottom: 10px;
}

.services .icon-box {
    text-align: center;
    padding: 10px 2px 20px 2px;
    transition: all ease-in-out 0.3s;
    background: #f8f8f8;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /*  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);*/
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .icon-box .icon i {
    font-size: 35px;
    transition: 0.5s;
    position: relative;
}



.services .icon-box h4 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 20px;
}

.services .icon-box h4 a {
    color: #191919;
    transition: ease-in-out 0.3s;

}

.services .icon-box p {
    line-height: 20px;
    font-size: 13px;
    margin-bottom: 0;
    color: #b2b0ad;
    padding: 0 20px;
}

.services img {
    padding-top: 90px;
}

.services .icon-box:hover {
    /*  background-color: #09576f;*/
    box-shadow: 0px 5px 5px 0 rgba(31, 33, 34, 0.22);
    transform: translateY(-10px);
    border-top: 4px #e29b11 solid;
    background: #2c2c2c;
}

/*
.services .icon-box:hover p{ 
  color: #eaeaea;
}
*/

.services .icon-box:hover h4 a {
    color: #e29b11;
}


.services .iconbox-blue i {
    color: #e29b11;
}

.services .iconbox-blue:hover .icon i {
    transform: scale(1.1);
    color: #eee;
}


.services .iconbox-orange i {
    color: #e29b11;
}

.services .iconbox-orange:hover .icon i {

    transform: scale(1.1);
    color: #eee;
}



.services .iconbox-pink i {
    color: #e29b11;
}

.services .iconbox-pink:hover .icon i {
    transform: scale(1.1);
    color: #eee;

}



.services .iconbox-teal i {
    color: #e29b11;
}

.services .iconbox-teal:hover .icon i {
    transform: scale(1.1);
    color: #eee;
}




/*
--------------------------------------------------------
#témoignage 
----------------------------------------------------------
*/

#temoin {
    background: ;
    background-position: center center;
    background-size: cover;
}

#temoin .carousel-inner {
    text-align: center;
}

#temoin .carousel-inner .carousel-item {
    text-align: center;
}

#temoin img {
    text-align: center;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 0px solid #191919;
    box-shadow: 0px 4px 4px #5a5a5a;
}


#temoin h3 {
    font-weight: 700;
    font-size: 20px;
}

#temoin h4 {
    font-size: 15px;
    color: #e29b11;
    font-weight: 100;
}

#temoin p {
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}

#temoin span {
    background-color: #c7c7c7;
    border-radius: 15px;
}
@media(max-width: 768px){
    #temoin h4 {
        font-size: 13px;
        padding: 0 40px;
    }   
}




/*--------------------------------------------------------------
# Top Bar_phone
--------------------------------------------------------------*/
#topbar_phone {
    /*  background: #eaeaea;*/
    padding: 20px 0px 20px 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

#topbar_phone .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;

}


#topbar_phone .contact-info p {
    color: #fff;
}


#topbar_phone .contact-info i {

    padding: 4px;
    padding-right: 10px;

}



#topbar_phone .social-links a {
    margin-right: 2px;
    padding: 5px 10px;
    margin-left: 5px;
    display: inline-block;
    transition: 0.3s;
    border: 0px solid #fff;
    border-radius: 60px;
    text-align: center;
    
    box-shadow: px 2px 2px #7b7b7b;
}


#topbar_phone .social-links a:hover {

    transform: scale(1.2);


}



#topbar_phone .social-links a:nth-child(4) {
    background: #00acee;
    color: #fff;
}

#topbar_phone .social-links a:nth-child(1) {
    background: #3b5998;
    color: #fff;
}

#topbar_phone .social-links a:nth-child(3) {
    background: #8a3ab9;
    color: #fff;
}

#topbar_phone .social-links a:nth-child(2) {
    background: #4FCE5D;
    color: #fff;
}

#topbar_phone .social-links a:nth-child(5) {
    background: #006192;
    color: #fff;
}


#topbar_phone .social-links a:hover {
    color: #fff;
    background: #313131;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0);
}



/*--------------------------------------------------------------
# galerie
--------------------------------------------------------------*/

.galerie .galerie-item {
    margin-bottom: 10px;

}

.galerie #galerie-flters {
    padding: 0;
    margin: 15px;
    list-style: none;
    text-align: center;
}

.galerie #galerie-flters li {
    cursor: pointer;
    margin: 0 15px 15px 0;
    display: inline-block;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 20px;
    color: #444444;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;

}

.galerie #galerie-flters li:hover,
.galerie #galerie-flters li.filter-active {
    background: #fff;
    color: #fff;
}

.galerie #galerie-flters li:last-child {
    margin-right: 0;
}



.galerie .galerie-wrap {

/*      box-shadow: 2px 1px 2px #a3a3a3;*/
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    /*    border: 2px #ffffff solid ;  */
    margin-bottom: 10px;
    border-radius: 5px;
    
    
}



.galerie .galerie-wrap img {
    transition: 1s;
    margin: 0px;

}

.galerie .galerie-wrap {
    height: 175px;
    width: 100%;

}


.galerie .galerie-wrap .galerie-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0px;
    left: 0;
    right: 0;
    transition: 0.3s;
    text-align: center;
    background-color: rgba(25, 25, 25, 0.45);
    padding-bottom: 20px;
    height: 175px;
    width: 100%;
}


@media (width: 375px) {

    .galerie .galerie-wrap {
        height: 240px;
        width: 340px;
    }


    .galerie .galerie-wrap .galerie-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgba(0, 20, 28, 0.63);
        padding-bottom: 20px;
        height: 240px;
        width: 340px;
    }
}

@media (width: 414px) {

    .galerie .galerie-wrap {
        height: 240px;
        width: 380px;
    }


    .galerie .galerie-wrap .galerie-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgba(0, 20, 28, 0.63);
        padding-bottom: 20px;
        height: 240px;
        width: 380px;
    }
}

@media (width: 411px) {

    .galerie .galerie-wrap {
        height: 240px;
        width: 380px;

    }


    .galerie .galerie-wrap .galerie-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgba(0, 20, 28, 0.63);
        padding-bottom: 20px;
        height: 240px;
        width: 380px;
    }
}


@media (width: 320px) {

    .galerie .galerie-wrap {
        height: 200px;
        width: 290px;
    }


    .galerie .galerie-wrap .galerie-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgba(0, 20, 28, 0.63);
        padding-bottom: 20px;
        height: 200px;
        width: 290px;
    }
}


@media (width: 360px) {

    .galerie .galerie-wrap {
        height: 200px;
        width: 330px;
    }


    .galerie .galerie-wrap .galerie-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        opacity: 0;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        text-align: center;
        background: rgba(0, 20, 28, 0.63);
        padding-bottom: 20px;
        height: 200px;
        width: 330px;
    }
}


.galerie .galerie-wrap .galerie-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}


.galerie .galerie-wrap .galerie-info p {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.galerie .galerie-wrap .galerie-info .galerie-links {
    display: flex;
}

.galerie .galerie-wrap .galerie-info .galerie-links a {
    color: #000000;
    margin: 0 4px;
    background-color: #fff;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.galerie .galerie-wrap .galerie-info .galerie-links a i {
    font-size: 18px;
    line-height: 0;
    color: #191919;
}

.galerie .galerie-wrap .galerie-info .galerie-links a:hover {
    background: #e29b11;

}

.galerie .galerie-wrap:hover {
    box-shadow: 0px 0px 0px #fff;
    /*    border: 0px #e29b11 solid;*/
}

.galerie .galerie-wrap:hover .galerie-info {
    opacity: 1;
    padding-bottom: 0;
}

.galerie .galerie-wrap:hover img {
    transform: scale(1.1);
}

.galerie .text-center button[type="galerie"] {
    background: #0b6f8e;
    border: 0;
    padding: 5px 15px;
    color: #fff;
    font-size: 12px;
    transition: 0.4s;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
}


.galerie .text-center button:hover[type="galerie"] {
    background: #e29b11;

}




.pagination {
    text-align: center;
    padding: 10px;
    align-items: center;
    display: inline-block;
    width: 100%;
}

.pagination .page a {
    padding: 5px 10px 5px 10px;
    background-color: #191919;
    margin: 5px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
}

.pagination .pagec {
    padding: 5px 10px 5px 10px;
    background-color: #e29b11;
    margin: 5px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
}

.pagination .page current {
    color: #fff;
    background-color: #e29b11;

}




/* Outils Section
--------------------------------*/
#Outils {
    background: url("../img/adobe/back.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 30px 0 30px 0;
    position: relative;
    margin: 30px 0 30px 0;

}

#Outils h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 500px;
    line-height: 25px;
}

#Outils p {
    color: #aaa;
    text-align: center;
    margin-bottom: 30px;
}

#Outils::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9;
}

#Outils .container {
    position: relative;
    z-index: 10;
}

#Outils .counters span {
    font-family: "Jost", sans-serif;
    font-weight: bold;
    font-size: 48px;
    display: block;
    color: #18d26e;
}

#Outils .counters p {
    padding: 0;
    margin: 10px 0 20px 0;
    font-family: "Jost", sans-serif;
    font-size: 15px;

    font-weight: 500px;
}


#Outils .ps {
    color: #5ed0fa;
}

#Outils .ai {
    color: #ffb629;
}

#Outils .id {
    color: #f466ad;
}

#Outils .pr {
    color: #ff9cff;
}

#Outils h {
    color: #114758;
}

#Outils .img-fluid {
    width: 80px;
    transition: transform 0.8s ease 0s;

}

#Outils .img-fluid:hover {
    width: 80px;
    opacity: 1;
    transform: rotate(360deg);

}




/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #191919;
}

.pricing .box h4 {
    font-size: 42px;
    color: #e29b11;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #191919;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: #e29b11;
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    background: #e29b11;
    display: inline-block;
    padding: 10px 40px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .box .btn-buy:hover {
    background: #e29b11;
}

.pricing .featured {
    background: #e29b11;
    box-shadow: none;
    color: #fff;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured ul,
.pricing .featured ul li,
.pricing .featured ul .na {
    color: #fff;
}

.pricing .featured h4 span {
    color: rgba(255, 255, 255, 0.58);
}

.pricing .featured .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .featured .btn-buy {
    background: rgba(255, 255, 255, 0.2);
}

.pricing .featured .btn-buy:hover {
    background: #fff;
    color: #e29b11;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    margin-top: 0px;
    background: url("../img/contacte.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 60px 0;
    position: relative;
    height: auto;


}

#contact::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.80);
    z-index: 9;
}

#contact .container {

    position: relative;
    z-index: 10;
    padding-top: 2px;
    padding-bottom: 1px;
}

#contact . {
    z-index: 10;
}

.contact .cont {
    text-align: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(214, 215, 216, 0.6);
    padding: 0 30px;

}

.contact .info-box {
    color: #444444;
    text-align: center;
    /*  box-shadow: 0 0 5px rgba(214, 215, 216, 0.6);*/
    padding: 2px 0 3px 0;
}

.contact .info-box i {
    font-size: 32px;
    color: #eee;
    border-radius: 50%;
    padding: 8px;
    /*  border: 3px dotted #e29b11;*/
}

.contact .info-box h3 {
    font-size: 20px;
    color: #e29b11;
    font-weight: 700;
    margin: 10px 0;
}

.contact h2 {
    color: #e29b11;
    margin-bottom: 20px;
    margin-top: 50px;
    line-height: 25px;
}

.contact .info-box p {
    padding: 0;
    line-height: 15px;
    font-size: 14px;
    margin-bottom: 0;
    color: #eee;
}

.contact {

    padding-top: 10px;
    padding-bottom: 0px;
    margin-top: 50px;
    margin-bottom: 0px
}

.contact .section-title p {
    color: #eee;
    margin-bottom: 5px;
}

.contact .cont {
    box-shadow: 0 0 8px 0 rgba(255, 255, 255, 0);
    margin-bottom: 5px;
}

.contact .container .form-group {
    width: 100%;
    background-color: rgba(7, 7, 7, 0.46);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 100px;

}

.contact .adresse {
    padding: 0 80px;
    text-align: center;
    align-items: center;
    justify-content: center;
    justify-items: center;

}


.contact .section-title .mail {
    text-align: center;
}

.contact .section-title .whatsapp {
    text-align: center;
}
}


.contact .container .form-group .form-row {
    padding-bottom: 10px;
}





.contact .container .form-group input,
.contact .form-group textarea {
    box-shadow: none;
    font-size: 14px;
    color: aqua;
}

.contact .container .form-group .validate {
    color: #fff;

}

.contact .container .form-group .form-row input {
    height: 35px;
    color: #fff;
    border-radius: 5px;
    background: rgba(54, 54, 54, 0.3);
}



.contact .container .form-group textarea {
    padding: 10px 20px;
    height: 180px;
    background: rgba(54, 54, 54, 0.3);
    border-radius: 5px;
    margin-top: 2px;
    margin-bottom: 2px;
    color: #fff;
}


.contact .form-group select {
    background: #292929;
    width: 100%;
    font-size: 14px;
    height: 35px;
    border-radius: 5px;
    color: #fff;
    
}

.contact .form-group .form-row .custom-file label {

    font-size: 14px;
    height: 35px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: rgba(54, 54, 54, 0.3);
    text-align: left;
        color: #fff;
}


.contact .form-group .form-check-input {
    margin-top: -6px;
}



.contact .text-center button[type="submit"] {
    
    background: #191919;
    border: 2px solid #e29b11;
    padding: 5px 20px;
    color: #fff;
    transition: 0.4s;
    border-radius: 40px;
    font-weight: 600;

}



.contact .text-center button[type="submit"]:hover {
    background: #e29b11;
    color: #ffffff;
}


@media(max-width: 768px) {
    .contact .container {
        width: 100%;
        /*    background-color: rgba(7, 7, 7, 0.46);*/
        padding: 5px;
        border-radius: 10px;

    }

    .contact .container .form-group {
        width: 100%;
        background-color: rgba(7, 7, 7, 0.46);
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 20px;

    }
}



.souris {
/*    border: 2px solid #111;*/
    margin-bottom: 0px;
    text-align: center;
    background: #292929;
    margin-top: 0px;
    padding-top: 20px;
    z-index: 0;  
}


.souris i{
/*    border: 2px solid #111;*/
    color: #fff;
    font-size: 23px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #efefef;
    margin-top: 98px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 50px;
    }
}

.breadcrumbs h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 25px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #333333;
    content: "/";
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #e29b11 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    line-height: 25px;
    line-height: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}



/* -------------------------------------
 * sociaux 
-------------------*/
#sociaux {
    background-color: #e29b11;
    padding: 0px 0px 0px 0px;
    /*    height: 26px;*/

}

#sociaux .icone {
    text-align: center;
    display: inline;
}


#sociaux .icone i {
    font-size: 15px;
    padding: 5px 5px 5px 5px;
    margin: 0px 5px 0px 5px;
    text-align: center;
    border-radius: 0px;
    background-color: #e29b11;
    color: #14151c;
    font-weight: 500;

}

#sociaux .icone .social-links i {
    font-family: "Jost", sans-serif;


}

/*

#sociaux .icone a i:hover{
    background-color: #002733;
    color: #e29b11;
    
}
*/



#sociaux .info-wrap {
    /*  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);*/
    padding: 0px 0px 0px 0px;
    align-content: center;
    align-items: center;


}



#sociaux .info:hover i {
    background: #e29b11;
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #101010;
/*    background-image: url("/assets/img/galerie/footer1.jpeg");*/
    background-attachment: fixed ;
    border-top: 2px #e29b11 solid;
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: relative;
    padding: 30px 0 10px 0;
    padding-bottom: 10px;
}

/*
#footer::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index:9 ;
}
*/

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 20px 0;
    z-index: 999;
}

#footer .social-links {
    margin: 10px 0 20px 0;
}

#footer .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    padding: 3px 7px 1px 7px;
    margin-right: 4px;
    border-radius: 30px;
    text-align: center;
    border: 1px #e29b11 solid;
    transition: 0.3s;
}


#footer .social-links a:hover {
    background: #e29b11;
    color: #000;
    text-decoration: none;
}

#footer .img-fluid {
    height: 240px;
}

#footer .copyright {
    margin: 0 0 3px 0;
    font-size: 12px;
}

#footer .credits {
    font-size: 12px;
}