@import url('https://fonts.googleapis.com/css?family=Poppins:400,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Satisfy&display=swap');
:root {
    --primarycolor: #f7941d;
    --secondarycolor: #252525;
    --poppinfont: 'Poppins', sans-serif;
    --satisfyfont: 'Satisfy', cursive;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


/* Track */

 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: var(--primarycolor);
    border-radius: 3px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: var(--secondarycolor);
}

html {
    scroll-behavior: smooth;
}

p {
    margin: 0 !important;
    font-family: var(--poppinfont);
}

body {
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

a {
    text-decoration: none;
    color: var(--darkgray) !important;
}

a:hover {
    text-decoration: none !important;
}

ul {
    list-style: none;
    margin: 0 !important;
}

.custom-p-0 {
    padding: 0 !important;
}

.left-section-heading p {
    font-size: 14px;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.left-section-heading h2 {
    text-transform: uppercase;
    font-family: var(--poppinfont);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.left-section-heading .border {
    width: 100px;
    border: 5px solid #f7941d !important;
    float: left;
    margin: -25px 0px 0 185px;
}

.right-section-heading {
    width: 100%;
    text-align: right;
    padding-top: 40px;
}

.right-section-heading p {
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--poppinfont);
    letter-spacing: 3px;
}

.right-section-heading h2 {
    color: white;
    text-transform: uppercase;
    font-family: var(--poppinfont);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.right-section-heading .border {
    width: 100px;
    border: 5px solid #f7941d !important;
    float: right;
    margin: -24px 170px 0 0;
}

.pb-15 {
    padding-bottom: 15px;
}


/* Back To Top */

#back2Top {
    width: 42px;
    height: 38px;
    line-height: 40px;
    overflow: hidden;
    z-index: 1999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 0;
    background: var(--secondarycolor);
    color: var(--primarycolor) !important;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}

#back2Top:hover {
    background: var(--primarycolor);
    color: var(--secondarycolor) !important;
}

.whatsapp-icon {
    position: fixed;
    right: 13px;
    z-index: 10000;
    top: 7px;
}

.whatsapp-icon p {
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
}

.whatsapp-icon img {
    width: 50px;
    height: 50px;
}

.sticky-social-media {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 1999;
}

.sticky-social-media ul li {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
}

.sticky-social-media ul li i {
    font-size: 16px;
    color: #ffffff;
}

.sticky-social-media ul .fb {
    background: #385c8e;
}

.sticky-social-media ul .ins {
    background: linear-gradient( 45deg, #3e3ce5, #cb2164, #f26c2f);
}

.sticky-social-media ul .tw {
    background: #03a9f4;
}

.sticky-social-media ul .lin {
    background: #0479b6;
}

.sticky-social-media ul .tube {
    background: #f61c0d;
}


/* NAVIGATION */

.border-nav {
    border-bottom: 11px solid var(--primarycolor);
    width: 50%;
    position: absolute;
    z-index: 0;
    height: 110px;
}

.navsticky {
    position: fixed;
    top: 0;
    z-index: 1100;
    background: #ffffff;
    width: 100%;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.top-nav-wrapper {
    height: 110px;
    overflow: hidden;
}

nav .logo {
    float: left;
    height: auto;
    margin: 2px 0 2px 0;
}

nav .logo video {
    width: 100%;
}

nav .logo img {
    width: 100%;
}

nav .navigation {
    float: right;
    display: flex;
    background: url(../../img/nav-bg.png);
    padding: 0 0 0 60px;
    height: 100%;
}

nav .navigation ul {
    padding: 33px 15px 0 0;
}

nav .navigation ul li {
    display: inline-block;
    margin: 0 0 0 30px;
    padding: 15px 10px 44px 10px;
}

nav .navigation ul li:hover {
    background: #252525;
    border-radius: 5px 5px 0 0
}

nav .navigation ul li:hover a {
    color: #fff!important
}

nav .navigation ul li a {
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 44px;
}

nav .navigation ul .custom-dropdown .dropdown-link::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    left: 4px;
}

nav .navigation ul .custom-dropdown .custom-dropdown-menu {
    display: none;
    background: #252525;
    position: absolute;
    z-index: 101;
    width: 200px;
    padding: 0 15px;
    margin: 38px 0 0 -10px !important;
}

nav .navigation ul .custom-dropdown .custom-dropdown-menu li {
    display: block;
    margin: 15px 0;
    padding: 0 !important;
}

nav .navigation ul .custom-dropdown .custom-dropdown-menu li a {
    color: #ffffff;
}

nav .navigation ul .custom-dropdown .custom-dropdown-menu li a:hover {
    color: var(--primarycolor) !important;
}

nav .navigation ul .custom-dropdown .custom-dropdown-menu li a {
    text-transform: capitalize;
    font-weight: 400;
}

nav .navigation ul .custom-dropdown:hover .custom-dropdown-menu {
    display: block;
}

.nav-call-btn {
    height: 110px;
    background: var(--secondarycolor);
    padding: 0 15px;
}

.nav-call-btn P {
    font-family: var(--poppinfont);
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    padding: 30px 0 0 0;
    letter-spacing: 3px;
    color: var(--primarycolor);
}

.nav-call-btn h4 {
    color: #ffffff;
    font-family: var(--poppinfont);
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.xs-nav-footer-bg {
    display: none;
}

.xs-menu-contact-details {
    display: none;
}

.navigation-toggle {
    display: none;
}

.close-navigation {
    display: none;
}


/* HEADER SLIDER */

.header-slider .carousel-indicators li {
    background: var(--primarycolor);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    margin-bottom: 10px;
}

.carousel-caption-custom {
    position: absolute;
    top: 30%;
    width: auto;
}

.carousel-caption-custom h2 {
    color: #ffffff;
    font-family: var(--poppinfont);
    font-weight: 700;
    font-size: 64px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}

.carousel-caption-custom span {
    font-family: var(--satisfyfont);
    color: var(--primarycolor);
    font-size: 50px;
    float: right;
    margin: -43px 10px 0 0;
    position: relative;
}

.carousel-caption-custom ul {
    margin: 90px 0 0 0 !important;
}

.carousel-caption-custom ul li {
    display: inline;
    color: #ffffff;
    font-family: var(--poppinfont);
    font-weight: 700;
    font-size: 22px;
    margin: 0 30px 0 0;
}

.carousel-caption-custom ul li:before {
    content: "\f111";
    color: var(--primarycolor);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    margin: 0 10px 0 0;
    position: relative;
    top: -2px;
}

.header-slider video {
    width: 100%;
}

.slider-crain {
    position: absolute;
    bottom: 0;
    left: 15%;
}

.slider-crain img {
    width: 100%;
}

img.custom-w-100.mb-img {
    width: 100%;
}

.header-form-wrap {
    background: #ebebeb;
    margin: -7px 0 0 0;
}

.header-form-boxes {
    background: var(--secondarycolor);
    width: 100%;
    padding: 15px;
    margin: -24px 0 0 0;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.header-form-boxes h2 {
    color: var(--primarycolor);
    font-size: 25px;
    font-family: var(--poppinfont);
}

.header-form-boxes button.btb.btn-default {
    background: var(--primarycolor);
    border: none;
    padding: 8px 5px;
    transition: 0.25s;
}

.header-form-boxes button.btb.btn-default:hover {
    background: #ffffff;
    color: var(--secondarycolor);
    font-weight: 600;
}


/* STICKY ENQUIRY FORM */

.sticky-form-wrapper {
    position: fixed;
    top: 19%;
    right: 0;
    z-index: 1999;
}

.sticky-form-second-wrapper {
    position: relative;
}

.enquiry-sticky-form-btn {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    height: 0;
    position: absolute;
    top: 95px;
    right: -55px;
}

.enquiry-sticky-form-btn a {
    font-size: 14px;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    width: 190px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #ffffff !important;
    background: #9c5f15;
    display: block;
}

.enquiry-sticky-form-btn i {
    transform: rotate(90deg);
}

.open-sticky-form {
    display: none;
}

.enquiry-sticky-form {
    width: 370px;
    height: auto;
    background: rgba(156, 95, 21, 0.8);
    padding: 15px;
}

.enquiry-sticky-form h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}

.enquiry-sticky-form h4 i {
    margin: 0px 7px 0 0;
}

.enquiry-sticky-form form {
    width: 100%;
}

.enquiry-sticky-form form *:focus {
    outline: none;
}

.enquiry-sticky-form form select {
    width: 100%;
    border: none;
    padding: 0 7px;
    font-family: var(--poppinfont);
    font-size: 14px;
    height: 42px;
    font-weight: 400;
    margin: 10px 0;
    color: var(--secondarycolor);
}

.enquiry-sticky-form form input {
    width: 100%;
    border: none;
    padding: 0 7px;
    font-family: var(--poppinfont);
    font-size: 14px;
    height: 42px;
    font-weight: 400;
    margin: 10px 0;
    color: var(--secondarycolor);
}

.enquiry-sticky-form form input::placeholder {
    font-family: var(--poppinfont);
    font-size: 14px;
    color: var(--secondarycolor);
}

.enquiry-sticky-form form button {
    width: 100%;
    border: none;
    font-family: var(--poppinfont);
    font-size: 14px;
    height: 42px;
    font-weight: 400;
    margin: 10px 0 0 0;
    color: #ffffff;
    background: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: 0.25s;
}

.enquiry-sticky-form form button:hover {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff
}

.enquiry-sticky-form-btn-close {
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    height: 0;
    position: absolute;
    top: 95px;
    left: -135px;
}

.enquiry-sticky-form-btn-close a {
    font-size: 14px;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    width: 190px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #ffffff !important;
    background: #9c5f15;
    display: block;
}

.enquiry-sticky-form-btn-close i {
    transform: rotate(270deg);
}


/* END STICKY ENQUIRY FORM */

.lg-hide-box {
    display: none;
}

.xs-hide-box {
    display: block;
}

.our-services {
    width: 100%;
    height: auto;
    background: #ebebeb;
    padding: 70px 0 75px 0;
    margin: -5px 0 0 0;
}

.our-services p {
    color: #242424;
    font-family: var(--poppinfont);
    text-align: justify;
}

.our-services .three-icons img {
    display: block;
    padding-top: 20px;
    margin: 0 auto;
}

.our-services .three-icons p {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
    font-family: var(--poppinfont);
    text-transform: capitalize;
    margin: 15px 0 0 0 !important;
    text-align: center;
    margin: 0 !important;
}

.jcb img {
    width: 95%;
    position: absolute;
    top: 172px;
    right: 38px;
}

.box {
    width: 375px;
    min-height: 375px;
    background: #f7941d;
    float: right;
}

.box p {
    text-align: right;
    color: white;
    margin: 15px 23px 0 0 !important;
    margin-bottom: 0px !important;
    font-size: 14px;
    font-family: var(--poppinfont);
    font-weight: 400;
    text-transform: uppercase;
}

.box h2 {
    text-align: right;
    color: white;
    margin: -3px 20px 0 0 !important;
    font-size: 26px;
    font-family: var(--poppinfont);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* WE DEAL*/

.we-deal {
    width: 100%;
    height: auto;
    padding: 50px 0 0 0;
}

.jcb-icon {
    padding: 40px 0;
    width: 100%;
}

.jcb-icon h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: -35px;
    padding-bottom: 25px;
    text-align: center;
    color: var(--secondarycolor);
    font-family: var(--poppinfont);
}

.card {
    position: relative;
    top: 50px;
    left: 0%;
    transform: translate(0%, -50%);
    box-sizing: border-box;
    background: rgba(255, 0, 0, 0);
    border: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    z-index: 7;
    box-shadow: 0px 4px 3px 0px #d6d5d5;
    margin-top: 50px;
    min-height: 200px;
}

.card:hover {
    position: relative;
    left: 0%;
    transform: translate(0%, -50%);
    box-sizing: border-box;
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-top: 2px solid #fbad2b;
    border-bottom: 2px solid #fbad2b;
    box-sizing: border-box;
    transition: 0.3s;
    transform: scaleX(0);
}

.card:hover:before {
    transform: scaleX(1);
}

.card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-left: 2px solid #fbad2b;
    border-right: 2px solid #fbad2b;
    box-sizing: border-box;
    transition: 0.3s;
    transform: scaleY(0);
}

.card:hover:after {
    transform: scaleY(1);
    transition-delay: 0.3s;
}

.card h1 {
    color: #262626;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    z-index: 1;
    padding-top: 20px;
}

.card span.border {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(45deg);
    pointer-events: none;
    box-sizing: border-box;
    border: none !important;
}

.card span.border:hover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    transform: rotate(45deg);
    pointer-events: none;
    box-sizing: border-box;
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.0.20);
}

.card:hover span.border:after {
    transform: scaleY(1);
    transition-delay: 1s;
}

.card h1 span {
    font-size: 36px;
    display: block;
    color: #58c747;
}

.card img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 40px;
}

.view-all .btn-primary {
    color: #fff;
    width: 150px;
    background: #f7941d !important;
    border-color: #f7941d !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 0px !important;
    font-family: var(--poppinfont);
    border: 1px solid transparent !important;
}

.view-all .btn-primary:hover {
    color: var(--primarycolor) !important;
    background: transparent !important;
    border: 1px solid var(--primarycolor) !important;
}


/* EQUIPMENTS SECTION */

.counter-banner {
    width: 100%;
    padding: 50px;
    background-image: url(../../img/counter-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter-banner {
    width: 100%;
    height: auto;
}

.counter-banner p {
    color: white;
    text-align: right;
    font-family: var(--poppinfont);
    font-size: 14px;
}

.number {
    width: 100%;
    height: auto;
}

.number h3 {
    color: #f7941d;
    font-size: 40px;
    font-weight: 700;
    text-align: right;
    padding-top: 50px;
}

.number p {
    font-size: 14px;
    text-align: center;
}


/* END EQUIPMENTS SECTION */


/* CHOOSE US SECTION */

.why-choose {
    width: 100%;
    height: auto;
    padding-top: 50px;
}

.why-choose .left-section-heading .border {
    margin-left: 165px;
}

.five {
    flex: 0 0 20% !important;
    max-width: 25% !important;
}

.five img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.col-lg-3.col-md-12.five p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding-top: 15px;
    font-family: var(--poppinfont);
}


/* END CHOOSE US SECTION */


/* CLIENT SECTION */

.client-section {
    background: #ebebeb;
    padding: 60px 0 40px 0;
}

.client-section-left img {
    width: 100%;
}

.client-section .right-section-heading h2 {
    color: var(--secondarycolor);
}

.client-section .right-section-heading .border {
    margin-right: 155px;
}

.client-section .client-slider .owl-theme .owl-nav button {
    position: absolute;
    bottom: 0;
    display: inline-block;
    zoom: 1;
    margin: 0;
}

.client-section .client-slider .owl-theme .owl-nav button.owl-prev {
    right: 50px;
}

.client-section .client-slider .owl-theme .owl-nav button.owl-next {
    right: 0;
}


/* END CLIENT SECTION */


/* PROJECT SECTION */

.project-section {
    padding: 40px 0;
}

.project-section .left-section-heading {
    margin-bottom: 30px;
}

.project-section .left-section-heading .border {
    margin-left: 135px;
}

.project-section .project-slider .project-slider-box {
    width: 100%;
    height: auto;
    background: #ebebeb;
    padding: 15px !important;
}

.project-section .project-slider .project-slider-box .feature-img img {
    width: 100%;
}

.project-section .project-slider .project-slider-box h4 {
    font-size: 18px;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondarycolor);
    padding: 12px 0 0 0;
}

.project-section .project-slider .project-slider-box h5 {
    font-size: 14px;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primarycolor);
}

.project-section .project-slider .project-slider-box .project-slider-box-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.project-section .project-slider .project-slider-box .project-slider-box-footer p {
    font-size: 14px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    text-transform: uppercase;
}


/* END PROJECT SECTION */


/* TRAINING SECTION */

.traing {
    width: 100%;
    height: auto;
    padding-bottom: 90px;
    background-image: url("../../img/trainig.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.traing h3 {
    color: white;
    padding-top: 90px;
    font-family: var(--poppinfont);
}

.traing h2 {
    color: #f7941d;
    font-size: 64px;
    font-family: var(--poppinfont);
}

.traing p {
    color: white;
    padding-top: 5px;
    font-size: 16px;
    font-family: var(--poppinfont);
    line-height: 28px;
}

.boxes {
    width: 100%;
    height: auto;
    padding: 15px 25px;
    background-color: #f7941d;
    position: absolute;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.form-box {
    width: 100%;
    margin-top: 50px;
}

.traing img {
    width: 80%;
    margin-left: auto;
    display: block;
}

.form-control {
    display: block;
    width: 25% !important;
    height: calc(1.5em + .75rem + 2px);
    padding: .475rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0 !important;
    margin: 10px 5px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control::placeholder {
    color: var(--secondarycolor) !important;
}

.boxes h2 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    font-family: var(--poppinfont);
}

.boxes h2 span {
    color: white;
}

button.btb.btn-default {
    width: 22%;
    padding: 7px 5px;
    background: black;
    color: white;
    border: 1px solid black;
    font-family: var(--poppinfont);
    font-size: 14px;
}


/* END TRAINING SECTION */


/* NEWS SECTION */

.news-section {
    background: #ebebeb;
    padding: 80px 0 40px 0;
}

.news-section .left-section-heading {
    margin-bottom: 30px;
}

.news-section .left-section-heading .border {
    margin-left: 205px;
}

.news-section .news-item-box {
    background: #ffffff;
    border: 1px solid #f5f5f5;
    padding: 10px;
    width: 100%;
    height: auto;
    margin: 0 0 15px 0;
}

.news-section .news-item-box img {
    width: 100%;
}

.news-section .news-item-box h4 {
    font-size: 14px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    font-weight: 700;
    margin: 10px 0 0 0;
}

.news-section .news-item-box p {
    font-size: 12px;
    color: var(--secondarycolor);
    font-family: var(--poppinfont);
    margin: 5px 0 0 0 !important;
}

.news-section .news-item-box .news-item-box-footer {
    display: flex;
    justify-content: space-between;
}

.news-section .news-item-box .box-footer-border {
    width: 120px;
    border-bottom: 4px solid var(--primarycolor);
    margin: 0px 0 4px 0;
}


/* FOOTER SECTION */

footer {
    width: 100%;
    height: auto;
    background: #f7941d;
    padding-bottom: 10px;
}

footer h2 {
    padding-top: 30px;
    color: white;
    font-weight: 600;
    font-size: 25px;
    font-family: var(--poppinfont);
}

.contact p {
    width: 100%;
    font-size: 12px;
    font-family: var(--poppinfont);
}

footer h4 {
    color: var(--secondarycolor);
    font-size: 12px;
    font-weight: 600;
    padding-top: 10px;
    font-family: var(--poppinfont);
}

footer .for-rent {
    font-weight: 500;
    color: #000000;
}

footer h5 {
    font-size: 12px;
    font-weight: 400;
    padding-top: 15px;
    line-height: 20px;
    font-family: var(--poppinfont);
}

footer li {
    padding-bottom: 10px;
}

footer li a {
    font-size: 14px;
    font-family: var(--poppinfont);
}

.subcribe-box {
    margin-top: 55px;
    width: 100%;
    height: auto;
    background: white;
    padding: 40px 30px 60px 30px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.subcribe-box p {
    font-size: 14px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    letter-spacing: 2px;
}

.subcribe-box h2 {
    color: var(--secondarycolor);
    padding: 0 0 10px 0;
    font-family: var(--poppinfont);
    font-size: 26px;
}

.form-control1 {
    display: block;
    width: 60% !important;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 0 !important;
    background: #f7941d;
    border: none;
    font-family: var(--poppinfont);
    height: 42px;
}

.form-control1::placeholder {
    color: #000 !important;
}

button.btb.btn-default1 {
    width: 30%;
    padding: 6px;
    background: var(--secondarycolor);
    color: white;
    border: none;
    height: 42px;
    font-size: 14px;
    font-family: var(--poppinfont);
}

.social {
    padding-top: 5px;
}

.social span {
    background: white;
    border-radius: 50%;
    padding: 5px 6px;
    margin: 10px 5px;
}

.social span img {
    width: 20px;
    height: 20px;
    margin-top: -7px;
}

s .right {
    padding-right: 0px !important;
}

.footer-img {
    position: absolute;
    bottom: -19px;
    width: 100%;
    right: 45px;
}

.copyright {
    width: 100%;
    height: auto;
    padding: 10px;
    background: #222222;
}

.copyright p {
    color: white;
    font-size: 12px;
    font-family: var(--poppinfont);
    margin: 5px 0 0 0 !important;
}

.copyright span {
    color: #f7941d;
}

.copy {
    width: 100%;
    height: auto;
}

.copy ul {
    text-align: right;
    margin: 0;
    padding: 0;
}

.copy li {
    color: white;
    display: inline-block;
    padding-left: 15px;
}

.copy li a {
    font-weight: 400;
    font-size: 12px;
    font-family: var(--poppinfont);
}


/* END FOOTER SECTION */


/* ---------------------------------------------------
    ABOUT----> HEM
---------------------------------------------------- */

.hem-breadcrumb {
    min-height: 290px;
    position: relative;
}

.hem-breadcrumb-about {
    background: url('../../img/mining-inner-banner.jpg');
    background-size: cover;
    background-position: center;
}

.hem-breadcrumb-heading {
    position: absolute;
    bottom: 15px;
}

.hem-breadcrumb-heading .left-section-heading p {
    color: #ffffff;
}

.hem-breadcrumb-heading .left-section-heading h2 {
    color: #ffffff;
}

.hem-breadcrumb-heading .left-section-heading .border {
    margin-left: 360px;
}


/* ABOUT HEM CONTENT */

.about-hem-content {
    padding: 50px 0;
}

.about-hem-content .about-hem-content-left p {
    font-family: var(--poppinfont);
    font-size: 16px;
    color: var(--secondarycolor);
    text-align: justify;
}

.about-hem-content .about-hem-content-left img {
    margin: 0 76px 0 0;
}

.about-hem-content .about-hem-content-right img {
    width: 100%;
}


/* VISION & MISSION */

.vision-mission {
    padding: 0 0 40px 0;
}

.vision-mission .our-vision {
    background: #ebebeb;
    width: 100%;
    height: auto;
    padding: 20px 20px 40px 20px;
}

.vision-mission .our-vision .left-section-heading .border {
    margin-left: 110px;
}

.vision-mission .vision-img {
    margin: 25px auto;
    border: 2px solid var(--primarycolor);
    width: 200px;
    height: 200px;
    text-align: center;
    line-height: 200px;
}

.vision-mission .vision-img img {
    width: 150px;
    height: auto;
}

.vision-mission .vision-desc p {
    font-family: var(--poppinfont);
    color: #252525;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
}

.vision-mission .our-mission {
    width: 100%;
    height: auto;
    padding: 20px 20px 40px 20px;
}

.vision-mission .our-mission .left-section-heading .border {
    margin-left: 140px;
}


/* OUR EXPERIENCE */

.experience-wrapper {
    padding: 0 0 40px 0;
}

.our-experience {
    text-align: center;
}

.our-experience p {
    font-family: var(--poppinfont);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondarycolor);
    padding: 0 0 10px 0;
}

.our-experience h4 {
    font-family: var(--poppinfont);
    font-size: 25px;
    color: var(--secondarycolor);
    font-weight: 600;
    line-height: 40px;
}

.our-experience span {
    color: var(--primarycolor);
}


/* CORE VALUES */

.core-values {
    padding: 0 0 40px 0;
}

.core-values .left-section-heading .border {
    margin-left: 190px;
}

.core-values .core-value-desc {
    padding: 25px 0 0 0;
}

.core-values .core-value-desc P {
    font-size: 16px;
    color: var(--secondarycolor);
    text-align: center;
}


/* BANK LOGO */

.bank-logo-home {
    padding: 80px 0 40px 0 !important;
}

.bank-logo {
    padding: 5px 0 40px 0;
}

.bank-logo img {
    width: auto;
    height: auto;
    margin: 15px auto;
    display: flex;
}

.bank-logo .left-section-heading .border {
    margin-left: 170px;
}


/* ---------------------------------------------------
    END ABOUT----> HEM
---------------------------------------------------- */


/* ---------------------------------------------------
    START ABOUT FOUNDER----> HEM
---------------------------------------------------- */

.hem-breadcrumb-founder {
    background: url('../../img/founder-banner.png');
    background-size: cover;
    background-position: center;
}

.hem-breadcrumb-founder .left-section-heading .border {
    margin-left: 195px;
}

.founder-about {
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.founder-about img {
    width: 100%;
}

.founder-about span {
    text-align: center;
    padding-left: 15px;
}

.founder-about span .fa {
    text-align: center;
}

.founder-social-icon {
    text-align: center;
}

.founder-social-icon .fa-facebook-f {
    color: #335bff;
}

.founder-social-icon .fa-twitter {
    color: #00adff;
}

.founder-social-icon .fa-linkedin-in {
    color: #0e76a8;
}

.founder-about h2 {
    width: 100%;
    height: auto;
    color: #f7941d;
    font-weight: 650;
    font-family: var(--poppinfont);
    padding-top: 30px;
    font-size: 27px;
}

.founder-about p {
    text-align: center;
    right: 15px;
}

.prara {
    width: 100%;
    height: auto;
}

.prara p {
    text-align: justify;
    padding-top: 10px;
    font-family: var(--poppinfont);
    line-height: 30px;
    padding-right: 0;
}


/* STYLIST TEXT */

.stylis-text {
    width: 100%;
    height: auto;
    margin: 20px 0px 20px 0px;
}

.stylis-text p {
    font-family: var(--satisfyfont);
    font-size: 30px;
    text-align: center;
}

.stylis-text img {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


/* AWARD BOX */

.award .left-section-heading .border {
    margin-left: 195px;
}

.arard-box {
    width: 100%;
    padding-bottom: 40px;
}

.arard-box img {
    width: 100%;
    border: 1px solid #d3d3d3;
    padding: 10px;
    margin-top: 20px;
}

.arard-box h3 {
    font-size: 17px;
    text-align: center;
    padding-top: 15px;
}

.arard-box p {
    text-align: center;
    font-size: 14px;
}


/* ---------------------------------------------------
    END ABOUT FOUNDER----> HEM
---------------------------------------------------- */


/* ---------------------------------------------------
    START ABOUT TEAM----> HEM
---------------------------------------------------- */


/* BREADCRUMB IMG */

.hem-breadcrumb-about-team {
    background: url('../../img/about-team-header.jpg');
    background-size: cover;
    background-position: center;
}

.hem-breadcrumb-about-team .left-section-heading .border {
    margin-left: 152px;
}


/* ABOUT TEAM CONTENT */

.about-team-content {
    padding: 50px 0 0 0;
}

.about-team-content-heading {
    text-align: center;
}

.about-team-content-heading h3 {
    font-size: 26px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    font-weight: 600;
    line-height: 45px;
    letter-spacing: 1px;
}

.about-team-content-heading p {
    font-size: 16px;
    color: var(--secondarycolor);
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 10px 0 0 0;
}

.about-team-content-desc {
    padding: 40px 100px 0 100px;
}

.about-team-content-desc p {
    font-size: 16px;
    color: var(--secondarycolor);
    line-height: 30px;
    text-align: justify;
}

.about-team-content-desc img {
    width: 100%;
}


/* PROFESSIONAL STAFF */

.professional-staff {
    background: #ebebeb;
    padding: 40px 0;
}

.professional-staff .professional-staff-heading {
    text-align: center;
}

.professional-staff .professional-staff-heading h3 {
    font-size: 26px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    font-weight: 600;
    line-height: 45px;
    letter-spacing: 1px;
}

.professional-staff .professional-staff-heading p {
    font-size: 16px;
    color: var(--secondarycolor);
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 10px 0 0 0;
}

.professional-staff .professional-staff-element-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 50px 130px 0 130px;
}

.professional-staff-element .professional-staff-element-count {
    background: var(--secondarycolor);
    color: #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    margin: 0 auto;
}

.professional-staff-element .professional-staff-element-count span {
    font-size: 31px;
    font-weight: 600;
}

.professional-staff-element .professional-staff-element-desc p {
    font-weight: 600;
    font-size: 16px;
    padding: 7px 0 0 0;
    text-align: center;
}


/* ABOUT TEAM LAST */

.about-team-last {
    padding: 50px 150px;
}

.about-team-last p {
    font-size: 16px;
    color: var(--secondarycolor);
    line-height: 30px;
    text-align: justify;
}


/* ---------------------------------------------------
    END ABOUT TEAM----> HEM
---------------------------------------------------- */


/* ---------------------------------------------------
    START SERVICES----> RENTAL
---------------------------------------------------- */

.scrollmenu {
    background-color: #ebebeb;
    overflow: auto;
    white-space: nowrap;
    padding: 5px;
}

.scrollmenu a {
    display: inline-block;
    color: #fff !important;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-size: 14px;
    margin-right: 3px;
    background: #333;
}

.scrollmenu a:hover {
    background: var(--primarycolor);
    color: #fff !important;
}

.equipments-tab .active {
    background: var(--primarycolor);
}

.equipment-type-none {
    display: none;
}

.hem-breadcrumb-rental {
    background: url('../../img/rental-banner.png');
    background-size: cover;
    background-position: center;
}

.hem-breadcrumb-rental .hem-breadcrumb-heading .left-section-heading .border {
    margin-left: 130px;
}

.rental-content {
    width: 100%;
    height: auto;
}

.rental-content p {
    font-family: var(--poppinfont);
}

.rental-content-desc {
    text-align: center;
    padding: 40px 0 0 0;
}

.rental-content .left-section-heading {
    padding: 40px 0 40px 0;
}

.rental-content .left-section-heading .border {
    margin-left: 155px;
}

.kasmir {
    width: 100%;
    height: auto;
    border: 1px solid black;
    padding: 15px;
    margin: 10px 0px 5px 0px;
    min-height: 0px;
}

.backhole {
    width: 100%;
    height: auto;
}

.backhole h2 {
    font-size: 20px;
    font-weight: 700;
    color: black;
}

.backhole p {
    padding: 0px;
    font-size: 13px;
    padding-top: 0px !important;
}

.backhole h5 {
    font-size: 15px;
    font-weight: 500;
}

button.btn.btn-primary {
    float: right;
    background: black;
    border: 0px;
    float: right;
    margin: -45px 10px;
    background: black;
    border: none;
    border-radius: 0px;
}


/* CONSTRUCTION */

.cusntruction {
    width: 100%;
    height: auto;
    padding-top: 25px;
}

.cusntruction h5 {
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    font-family: var(--poppinfont);
    letter-spacing: 2px;
}

.cusntruction h3 {
    text-align: center;
    line-height: 40px;
    padding-top: 10px;
    font-family: var(--poppinfont);
    font-weight: 700;
    font-size: 27px;
}

.cusntruction p {
    line-height: 30px;
    font-family: var(--poppinfont);
    padding: 15px 0px 30px 0px;
}

.modal-form .modal-body form .form-group .form-control {
    width: 100% !important;
    margin: 5px 0 !important;
}

.modal-form .modal-body form .form-group .form-control::placeholder {
    color: #666 !important;
}

.modal-form .modal-body form .form-group label {
    font-family: var(--poppinfont) !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    color: var(--secondarycolor);
    font-weight: 600;
    margin: 0 !important;
}

.modal {
    top: 90px !important;
}

.requirement-btn {
    background: var(--primarycolor) !important;
    padding: 5px 40px !important;
}

.xs-show {
    display: none;
}

.xs-hide {
    display: block;
    font-size: 16px;
    font-family: var(--poppinfont);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-call-now {
    background: var(--primarycolor) !important;
    padding: 7px 35px !important;
    color: #ffffff !important;
    font-family: var(--poppinfont) !important;
}

.modal-header span {
    font-family: var(--poppinfont);
    font-size: 14px;
    text-transform: uppercase;
    margin: 8px 0 0 15px;
}


/* ---------------------------------------------------
    END SERVICES----> RENTAL
---------------------------------------------------- */


/* ---------------------------------------------------
    START SERVICES----> OUR TRAINING
---------------------------------------------------- */

.hem-breadcrumb-training {
    background: url('../../img/training-banner.png');
    background-size: cover;
    background-position: center;
}

.hem-breadcrumb-training .left-section-heading .border {
    margin-left: 285px;
}

.training-bg {
    background: #ebebeb;
}

.our-training-program {
    padding: 40px 0;
}

.our-training-program .our-training-program-heading {
    text-align: center;
}

.our-training-program .our-training-program-heading h4 {
    font-size: 25px;
    color: var(--secondarycolor);
    font-family: var(--poppinfont);
    font-weight: 600;
    line-height: 40px;
}

.our-training-program .our-training-program-heading p {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondarycolor);
    padding: 15px 0 0 0;
}

.our-training-program .our-training-program-desc {
    margin: 30px 0 0 0;
    text-align: justify;
    padding: 0 25px;
}

.list-training {
    width: 100%;
    height: auto;
}

.list-training ul li::before {
    content: "\f192";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--secondarycolor);
    right: 3px;
    position: relative;
}

.list-training h3 {
    font-size: 20px;
    font-weight: 500;
    padding-top: 15px;
}


/* OUR COURSES */

.our-courses {
    padding: 40px 0;
    background: #ebebeb;
}

.our-courses .left-section-heading .border {
    margin-left: 140px;
}

.serviceBox {
    color: #555;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 0 0 15px;
    margin: 15px 0 0;
    border: 1px solid #e1e1e1;
    border-radius: 20px 20px;
    position: relative;
    z-index: 1;
    transition: all ease .3s;
}

.serviceBox:after {
    content: "";
    background: linear-gradient(to bottom, #f7941d, #b36a00);
    width: 100%;
    height: 49px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) inset;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.serviceBox .service-count {
    color: #fff;
    background: linear-gradient(to bottom, #f7941d, #b36a00);
    font-size: 45px;
    line-height: 130px;
    width: 80px;
    height: 110px;
    margin: -15px 0 20px;
    border-radius: 40px 0 100px 100px;
    position: relative;
}

.serviceBox .service-count:before,
.serviceBox .service-count:after {
    content: "";
    background: #b36a00;
    width: 25px;
    height: 15px;
    border-radius: 50px 50px 0 0;
    position: absolute;
    top: 0;
    left: 80px;
}

.serviceBox .service-count:after {
    background: #f7941d;
    border-radius: 50px 0 0 0;
    left: 65px;
    z-index: -2;
}

.serviceBox .service-icon {
    color: #afafaf;
    font-size: 60px;
    position: absolute;
    right: 20px;
    top: 10px;
    transition: all 0.3s ease 0s;
}

.serviceBox .service-icon img {
    width: 70px;
    height: auto;
}

.serviceBox:hover .service-icon {
    transform: rotateY(360deg);
}

.serviceBox .title {
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 15px;
    margin: 0 0 10px;
}

.serviceBox .description {
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
    padding: 0 15px 20px 15px;
    margin: 0 0 23px;
    min-height: 295px;
}

.serviceBox .read-more {
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease 0s;
}

.serviceBox .read-more:hover {
    text-shadow: 0 0 5px #555;
}


/* FORM */

.our-courses .course-form {
    background: var(--secondarycolor);
    padding: 15px;
    margin: 18px 0 0 0px;
}

.our-courses .course-form h4 {
    font-size: 25px;
    color: #ffffff;
    font-family: var(--poppinfont);
    font-weight: 600;
}

.our-courses .course-form select {
    width: 100%;
    height: 40px;
    color: var(--secondarycolor);
    font-family: var(--poppinfont);
    font-size: 14px;
    padding: 0 0 0 10px;
    margin: 7px 0;
    border: none;
}

.our-courses .course-form input {
    width: 100%;
    height: 40px;
    color: var(--secondarycolor);
    font-family: var(--poppinfont);
    font-size: 14px;
    padding: 0 0 0 10px;
    margin: 7px 0;
    border: none;
}

.our-courses .course-form button {
    width: 100%;
    height: 40px;
    color: var(--secondarycolor);
    font-family: var(--poppinfont);
    font-size: 14px;
    padding: 0 0 0 10px;
    margin: 7px 0;
    border: none;
    transition: 0.25s;
    background: var(--primarycolor);
}

.our-courses .course-form button:hover {
    background: #fff;
    color: var(--secondarycolor);
}


/* TRAINING ADVANTAGE */

.advantage-training {
    padding: 40px 0 40px 0;
}

.advantage-training .advantage-training-wrapper {
    padding: 30px 0 0 0;
}

.training-advantage-box {
    border: 1px solid silver;
    height: 275px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.training-advantage-box img {
    width: auto;
    height: auto;
}

.advantage-training .advantage-training-wrapper h4 {
    font-size: 16px;
    font-family: var(--poppinfont);
    font-weight: 600;
    text-align: center;
    margin: 15px 0 7px 0;
    text-transform: uppercase;
}

.advantage-training .advantage-training-wrapper p {
    text-align: center;
    font-size: 13px;
}


/* ---------------------------------------------------
    END SERVICES----> OUR TRAINING
---------------------------------------------------- */


/* ---------------------------------------------------
    START SERVICES----> SALE AND SERVICES
---------------------------------------------------- */

.services-first-section {
    padding: 40px 0;
    text-align: center;
}

.services-first-section h4 {
    font-family: var(--poppinfont);
    font-size: 25px;
    font-weight: 600;
}

.our-brand-product {
    padding: 40px 0;
}

.our-brand-product .left-section-heading .border {
    margin-left: 170px;
}

.our-brand-product .product-heading {
    padding: 25px 0;
}

.our-brand-product .brand-element-wrapper {
    margin: 10px 0 0 0;
}

.our-brand-product .brand-element-wrapper .col-lg-4 {
    padding: 0 5px !important;
}

.our-brand-product .brand-element-wrapper .brand-element {
    width: 100%;
    min-height: 230px;
    padding: 15px 10px;
    background: #ebebeb;
    margin: 5px 0;
    text-align: center;
}

.our-brand-product .brand-element-wrapper .brand-element h4 {
    font-size: 16px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    margin: 10px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}


/* ---------------------------------------------------
    END SERVICES----> SALE AND SERVICES
---------------------------------------------------- */


/* ---------------------------------------------------
    START CLIENTEL----> HEM
---------------------------------------------------- */


/* BREADCRUMB IMG */

.hem-breadcrumb-clientel {
    background: url('../../img/clientel-header-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hem-breadcrumb-clientel .left-section-heading .border {
    margin-left: 132px;
}


/* CLIENTEL PROJECT SLIDER */

.clientel-project-slider {
    background: #ebebeb;
    padding: 80px 0;
}

.clientel-project-slider .container {
    max-width: 990px !important;
}

.clientel-project-wrapper {
    display: flex;
    justify-content: space-between;
}

.clientel-project-img {
    width: 278px;
    height: 279px;
    background: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    flex: 0 0 278px;
    max-width: 278px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.clientel-project-img img {
    width: auto !important;
}

.clientel-project-description {
    margin: 15px 0px 15px 30px;
}

.clientel-project-description h4 {
    font-family: var(--poppinfont);
    font-weight: 600;
    color: var(--secondarycolor);
}

.clientel-project-description p {
    line-height: 30px;
    color: var(--secondarycolor);
    font-size: 16px;
    text-align: justify;
    padding: 0 0 20px 0;
}

.clientel-project-slider .owl-theme .owl-nav button {
    position: absolute;
    bottom: 0;
    display: inline-block;
    zoom: 1;
    margin: 0;
}

.clientel-project-slider .owl-theme .owl-nav button.owl-prev {
    right: 50px;
}

.clientel-project-slider .owl-theme .owl-nav button.owl-next {
    right: 0;
}


/* ON GOING PROJECT */

.ongoing-project {
    padding: 50px 0 30px 0;
    margin: 0 auto;
}

.ongoing-project .container {
    max-width: 990px !important;
}

.ongoing-project .left-section-heading .border {
    margin-left: 145px;
}

.ongoing-project-item {
    margin: 25px 0;
}

.ongoing-project .ongoing-project-item-featured {
    width: 230px;
    height: auto;
    float: left;
}

.ongoing-project .ongoing-project-item-featured img {
    width: 100%;
    height: auto;
}

.ongoing-project .ongoing-project-item-description {
    float: left;
    width: calc(95% - 230px);
    margin: 25px 15px;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-title h4 {
    font-family: var(--poppinfont);
    font-size: 18px;
    font-weight: 600;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-client p {
    font-size: 14px;
    color: var(--secondarycolor);
}

.ongoing-project .ongoing-project-item-description .ongoing-project-client p span {
    font-weight: 600;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-desc {
    padding: 7px 0 15px 0;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-desc p {
    font-size: 13px;
    line-height: 24px;
    text-align: justify;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-other-info ul li {
    display: inline-block;
    margin: 0 30px 0 0;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-other-info ul li p {
    font-size: 14px;
}

.ongoing-project .ongoing-project-item-description .ongoing-project-other-info ul li p span {
    font-weight: 600;
    padding: 0 0 0 5px;
    text-transform: uppercase;
}

.ongoing-project .ongoing-project-load-more {
    padding: 25px 0;
}

.ongoing-project .ongoing-project-load-more button {
    border: 2px solid var(--primarycolor);
    text-align: center;
    padding: 10px 0;
    background: transparent;
    color: var(--primarycolor);
    font-size: 14px;
    font-family: var(--poppinfont);
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
}

.ongoing-project .ongoing-project-load-more button:focus {
    outline: none;
}

.ongoing-project .hide-ongoing-project {
    display: none;
}


/* EXECUTED PROJECT */

.executed-project {
    padding: 0 !important;
}

.hide-executed-project {
    display: none;
}


/* ---------------------------------------------------
    END CLIENTEL----> HEM
---------------------------------------------------- */


/* ---------------------------------------------------
    CONTACT US
---------------------------------------------------- */

.hem-breadcrumb-contact {
    background: #ebebeb;
    min-height: 100px !important;
}

.hem-breadcrumb-contact .left-section-heading h2 {
    color: var(--secondarycolor) !important;
}

.hem-breadcrumb-contact .left-section-heading p {
    color: var(--secondarycolor) !important;
}

.hem-breadcrumb-contact .left-section-heading .border {
    margin-left: 190px;
}

.promptly-reply {
    text-align: center;
    width: 100%;
    padding: 40px 0 0 0;
    margin: 0 0 -40px 0;
}

.promptly-reply p {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--secondarycolor);
    letter-spacing: 4px;
}

.promptly-reply h4 {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--poppinfont);
    padding: 10px 0 0 0;
    color: var(--secondarycolor);
}


/* CONTACT FORM */

.contact-form-wrap {
    position: relative;
    bottom: -65px;
}

.contact-form {
    background: var(--primarycolor);
    padding: 30px 100px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-form-heading {
    font-size: 25px;
    font-weight: 600;
    font-family: var(--poppinfont);
    color: #000;
}

.contact-form .contact-details {
    width: 320px;
}

.contact-form .contact-details h5 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--poppinfont);
}

.contact-form .contact-details p {
    font-size: 16px;
    color: #ffffff;
    font-weight: lighter;
    padding: 5px 0 0 0;
}

.contact-form .contact-details p i {
    font-size: 14px;
    padding: 0 5px 0 0;
    color: var(--secondarycolor);
}

.contact-form .contact-details h4 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--poppinfont);
    font-weight: 600;
    color: #ffffff;
    margin: 14px 0 7px 0;
}

.contact-form-box form {
    width: 100%;
}

.contact-form-box form input {
    width: 100%;
    height: 40px;
    padding: 0 0 0 15px;
    font-family: var(--poppinfont);
    font-size: 14px;
    color: var(--secondarycolor);
    border: none;
    background: #ffffff;
    margin: 7px 0;
}

.contact-form-box form textarea {
    width: 100%;
    height: 100px;
    padding: 7px 0 0 15px;
    font-family: var(--poppinfont);
    font-size: 14px;
    color: var(--secondarycolor);
    border: none;
    background: #ffffff;
    margin: 7px 0;
    resize: none;
}

.contact-form-box form button {
    width: 100%;
    background: #000;
    color: #ffffff;
    height: 40px;
    border: none;
    font-size: 14px;
    font-family: var(--poppinfont);
    transition: 0.25s;
}

.contact-form-box form button:hover {
    background: transparent;
    border: 2px solid #000;
    color: #000000;
    font-weight: 600;
}


/* OTHER REGIONAL ADD */

.other-regional-add {
    background: #ebebeb;
    padding: 100px 0 40px 0;
}

.other-regional-add .other-regional-add-heading {
    text-align: center;
    font-family: var(--poppinfont);
    font-size: 25px;
    font-weight: 600;
}

.other-regional-add .other-regional-add-element {
    padding: 30px 0;
}

.other-regional-add .other-regional-add-element h5 {
    font-size: 16px;
    font-family: var(--poppinfont);
    color: var(--secondarycolor);
    font-weight: 600;
    margin: 0;
}

.other-regional-add .other-regional-add-element .add-element-box {
    max-width: 295px;
}

.other-regional-add .other-regional-add-element p {
    font-size: 15px;
    line-height: 20px;
}

.locate-us-heading {
    text-align: center;
}

.locate-us-heading h4 {
    font-family: var(--poppinfont);
    font-size: 25px;
    color: var(--secondarycolor);
    font-weight: 600;
}

.i4ewOd-pzNkMb-haAclf {
    display: none !important;
    visibility: hidden !important;
}

.i4ewOd-pzNkMb-haAclf {
    display: none !important;
    visibility: hidden !important;
}

.HzV7m-b7CEbf .i4ewOd-pzNkMb-tJHJj {
    display: none !important;
    visibility: hidden !important;
}


/*********term-condition*****************************/

.term-condition {
    width: 100%;
    height: auto;
    padding-top: 25px;
}

.term-condition h2 {
    text-align: center;
    padding-top: 5px;
}

.term-condition p {
    padding-top: 10px;
}

.term-condition h5 {
    padding-top: 25px;
    font-size: 21px;
    line-height: 35px;
    font-weight: 450;
}

.term-condition h3 {
    text-align: left;
    padding-top: 15px;
    font-size: 21px;
    line-height: 35px
}

.term-condition span {
    font-size: 17px;
    font-weight: 600;
}


/*********************disclaimer***********************/

.Privacy {
    width: 100%;
    height: auto;
    padding-top: 25px;
}

.Privacy h2 {
    text-align: center;
    padding-top: 5px;
}

.Privacy h3 {
    text-align: left;
    padding-top: 15px;
    font-size: 21px;
    line-height: 35px
}

.Privacy p {
    padding-top: 10px;
}


/* ---------------------------------------------------
    END CONTACT US
---------------------------------------------------- */


/* GALLERY */

.hemgallery_container {
    background: #ebebeb;
    padding: 50px 0;
}

.hemgallery_container .img-thumbnail {
    margin: 10px 0 !important;
    transition: 0.85s;
}

.hemgallery_container .img-thumbnail:hover {
    transform: scale(1.055);
}


/* ---------------------------------------------------
MEDIA QUERY FOR ALL DEVICES
---------------------------------------------------- */


/* MEDIA QUERY OF  991px*/

@media (max-width:991px) {
    .border-nav {
        display: none;
    }
    .whatsapp-icon {
        bottom: 0;
        top: initial;
        left: 2px;
    }
    .whatsapp-icon img {
        width: 45px;
        height: 45px;
    }
    .header-form-boxes {
        margin: 40px 0 0 0;
    }
    .header-form-boxes .form-inline .form-control {
        display: inline-block;
        width: 24% !important;
        vertical-align: middle;
    }
    nav .navigation {
        float: right;
        display: flex;
        background: none;
        clip-path: initial;
        padding: 0;
    }
    .navigation-toggle {
        background: #f7c07f;
        color: #000000;
        padding: 0px 13px;
        font-size: 30px;
        border: 2px solid var(--primarycolor);
        margin: 28px 0;
        display: block;
        height: 55px;
    }
    .close-navigation {
        color: var(--primarycolor);
        position: absolute;
        top: 3px;
        right: 3px;
        border: 1px solid var(--primarycolor);
        padding: 3px 7px;
        font-size: 14px;
        display: block;
    }
    .close-navigation span {
        padding: 0 5px;
        font-family: var(--poppinfont);
        letter-spacing: 3px;
        text-transform: uppercase;
    }
    nav .col-lg-12 {
        position: initial !important;
    }
    nav .navigation .xs-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        padding: 25px 0 0 0;
        background: var(--secondarycolor);
        width: 280px;
        height: 100%;
        overflow-y: scroll;
        z-index: 999;
    }
    nav .navigation ul .custom-dropdown .custom-dropdown-menu {
        margin: 0 !important;
        padding: 10px;
        width: 100%;
    }
    nav .navigation ul .custom-dropdown .custom-dropdown-menu li {
        border-bottom: 1px solid var(--primarycolor);
        padding: 6px 0 !important;
        color: var(--primarycolor);
    }
    nav .navigation ul .custom-dropdown:hover .custom-dropdown-menu {
        display: none;
    }
    nav .navigation ul li {
        display: block;
        border-bottom: 1px solid #f3c185;
        margin: 0;
        color: var(--primarycolor);
        padding: 15px;
    }
    nav .navigation ul li a {
        display: block;
        width: 100%;
        padding: 0;
        font-weight: 500;
    }
    nav .navigation ul li:hover a {
        color: var(--primarycolor)!important;
    }
    nav .navigation ul li:hover {
        background: initial;
    }
    .xs-menu-contact-details {
        color: var(--primarycolor);
        margin: 15px 15px;
        display: block;
    }
    .xs-menu-icon-wrap {
        display: flex;
        justify-content: space-evenly;
        margin: 15px 0;
    }
    .xs-menu-contact-details .menu-add-icon {
        background: transparent;
        padding: 5px 0;
        width: 18%;
        height: 20%;
        font-size: 16px;
        border: 1px solid var(--primarycolor);
        text-align: center;
    }
    .xs-menu-contact-details .menu-add {
        font-family: var(--poppinfont);
        font-size: 14px;
        margin: -3px 0 0 8px;
        width: 240px;
        padding: 0;
    }
    .xs-menu-contact-details .social-links {
        padding: 0;
        width: 245px;
        margin: 3px 0 0 8px !important;
    }
    .xs-menu-contact-details .social-links li {
        border: none;
        display: inline;
        padding: 0 20px 0 0;
    }
    .xs-menu-contact-details .social-links li a {
        font-size: 18px;
        display: inline-block;
        width: auto;
    }
    .nav-call-btn {
        display: none;
    }
    nav .navigation ul .custom-dropdown .custom-dropdown-menu {
        position: initial;
    }
    nav .navigation ul .custom-dropdown .custom-dropdown-menu li {
        margin: 0;
    }
    .slider-crain {
        left: 0;
        width: 100%;
    }
    .slider-crain img {
        width: 100%;
    }
    .card span.border {
        transform: rotate(65deg);
    }
    /* CLIENTEL PROJECT */
    .clientel-project-wrapper {
        display: block;
    }
    .clientel-project-slider {
        padding: 30px 15px;
    }
    .clientel-project-description {
        margin: 15px 0;
    }
    /* TRAINING */
    .serviceBox {
        margin: 15px 0 50px;
    }
    .lg-hide-box {
        display: block;
    }
    .xs-hide-box {
        display: none;
    }
    .service-desc {
        padding: 118px 0 0 0;
    }
}


/* MEDIA QUERY OF 767PX */

@media (max-width:767px) {
    .header-form-boxes .form-inline .form-control {
        display: inline-block;
        width: 100% !important;
        vertical-align: middle;
    }
    .enquiry-sticky-form-btn {
        top: 210px;
    }
    .carousel-item img.custom-w-100 {
        height: 500px;
        width: initial;
    }
    button.btn.btn-primary {
        margin: 0;
        float: left;
    }
    .project-section .left-section-heading {
        margin-bottom: 0;
    }
    .project-section .project-slider .project-slider-box {
        margin: 15px 0;
    }
    .xs-nav-footer-bg {
        z-index: 10;
        display: block;
    }
    .xs-nav-footer-bg img {
        width: 100%;
    }
    .box {
        width: 100%;
        min-height: 330px;
        background: #f7941d;
        float: right;
    }
    .our-services .three-icons img {
        width: 45px;
        height: auto;
    }
    .jcb {
        position: relative;
    }
    .jcb-icon {
        padding: 40px 15px;
        width: 100%;
    }
    .jcb img {
        width: 90%;
        position: absolute;
        right: 30px;
        border: 0;
        top: 230px;
    }
    .our-services {
        width: 100%;
        height: auto;
        padding: 50px 0 70px 0;
        background: #ebebeb;
    }
    .borde {
        width: 125px;
        border: 5px solid #f7941d !important;
        float: right;
        margin-top: -22px;
    }
    .navsticky {
        padding: 7px 0;
    }
    .number h3 {
        color: #f7941d;
        font-size: 40px;
        font-weight: 700;
        text-align: center !important;
        padding-top: 50px;
    }
    .counter-banner p {
        color: white;
    }
    .staticks h2 {
        color: white;
    }
    .borderr {
        width: 150px;
        border: 5px solid #f7941d !important;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-top: 0px;
        float: none;
    }
    .five {
        flex: none !important;
        max-width: none !important;
        padding-bottom: 20px;
    }
    .form-control {
        display: block;
        width: 100% !important;
        height: calc(1.5em + .75rem + 2px);
        padding: .375rem .75rem;
        font-size: 1rem;
    }
    button.btb.btn-default {
        width: 100%;
        padding: 5px;
        background: black;
        color: white;
        border: 1px solid black;
    }
    .boxes {
        width: 100%;
        height: auto;
        padding: 15px 25px;
        background-color: #f7941d;
        position: relative;
    }
    .form-box {
        width: 100%;
        margin-top: 20px;
    }
    .boxes h2 {
        color: black;
        font-size: 29px;
        font-weight: 600;
    }
    .traing img {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        /* float: right; */
    }
    .traing {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
        background-image: url("../../img/trainig.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .right {
        padding-right: 15px !important;
    }
    .footer-img {
        position: relative;
        bottom: -14px;
        width: 100%;
        right: 0;
    }
    button.btb.btn-default1 {
        width: 100%;
        padding: 6px;
        background: black;
        color: white;
        border: 1px solid black;
        margin: 0px 1px;
    }
    .form-control1 {
        display: block;
        width: 100% !important;
        margin-bottom: 10px;
    }
    .copy ul {
        text-align: center;
        margin: 0;
        padding: 0;
    }
    .copy li {
        color: white;
        display: inline-block;
        padding-left: 1px;
        margin: 0 7px 0 0;
    }
    .copyright p {
        color: white;
        font-size: 12px;
        padding-bottom: 0;
        text-align: center !important;
    }
    .subcribe-box {
        margin-top: 15px;
        width: 100%;
    }
    .copy {
        margin: 5px 0 0 0;
    }
    /* INNER BREADCRUMB */
    .hem-breadcrumb-heading .left-section-heading .border {
        margin: 0 !important;
    }
    .hem-breadcrumb-heading .left-section-heading h2 {
        font-size: 18px;
    }
    /* ABOUT TEAM */
    .about-team-content-heading h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .about-team-content-desc {
        padding: 15px;
    }
    .professional-staff-element {
        margin: 15px 0;
    }
    .professional-staff .professional-staff-element-wrapper {
        display: block;
        padding: 15px;
    }
    .professional-staff .professional-staff-heading h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .about-team-last {
        padding: 40px 15px;
    }
    .about-team-last img {
        width: 100%;
    }
    /* CLIENTEL --> ONGOING */
    .ongoing-project .ongoing-project-item {
        border-bottom: 1px solid silver;
        height: 100%;
        padding: 25px 0;
    }
    .ongoing-project .ongoing-project-item-description {
        width: 100%;
        margin: 0;
        padding: 15px 0;
    }
    .ongoing-project .ongoing-project-load-more {
        padding: 50px 0 25px 0;
    }
    /* CONTACT US */
    .other-regional-add .other-regional-add-element .add-element-box {
        margin: 15px auto;
    }
    /* Paragraph left */
    .clientel-project-description p {
        text-align: left;
    }
    .contact-form-heading {
        margin: 15px 0;
    }
    .sticky-social-media {
        top: 40%;
    }
    .xs-show {
        display: block;
    }
    .xs-hide {
        display: none;
    }
}


/* MEDIA QUERY OF 575PX */

@media (max-width:575px) {
    .carousel-caption-custom {
        width: 300px;
        left: calc(50% - 150px);
    }
    .carousel-caption-custom h2 {
        font-size: 40px;
    }
    .carousel-caption-custom span {
        font-size: 30px;
        margin: -31px 10px 0 0;
    }
    .enquiry-sticky-form {
        width: 280px;
    }
    .left-section-heading .border {
        width: 100px;
    }
    .right-section-heading .border {
        width: 100px;
    }
    .counter-banner {
        padding: 40px 15px;
    }
    /* ABOUT HEM CONTENT */
    .about-hem-content .about-hem-content-left img {
        margin: 0;
    }
    /* ABOUT TEAM */
    .about-team-content-heading h3 {
        font-size: 18px;
        line-height: 30px;
    }
    .professional-staff .professional-staff-heading h3 {
        font-size: 18px;
        line-height: 30px;
    }
    .contact-form {
        padding: 15px;
    }
    .contact-form .contact-details {
        width: 100%;
    }
    /* TRAINING */
    .our-training-program .our-training-program-heading h4 {
        font-size: 18px;
        line-height: 25px;
    }
    .service-desc {
        padding: 100px 0 0 0;
    }
    .hemgallery_container .img-thumbnail {
        width: 100% !important;
    }
}


/* MEDIA QUERY OF 480PX */

@media (max-width:480px) {
    .our-training-program .our-training-program-desc {
        width: auto !important;
        padding: 0 15px;
    }
    .service-desc {
        padding: 70px 0 0 0;
    }
}


/* MEDIA QUERY OF 380PX */

@media (max-width:380px) {
    .contact-form .contact-details p {
        font-size: 12px;
    }
    .news-section .left-section-heading .border {
        float: left;
        margin: 0 !important;
    }
    .service-desc {
        padding: 50px 0 0 0;
    }
}