/*******************************************************
* © Copyright 2NCORPORATE SARL 2020. All Rights Reserved****
* DEVELOPED AND DESIGNED BY TCHINDA IGOR****************
* ******************************************************
********************************************************/

body {
    background: #fff;
    color: #666666;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #C88F38;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #C88F38;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}


/* Back to top button */

.slogan {
    font-family: Product Sans;
    color: #fff;
    font-weight: bold;
}

.flag {
    padding-left: 20px;
}

.flag a {
    margin-left: 15px;
   padding-top: 2px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #C88F38;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
}


/* Prelaoder */

#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 #f2f2f2;
    border-top: 6px solid #C88F38;
    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% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 30px 0;
    height: 92px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled {
    background: url("../img/cta.jpg");
    padding: 20px 0;
    height: 82px;
    transition: all 0.5s;
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
    padding-left: 10px;
    border-left: 4px solid #C88F38;
}

#header #logo img {
    padding: 0.5px;
    margin: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 13, 10, 0.3);
    overflow: hidden;
    padding: 0;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#hero .carousel-item::before {
    content: '';
    background-color: rgba(10, 13, 10, 0.3);
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#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: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .carousel-indicators li {
    cursor: pointer;
    opacity: 1;
}

#hero .carousel-indicators .active {
    background-color: #C88F38;
}

#hero .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #C88F38;
    margin-bottom: 0px;
    margin: 10px;
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #C88F38;
}

#more {
    display: none;
}

#myBtn :hover {
    background: #C88F38;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
     .nav-menu-container{
        margin-top: 0px 10px;
        position: relative;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}


/* About Us Section
--------------------------------*/

#about {
/*    background: url("../img/about-bg.jpg") center top no-repeat fixed;*/
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    margin: -10px 0;
}

#about::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

#about .container {
    position: relative;
    z-index: 10;
}

#about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

#about .about-col .img {
    position: relative;
}

#about .about-col .img img {
    border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
    width: 64px;
    height: 52px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #C88F38;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc( 50% - 32px);
    bottom: -30px;
    transition: 0.3s;
}

#about .about-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}

#about .about-col:hover .icon {
    background-color: #fff;
}

#about .about-col:hover i {
    color: #C88F38;
}

#about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
}

#about .about-col h2 a {
    color: #000;
}

#about .about-col h2 a:hover {
    color: #C88F38;
}

#about .about-col p {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
    /* margin-right: -30px;
margin-left: -30px; */
}


/* about-us */

#abt #about-us {
    background-color: aliceblue;
    color: #111;
    margin-right: -30px;
    margin-left: -30px;
    line-height: 30px;
}


/*--------------------------------------------------------------
# transport
--------------------------------------------------------------*/

.transport ul {
    list-style: none;
    padding: 0;
}

.transport-section {
    background-color: honeydew;
}

.transport-section:hover {
    background-color: #ddecf5;
}

.transport ul li {
    padding-bottom: 2px;
}

.transport ul li i {
    color: #8fc04e;
    font-size: 20px;
    padding-right: 4px;
}

.transport .transport-section:hover .transport-body {
    border-color: #8fc04e;
}

.transport ul {
    padding-right: 4px;
    color: #111;
}

.transport p {
    color: #111;
}

.transport p:last-child {
    margin-bottom: 0;
}

.transport * {
    color: #111;
}

.whyus p {
    margin-left: 10px;
}

.whyus img {
    height: 650px;
    width: 850px;
}


/*contact form section?*/

.main {
    width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    border: 5px solid #C88F38;
    border-left: 40px solid #C88F38;
    box-shadow: 1px 2px 10px #555;
}

.info {
    width: 100%;
    background-color: #C88F38;
    padding: 7px;
    text-shadow: 1px 1px 1px #222;
    color: #fff;
    font-size: 20px;
}

.form-box {
    padding: 20px;
    background-color: #eee;
}

label {
    color: #111;
    font-size: 18px;
    font-weight: 500;
}

.inp,
.msg-box {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    margin-bottom: 5px;
    border-radius: 5px;
    border: 2px solid #C88F38;
    font-weight: bold;
    color: #C88F38;
    border-right: 15px solid #111;
    border-left: 15px solid #111;
    resize: none;
}

.msg-box {
    height: 80px;
}

.inp:focus,
.msg-box:focus {
    outline: none;
    border: 2px solid #8fc04e;
    border-right: 15px solid #8fc04e;
    border-left: 15px solid #8fc04e;
}

.sub-btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    border: none;
    background: linear-gradient(#C88F38, #111);
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    text-shadow: 1px 1px 1px #444;
    font-weight: 700;
}

.sub-btn:hover {
    background: linear-gradient(#111, #C88F38);
    opacity: 0.8;
    transition: all ease-out 0.2s;
}

.sub-btn:focus {
    outline: none;
}

@media(max-width: 720px) {
    .main {
        width: 90%;
    }
}


/* contact-action  */

.contact-action * {
    padding-left: 0%;
    padding-right: 0%;
    background-color: aliceblue;
    font-family: "Times New Roman", Times, serif;
}

.contact-action h1 {
    font-size: 58px;
    text-align: center;
    font-weight: 800;
}

.contact-action p {
    font-size: 40px;
    color: #332200;
    font-weight: 400;
}

.contact-action a {
    font-size: 58px;
    text-align: center;
    font-weight: 800;
    padding: 15px 32px;
    color: #332200;
}


/* quatation-area */

.quotation_area {
    padding: 120px 0;
    position: relative;
    background-color: #8fc04e;
}

.quotation_area.ex_margin {
    margin-bottom: 180px;
}

@media (max-width: 767px) {
    .quotation_area.ex_margin {
        margin-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .quotation_area {
        padding: 80px 0;
    }
}

.cta-btn {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    border: 2px solid #8fc04e;
    color: #111;
}

.cta-btn:hover {
    background: #8fc04e;
    border: 2px solid #8fc04e;
    color: #111;
}

.quotation_area::before {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    bottom: 0;
    background-image: url(../img/transport/transport.jpg );
    background-repeat: no-repeat;
    content: '';
    background-size: cover;
}

.quotation_area .quotation_text {
    border: 1px solid #f1f1f1;
    padding: 80px 90px;
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .quotation_area .quotation_text {
        padding: 30px;
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .quotation_area .quotation_text {
        padding: 30px 40px;
    }
}

.quotation_area .quotation_text .quotation_info h3 {
    font-size: 48px;
    color: #000000;
    line-height: 58px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .quotation_area .quotation_text .quotation_info h3 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .quotation_area .quotation_text .quotation_info h3 {
        font-size: 30px;
        line-height: 40px;
    }
}

.quotation_area .quotation_text .quotation_info p {
    font-size: 16px;
    color: #484848;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 55px;
}

@media (max-width: 767px) {
    .quotation_area .quotation_text .quotation_info p {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .quotation_area .quotation_text .sayhello {
        margin-top: 20px;
    }
}

.quotation_area .quotation_text .sayhello .icon i {
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #cccccc;
    color: #8fc04e;
    text-align: center;
    line-height: 70px;
    font-size: 36px;
}

@media (max-width: 767px) {
    .quotation_area .quotation_text .sayhello .icon i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 15px;
    }
}

.quotation_area .quotation_text .sayhello .num {
    padding-left: 40px;
}

@media (max-width: 767px) {
    .quotation_area .quotation_text .sayhello .num {
        padding-left: 20px;
    }
}

.quotation_area .quotation_text .sayhello .num span {
    display: block;
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-family: "Roboto", sans-serif;
}

.quotation_area .quotation_text .sayhello .num h3 {
    font-size: 24px;
    font-weight: 700;
    color: #8fc04e;
    margin-top: 7px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .quotation_area .quotation_text .sayhello .num h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .quotation_area .quotation_text .sayhello .num h3 {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #353535;
    margin: 0 3px;
    padding-top: 7px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: rgba(143, 192, 78, 0.8);
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    background: #8fc04e;
}

.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #353535;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #8fc04e;
    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 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #eff7f6;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.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: #8fc04e!important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    display: table;
    width: 100%;
    background: #000;
}

#intro .carousel-item {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .carousel-background img {
    max-width: 100%;
}

#intro .carousel-content {
    text-align: center;
}

#intro h2 {
    margin-top: 90px;
    color: #fff;
    margin-bottom: 15px;
    font-size: 48px;
    font-weight: 700;
}

#intro p {
    width: 80%;
    margin: 0 auto 60px auto;
    color: #fff;
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #C88F38;
    margin-bottom: 0px;
    margin: 10px;
}

#intro .btn-get-started:hover {
    background: #fff;
    color: #C88F38;
}

#more {
    display: none;
}

#myBtn :hover {
    background: #C88F38;
}


/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}


/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
    margin-top: 15px;
}


/* for normal days */

#dates {
    transition: 0.3s;
    display: inline-block;
    font-size: 13px;
    text-transform: none;
    text-align: right;
    color: #C88F38;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}


/* for saturday */

#date {
    transition: 0.3s;
    display: inline-block;
    font-size: 13px;
    text-transform: none;
    text-align: right;
    color: #C88F38;
    font-weight: 400;
}

locate,
PB,
tel {
    transition: 0.3s;
    display: inline-block;
    font-size: 13px;
    text-transform: none;
    text-align: right;
    color: #C88F38;
    font-weight: 400;
    font-family: Arial, Helvetica, sans-serif;
}

#topbar {
    background: #1c1c1c;
    padding: 10px 0;
    font-size: 14px;
    color: #9b9b9b;
}

#topbar .contact-info a {
    line-height: 1;
    color: #9b9b9b;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #fff;
}

#topbar .contact-info i {
    color: #9b9b9b;
    padding: 4px;
}

#topbar .contact-info .icofont-phone {
    padding-left: 20px;
}

#topbar .social-links a {
    color: #9b9b9b;
    padding: 4px 0 4px 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a:hover {
    color: white;
}

#topbar .social-links a:first-child {
    border-left: 0;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 0px 10px;
    transition: 0.3s;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #C88F38;
    text-decoration: none;
}

.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: rgb(15, 15, 15);
    box-shadow: 0px 0px 30px rgba(190, 207, 247, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.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: #f3fafd;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #C88F38;
}

.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;
}

@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 {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #ddecf5;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #C88F38;
    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: "\eaa0";
}

.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-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    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: #fff;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/* for dates ending  */

.nav-menu ul li:hover>a {
    color: #C88F38;
}

.nav-menu ul ul {
    margin: 0;
}


/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #C88F38;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}


/* Section with background
--------------------------------*/

.section-bg {
    background: #f7f7f7;
}


/* Featured Services Section
--------------------------------*/

#featured-services {
    background: #000;
}

#featured-services .box {
    padding: 30px 20px;
}

#featured-services .box-bg {
    background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
    color: #C88F38;
    font-size: 48px;
    display: inline-block;
    line-height: 1;
}

#featured-services h4 {
    font-weight: 400;
    margin: 15px 0;
    font-size: 18px;
}

#featured-services h4 a {
    color: #fff;
}

#featured-services h4 a:hover {
    color: #C88F38;
}

#featured-services p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}


/* Services Section
--------------------------------*/

#services {
    background: #fff;
    background-size: cover;
}

#services .box {
    margin-bottom: 30px;
}

#services .icon {
    float: left;
}

#services .icon i {
    color: #C88F38;
    font-size: 36px;
    line-height: 1;
    transition: 0.5s;
}

#services .title {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: #111;
}

#patner .title h3 {
    margin-left: 60px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    color: #111;
}


/* Call To Action Section
--------------------------------*/

#call-to-action {
    background: url("../img/calltoaction.jpg") fixed center center;
    background-size: cover;
    padding: 60px 0;
    border-radius: 50px;
}

#call-to-action h3 {
    color: #111f;
    font-size: 28px;
    font-weight: 700;
}

#call-to-action p {
    color: #111;
    font-weight: 700;
}

#call-to-action .cta-btn {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #C88F38;
    color: #111;
}

#call-to-action .cta-btn:hover {
    background: #C88F38;
    border: 2px solid #C88F38;
    color: 111;
}


/* Call To Action Section
--------------------------------*/


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    background: #fff;
    padding: 0 0 60px 0;
}

.counts .counters h1 {
    font-size: 48px;
    display: block;
    color: #8fc04e;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    background: url("../img/calltocontact.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0;
}

#skills {
    padding: 60px 0;
}

#skills .progress {
    height: 35px;
    margin-bottom: 10px;
}

#skills .progress .skill {
    font-family: "Open Sans", sans-serif;
    line-height: 35px;
    padding: 0;
    margin: 0 0 0 20px;
    text-transform: uppercase;
}

#skills .progress .skill .val {
    float: right;
    font-style: normal;
    margin: 0 20px 0 0;
}

#skills .progress-bar {
    width: 1px;
    text-align: left;
    transition: .9s;
}


/* section title */

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: #8fc04e;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}


/*--------------------------------------------------------------
# Ourcars
--------------------------------------------------------------*/

.Ourcars {
    border-radius: 50px;
    border: 1px solid #e5f0d5;
}

.Ourcars .icon-box {
    text-align: center;
    border: 1px solid #e5f0d5;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.Ourcars .icon-box .icon {
    margin: 0 auto;
    width: 74px;
    height: 74px;
    background: #f3f8ec;
    border-radius: 70px;
    border: 1px solid #d6e8bf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
}

.Ourcars .icon-box .icon i {
    color: #bfdb99;
    font-size: 40px;
    transition: ease-in-out 0.3s;
}

.Ourcars .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.Ourcars .icon-box h4 a {
    color: #353535;
    transition: ease-in-out 0.3s;
}

.Ourcars .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.Ourcars .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.Ourcars .icon-box:hover h4 a,
.Ourcars .icon-box:hover .icon i {
    color: #8fc04e;
}

.Ourcars .icon-box:hover .icon {
    border-color: #8fc04e;
}

.Ourcars .title h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.Ourcars .title p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}


/*--------------------------------------------------------------
# Realisations
--------------------------------------------------------------*/

.Realisations {
    padding-bottom: 30px;
}

.Realisations #Realisations-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

.Realisations #Realisations-flters li {
    cursor: pointer;
    margin: 0 12px 5px 12px;
    display: inline-block;
    padding: 0 4px 6px 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #444;
    background: white;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #fff;
    font-family: "Roboto", sans-serif;
    border-radius: 50px;
}

.Realisations #Realisations-flters li:hover,
.Realisations #Realisations-flters li.filter-active {
    border-color: #8fc04e;
    color: #C88F38;
    font-size: 19px;
}

.Realisations .Realisations-item {
    background: rgba(10, 13, 10, 0.3);
    overflow: hidden;
    min-height: 200px;
    position: relative;
    margin: 0 0 30px 0;
    border-radius: 10px;
}

.Realisations .Realisations-item img {
    transition: all 0.3s ease-in-out;
}

.Realisations .Realisations-item .Realisations-info {
    opacity: 0;
    position: absolute;
    transition: all .3s linear;
    text-align: center;
    top: 10%;
    left: 0;
    right: 0;
}

.Realisations .Realisations-item .Realisations-info h3 {
    font-size: 22px;
}

.Realisations .Realisations-item .Realisations-info h3 a {
    color: #fff;
    font-weight: bold;
}

.Realisations .Realisations-item .Realisations-info a i {
    color: #93fd09;
    font-size: 24px;
    margin-bottom: 10px;
}

.Realisations .Realisations-item:hover img {
    opacity: 0.4;
    transform: scale(1.1);
}

.Realisations .Realisations-item:hover .Realisations-info {
    opacity: 1;
    top: calc(50% - 30px);
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .box {
    padding: 50px 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.3s;
}

.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #8fc04e;
}

.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #111;
}

.why-us .box p {
    color: #353535;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.why-us .box:hover {
    background: #8fc04e;
    padding: 30px 30px 70px 30px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
    color: #fff;
}


/* WORKS-AREA */

.works_area {
    position: relative;
}

@media (max-width: 767px) {
    .works_area {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .works_area {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

.works_area::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 546px;
    background: #F5FBFF;
    content: '';
}

.works_area .thumb img {
    width: 100%;
}

.works_area .work_info {
    margin: 30px 0;
}

.works_area .work_info h3 {
    font-size: 30px;
    font-weight: 500;
    color: #001D38;
}

.works_area .work_info ul {
    list-style: none;
}

.works_area .work_info ul li i {
    color: #8fc04e;
    font-size: 20px;
    font-weight: 500px;
    padding-right: 2px;
}

.works_area .work_info p {
    color: #596672;
    margin-top: 12px;
    margin-bottom: 38px;
}

.negoce .col-xl-4:nth-child(1) .single_prise:before {
    background-image: url(../img/negoce/presentation.jpg);
}

.negoce .col-xl-4:nth-child(3) .single_prise:before {
    background-image: url(../img/negoce/promotion.jpg);
}

.negoce .single_prise {
    position: relative;
    z-index: 0;
    padding: 40px 50px;
}

@media (max-width: 767px) {
    .negoce .single_prise {
        padding: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .negoce .single_prise {
        padding: 20px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .negoce .single_prise {
        padding: 20px;
    }
}

.negoce .single_prise .prise_header h5 {
    font-size: 30px;
    color: #001D38;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    padding-left: 45px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.negoce .single_prise .prise_header h5::before {
    height: 3px;
    width: 32px;
    background: #FFD35A;
    position: absolute;
    left: 0;
    top: 50%;
    margin-bottom: -1px;
    content: '';
    position: absolute;
}

.negoce .single_prise .prise_header .prise_text {
    padding-left: 45px;
    margin-bottom: 20px;
    opacity: 0;
    color: #EAEAEA;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width: 767px) {
    .negoce .single_prise .prise_header .prise_text {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .negoce .single_prise .prise_header .prise_text {
        margin-bottom: 15sspx;
    }
}

.negoce .single_prise .prise_number {
    font-size: 179px;
    font-weight: 500;
    color: #E5E8EA;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    line-height: 1;
}

@media (max-width: 767px) {
    .negoce .single_prise .prise_number {
        font-size: 90px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .negoce .single_prise .prise_number {
        font-size: 90px;
    }
}

.negoce .single_prise:before {
    background-image: url(../img/negoce/negoce.jpg);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.negoce .single_prise:after {
    background: #001D38;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    opacity: .6;
    opacity: 0;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.negoce .single_prise:hover::before {
    opacity: 1;
}

.negoce .single_prise:hover::after {
    opacity: .6;
}

.negoce .single_prise:hover .prise_header .prise_text {
    opacity: 1;
}

.negoce .single_prise:hover .prise_header h5 {
    color: #fff;
}

.negoce .single_prise:hover .prise_number {
    color: #fff;
    opacity: .20;
}


/* electric */

@media (max-width: 767px) {
    .electric {
        padding: 50px 0 20px 0;
    }
}

.electric .single_service {
    margin-bottom: 30px;
    padding-bottom: 40px;
    text-align: center;
}

.electric .single_service .thumb {
    overflow: hidden;
    position: relative;
}

.electric .single_service .thumb::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #8fc04e;
    opacity: 0;
    position: absolute;
    z-index: 2;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    content: '';
}

.electric .single_service .thumb img {
    width: 100%;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.electric .single_service .service_info {
    margin-top: 20px;
}

.electric .single_service .service_info h3 {
    margin-bottom: 7px;
}

.electric .single_service .service_info h3 {
    color: #111;
    font-size: 22px;
    font-weight: 700;
}

.electric .single_service .service_info p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
    text-align: justify!important;
}

.electric .single_service:hover .service_info h3 {
    color: #8fc04e;
}

.electric .single_service:hover .thumb img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.electric .single_service:hover .thumb::before {
    opacity: .2;
}


/* Facts Section
--------------------------------*/

#facts {
    background: url("../img/facts-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 0 0;
    position: relative;
}

#facts::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 9;
}

#facts .container {
    position: relative;
    z-index: 10;
}

#facts .counters span {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 48px;
    display: block;
    color: #C88F38;
}

#facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #111;
}

#facts .facts-img {
    text-align: center;
    padding-top: 30px;
}

.elevators i {
    color: #8fc04e;
    font-size: 20px;
    padding-right: 4px;
}

.elavators ul {
    list-style: none;
    padding: 0;
}

.elavators a {
    font-weight: 700;
    font-size: 26px;
    color: #8fc04e;
}


/*--------------------------------------------------------------
# G system
--------------------------------------------------------------*/

.GestionSystem {
    padding-bottom: 10px;
}

.GestionSystem .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.GestionSystem .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.GestionSystem .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.GestionSystem .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.GestionSystem h5 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.GestionSystem .card-title {
    color: #8fc04e;
    transition: 0.3s;
}

.GestionSystem .read-more a {
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.GestionSystem .card:hover img {
    transform: scale(1.1);
}

.GestionSystem .card:hover .card-body {
    border-color: #8fc04e;
}

.GestionSystem .card:hover .card-body .card-title {
    color: #8fc04e;
}

.GestionSystem ul li {
    text-align: justify;
    list-style: none;
    font-weight: 600;
    font-size: 14px;
}

.GestionSystem ul li i {
    color: #8fc04e;
    font-weight: 600;
    font-size: 14px;
}


/*--------------------------------------------------------------
# support
--------------------------------------------------------------*/

.support .container {
    box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
    background: #fff;
}

.support .icon-box+.icon-box {
    margin-top: 50px;
}

.support .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f3f8fa;
    border-radius: 6px;
    transition: 0.5s;
}

.support .icon-box .icon i {
    color: #68A4C4;
    font-size: 32px;
}

.support .icon-box:hover .icon {
    background: #68A4C4;
}

.support .icon-box:hover .icon i {
    color: #fff;
}

.support .icon-box .title {
    margin-left: 95px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.support .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.support .icon-box .title a:hover {
    color: #68A4C4;
}

.support .icon-box .description {
    margin-left: 95px;
    line-height: 24px;
    font-size: 14px;
}

.support .video-box {
    position: relative;
}

.support .video-box img {
    padding-top: 15px;
    padding-bottom: 15px;
}


/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/

.facts .counters span {
    font-size: 48px;
    display: block;
    color: #332200;
    ;
}

.facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
}


/* products Section
--------------------------------*/

#products {
    padding: 20px 0;
    border-radius: 100px;
}

#products #products-flters {
    padding: 0;
    margin: 5px 0 35px 0;
    list-style: none;
    text-align: center;
}

#products #products-flters li {
    cursor: pointer;
    margin: 15px 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #666666;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    border-bottom: 2px solid #fff;
}

#products #products-flters li:hover,
#products #products-flters li.filter-active {
    background: #8fc04e;
    color: #fff;
    border-color: #C88F38;
    font-size: 19px;
}

#products #products-flters li:last-child {
    margin-right: 0;
}

#products .products-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

#products .products-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#products .products-item {
    position: relative;
    height: 360px;
    overflow: hidden;
}

#products .products-item figure {
    background: rgba(255, 255, 255, 0);
    overflow: hidden;
    height: 240px;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

#products .products-item figure:hover img {
    opacity: 0.5;
    transition: 0.8s;
}

#products .products-item figure .link-preview {
    position: absolute;
    display: block;
    opacity: 0;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #8fc04e;
    transition: 0.3s linear;
    border-radius: 10px;
}

#products .products-item figure .link-details {
    margin-top: 70px;
    position: absolute;
    display: block;
    opacity: 0;
    text-align: center;
    background: #8fc04e;
    transition: 0.3s linear;
    border-radius: 10px;
    font-weight: 700;
    color: #111;
}

#products .products-item figure .link-preview i,
#products .products-item figure .link-details i {
    padding-top: 6px;
    font-size: 22px;
    color: #111;
}

#products .products-item figure .link-preview:hover,
#products .products-item figure .link-details:hover {
    background: #8fc04e;
    font-size: 26px;
}

#products .products-item figure .link-preview:hover i,
#products .products-item figure .link-details:hover i {
    color: #fff;
}

#products .products-item figure .link-preview {
    left: calc(50% - 38px);
    top: calc(50% - 18px);
}

#products .products-item figure .link-details {
    right: calc(50% - 38px);
    top: calc(50% - 18px);
}

#products .products-item figure:hover .link-preview {
    opacity: 1;
    left: calc(50% - 44px);
}

#products .products-item figure:hover .link-details {
    opacity: 1;
    right: calc(50% - 44px);
}

#products .products-item .products-info {
    background: #fff;
    text-align: center;
    padding: 30px;
    height: 90px;
    border-radius: 0 0 3px 3px;
}

#products .products-item .products-info h4 {
    font-size: 18px;
    line-height: 1px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
}

#products .products-item .products-info p a {
    color: rgb(34, 33, 33);
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-weight: 900;
}

#products .products-item .products-info p a:hover {
    color: #C88F38;
}


/* #products .products-item .products-info p {
padding: 0;
margin: 0;
color: #b8b8b8;
font-weight: 500;
font-size: 14px;
text-transform: uppercase;
} */


/* Contact Section
--------------------------------*/

#contact {
    padding: 60px 0;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: #C88F38;
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: #000;
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: #999;
}

#contact .contact-info a {
    color: #000;
}

#contact .contact-info a:hover {
    color: #C88F38;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}

#contact .form #sendmessage {
    color: #C88F38;
    border: 1px solid #C88F38;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
}

#contact .form button[type="submit"] {
    background: #C88F38;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    cursor: pointer;
}

#contact .form button[type="submit"]:hover {
    background: #C88F38;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #000;
    padding: 0 0 0 0;
    color: #eee;
    font-size: 14px;
}

#footer .footer-top {
    background: url("../img/cta.jpg");
    padding: 30px 0 0 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
    color: #C88F38;
}

#footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 10px;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    border-left: 4px solid #C88F38;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #eee;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #8fc04e;
    color: white;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #C88F38;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
}

#footer .footer-top h4::before {
    right: 0;
    background: #555;
}

#footer .footer-top h4::after {
    background: #C88F38;
    width: 60px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #ddd;
}

#footer .footer-top .footer-links ul li {
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
    color: #C88F38;
}

#footer .footer-top .footer-contact {
    margin-bottom: 0px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
    background: #C88F38;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: rgb(26, 25, 24);
}

#footer .copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 17px;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #ddd;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
    section .conintro {
        height: 15vh;
    }
    #conintro {
        height: 15vh;
    }
    #intro,
    #intro .carousel-item {
        height: 70vh;
    }
}

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}


/* iPad Pro */

@media (min-width: 1024px) {
    #header #logo {
        padding-left: 20px;
    }
    #intro p {
        width: 60%;
    }
    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }
    #carrent-caro p {
        width: 60%;
    }
    #carrent-caro .carousel-control-prev,
    #carrent-caro .carousel-control-next {
        width: 5%;
    }
    #nav-menu-container {
        padding-right: 10px;
        background: #01010100;
    }
    .footerlogo img {
        height: 200px;
        width: 300px;
    }
}

@media (max-width: 866px) {
    .back-to-top {
        bottom: 15px;
    }
    #header #logo h1 {
        font-size: 28px;
        margin-bottom: 500px;
    }
    #header #logo img {
        max-height: 60px;
    }
    #intro h2 {
        font-size: 28px;
    }
    #carrent-caro h2 {
        font-size: 28px;
    }
    #nav-menu-container {
        display: none;
        background: #000000;
    }
    #mobile-nav-toggle {
        display: inline;
    }
}


/* iPad */

@media (min-width: 866px) {
    #name-menu-container {
        padding-right: 60px;
        background: #3a3838;
        color: red;
    }
    #dates,
    #date {
        margin-left: 1px;
    }
    #dates {
        margin-top: 5px;
        padding-left: 25px;
    }
    #date {
        margin-top: 5px;
        padding-left: 74px;
    }
    locate,
    tel {
        margin-left: 15px;
    }
    .footerlogo img {
        margin-left: -50px;
    }
}

@media (width: 768px) {
    .footerlogo img {
        margin-top: 15px;
    }
}


/* max-width is for mobile view */

@media (max-width: 867px) {
    #date {
        color: #C88F38;
        padding-left: 42px;
        font-size: 15px;
        text-align: left;
        margin-bottom: -5px;
    }
    /* saturday  MOBILE*/
    #dates {
        color: #C88F38;
        font-size: 15px;
        text-align: left;
        padding-left: 25px;
    }
    #transport .transport-col p {
        padding: 0 20px 20px 20px;
        margin-right: 0;
        margin-left: 0;
    }
    PB,
    locate,
    tel {
        display: none;
    }
    /*contact us top div */
    .conintro {
        height: 100vh;
    }
    #conintro {
        height: 100vh;
    }
    #intro,
    #intro .carousel-item {
        height: 100vh;
    }
}

@media (max-width: 768px) {
    .footerlogo img {
        height: 200px;
        width: 300px;
        margin-bottom: -80px;
        margin-top: -50px;
    }
}

@media (min-width: 769px) {
    .footerlogo img {
        height: 220px;
        width: 310px;
        margin-bottom: -80px;
        margin-top: -15px;
    }
}


/* To centralize everything */

}
@media (min-width: 1366px) {
    body,
    #header {
        width: 80%;
        margin: 0 auto;
    }
}

*/
/*------------------------------
3. transport Area
--------------------------------*/

@media (max-width: 990px) {
    .block {
        margin-left: 10px;
        margin-right: 10px;
    }
    .span4 img {
        width: 200px;
        height: 350px;
        width: 100%;
    }
    .row1 {
        margin-top: -25px;
    }
    .column p {
        margin-bottom: 0;
    }
    .column p ol {
        float: left;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .block {
        margin-left: 10px;
        margin-right: 10px;
    }
    .span4 img {
        width: 200px;
        height: 400px;
        width: 100%;
    }
    .row1 {
        margin-top: 500px;
    }
}

@media (min-width: 991px) and (max-width: 1199px) {
    .block .column {
        float: right;
        width: 27%;
        height: 200px;
        font-weight: bold;
        font-size: 12px;
        /* font-size: inherit; */
        padding-right: -50px;
        /* Should be removed. Only for demonstration */
    }
    li {
        color: red;
    }
}

@media (min-width: 992px) {
    /*desktop view */
    .block {
        margin-left: 10px;
        margin-right: 10px;
    }
    .span4 {
        width: 100%;
    }
    .span4 img {
        margin-right: 10px;
        width: 500px;
        height: 355px;
    }
    .span4 .img-left {
        float: left;
        margin-left: -100px;
        margin-right: 25px;
    }
    div ol {
        float: left;
        margin-top: -25px;
    }
    .row1 {
        margin-top: -20px;
    }
    .column {
        width: 29.6%;
        font-size: 13.3px;
        padding-right: -50px;
        float: right;
        height: 180px;
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.048);
    }
    .lists {
        margin-top: -20px;
    }
}

.block .column {
    color: #C88F38;
    /* font-size: inherit; */
    /* Should be removed. Only for demonstration */
}
 

/* Clear floats after the columns */

.block .row1:after {
    content: "";
    display: table;
    clear: both;
    size: 100px;
}

.banner {
    background-color: rgba(0, 0, 0, 0.897);
    color: white;
    width: 107%;
    text-align: center;
    padding: 50px 0;
    font-size: larger;
    font-weight: bolder;
    margin-left: -65px;
}

div.banner {
    color: #C88F38;
    background-color: rgba(0, 0, 0, 0.123);
}

div span {
    float: left;
}