/* HEADER */
header {
    position: absolute;
    width: 100%;
    padding: 14px 0;
    top: 0;
    left: 0;
    z-index: 2;
}

header .nvRw {

    align-items: center;
    justify-content: space-between;
}

.mainMenu ul {
    display: flex;
    align-items: center;
    gap: 42px;
}

.mainMenu li a {
    color: #fff;
}

.header-in .mainMenu a {
    color: #fff;
}

video {

    width: 100%;
}

/* HERO */
/* .bhHero {

    background-image: url(../assets/img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
} */

.bhHero {
    padding-top: 0;
}


.bhVideo video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.heroCont {

    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.heroCont h1 {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #fff;
}

.heroCont p {

    color: #f3f3f3;
}

.heroCont a {

    display: block;
    width: fit-content;
    margin-top: 34px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    color: #fff;
}

.heroCont a::after {

    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24%;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.heroCont a:hover::after {

    width: 100%;
    background-color: var(--primary-color);
}

.bhHero .heroCont {

    max-width: 600px;
}

.bhVideo {

    position: relative;

}

.bhVideo::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #0c0c0c61;
}

/* ABOUT SECTION */
.bhAbout {
    background-image: url(../assets/img/abtbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 712px;
}

.abtImgBlk>div {

    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.abtImgBlk img {

    border-radius: 8px;
}

.abtImgMain {
    margin-top: 40px;
}

.abtImgCont {
    padding: 14px;
    color: #fff;
    background-color: var(--primary-color);
    max-width: 320px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: auto;
}

.abtImgCont p {
    font-size: 14px;
}

.aboutCont h2 {

    font-size: 38px;
    color: #0C2784;
    margin-bottom: 20px;
}

.bhMore a {

    display: block;
    width: fit-content;
    margin-top: 34px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.bhMore a::after {

    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 24%;
    height: 2px;
    background-color: #000;
    transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.bhMore a:hover::after {

    width: 100%;
    background-color: var(--primary-color);
}

/* SRVICE SECTION */

.secTitle h2 {
    font-size: 40px;
}

.bhServices .secTitle {
    margin-bottom: 0;
}

.serviceBlk {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 6px;
    transition: all 0.3s;
}

.serviceImg {
    position: relative;

}

.serviceImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.serviceImg::after {

    content: "";
    display: block;
    padding-top: 115%;
}

.serviceContBlk {

    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.serviceContBlk h3 {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    transition: all 0.3s;
}

.serviceBlk::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(0, 44, 91, 0.20) 100%);
    top: 0;
    left: 0;
    z-index: 2;
}

.serviceContBlk {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.serviceContBlk svg {

    transform: rotate(-45deg);
    transition: all 0.3s;
}

.serviceContPop {

    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding-right: 80px;
    z-index: 2;
}

.serviceContPop h3 {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
}

.serviceContPop p {
    color: #fff;
}

.serviceBlk:hover .serviceContPop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.serviceBlk::after {

    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgb(62, 144, 232) 0%, rgba(62, 144, 232, 0.92) 100%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.serviceBlk:hover::after {

    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.serviceBlk:hover .serviceContBlk h3 {

    opacity: 0;
    transform: translateY(-90px);
}

.serviceBlk:hover .serviceContBlk svg {

    transform: rotate(0);
}

.slideArrow span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.slideArrow span:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.slideArrow {
    display: flex;
    align-items: center;
    gap: 6px;
}

.slideSect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.bhServices {
    padding-bottom: 5em;
}

/* FEATURE SECTION */

.bhFeature {

    background: #FAFAFA;
    padding-bottom: 4.2em;
}

.featHd h2 {
    font-size: 38px;
}

.featCard {

    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.featIco {

    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: -1px 11px 13.6px -5px rgba(62, 144, 232, 0.26);
}

.featCont h3 {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 18px;
}

.featCont p {
    color: #535353;
    font-size: 15px;
}

.secTitle {
    margin-bottom: 40px;
}

/* GALLERY */

.gallery-blk {
    position: relative;
    margin-bottom: 24px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery-blk::after {
    content: "";
    display: block;
    padding-top: 100%;
}

.gallery-blk img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.bhProject {
    padding-bottom: 5em;
}


/* CTA */
.bhCta {

    background-image: url(../assets/img/cta.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
}

.bhCta::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2aa8e2d8;
}

.ctacont {

    position: relative;
    z-index: 2;
    text-align: center;
}

.ctacont h2 {

    font-size: 60px;
    color: #fff;
}

.ctacont p {
    color: #fff;
    font-size: 22px;
}

.ctaLink {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 45px;
}

.ctaLink .ctarr {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctaLink .ctarr svg {

    transform: rotate(45deg);

}

.ctaLink .ctarr svg path {

    fill: #2AA8E2;
}

.ctaLink .link {
    display: block;
    width: fit-content;
    padding: 14px 37px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 38px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctaLink a {

    display: flex;

}

.hvrarr {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background-color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctaLink .hvrarr svg path {

    fill: #2AA8E2;
}

.ctaLink a:hover .ctarr {

    opacity: 0;
    visibility: hidden;
    transform: scale(0.6);
}

.ctaLink a:hover .link {

    background-color: #fff;
    color: #2AA8E2;
}

.ctaLink a:hover .link {

    transform: translateX(-25px);
}

.ctaLink a:hover .hvrarr {

    opacity: 1;
    visibility: visible;
    transform: scale(.9)translateX(-30px);
}

/* FOOTER */

footer {

    background-color: #FAFAFA;
    padding-top: 5em;
    padding-bottom: 12px;
}

.ftrLogo img {

    width: 180px;
}

.ftrLink h4 {

    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.ftrLink ul li {
    margin-bottom: 15px;
    font-size: 14px;
}

.ftrcall a {
    padding-right: 12px;
}

.copyRight {

    padding-top: 3em;

}

.copyRight p {

    font-size: 12px;
    text-align: center;
}

.copyRight a {
    color: var(--primary-color);
}

/* ABOUT PAGE */

.pageHeader {

    position: relative;
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;

}

.pageHeader::after {

    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.abtPg {

    background-image: url(../assets/img/about.jpg);

}

.pgHdCont {
    text-align: center;
    position: relative;

}

.pgHdCont h1 {
    font-size: 42px;
    margin-bottom: 6px;
}

.pgHdCont p {
    max-width: 600px;
    margin: auto;
}

.bhVMContain {

    background-image: url(../assets/img/vm-bg.jpg);
    min-height: 580px;
    background-repeat: no-repeat;
    border-radius: 12px;
    background-size: cover;
    padding: 80px;
    display: flex;
    align-items: center;
}

.vmContBlk {
    max-width: 600px;
    margin-left: auto;
}

.vmCont {
    margin-bottom: 24px;
}

.vmCont h3 {
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 500;
}

.bhWhy .featCard {

    background-color: #FAFAFA;
    ;
}

.bhWhy {
    padding-bottom: 5em;
}

/* SERVICE PAGE */

.servicePg {

    background-image: url(../assets/img/services.jpg);
}

.bhService-in .serviceBlk {
    margin: 0;
    margin-bottom: 24px;
}

.coreBlk {

    padding: 14px;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coreBlk:hover .coreImg img {
    transform: scale(1.1);
}

.coreImg {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.coreImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;

    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coreImg::after {
    content: "";
    display: block;
    padding-top: 75%;
}

.coreCont {
    padding: 12px 0;
}

.coreCont h3 {
    font-weight: 500;
    font-size: 16px;
}

.bhCore {
    padding-bottom: 5em;
}

.bhCore .secTitle {

    margin-top: 4em;
}

.bhService-in .container {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 80px;
}

/* PROJECTS PAGE */

.projectPg {

    background-image: url(../assets//img/project.jpg);
}

.contactPg {
    background-image: url(../assets/img/contact.jpg);
}

.ctIco span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: var(--primary-color);
    justify-content: center;
    border-radius: 6px;
}

.ctIco {
    font-size: 20px;
}

.contactBlk {
    max-width: 500px;
    margin-bottom: 24px;
}

.ctHd {

    display: flex;
    align-items: center;
    gap: 12px;
}

.contactForm {
    background: #F9F9F9;
    padding: 40px;
    border-radius: 8px;
}

.contactForm h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.ctInput input,
.ctInput textarea {

    display: block;
    width: 100%;
    padding: 14px;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    font-family: var(--text-font);
    background-color: transparent;
    margin-bottom: 14px;
    transition: all 0.3s;
}

.ctInput textarea {

    resize: none;
    min-height: 120px;
}

.ctInput input:focus,
.ctInput textarea:focus {

    outline: none;
    border: 1px solid var(--primary-color);
}

.ContactFormBlk button {

    padding: 14px;
    color: #fff;
    background-color: var(--primary-color);
    display: block;
    border: none;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--text-font);

}

.bhContact {
    padding-bottom: 5em;
}

.ctCont a {
    display: block;
    margin-bottom: 8px;
}

.ctCont a:last-child {

    margin-bottom: 0;
}

.map {
    padding-top: 3em;

}

.map iframe {

    border-radius: 14px;

}

/* SERVICES INNER PAGE */

.servicein {

    background: rgba(250, 250, 250, 0.80);
}

.servicesin .row {
    align-items: center;
}

.servicein-cont h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.servicein-cont p {
    color: #535353;
}

.servicein-img {
    position: relative;
    overflow: hidden;

}

.servicein-img::after {
    content: "";
    display: block;
    padding-top: 100%;
}

.servicein-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;


}

.servicein-cont {
    padding-right: 3em;
}

.services-in {
    padding-bottom: 5em;
}

.services-in .row {
    justify-content: center;
}

.serviceAdvantage {
    background: rgba(250, 250, 250, 0.80);
    padding-bottom: 5em;
}

.advantangesBlk {
    max-width: 600px;
}

.adv-img {
    position: relative;

}

.adv-img::after {
    content: "";
    display: block;
    padding-top: 100%;
}

.adv-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.advantangesBlk h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
}

.advantagesCont {
    margin-bottom: 20px;
}

.advantagesCont:last-child {
    margin-bottom: 0;
}

.advantagesCont h3 {
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 20px;
}

.pebbg {

    background-image: url(../assets/img/app-1.jpg);


}

.appliSec {
    padding: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.appliSec .container {
    position: relative;
    z-index: 2;
}

.appliSec::after {

    content: "";
    display: block;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.appliCont ul li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 18px;
}

.appliCont {
    padding-left: 60px;
}

.appliCont li::before {

    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 0;
    background-color: #3E90E8;
    border-radius: 50%;
}

.appliCont ul li:last-child {
    margin-bottom: 0;
}

.appHd h2 {
    color: #000;
    font-size: 32px;
    margin-bottom: 12px;
}

.appHd {
    max-width: 600px;
}

.multibg {

    background-image: url(../assets/img/app-2.jpg);
}

.servicein-cont p {
    margin-bottom: 12px;
}

.servicein-cont li {
    position: relative;
    padding-left: 14px;
    margin-right: 12px;
}

.servicein-cont ul {
    display: flex;
    align-items: center;
    margin-top: 14px;
}

.servicein-cont li::before {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.spacefabg {

    background-image: url(../assets/img/app-3.jpg);
}

.generalsteelbg {
    background-image: url(../assets/img/app-4.jpg);
}

.puffbg {
    background-image: url(../assets/img/app-5.jpg);
}


.wpstick {

    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #0db151;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wpstick i {
    font-size: 24px;
}