
/*--------------------------------------------------------------
# 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;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    top: 0;
    background: #101010;
    height: 60px;
    padding: 10px 0;
    margin-top: 0px;
}

#header.header-scrolled {
   
}


#header .logo img {
    max-height: 40px;
}

@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 {
    top: 0;
    background: #101010;
    height: 70px;
    padding: 10px 0;
    margin-top: 0px;
}
#header .logo img {
    max-height: 40px;
}
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;



    padding: 0;
    list-style: none;
}

.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: 15px;
    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;
}

/*--------------------------------------------------------------
# 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;
    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: 20px;
}

.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;
    }

}

/*--------------------------------------------------------------
# clients
--------------------------------------------------------------*/


.clients {
    background: rgb(0, 0, 0);
    padding: 0px 0;
    text-align: center;
    margin-bottom: -50px;
    border-bottom: 0px #e29b11 solid;
    
}

.clients img {
    width: 75%;
    opacity: 85%;
/*
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
    transition: all 0.4s ease-in-out;
*/
    display: inline-block;
    padding: 5px 0;
    
}


/*
.clients img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.1);
}
*/
@media (max-width: 768px) {
    .clients img {
        width: 40%;
    }
}
/*--------------------------------------------------------------
# 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 #000000;
    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 {
   /* background-color: #101010;*/
}

.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;

}







/*--------------------------------------------------------------
# article
--------------------------------------------------------------*/
.article {
    margin-top: 0px;
    padding: 0px 0;
    text-align: center;
    align-items: center;
   
}

.article h2{
    margin-bottom: 20px;
}
.article .article-item {
    text-align: center;
   
   
}

.article .article-item .article-wrap{
    text-align: center;
   border-radius: 15px;
/*    border-bottom: 5px solid #e29b11;*/
    margin-bottom: 30px;
}

.article img{
    width: 100%;
    border-radius: 10px;
    align-content: center;
    text-align: center;
}


.article .container button{
    background: #e29b11;
    border: 0;
    margin-top: 10px;
    padding: 5px 20px;
    color: #fff;
    transition: 0.4s;
    border-radius: 40px;
    font-weight: 600;
}
.article .container button:hover{
    background: #191919;
    
}
.article  .chantier{
    width: 70%;
    text-align: center;
    align-items: center;
}
/*
.article img:hover{
    width: 100%;
    border-radius: 10px;
    transform:translateY(5px);
    
}
*/




/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
    background: #fdfdfd;
}
.pricing .box {
    padding: 20px 30px;
    background: #fff;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 5px rgba(20, 20, 20, 0.25);
    margin-bottom: 30px;
    
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #e29b11;
}

.pricing .box h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 25px;
    
}

.pricing .box h5 {
    opacity: 0.5;
    
}


.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #717170;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
    border-bottom: 1px solid #efefef;
}

.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-get-started {
    background: #191919;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .box .btn-get-started:hover {
    background: #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: 10px;
    margin-top: 50px;
    line-height: 25px;
}
.contact h3{
    color: #fff;
    
}
.contact .info-box p {
    padding: 0;
    line-height: 15px;
    font-size: 14px;
    margin-bottom: 0;
    color: #efefef;
}

.contact .container{
    text-align: center;
}
.contact {

    text-align: center;
    padding-top: 10px;
    padding-bottom: 0px;
    margin-top: 50px;
    margin-bottom: 0px
}

.contact .section-title p {
    color: #b2b2b2;
    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: rgba(54, 54, 54, 0.3);
    width: 100%;
    font-size: 14px;
    height: 35px;
    border-radius: 5px;
    
}



.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;

    }
}




/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 0px 0;
    background: #efefef;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 30px;
    }
}



.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 5px 0 5px 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;
    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: #191919;
    border-top: 2px #e29b11 solid;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0 10px 0;
    padding-bottom: 10px;
   
}

#footer h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 0px 0;
    font-style: italic;
}

#footer h3 span{
/*    color: #e29b11;*/
    font-size: 36px;
}
#footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 30px 0;
}

#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: 150px;
    
}

#footer .copyright {
    margin: 0 0 3px 0;
    font-size: 12px;
}

#footer .credits {
    font-size: 12px;
}