/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #080808;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
body{
    overflow-x: hidden;
}
h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}
sup{
    font-size: 45%;
    color:#E2C799;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.border {
    border: 1px solid #C08261 !important;
}
/*** Button ***/
.btn-hover {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    padding: 20px 0px;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}
.btn-hover.color-3 {
    background-image: linear-gradient(to right, #7e3333, #cf6c37, #C08261, #a32f2f);
    box-shadow: 0 4px 15px 0 #ebb496;
}
.btn-hover.color-7 {
    background-image: linear-gradient(to right, #724444,  #7e3333, #E2C799, #9a3b3b);
    box-shadow: 0 4px 15px 0 #E2C799;
    padding:20px 15px 20px 15px;
}
.btn-hover.color-1 {
    background-image: linear-gradient(to right, #d46262, #bb2c2c, #f7d8a4, #af4242);
    box-shadow: 0 4px 15px 0 #be831c;
}
.btn-hover.color-10 {
    background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a , #FBB03B);
box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
}
.btn-hover.color-6 {
    background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
    box-shadow: 0 4px 15px 0 rgba(83, 176, 57, 0.75);
}
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
#nav-tagline{
    color:rgb(252, 233, 197);
    font-weight:800;
    font-size:18px;
}
#heading-section {
    font-size: 28px;
    color: rgb(104, 30, 30); }
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #3f1c0de6!important;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 0px 0px 8px #888888;
    overflow-y: auto; /* Enable scrolling within the menu if it's too long */
  }
  .sidenav ul
  {
    list-style-type: none;

  }

  .sidenav #side_ul {
    margin-top: 40px;
  }
  .li-color{
    color: #24d491;
  }
#top-nav-a{
    margin-top:65px;

}
  .sidenav a {

    padding: 8px 8px 8px 16px;
    text-decoration: none;
    font-size: 22px;
    font-weight:600;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;

  }
.navbar-light .navbar-toggler{
border: none !important;
outline: none;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

  .sidenav a:hover {

    color: #dad6d6;
  }

  .sidenav::-webkit-scrollbar {
    display: none;
  }


    .animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    }

    .animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    }

    .animated-icon span {
    background: #f3e5f5;
    }

    .animated-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    }

    .animated-icon span:nth-child(2) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    }

    .animated-icon span:nth-child(3) {
    top: 20px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    }

    .animated-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 8px;
    }

    .animated-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
    }

    .animated-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
    }
    #hamburger_nav{
        z-index: 9999;
        padding: 20px 30px 0px 30px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background color */
        z-index: 999;
        display: none;
    }

    .overlay.active {
        display: block;
    }
/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-logo
{
width:95px;
height: auto;

}
#header-carousel{
    margin-top: -120px;
}
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: rgba(15, 66, 41, .6); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    /* background-color: var(--primary);
    border: 10px solid var(--primary); */
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}
.display-3{
    font-size: 100px !important;
}

.page-header {
    background: linear-gradient(rgba(187, 106, 59, 0.822), rgba(168, 110, 83, 0.6)), url(../img/business\ meeting\ blur\ pic.jpg) center center no-repeat;
    background-size: cover;
    padding: 200px 0px 100px 0px;
    margin-top: -120px;
}
.page-industry-header {
    background: linear-gradient(rgba(235, 216, 206, 0.822), rgba(150, 111, 94, 0.6)), url(../img/business\ meeting\ blur\ pic.jpg) center center no-repeat;
    background-size: cover;


}
.page-about-header {
    background: url(../img/business\ meeting\ 2.jpg) center center no-repeat;

    padding: 200px 0px 131px 0px;
    margin-top: -120px;
}
.page-service-header {
    background:  url(../img/business\ meeting\ blur\ pic\ 2.jpg) center center no-repeat;

    background-repeat: no-repeat;
    padding: 90px 90px 80px 90px;
    margin-top: -120px;
}
.page-service-header-two {
    background: linear-gradient(rgba(255, 251, 248, 0.822), rgb(185 86 40 / 11%));
    background-repeat: no-repeat;
    padding: 90px 90px 80px 90px;

}
.service-third-section-background{
    background-color: #33130b;
}
.service-form{
    padding-top: 120px;
    padding-left: 60px;

}
.article-form{

    /* background-image: linear-gradient(to right, rgba(73, 71, 75, 0), rgb(18, 9, 68)); */
    background-image: linear-gradient(rgb(51, 0, 0), rgb(141, 57, 57),rgb(92, 5, 5));
    padding: 25px 25px 25px 25px;
}
.service-shadow{
    padding: 10px 10px 10px 10px ;
    background:linear-gradient(rgba(133, 90, 66, 0.6), rgba(142, 153, 148, 0.6));
}
.service-shadow-service{
    padding: 10px 10px 10px 10px ;
    background: linear-gradient(rgb(233 207 194 / 60%), rgb(159 159 159 / 60%));
}
.about-map-header {
    background-color: rgb(59, 23, 23);
    padding: 40px 60px 40px 60px;


}
#map-footer{
    color:#C08261
}
#about-heading{
font-size: 60px;
}
#service-third-section-heading{
font-size: 60px;
color:#F2ECBE;
}
#service-heading{
    font-size: 60px;
    color:#4e230e;
    }
    #service-fourth-section-heading{
        font-size: 40px;
        color:#4e230e
    }
#about-counter-para{
    font-size: 18px;
}
.service-para{
    font-size: 21px;
    font-weight:600;
}
.service-right-col{
    padding-left: 60px;
    padding-right: 60px;
}
.box-wrap-about-us{
background: #38100b;
padding: 50px 0px;
border-radius: 15px;
}
.box-wrap-resources{

    padding: 50px 50px 50px 50px;
    border-radius: 15px;
    }
    .resource-btn{
        transition: all .5s ease;
        color: #fff;
        border: 3px solid white;
        font-family:'Montserrat', sans-serif;
        text-transform: uppercase;
        text-align: center;
        line-height: 1;
        font-size: 17px;
        background-color : transparent;
        padding: 10px;
        outline: none;
        border-radius: 4px;
    }
    .resource-btn:hover{
        /* margin-bottom: 60px; */
        color: #001F3F;
        background-color: #fff;
    }

.service-box-third-section{
    background: #5f261b;
padding: 50px 0px;
margin-bottom: 20px;
border: 1px solid black;

}
.about-icon-heading-number{
    color: white;
    font-size: 50px;
    margin: 20px 0px;
}
.about-heading-for-icon-box{
    color: white;

}
.section-heading-for-icon-box{
    color: rgb(211, 144, 108);
    margin-top: 20px;
    padding-left:80px;
    padding-right:80px;
    font-size:25px;
}
.section-paragraph-for-icon-box{
    margin-top: 20px;
    font-size:15px;
    font-weight: 500;
    color:white;

}
#section-ul li{
    text-align: left!important;
    color:white;
    font-size:18px;
    font-weight: 500;
    padding: 10px;
}

.service-heading-for-icon-box{
    color: white;
    margin: 20px 8px;

}
.box-wrap-inner{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
#about-container{
    padding: 13px 150px 13px 150px
    }
.about-map-paragraph{
        font-size: 18px;
        font-family: 'Montserrat',sans-serif!important;
        font-weight: 400;
        }
.about-paragraph{
            font-size: 20px;
            font-family: 'Montserrat',sans-serif!important;
            }
#about-counter-heading{
    font-size: 40px;
}
.table td {
    text-align: center;
    padding: 20px 20px 20px 20px;
    font-size: 18px;
    font-weight: 600;
    }
    .table th {
        text-align: center;
        color:#681512;
        padding: 20px 20px 20px 20px;
        font-size: 18px;
        font-weight: 600;
        }
        thead, tbody, tfoot, tr, td, th{
            border: none !important;
        }

        .section-fifth-section-background{
            background-color: #fad5b3;
        }



        .testimonial-class{
            color:white;
            font-size: 20px;
            font-weight: 500;
        }
        .company-testimonial-heading{
            margin-bottom:100px;
            font-size: 40px;
        }
        .testimonial-company{
            margin-top: 50px;
            margin-bottom: 50px;
            padding:80px 80px 80px 80px;

        }
        .testimonial-review{
            background-color:#fbfcfb;
            padding:100px 80px 100px 80px;
        }
        .testimonial-video{
            padding:40px 40px 80px 40px;
        }
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

.textwhite {
    font-size: 55px;

    font-weight: 400;
    line-height: 1.17;
    letter-spacing: -.02727em;
}

.abouttxt{
    font-size: 19px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    color: #193948 !important;
    line-height: 1.45;
    letter-spacing: -.0416em;
}

#news-heading{
    margin-right:100px;
    font-size: 60px;
}
#subsidiary-heading{
    margin-right:100px;
    font-size: 40px;
}
.news-blog{
    padding:50px 50px 50px 50px;
}
.img-industry{
    border-radius: 30px;

}
.news-blog-heading{
    font-size: 25px;
}
.resource-blog-heading{
    font-size: 20px;
}
.projects-blog-heading{
    font-size: 20px;
    margin-top: 40px;
}

.architecture-quotes{
    background-image: linear-gradient(to right, rgba(197, 171, 171, 0.034), rgb(233, 198, 168));

    padding:100px 80px 100px 80px;
}
/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}

/* **Feature Section Start */
.feature-box{
    margin-bottom: 58px;
    margin-top: 50px;
}
.box-widget{
    height:100%;
    width:100%;
}
.feature-text{
    font-size: 50px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    color: #edf2f5;
    letter-spacing: -.0375em;
    line-height: 1.17;
    margin-bottom: 80px;
}
.feature-text-two{
    font-size: 50px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    color: #e4f0ec;
    letter-spacing: -.0375em;
    line-height: 1.17;
    margin-bottom: 58px;
}
.feature-text-three{
    font-size: 50px;
    color: #9A3B3B;

}
.feature-text-four{
    font-size: 50px;
    color: #d3e9e1;
    margin-left:40px;

}
.feature-text-four-bullets{
    margin-left:40px;

}

.shun-embrace{
    background-color: #dfc9a7;
    padding:15px;
}
.feature-text-values{
    font-size: 50px;
    color: #4e240c;
    margin-bottom: 20px;
}
#tm{
    color: #d3e9e1;
}
.bullets li {
    line-height: 1.71;
    font-size: 21px;
    font-weight:600;
    color: white;
    margin-top: 25px;
    position: relative;
}
.feature-desc{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    color: #edf2f5;
    letter-spacing: -.0375em;
    line-height: 1.17;
    margin-top:50px;
}
.feature-desc-two{
    font-size: 20px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    color: #edf2f5;
    letter-spacing: -.0375em;
    line-height: 1.17;
}
.background-container-featured{
    /* background-image: url('../img/blur.jpg'); */
    background-image:linear-gradient(to bottom, rgba(245, 246, 252, 0.103),#573b2c),
    url('../img/blur.jpg');
    width:100%;

    padding:50px 50px 50px 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card-img-top{
    width: 80px;
}
.card{
    padding: 20px;
    background-color: #f9ffed;
}


.background-container-featured-3{
    /* background-image:url('../img/blur.jpg'); */
    background-image:linear-gradient(to bottom, rgba(245, 246, 252, 0.178),#573b2c),
    url('../img/blur.jpg');
    width:100%;
    height:600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.background-image-one{
    /* background-image:url('../img/slide\ 1.jpg'); */
    background-image:linear-gradient(to bottom, rgba(177, 144, 95, 0.52),#332117),
    url('../img/slide\ 1.jpg');
    width:100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
}
.background-image-two{
    background-image:linear-gradient(to bottom, rgba(206, 169, 113, 0.295),#581f1f),
    url('../img/slide\ 2.jpg');

    width:100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
}
.background-image-values{
    background-image:linear-gradient(rgba(212, 204, 202, 0.6), rgba(248, 245, 244, 0.6)),url('../img/slide\ 3.jpg');
    width:100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px;
}
.background-image-vision{
    background-image:url('../img/slide\ 4.jpg');
    width:100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
}
.image-about{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 40px;
    border-radius: 20px;
    background-color: #f8e3c3;
}
.image-map-about{
    padding:40px 100px 40px 100px;
}
.bullets-map-about{
    color:black;
    padding:40px 100px 40px 100px;
    font-size:20px;
    font-weight: 800;

}
.bullets-map-resource{
    color:black;
    padding:40px 100px 40px 100px;

    font-size:20px;
    font-weight: 500;

}
.bullets-map-resource li{

    margin-bottom:22px ;

}

.bullets-map-about ul{
    list-style: none;
}
.bullets-map-about li{

    margin-bottom:22px ;

}

#vision-desc{
    color:white;
    font-size:18px;
    font-weight: 600;
    margin-left:115px;
    margin-top:20px;
}
#values-desc{
    color:rgb(26, 15, 36);
    font-size:18px;
    font-weight: 500;
}
.working-harder{
    padding-bottom: 40px;
    color:white;
}
/* **Feature Section End */
.background-container-featured-2{
    background-image: linear-gradient(180deg,#582121 0%,#83370e 100%);
    width:100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.card2 {

    background-color:transparent;
    text-align: center;
}
.feature-heading{
    padding-bottom: 40px;
    color:white;

}
.feature-heading-black{
    padding-bottom: 40px;
    color:rgb(19, 18, 18);

}
.feature-heading-two{
    padding-bottom: 40px;
    color:rgb(10, 7, 7);
    font-size:30px;

}
.feature-summary{
 font-size: 400;
    color: #290808;
    font-size:20px;
    font-family: 'Montserrat', sans-serif !important;
}
.feature-summary-black{
 font-size: 400;
    color: #2e0b0b;

}
/*** Facts & Quote ***/
.section-facts,
.quote {
    background: rgba(172, 100, 41, 0.6);
}

/*** Industries ***/
.industry-heading
{
    font-size: 45px;
}
.industry-sub-heading{
    font-size: 35px;
}
.industry-paragraph{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif !important;
    margin-bottom: 80px;
}
.industry-list{
    margin-bottom: 80px;
}

.industry-item {
    position: relative;
    text-align: center;
}
.industry-item .industry-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.industry-item .industry-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.industry-item:hover .industry-img img {
    transform: scale(1);
}

.industry-item .industry-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.industry-item:hover .industry-text {
    background: rgb(247, 244, 230);
}

.industry-item .industry-text h4,
.industry-item .industry-text p {
    transition: .3;
}

.industry-item:hover .industry-text h4 {
    color: #423e3e;
}

.industry-item:hover .industry-text p {
    color: var(--light);
}

.industry-item .industry-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.industry-item:hover .industry-text .btn-square {
    background: var(--light);
}

.industry-item .industry-text .btn {
    width: 28px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: rgb(243, 220, 201);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.industry-item:hover .industry-text .btn {
    width: 112px;
}


.industry-section-bg{
    background-image: url('../img/blur.jpg');

    padding:80px 100px 80px 100px;
}
.industry-section-development{
    padding:40px 40px 40px 40px;
}
#industry-para{
    margin-left: 100px;
    margin-top:60px;
    color:white;
    font-size:20px;
    font-weight:600;
}
/*** Service ***/
.btn-service{
    display: block;
  width: 100%;
  border: none;
  background-color: #36100d;
  color:#d4a64f;
  font-size: 22px;
  font-weight:600;
  padding: 14px 28px;

  cursor: pointer;
  text-align: center;
}
.btn-article{
    display: block;
  width: 100%;
  border: none;
  background-color: #270202;
  color:#c6d3ce;
  font-size: 22px;
  font-weight:600;
  padding: 14px 28px;
  border: 2px solid black;
  border-color: #e7e7e7;

  cursor: pointer;
  text-align: center;
}



.service-item {
    position: relative;
    text-align: center;
}
.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(230, 238, 234, 0.6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #423e3e;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 28px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #f3f2e7;
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}
/*** Join Our Team ***/
.team-des{
font-size:18px;
font-family: 'Montserrat', sans-serif !important;
padding:20px 20px 20px 20px;
}
.team-des p{
    margin-bottom: 20px;
}
.quote-section-bg{
    background-image:url(../img/business\ meeting\ blur\ pic.jpg);

}
#subcontracting_form label{
font-weight:600;
}

.subcontracting-des{
    font-size: 20px;
    font-family: 'Montserrat', sans-serif !important;
    margin-top:200px;
    color:#641d13;
    font-weight:600;
}
.resources-events-heading{
    margin-bottom:60px;
    font-size: 40px;
}
#resources-events-para{
    color:rgb(102, 35, 35);
    font-size:18px;
    font-weight: 600;
    margin-bottom:100px;
}
.events-bg{
    padding:200px 100px 200px 100px;
}
#events-bg-news{
    background-image:linear-gradient(rgba(114, 65, 27, 0.822), rgba(73, 15, 8, 0.808)),url(../img/in\ the\ news.jpg);
}
#events-bg-letter{
    background-image:linear-gradient(rgba(114, 65, 27, 0.822), rgba(73, 15, 8, 0.808)),url(../img/newsletter.jpg);
}
#events-bg-events{
    background-image:linear-gradient(rgba(114, 65, 27, 0.822), rgba(73, 15, 8, 0.808)),url(../img/events.jpg);
}
#events-bg-resources{
    background-image:linear-gradient(rgba(114, 65, 27, 0.822), rgba(73, 15, 8, 0.808)),url(../img/Resources.jpg);
}
.resource-heading-for-icon-box{
    font-size: 50px;
    font-weight: 600;
    color:white;
    margin-bottom: 30px;
}
/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--dark);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(53, 3, 3);
    background: rgb(226, 155, 97);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background:rgb(53, 3, 3);
    color: white;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer-article-heading{
    color: white;
    font-size: 18px;
    font-weight: 600;
}
#footer-inner{
    padding: 100px 40px 50px 40px;
}
.footer-article-para{
    color: white;
    font-size: 15px;
    font-weight: 400;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.bg-dark{
    background-color: #314665 !important;
}
.bg-footer{
    background-color: #3d1616 !important;
}
.bg-custom{
    background-color: #F2ECBE !important;
}
.footer-logo{
    width: 100px;
    margin-bottom: 30px;
}
/*
.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
} */

.footer-copyright{
    color:white;
}
.footer-company-link{
    color: #FFD900;
}
.company-heading{
    color:#9A3B3B;
}
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.social-heading{
    text-align: right;
    padding-right:50px;
}
.social-media-icon{
    text-align: right;
    padding-right:50px;
    margin-bottom:50px;
}
.social {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
  }

  .social:hover {
      opacity: 0.7;
      color: white;
  }

  .fa-facebook {
    background: #3B5998;
    color: white;
  }

  .fa-twitter {
    background: #55ACEE;
    color: white;
  }



  .fa-linkedin {
    background: #007bb5;
    color: white;
  }



  .fa-instagram {
    background: #125688;
    color: white;
  }
  .fa-pinterest {
    background: #cb2027;
    color: white;
  }

.about-padding{
    padding: 50px 50px 50px 50px;
}
.industry_bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgb(254, 255, 252), rgba(255, 253, 252, 0.904)), url(../img/asset_home_bg.jpg);
}

  /****************************************************************************************************************************************************
  Mobile Responsive Start ********************************************************************************************************************************************************************/
  @media (min-width: 200px) and (max-width: 768px){
    /* body{
        overflow-x: hidden;
    } */
    .feature-text-four{
        font-size: 30px;
        color:#f5ddb4;

    }
    .btn-hover.color-1{
        display: none;
    }
    #hamburger_nav{
        padding: 0px;
        background: rgb(82, 26, 26);
    }
    #header-carousel{
        margin-top: 0px;
    }
    .textwhite{
        font-size: 25px;
    }
    .about-padding{
        padding: 0px;
    }
    .background-container-featured{
        padding: 20px 10px 20px 10px;
    }
    .feature-text {
        font-size: 25px;
        margin-bottom: 30px;
        text-align: start;
        color:#f8e8c6
    }
    .feature-desc{
        margin-top: 0px;
        font-size: 18px;
        font-weight: 500;
        text-align: start;
        color:#dad7d1
    }
    #journey-mobile-responsive{
        padding: 0px !important;
    }
    .feature-text-two{
        font-size: 25px;
        margin-bottom: 32px;
        text-align: start;
    }

    .background-container-featured-2{
        background-image: linear-gradient(180deg,#582121 0%,#83370e 100%);
        width:100%;
padding:20px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

.feature-text-three{
    font-size: 25px;
    margin-bottom: 32px;
     /* text-align: start; */
}
.feature-text-four{
    font-size: 25px;
    margin-bottom: 32px;
     /* text-align: start; */
}
.bullets li{
    font-weight: 600;
    font-size: 19px;
}
.footer-article-heading {
margin-top: 20px;
}
.feature-summary{
    font-size: 18px;
}

.page-about-header {
    padding: 200px 0px 50px 0px;
}
#news-heading{
    margin-right:0px;
    font-size: 50px;
}












    /* Service */
    #service-third-section-heading{

        font-size: 25px;
        padding-top: 20px;
    }
    .about-paragraph{
font-size: 18px;
     }
    .page-service-header-two {

       padding:0px;
    }
    #service-third-section-heading{
        font-size: 25px;
        text-align: center;
    }
    #about-container{
        padding:0px;
    }
    #service-heading{
        font-size: 25px;
        text-align: start;
        margin-bottom: 20px;
    }
.bullets-map-about{
    padding:0px;
    font-size:17px;
    font-weight: 600;
}

.bullets-map-about li{

    margin-bottom:18px ;

}
.section-heading-for-icon-box{
    font-size: 20px;

    padding-left:20px;
    padding-right:20px;
}
#section-ul li{


    font-size:15px;

}
#service-fourth-section-heading{
    font-size:25px;
}
.service-form {
    padding-top: 20px;
    padding-left: 2px;
    padding-right: 2px;
}

.service-para {
    margin-top: 20px;
    font-size: 19px;
    font-weight: 600;
}
.image-map-about {
    padding:0px;
}









































  }

   /****************************************************************************************************************************************************
  Mobile Responsive End ********************************************************************************************************************************************************************/




    /****************************************************************************************************************************************************
  Tablet Responsive Start ********************************************************************************************************************************************************************/
  @media (min-width: 768px) and (max-width: 1024px){

    body{
        overflow-x: hidden;
    }
  }



      /****************************************************************************************************************************************************
  Tablet Responsive End ********************************************************************************************************************************************************************/


































