/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    background: #f2f2f2;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    scroll-behavior: smooth;
}

a {
    color: #e8c00b;
    text-decoration: none;
}

a:hover {
    color: #f1775d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #e8c00b;
    border-top-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #e8c00b;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #f06f54;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Request quote button
--------------------------------------------------------------*/

.requestQuoteBtn {
    z-index: 996;
    background: #e8c00b;
    width: 170px;
    padding: 8px 20px;
    height: 40px;
    color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    line-height: 0;
}

.back-to-top:hover {
    background: #f06f54;
    color: #fff;
}

.back-to-top.active {
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding:15px 0;
    height: 85px;
}
.hrd-logo{width:80%;}

#header.header-scrolled {
    background: #212529;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {}

#header .logo a {
    color: #0b2341;
}

#header .logo img {
    max-height: 30px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/


/* .navbar {
    padding-right: 10px;
} */

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #e8c00b;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #e8c00b;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #e8c00b;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #344b7e;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #e8c00b;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(4, 12, 21, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #e8c00b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #e8c00b;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(4, 12, 21, 0.8);
    overflow: hidden;
    position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

#hero .carousel-item::before {
    background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-item-no-content::before {
    content: "";
}

#hero .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
    left: 50px;
    right: 50px;
}

#hero h2 {
    color: #fff;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
    margin-top: 10px;
}

@media (min-width: 1200px) {
    #hero p {
        width: 50%;
    }
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}



#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #e8c00b;
    margin-top: 15px;
}

#hero .btn-get-started:hover {
    background: #e8c00b;
}

.btn-get-started-otlined {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #e8c00b;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 15px;
    border: 2px solid #e8c00b;
}

.btn-get-started-otlined:hover {
    background: #e8c00b;
    color: #fff;
}

@media (max-width: 992px) {
    #hero {
        height: 100vh;
    }

    #hero .carousel-container {
        text-align: center;
        top: 74px;
    }
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }

    .banner-img {
        height: 90vh;
    }

    .ppc .banner-img {
        height: 100vh;
    }
}
.main-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgb(0 0 0 / 50%);
}


@media (max-width: 1024px) {
    .banner-img {
        height: 63vh;
        width: 100%;
    }

    .ppc .banner-img {
        height: 66vh;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
    padding: 80px 0;
    background: #E9ECEF;
}

.cta h3 {
    color: #343434;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #343434;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
}

.section-padding {
    padding: 60px 0;
}

.section-bg {
    background-color: #d9d9d9;
}

.section-bg-white {
    background-color: #fff;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #f38b74;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 700;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    background: #d9d9d9;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #e8c00b;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #e8c00b;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #e8c00b;
}

.about .content .btn-learn-more:hover {
    background: #e8c00b;
    color: #fff;
    text-decoration: none;
}

.content p {
    line-height: 22px;
    font-weight: 200 !important;
}

.contents {
    line-height: 22px;
    font-weight: 200 !important;
    color: #fff;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    padding-top: 0;
    background: #43474a;
}

.counts .count-box {
    box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
}

.counts .count-box i {
    display: block;
    color: #e8c00b;
    float: left;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: #fff;
    margin-left: 50px;
}

.clientTitle {
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
    font-weight: 500 !important;
}

.counts .count-box p {
    padding: 30px 0 0 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #164682;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #2169c4;
}


/*--------------------------------------------------------------
# Gallery Div Dark
--------------------------------------------------------------*/

.galleryDark {
    width: 100%;
    padding-top: 0;
    background: #3F3F3F;
}

.galleryLight {
    width: 100%;
    padding-top: 0;
    background: #E9ECEF;
}

.scrollGalleryDiv {
    display: flex;
}

.leftArrow {
    position: relative;
    top: 135px;
    left: -65px;
    font-size: 40px;
    color: #8c8c8c;
}

.rightArrow {
    position: relative;
    top: 135px;
    left: 65px;
    font-size: 40px;
    color: #8c8c8c;
}

.galleryTitleLight {
    font-size: 26px;
    font-weight: 600;
    padding: 0;
    color: #fff;
    width: auto;
    border-bottom: 4px solid #e8c00b;
}

.galleryTitleDark {
    font-size: 26px;
    font-weight: 600;
    padding: 0;
    color: #343434;
    width: auto;
    border-bottom: 4px solid #e8c00b;
}

.galleryImg {
    padding-right: 4px;
}

.scrollImageDiv {
    overflow: auto;
    padding: 0;
}

.youtubeDiv {
    padding: 0;
}


/*--------------------------------------------------------------
# Service Item
--------------------------------------------------------------*/

.serviceItem {
    padding: 10px;
    background: #d1d1d3;
    overflow: hidden;
    box-shadow: inset -16px 9px 90px 0px rgb(110 123 131 / 10%);
    padding: 0px 0px;
    border-radius: 28px;
}

#serviceItemPara {
    line-height: 22px;
    font-size: 15px !important;
    margin: 0 !important;
    padding-right: 10px;
    padding-left: 10px;
}

.serviceItemTitle {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.services .serviceItem a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #164682;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    transition: ease-in-out 0.3s;
}

.services .serviceItem a:hover {
    color: #2169c4;
}

.services {
    padding-top: 0;
    background-color: #d9d9d9;
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us {
    padding: 0;
}

.why-us .content {
    padding: 60px 100px 0 100px;
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #123a6d;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}

.why-us .accordion-list {
    padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.why-us .accordion-list li+li {
    margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    color: #0b2341;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #e8c00b;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.why-us .accordion-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
    color: #e8c00b;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#e8c00b 50%, rgba(237, 80, 46, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.why-us .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(237, 80, 46, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
    border-left: 15px solid #e8c00b;
    transform: scale(20);
}

.why-us .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    text-align: left;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #e8c00b;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.services .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}

.services .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #f9c6bb;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
    z-index: 1;
}

.services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #0b2341;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    background: #e8c00b;
    border-color: #e8c00b;
}

.services .icon-box:hover .icon {
    background: #fff;
}

.services .icon-box:hover .icon i {
    color: #e8c00b;
}

.services .icon-box:hover .icon::before {
    background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
    color: #fff;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
    color: #0b2341;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #e8c00b;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}


/* .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #d9d9d9;
} */

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #e8c00b;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
    background: #e8c00b;
    border: 0;
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
    transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #e8c00b;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Certification
--------------------------------------------------------------*/

.certifications {
    padding: 12px 0;
    text-align: center;
}

.certifications img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 5px 0;
}

.certifications-list {
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.certifications-list:hover {
    filter: none;
    transform: scale(1.05);
}


/* .certifications img:hover {
    filter: none;
    transform: scale(1.1);
} */

@media (max-width: 768px) {
    .certifications img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding: 12px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/




.serviceItemTitle {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 18px;
}

.serviceLink {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 10px;
}

.coloredBorder {
    border-bottom: 6px solid #e8c00b;
}

.coloredBorderShort {
    border-bottom: 4px solid #e8c00b;
    width: 70px;
}

.plus-position {
    position: relative;
    left: 160px;
    bottom: 80px;
    font-size: 30px;
}

.gridItemTitle {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
}

.arrowRight {
    color: #e8c00b;
    margin-right: 8px;
}

.content {
    font-size: 14px;
    line-height: 22px;
}


/* Our Certifications */

.center {
    text-align: center;
}

.fWhite {
    color: #fff;
}

.fSmall16 {
    font-size: 16px !important;
}

.fSmall12 {
    font-size: 14px !important;
}

.categorie_item {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 30%);
    padding: 15px;
    margin-bottom: 30px;
    height: 130px;
}

.cate_item_block {
    background: #fcfbfb;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 6px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cate_item_block img {
    height: 90px;
    width: auto;
}


/* Services Page */

.image-card {
    margin-left: auto;
    margin-right: auto;
}

.cardImageBig {
    border-radius: 50px;
}

.serviceItemTitleBig {
    font-size: 28px;
}

.pd-10 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.buttonreadmore {
    border-radius: 5px;
    background-color: #E8C00B;
    border: none;
    color: black;
    text-align: center;
    font-size: 14px;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.buttonreadmore span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.llb {
    height: 300px;
    width: 456px;
}

.pd-10 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media only screen and (max-width: 600px) {
    .llb {
        height: auto;
    }

    .mobile-50 {
        height: 33vh
    }
}

@media only screen and (min-width: 601px) {
    .desktop {
        height: 100vh
    }
}

#more {
    display: none;
}

#mores {
    display: none;
}

#moress {
    display: none;
}

#moore {
    display: none;
}

.img-fluidfd {
    width: 100%;
    height: 325px;
}

h2 {
    font-size: 30px;
}

.bb {
    font-weight: 600;
}

.rnd {
    border-radius: 50px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.serviceItemHead {
    font-size: 23px !important;
}

.para {
    font-size: 13px;
}

li {
    font-size: 13px;
}

.head {
    font-size: 30px;
}

.font14 {
    font-size: 14px;
}

.justify-center {
    text-align: center;
}

.justify {
    text-align: justify;
}

#fullStop1,
#fullStop2,
#fullStop3,
#fullStop4 {
    font-size: 13px;
}

#readMore1,
#readMore2,
#readMore3,
#readMore4 {
    display: none;
    font-size: 13px;
}

.img-fluidfd {
    width: 100%;
    height: 555px;
}

.inner-page {
    padding-top: 50px;
    padding-bottom: 0px;
}


/* About us Page */

.serviceSectionBackground {
    background: linear-gradient(180deg, #eed0a8 0%, #e9b398 55%, #686865 100%);
}

.headParent {
    color: black;
    font-weight: 800;
    padding-top: 20px;
    font-size: 34px;
}

.img-fluidAbout {
    height: 100px;
    width: 100px;
}

.square {
    border: 15px solid #545454;
    width: 85%;
    border-radius: 50px;
    background-color: #545454;
    color: white;
    padding: 10px;
    height: 350px;
}


/* Contact us page */

.contactFormDiv {
    /* background-image: url(assets/img/images/map1200pxX675px.png); */
    background-repeat: no-repeat;
    background-color: #d9d9d9;
    width: 50%;
}


.sendMessageBtn {
    background-color: #E8C00B;
    color: white;
    border: 0;
}

.paddingBig {
    padding: 30px;
    height: 150px;
    font-size: 14px;
}

.mainSection {
    width: 100%;
    margin: 0;
}

/* NEW SERVICE PAGE */
#services-grid {
    color: #fff;
    width: 100vw;
}

.parent {
    background: #0b2341;
}

.child-big {
    display: flex;
    align-items: center;
    justify-content: center;
}

.child-small-yellow {
    background: #E8C00B;
    display: flex;
}

.child-small-blue {
    background: #1C4398;
    display: flex;
    z-index: 3;
}

.p-white {
    font-size: 14px;
}

.white {
    color: #fff;
}

.fluid-container {
    min-height: 450px;
    width: 100vw;
    margin: 0;
}

#services-grid .content-wrapper {
    position: relative;
}

.child-big h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

#services-grid .buttonreadmore {
    border-radius: 5px;
    background-color: #E8C00B;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    width: 150px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0;
}


@media (min-width: 1024px) {
    #services-grid .service-item-img-right {
        position: relative;
        height: 290px;
        width: 100%;
        left: -50%;
        right: 0;
        top: 80px;
        border-radius: 6px;
    }

    #services-grid .service-item-img-left {
        position: relative;
        height: 290px;
        width: 100%;
        left: 50%;
        top: 80px;
        border-radius: 6px;
    }

    #services-grid .content-div-left {
        margin-right: 10%;
    }

    #services-grid .content-div-right {
        margin-left: 10%;
    }

    .subpage-title {
        font-size: 65px;
        font-weight: 600;
    }

    .sub-page-description-wrapper {
        background: #123174a8;
        padding: 15px;
        clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);

    }

    .title-container {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
    }

    .one {
        margin-top: 50px;
    }

    .two {

        margin-top: 150px;
    }

    .three {

        margin-top: 250px;
    }
    

    .gradient-title {
        color: #0000001f;
        font-size: 100px;
        font-weight: 600;
        text-align: center;
    }

    .list-parent {
        height: 400px;
        overflow: auto;
    }

    #equipment-detail {
        height: 500px;
    }

    .equipment-img {
        width: 70%;
        border-radius: 10px;
    }
}

@media (max-width: 1024px) {

    #services-grid .service-item-img-right,
    #services-grid .service-item-img-left {
        border-radius: 4px;
        width: 96%;
        height: 310px;
        position: relative;
        top: -145px;
    }

    .child-big {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 190px;
    }

    .child-small-yellow,
    .child-small-blue {
        justify-content: center;
        height: 190px;
        z-index: 3;
    }

    .subpage-title {
        font-size: 35px;
        font-weight: 600;
    }

    .title-container {
        width: 100%;
        position: absolute;
        top: 200px;
        left: 0;
        right: 0;
    }

    .one {
        margin-top: 50px;
    }

    .two {

        margin-top: 50px;
    }

    .three{

        margin-top: 50px;
    }

    .gradient-title {
        color: #0000001f;
        opacity: 0.1;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
    }

    .equipment-img {
        width: 100%;
        border-radius: 10px;
    }
}

#communication-detail {
    padding-top: 0;
}

#communication-detail .itemdiv {
    padding: 15px;
    background: #fff;
}

.border-left {
    border-left: 4px solid #1C4398;
}

.list {
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.list:hover .list-name,
.list:hover .list-no {
    color: #e8c00b;
}

.list-no {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    opacity: 0.8;
}

.list-name {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.detail-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
    padding: 30px 0;
}

.get-started .content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 25px;
    position: relative;
}

.get-started .content h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: #feb900;
    left: 0;
    bottom: 0;
}

.get-started .content p {
    font-size: 14px;
}

.get-started .php-email-form {
    background: #fff;
    padding: 30px;
    height: 100%;
}

@media (max-width: 575px) {
    .get-started .php-email-form {
        padding: 20px;
    }
}

.get-started .php-email-form h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started .php-email-form p {
    font-size: 14px;
    margin-bottom: 20px;
}


.get-started .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
    border-color: #feb900;
}

.get-started .php-email-form input {
    padding: 12px 15px;
}

.get-started .php-email-form textarea {
    padding: 12px 15px;
}

.get-started .contact-btn {
    background: rgba(255, 187, 0, 0.568);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.get-started .contact-btn:hover {
    background: #feb900;
}

.get-started input,
.get-started textarea {
    background: transparent;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero picture::before {
    height: 80vh;
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
}


.hero .info {
    position: absolute;
    inset: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero .info {
        padding: 0 50px;
    }

    .hero picture::before {
        height: 80vh;
    }
}

.hero .info h1 {
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: #feb900;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }
}

.hero .info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}


.page-title p {
    color: #fff;
}

.form-div {
    background-color: #fff;
}

.ppc p {
    color: #fff;
}

@media (min-width: 1024px) {
    .page-sub-title-div {
        text-align: right;
    }

    .ppc .page-sub-title-div {
        display: flex;
        text-align: left;
        flex-direction: column;
        justify-content: flex-end;
    }


    .ppc-page-title {
        position: absolute;
        bottom: 4%;
        left: 0;
        right: 0;
    }

    .page-title {
        position: absolute;
        top: 35%;
        left: 0;
        right: 0;
    }

    .border-form-left {
        border-left: 30px solid #DBA514;
    }

    .border-form-right {
        border-right: 30px solid #E8C00B;
    }
}

@media (max-width: 1024px) {
    .page-title {
        text-align: center;
        position: absolute;
        bottom: 25vh;
        left: 0;
        right: 0;
    }

    .page-sub-title-div {
        text-align: center;
        position: absolute;
        bottom: 6vh;
        left: 0;
        right: 0;
        font-size: 14px;
    }

    .border-form-left {
        border-top: 30px solid #DBA514;
    }

    .border-form-right {
        border-bottom: 30px solid #E8C00B;
    }

    .form-img-div {
        height: 40vh;
    }
}

/* Get In Touch */

#get-ntouch input,
textarea {
    outline: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #000;
}

#get-ntouch input:focus {
    border-color: #E8C00B;
}

#get-ntouch ::placeholder {
    color: rgba(0, 0, 0, 0.568);
    font-weight: 400;
    font-size: 12px;
}

.contact-container {
    background: #FFFFFF;
    box-shadow: 0px 4px 14px rgba(1, 28, 107, 0.5);
}

.contact-container a {
    color: #FFFFFF;
}

.php-email-form button[type=submit] {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background: #E8C00B;
    border: 0;
    padding: 10px 10px;
    color: #fff;
    transition: 0.4s;
    width: 100%;
}

.php-email-form button[type=submit]:hover {
    background: #011C6B;
}




/*--------------------------------------------------------------
# Other services
--------------------------------------------------------------*/
.other-services-wrapper img{width:100%;}
.other-services-wrapper h4{margin-top:15px;font-weight:600;color:#000;}
.other-services-wrapper p{font-size:16px;line-height:30px;}
.other-services-wrapper ul{margin-top:20px;}
.other-services-wrapper li{font-size:16px;}
.other-services-wrapper .col-lg-8{padding:50px 15px;}

 @media(min-width:300px) and (max-width:767px) {
     .other-services-wrapper .col-lg-8{padding:0px 15px;}
     .other-services-title{text-align:center;}
     .four{margin-top:50px !important;}
 }



.automation-details .list-name{color:#000;}
.automation-details .list:hover .automation-details .list-no{color:#fff;}
.automation-details .list-no{color:#000;}

.automation-details .list{border-bottom: 1px solid #000;
margin-bottom: 15px;
padding-bottom: 10px;}
.automation-details .list:hover .list-name,.automation-details .list:hover .list-no{color:#3a62ac;}

@media(min-width:300px) and (max-width:767px) {
    
    
}




