* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

.max-container {
    max-width: 1440px;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

/* Heading Section */
.heading {
    width: fit-content;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 48px;
}

.main-menu-ul li {
    transition: 0.3s all linear;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.form-li {
    background-color: white !important;
}

.main-menu-ul .dropdown-menu li:first-child {
    border-radius: 10px 10px 0 0;
}

.main-menu-ul .dropdown-menu li:last-child {
    border-radius: 0 0 10px 10px;
}

.main-menu-ul li:hover {
    background-color: #facb48;
}

.heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #2D2D2D;
    position: relative;
    margin-bottom: 4px;
    font-family: "Urbanist", sans-serif;
}

.heading .lines {
    gap: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: line-effect 5s linear forwards infinite;
}

.heading .lines span {
    width: 70px;
    height: 8px;
    border-radius: 100px;
    background-color: #FACB48;
}

.heading .lines span:nth-child(2) {
    width: 30px;
}

@keyframes line-effect {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Buttons Section */
.btn-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-1 {
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    color: #2D2D2D;
    background-color: #FACB48;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit {
    border: none;
}

.contact-us-our-location img {
    width: 12px;
    height: 12px;
}

.contact-us-our-location a {
    display: flex;
    gap: 4px;
    justify-content: start;
    align-items: center;
    color: rgba(45, 45, 45, 1);
}

.btn-1 .btn-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #2D2D2D;
    position: relative;
}

.btn-1 .btn-dot::after {
    position: absolute;
    content: '';
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgb(45, 45, 45, 35%);
    border-radius: 100px;
    transition: all ease-in-out;
    animation: btn-effect 2s linear 1s forwards infinite;
}

.btn-1 .btn-dot::before {
    position: absolute;
    content: '';
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgb(45, 45, 45, 35%);
    border-radius: 100px;
    transition: all ease-in-out;
    animation: btn-effect 2s linear 2s forwards infinite;
}

.btn-2 {
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    color: #FACB48;
    background-color: #2d2d2d;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-2 .btn-dot {
    width: 10px;
    height: 10px;
    position: relative;
    border-radius: 100px;
    display: inline-block;
    background-color: #FACB48;
}

.btn-2 .btn-dot::after {
    position: absolute;
    content: '';
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgb(250, 203, 72, 25%);
    border-radius: 100px;
    transition: all ease-in-out;
    animation: btn-effect 2s linear 1s forwards infinite;
}

.btn-2 .btn-dot::before {
    position: absolute;
    content: '';
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgb(250, 203, 72, 25%);
    border-radius: 100px;
    transition: all ease-in-out;
    animation: btn-effect 2s linear 2s forwards infinite;
}

@keyframes btn-effect {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(2);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Navbar Section */
.top-navbar {
    background-color: #2d2d2d0c;
}

.top-navbar-text a {
    font-size: 14px;
    font-weight: 400;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-navbar-text .topbar-text-style {
    color: #FFBC00;
}

.top-navbar .top-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-navbar .top-nav-inner .latest-update {
    font-size: 16px;
    font-weight: 700;
    color: #2D2D2D;
}

.top-navbar .top-nav-inner .latest-update span {
    font-weight: 400;
}

.top-navbar .top-nav-inner .inner-left {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.top-navbar .top-nav-inner .inner-left .inner-left-sub {
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-navbar .top-nav-inner .inner-left .inner-left-sub:nth-child(1) {
    padding-left: 0;
}

.top-navbar .top-nav-inner .inner-left .inner-left-sub:nth-child(2) {
    border-left: 1px solid #2d2d2d1e;
    border-right: 1px solid #2d2d2d1e;
}

.inner-left-sub img {
    width: 24px;
    height: 24px;
}

.top-navbar .top-nav-inner .inner-right .inner-right-sub {
    padding: 7px 24px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: url("../images/icons/rect-mask.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: auto;
    flex-direction: column;
}



.inner-right-sub img {
    width: 18px;
    height: 18px;

    animation: bellshake 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    45% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    85% {
        transform: rotate(-5deg);
    }

    92% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0);
    }
}

.bottom-navbar,
.bottom-navbar .navbar-brand {
    padding: 0;
}

.bottom-navbar .navbar-brand img {
    width: 227px;
    height: 82px;
}

.navbar-nav {
    gap: 4px;
    list-style-type: none;
}

.navbar-nav .nav-item {
    padding: 29px 0;
}

.navbar-nav .nav-item:last-child {
    padding: 15px 0;
}

.navbar-nav .nav-item .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link.active {
    color: #FFBC00;
}

.navbar-nav .nav-link.active svg path {
    color: #FFBC00;
    stroke: #ffbc00;
}

.navbar-nav .nav-item:hover .nav-link {
    color: #000000;
}

.navbar-nav .nav-item:hover svg path {
    stroke: #000000;
}

.navbar-nav .nav-item:hover svg {
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .dropdown-menu {
    top: 100%;
    left: -1px;
    margin-top: -1px;
    display: none;
    width: 260px;
    border-radius: 0 0 10px 10px;
    background-color: #facb48;
    padding: 20px 20px 20px 20px;
}

.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    border: 0;
}

.navbar-nav .nav-item:focus .dropdown-menu {
    display: block;
}


.navbar-nav .nav-item .dropdown-menu li {
    padding: 8px 0 8px 12px !important;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #2d2d2d;
    text-wrap: nowrap;
    background: none;
}

.navbar-nav .nav-item .dropdown-menu li:hover {
    background-color: #FACB48;
}

.navbar-nav .nav-item .emp-login-form {
    padding: 24px;
    width: 320px;
    left: -143px;
}

.navbar-nav .nav-item .emp-login-form .form-control {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    padding: 12px 14px;
    border-radius: 0;
    background-color: rgba(153, 153, 153, 0.1);
}

.navbar-nav .nav-item .emp-login-form .form-control::placeholder {
    color: #999999;
}

.navbar-nav .nav-item .emp-login-form .form-control:focus {
    color: #999999;
    border-color: #FACB48;
    outline: 0;
    box-shadow: none;
}



/* Hero Section */
.hero-section {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-section-bg.webp'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 218px 0;
    transition: all 0.3s ease-in-out;
    position: relative;
    height: 100vh;
}

.hero-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-section .hero-content {
    max-width: 583px;
}

.hero-section .hero-content .hero-sub-heading {
    font-size: 16px;
    font-weight: 500;
    color: #FACB48;
    margin-bottom: 12px;
}

.hero-section .hero-content .hero-main-heading {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 28px;
}

/* Owl Slider Starts */

.infinite_scroll_animation {
    padding: 24px 0px;
}

.contain {
    width: 100%;
    overflow: hidden;
}

.animation-div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    gap: 62px;
}

.animation-main-div {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    gap: 62px;
    animation: moveRightToLeft 35s linear infinite;
}

@keyframes moveRightToLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

#owl-carousel2 .item {
    align-items: center;
    background-color: white;
    color: white;
    display: flex;
    height: 82px;
    justify-content: center;
    width: 100%;
}

.item img {
    border: 1px solid #2D2D2D;
    padding: 5px;
    height: 70px;
    filter: grayscale(100%);
    opacity: 22%;
    cursor: pointer;
    transition: 0.2 s all linear;
}

.home-page-slider .animation-div .item {
    border: 1px solid #FACB48;
}

.home-page-slider .animation-div .item img {
    border: transparent;
    transition: 0.3s all linear;
}


#owl-carousel3 .item img {
    border: 0px solid #2D2D2D;
    padding: 5px;
    height: 100%;
    width: 100%;
    filter: grayscale(0%);
    opacity: 100%;
    cursor: pointer;
    transition: 0.2 s all linear;
}

.home-page-slider .item img:hover {
    filter: grayscale(0);
    opacity: 100%;
    padding: 5px;
}

.item img:hover {
    filter: grayscale(0);
    opacity: 100%;
}

#owl-carousel1 .owl-item {
    width: fit-content !important;
    margin-right: 30px;
    opacity: 100%;
    transition: all;
}

/* Owl Slider Ends */

.portfolio-section {
    padding: 118px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-section .heading {
    margin: 0 auto;
    margin-bottom: 48px;
}

.circle {
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    transition: ease-in-out;
    transform-origin: center;
    position: absolute;
    inset: 0;
    margin: auto;
    border: 1px solid rgba(45, 45, 45, 10%);
    z-index: -1;
}

.circle.delay1 {
    border: 1px solid rgba(45, 45, 45, 10%);
}

.delay2 {
    animation: waves 4s linear 1s forwards infinite;
}

.delay3 {
    animation: waves 4s linear 2s forwards infinite;
}

.delay4 {
    animation: waves 4s linear 3s forwards infinite;
}

.delay5 {
    animation: waves 4s linear 4s forwards infinite;
}

.portfolio-section .portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.portfolio-section .portfolio-cards .card {
    position: relative;
    padding: 42px;
    background-color: #2D2D2D;
    border-radius: 24px;
    border: 1px solid rgb(46, 46, 46, 10%);
    transition: all 0.3s ease-in-out;
}

.portfolio-section .portfolio-cards .card img {
    position: absolute;
    width: 142px;
    height: 142px;
    top: 11px;
    right: -17px;
    transition: all 0.25s ease-in-out;
}

.portfolio-section .portfolio-cards .card h3 {
    font-size: 62px;
    font-weight: 800;
    color: #FACB48;
    margin-bottom: 24px;
    font-family: "Urbanist", sans-serif;
}

.portfolio-section .portfolio-cards .card p {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-wrap: wrap;
}

.portfolio-section .portfolio-cards .card:hover {
    transform: scale(1.025);
}


.info-section {
    padding: 84px 0;
    background-color: rgba(45, 45, 45, 4%);
    overflow: hidden;
}

.info-section .heading {
    margin: 0;
    margin-bottom: 22px;
}

.info-section .inner-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 84px;
}

.inner-section img {
    height: 703px;
    object-fit: cover;
    width: 100%;
}

.sustainability img {
    margin-bottom: 42px;
    border-radius: 52px 32px;
    transition: all 0.3s ease-in-out;
}

.sustainability:hover img {
    transform: scale(1.01);
}

.img-shadow-div {
    position: relative;
}

.img-shadow-div::after {
    position: absolute;
    content: "";
    height: 90%;
    width: 110%;
    left: -42%;
    top: 3%;
    background-image: url(../images/img-shadow-yellow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}


.img-shadow-div-right {
    position: relative;
}

.img-shadow-div-right::after {
    position: absolute;
    content: "";
    height: 90%;
    width: 110%;
    right: -44%;
    top: 4%;
    background-image: url(../images/img-shadow-yellow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}


.people-section img {
    border-radius: 52px 32px;
    transition: all 0.3s ease-in-out;
}

.people-section:hover img {
    transform: scale(1.01);
}

.info-section .heading .lines {
    justify-content: flex-start;
}

.inner-section p {
    font-size: 20px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 34px;
}

.people-section p {
    margin-bottom: 34px;
}

.people-section .btn-1 {
    margin-bottom: 42px;
}

.our-services {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 84px 0;
    background-image: linear-gradient(rgba(244, 244, 244, .95), rgba(244, 244, 244, .95)), url('../images/our-service-bg.png');
}

.our-services .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.our-services .service-cards .card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    border: none;
    border-radius: 0;
    border-radius: 48px 24px;
    border: 1px solid #2D2D2D1A;
    justify-content: space-between;
    background-color: #fffbf0;
    transition: all 0.3s ease-in-out;
}

.our-services .service-cards .card:hover {
    transform: scale(1.05);
}

.our-services .service-cards .card .top-field {
    width: 100%;
    height: 254px;
}

.our-services .service-cards .card .top-field img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 83%);
    transition: all 0.3s ease-in-out;
}

.our-services .service-cards .card:hover .top-field img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.our-services .service-cards .card .bottom-field {
    padding: 0 24px 24px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 24px;
    margin-top: -10px;
}

.our-services .service-heading {
    display: flex;
    align-items: center;
    gap: 18px;
}

.our-services .service-cards .card .bottom-field .service-icon {
    padding: 15px;
    background-color: #FACB48;
    z-index: 1;
}

.our-services .service-cards .card .bottom-field .service-icon img {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
}

.our-services .service-cards .card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D2D2D;
}

.our-services .service-cards .card p {
    color: #2D2D2D;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
}

.our-services .service-cards .btn-2 {
    color: #fff;
    background-color: #2d2d2d;
    gap: 10px;
}

.our-location {
    padding: 48px 0 84px 0;
}

/* Map Section */
.map-view {
    width: 100%;
    height: auto;
    position: relative;
}

.map-view img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.map-view .location-point {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: rgba(52, 168, 97, 80%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-view .location-point::after,
.map-view .location-point::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: rgb(52, 168, 96, 25%);
    animation: location-pin 2s linear 1s forwards infinite;
}

.map-view .location-point::before {
    animation-delay: 2s;
}

@keyframes location-pin {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* Map View Section */
.map-view .location-point.location-point-1 {
    top: 50.5%;
    left: 61.1%;
}

.map-view .location-point.location-point-2 {
    top: 44.5%;
    left: 21.35%;
}

.map-view .location-point.location-point-3 {
    top: 54.5%;
    left: 68.5%;
}

.map-view .location-point.location-point-4 {
    top: 58.6%;
    left: 43.3%;
}

.map-view .location-point.location-point-5 {
    top: 51.5%;
    left: 46.2%;
}

.map-view .location-point.location-point-6 {
    top: 75.5%;
    left: 55.2%;
}

.map-view .location-point.location-point-7 {
    top: 58%;
    left: 46%;
}

.map-view .location-point.location-point-8 {
    top: 60.5%;
    left: 46.1%;
}

.map-view .location-point.location-point-9 {
    top: 55.5%;
    left: 42.5%;
}

.map-view .location-point.location-point-10 {
    top: 61%;
    left: 44.5%;
}

/* Map View Section */
.map-view .location-point.location_uae {
    top: 50.5%;
    left: 61.1%;
}

.map-view .location-point.location_united_states_of_america {
    top: 44.5%;
    left: 21.35%;
}

.map-view .location-point.location_india {
    top: 54.5%;
    left: 68.5%;
}

.map-view .location-point.location_guinea {
    top: 58.6%;
    left: 43.3%;
}

.map-view .location-point.location_mali {
    top: 51.5%;
    left: 46.2%;
}

.map-view .location-point.location_zimbabwe {
    top: 75.5%;
    left: 55.2%;
}

.map-view .location-point.location_burkina_faso {
    top: 58%;
    left: 46%;
}

.map-view .location-point.location_ghana {
    top: 60.5%;
    left: 46.1%;
}

.map-view .location-point.location_senegal {
    top: 55.5%;
    left: 42.5%;
}

.map-view .location-point.location_cote_divoire {
    top: 61%;
    left: 44.5%;
}

.map-view .location-point.location_afghanistan {
    top: 46.5%;
    left: 65.5%;
}

.map-view .location-point.location_albania {
    top: 39.5%;
    left: 52.5%;
}

.map-view .location-point.location_algeria {
    top: 46.5%;
    left: 47.5%;
}

.map-view .location-point.location_andorra {
    top: 39%;
    left: 46.5%;
}

.map-view .location-point.location_antigua_and_barbuda {
    top: 54%;
    left: 27.5%;
}

.map-view .location-point.location_argentina {
    top: 87%;
    left: 28%;
}

.map-view .location-point.location_armenia {
    top: 87%;
    left: 28%;
}

.map-view .location-point.location_australia {
    top: 77%;
    left: 84%;
}

.map-view .location-point.location_austria {
    top: 77%;
    left: 84%;
}

.map-view .location-point.location_azerbaijan {
    top: 37%;
    left: 50%;
}

.map-view .location-point.location_bahamas {
    top: 53%;
    left: 27%;
}

.map-view .location-point.location_bahrain {
    top: 49.50%;
    left: 60%;
}

.map-view .location-point.location_bangladesh {
    top: 51.5%;
    left: 73%;
}

.map-view .location-point.location_barbados {
    top: 56.5%;
    left: 30%;
}

.map-view .location-point.location_belarus {
    top: 31.5%;
    left: 55%;
}

.map-view .location-point.location_belgium {
    top: 33.5%;
    left: 48%;
}


.map-view .location-point.location_belize {
    top: 60.5%;
    left: 46.5%;
}

.map-view .location-point.location_benin {
    top: 60.5%;
    left: 46.5%;
}

.map-view .location-point.location_bhutan {
    top: 48.5%;
    left: 70.5%;
}

.map-view .location-point.location_bolivia {
    top: 75.5%;
    left: 28.5%;
}

.map-view .location-point.location_bosnia_and_herzegovina {
    top: 37.5%;
    left: 51.5%;
}

.map-view .location-point.location_botswana {
    top: 79.5%;
    left: 53.5%;
}

.map-view .location-point.location_brazil {
    top: 70.5%;
    left: 32.5%;
}

.map-view .location-point.location_brunei {
    top: 61%;
    left: 79%;
}

.map-view .location-point.location_bulgaria {
    top: 38%;
    left: 54%;
}

.map-view .location-point.location_burkina_faso {
    top: 59%;
    left: 45%;
}

.map-view .location-point.location_burundi {
    top: 68%;
    left: 55%;
}

.map-view .location-point.location_cabo_verde {
    top: 55%;
    left: 41%;
}

.map-view .location-point.location_cambodia {
    top: 57%;
    left: 77%;
}

.map-view .location-point.location_cameroon {
    top: 60%;
    left: 48%;
}

.map-view .location-point.location_canada {
    top: 29%;
    left: 16%;
}

.map-view .location-point.location_central_african_republic {
    top: 60%;
    left: 53%;
}

.map-view .location-point.location_chad {
    top: 54%;
    left: 51%;
}

.map-view .location-point.location_chile {
    top: 73%;
    left: 99%;
}

.map-view .location-point.location_china {
    top: 42%;
    left: 71%;
}

.map-view .location-point.location_colombia {
    top: 61%;
    left: 26%;
}

.map-view .location-point.location_comoros {
    top: 70%;
    left: 59%;
}

.map-view .location-point.location_congo_democratic_republic {
    top: 63%;
    left: 53%;
}

.map-view .location-point.location_congo_republic {
    top: 63%;
    left: 50%;
}

.map-view .location-point.location_costa_rica {
    top: 58%;
    left: 23%;
}

.map-view .location-point.location_croatia {
    top: 36%;
    left: 51%;
}

.map-view .location-point.location_cuba {
    top: 52%;
    left: 25%;
}

.map-view .location-point.location_cyprus {
    top: 44%;
    left: 55%;
}

.map-view .location-point.location_czech_republic {
    top: 34%;
    left: 50%;
}

.map-view .location-point.location_denmark {
    top: 28%;
    left: 49%;
}

.map-view .location-point.location_dominica {
    top: 56%;
    left: 29%;
}

.map-view .location-point.location_dominican_republic {
    top: 54%;
    left: 28%;
}

.map-view .location-point.location_east_timor {
    top: 69%;
    left: 82%;
}

.map-view .location-point.location_ecuador {
    top: 68%;
    left: 21%;
}

.map-view .location-point.location_egypt {
    top: 47%;
    left: 55%;
}

.map-view .location-point.location_el_salvador {
    top: 59%;
    left: 24%;
}

.map-view .location-point.location_equatorial_guinea {
    top: 59%;
    left: 24%;
}

.map-view .location-point.location_el_salvador {
    top: 63%;
    left: 50%;
}

.map-view .location-point.location_eritrea {
    top: 57%;
    left: 58%;
}

.map-view .location-point.location_equatorial_guinea {
    top: 62%;
    left: 50%;
}

.map-view .location-point.location_equatorial_eritrea {
    top: 64%;
    left: 49.50%;
}

.map-view .location-point.location_estonia {
    top: 26%;
    left: 53.5%;
}

.map-view .location-point.location_eswatini {
    top: 81%;
    left: 54.5%;
}

.map-view .location-point.location_fiji {
    top: 81%;
    left: 54.5%;
}

.map-view .location-point.location_finland {
    top: 18%;
    left: 55.5%;
}

.map-view .location-point.location_france {
    top: 34%;
    left: 46.5%;
}

.map-view .location-point.location_gabon {
    top: 63%;
    left: 49.5%;
}

.map-view .location-point.location_gambia {
    top: 55%;
    left: 42.5%;
}

.map-view .location-point.location_georgia {
    top: 38%;
    left: 58.5%;
}

.map-view .location-point.location_germany {
    top: 31%;
    left: 48.5%;
}

.map-view .location-point.location_greece {
    top: 59%;
    left: 32.5%;
}

.map-view .location-point.location_grenada {
    top: 59%;
    left: 32.5%;
}

.map-view .location-point.location_guatemala {
    top: 57%;
    left: 22.5%;
}

.map-view .location-point.location_guinea_bissau {
    top: 55%;
    left: 42.5%;
}

.map-view .location-point.location_guyana {
    top: 63%;
    left: 31.5%;
}

.map-view .location-point.location_haiti {
    top: 54%;
    left: 27.5%;
}

.map-view .location-point.location_honduras {
    top: 55%;
    left: 22.5%;
}

.map-view .location-point.location_hungary {
    top: 35%;
    left: 52.5%;
}

.map-view .location-point.location_iceland {
    top: 21%;
    left: 41.5%;
}

.map-view .location-point.location_indonesia {
    top: 66%;
    left: 75.5%;
}

.map-view .location-point.location_iran {
    top: 47%;
    left: 63.5%;
}


.map-view .location-point.location_iraq {
    top: 46%;
    left: 62.5%;
}

.map-view .location-point.location_ireland {
    top: 31%;
    left: 44.5%;
}

.map-view .location-point.location_israel {
    top: 45%;
    left: 60.5%;
}

.map-view .location-point.location_italy {
    top: 39%;
    left: 50.5%;
}

.map-view .location-point.location_jamaica {
    top: 55%;
    left: 27.5%;
}

.map-view .location-point.location_japan {
    top: 42%;
    left: 85.5%;
}

.map-view .location-point.location_jordan {
    top: 47%;
    left: 61.5%;
}

.map-view .location-point.location_kazakhstan {
    top: 35%;
    left: 65.5%;
}

.map-view .location-point.location_kenya {
    top: 65%;
    left: 56.5%;
}

.map-view .location-point.location_korea_north {
    top: 42%;
    left: 82.5%;
}

.map-view .location-point.location_korea_south {
    top: 43%;
    left: 82.5%;
}

.map-view .location-point.location_kosovo {
    top: 38%;
    left: 52.5%;
}

.map-view .location-point.location_kuwait {
    top: 47%;
    left: 59.5%;
}

.map-view .location-point.location_kyrgyzstan {
    top: 44%;
    left: 65.5%;
}

.map-view .location-point.location_laos {
    top: 54%;
    left: 75.5%;
}

.map-view .location-point.location_latvia {
    top: 27%;
    left: 54%;
}

.map-view .location-point.location_lebanon {
    top: 44%;
    left: 56.50%;
}

.map-view .location-point.location_lesotho {
    top: 80%;
    left: 54.5%;
}

.map-view .location-point.location_liberia {
    top: 60%;
    left: 43.5%;
}

.map-view .location-point.location_libya {
    top: 47%;
    left: 50.5%;
}

.map-view .location-point.location_liechtenstein {
    top: 34%;
    left: 50.5%;
}

.map-view .location-point.location_lithuania {
    top: 29%;
    left: 52.5%;
}

.map-view .location-point.location_luxembourg {
    top: 35%;
    left: 48.5%;
}

.map-view .location-point.location_madagascar {
    top: 74%;
    left: 59.5%;
}

.map-view .location-point.location_malawi {
    top: 69%;
    left: 55.5%;
}

.map-view .location-point.location_malaysia {
    top: 62%;
    left: 75.5%;
}

.map-view .location-point.location_maldives {
    top: 60%;
    left: 66.5%;
}

.map-view .location-point.location_mali {
    top: 56%;
    left: 43.5%;
}

.map-view .location-point.location_malta {
    top: 43%;
    left: 50.5%;
}

.map-view .location-point.location_marshall_islands {
    top: 74%;
    left: 99.5%;
}

.map-view .location-point.location_mauritania {
    top: 53%;
    left: 42.5%;
}

.map-view .location-point.location_mauritius {
    top: 75%;
    left: 62.5%;
}

.map-view .location-point.location_mexico {
    top: 50%;
    left: 18.5%;
}

.map-view .location-point.location_micronesia {
    top: 61%;
    left: 91.5%;
}

.map-view .location-point.location_moldova {
    top: 37%;
    left: 54.5%;
}

.map-view .location-point.location_monaco {
    top: 37%;
    left: 48.5%;
}

.map-view .location-point.location_mongolia {
    top: 29%;
    left: 71.5%;
}

.map-view .location-point.location_montenegro {
    top: 36%;
    left: 50.5%;
}

.map-view .location-point.location_morocco {
    top: 49%;
    left: 43.5%;
}

.map-view .location-point.location_myanmar {
    top: 52%;
    left: 73.5%;
}

.map-view .location-point.location_namibia {
    top: 76%;
    left: 51.5%;
}

.map-view .location-point.location_nauru {
    top: 48%;
    left: 69.5%;
}

.map-view .location-point.location_nepal {
    top: 50%;
    left: 50%;
}

.map-view .location-point.location_netherlands {
    top: 32.6%;
    left: 47.3%;
}

.map-view .location-point.location_new_zealand {
    top: 88%;
    left: 95.5%;
}

.map-view .location-point.location_nicaragua {
  top: 59%;
  left: 23.5%;
}

.map-view .location-point.location_niger {
  top: 58%;
  left: 49.5%;
}

.map-view .location-point.location_nigeria {
  top: 62%;
  left: 50.5%;
}

.map-view .location-point.location_north_macedonia {
  top: 37%;
  left: 52.5%;
}

.map-view .location-point.location_norway {
  top: 23%;
  left: 49.5%;
}

.map-view .location-point.location_oman {
  top: 51%;
  left: 62.5%;
}

.map-view .location-point.location_pakistan {
  top: 47%;
  left: 66.5%;
}

.map-view .location-point.location_palau {
  top: 60%;
  left: 83.5%;
}

.map-view .location-point.location_palestine {
  top: 45%;
  left: 56.5%;
}

.map-view .location-point.location_panama {
  top: 59%;
  left: 24.5%;
}

.map-view .location-point.location_papua_new_guinea {
  top: 68%;
  left: 87.5%;
}

.map-view .location-point.location_paraguay {
  top: 80%;
  left: 30.5%;
}

.map-view .location-point.location_peru {
  top: 69%;
  left: 25.5%;
}

.map-view .location-point.location_philippines {
  top: 58%;
  left: 81.5%;
}

.map-view .location-point.location_poland {
  top: 33%;
  left: 51.5%;
}

.map-view .location-point.location_portugal {
  top: 40%;
  left: 44.5%;
}

.map-view .location-point.location_qatar {
  top: 49%;
  left: 62%;
}

.map-view .location-point.location_romania {
  top: 37%;
  left: 53%;
}

.map-view .location-point.location_russia {
  top: 24%;
  left: 72%;
}

.map-view .location-point.location_rwanda {
  top: 68%;
  left: 54%;
}

.map-view .location-point.location_saint_kitts_and_nevis {
  top: 57%;
    left: 30%;
}

.map-view .location-point.location_saint_lucia {
  top: 57%;
  left: 30%;
}

.map-view .location-point.location_saint_vincent_and_the_grenadines {
  top: 57%;
  left: 30%;
}

.map-view .location-point.location_samoa {
  top: 73%;
  left: 99%;
}

.map-view .location-point.location_san_marino {
  top: 38%;
  left: 50%;
}

.map-view .location-point.location_sao_tome_and_principe {
  top: 63%;
  left: 48.5%;
}

.map-view .location-point.location_saudi_arabia {
  top: 48.5%;
  left: 59%;
}

.map-view .location-point.location_senegal{
  top: 55%;
  left: 42.5%;
}

.map-view .location-point.location_serbia { 
  top: 37.5%;
    left: 52.5%;
}

.map-view .location-point.location_seychelles {
  top: 69%;
  left: 59%;
}

.map-view .location-point.location_sierra_leone {
  top: 59.5%;
  left: 43.5%;
}

.map-view .location-point.location_singapore {
  top: 67%;
  left: 76%;
}

.map-view .location-point.location_slovakia {
  top: 35%;
  left: 52%;
}

.map-view .location-point.location_slovenia {
     top: 35%;
    left: 52%;

}


.map-view .location-point.location_solomon_islands {
  top: 70%;
  left: 92%;
}

.map-view .location-point.location_somalia{
  top: 61%;
  left: 60%;
}
.map-view .location-point.location_south_africa {
  top: 83%;
  left: 52.5%;
}

.map-view .location-point.location_south_sudan {
  top: 60%;
  left: 55%;
}

.map-view .location-point.location_spain {
  top: 40%;
  left: 45.5%;
}

.map-view .location-point.location_sri_lanka {
  top: 59.5%;
  left: 69.5%;
}

.map-view .location-point.location_sudan {
  top: 53%;
  left: 55%;
}

.map-view .location-point.location_suriname{
  top: 63%;
  left: 32%;
}

.map-view .location-point.location_sweden{
  top: 25%;
  left: 50.5%;
}

.map-view .location-point.location_switzerland {
  top: 34%;
  left: 50%;
}

.map-view .location-point.location_syria {
  top: 44%;
  left: 56.50%;
}

.map-view .location-point.location_taiwan {
  top: 50%;
  left: 80.50%;
}

.map-view .location-point.location_tajikistan {
  top: 44.5%;
  left: 66.5%;
}

.map-view .location-point.location_tanzania {
  top: 67.5%;
  left: 57.2%;
}

.map-view .location-point.location_thailand {
  top: 52.5%;
    left: 74%;
}

.map-view .location-point.location_togo {
  top: 59.5%;
  left: 47.5%;
}

.map-view .location-point.location_tonga{
  top: 70%;
  left: 100%;
}

.map-view .location-point.location_trinidad_and_tobago{
  top: 56%;
  left: 29%;
}

.map-view .location-point.location_tunisia{
  top: 42.5%;
  left: 49.5%;
}


.map-view .location-point.location_turkey{
  top: 40%;
  left: 55%;
}


.map-view .location-point.location_turkmenistan{
  top: 41.5%;
  left: 62.5%;
}


.map-view .location-point.location_tuvalu{
  top: 65%;
  left: 99%;
}


.map-view .location-point.location_uganda{
  top: 61%;
  left: 56%;
}


.map-view .location-point.location_ukraine{
  top: 34%;
  left: 55%;
}


.map-view .location-point.location_united_arab_emirates{
  top: 50.5%;
  left: 61.1%;
}


.map-view .location-point.location_united_kingdom{
  top: 50%;
  left: 50%;
}


.map-view .location-point.location_united_kingdom{
  top: 29%;
  left: 45.5%;
}

.map-view .location-point.location_uruguay{
  top: 83%;
  left: 31%;
}

.map-view .location-point.location_uzbekistan{
  top: 42.5%;
  left: 65.5%;
}

.map-view .location-point.location_vanuatu{
  top: 77%;
  left: 96%;
}

.map-view .location-point.location_vatican_city{
  top: 40.5%;
  left: 52.5%;
}


.map-view .location-point.location_venezuela{
  top: 61%;
  left: 29%;
}


.map-view .location-point.location_vietnam{
  top: 57.5%;
  left: 77%;
}


.map-view .location-point.location_yemen{
  top: 55.5%;
  left: 60%;
}

.map-view .location-point.location_zambia{
  top: 75%;
  left: 54%;
}


.map-view .location-point.location_zimbabwe{
  top: 76%;
  left: 54%;
}

















.map-view .location-point .tooltip-data {
    margin: auto;
    padding: 8px;
    border-radius: 4px;
    min-width: 155px;
    position: absolute;
    bottom: 300%;
    opacity: 0;
    pointer-events: none;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgb(45, 45, 45, 20%);
    display: flex;
    gap: 10px;
}

.map-view .location-point .tooltip-data::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: -6px;
    left: 45%;
    background-color: #fff;
    transform: rotate(45deg);
    border-right: 1px solid rgb(45, 45, 45, 20%);
    border-bottom: 1px solid rgb(45, 45, 45, 20%);
}

.map-view .location-point:hover .tooltip-data {
    opacity: 1;
    pointer-events: all;
}

.tooltip-data h4 {
    font-size: 14px;
    font-weight: 600;
    color: #FACB48;
    line-height: auto;
    margin-bottom: 4px;
}

.tooltip-data p {
    font-size: 10px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 4px;
}

.current-projects-big-img {
    flex-grow: 1;
}

/* Blog Section Start */

.our-blog {
    padding: 84px 0;
    background-color: #2D2D2D0D;
}

.btn-blog {
    margin: auto;
}

/* .our-blog .container {
  display: flex;
  align-items: center;
  flex-direction: column;
} */

/* .our-blog .blog-cards {
  display: flex;
  align-items: center;
  gap: 48px;
} */
/* .our-blog .cards {
  height: 396px;
} */

.our-blog .blog-cards .card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    border-radius: 40px 12px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 396px;
    width: 100%;
}

.our-blog .blog-cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.our-blog .blog-cards .card:hover::before {
    background-color: #000000CC;
}

/* .our-blog .blog-cards .card.blog-one {
  background-image: url('../images/blog-one.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-blog .blog-cards .card.blog-two {
  background-image: url('../images/blog-two.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-blog .blog-cards .card.blog-three {
  background-image: url('../images/blog-three.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
} */

.our-blog .blog-cards .card .share-icon {
    width: 52px;
    height: 52px;
    padding: 12px;
    background-color: #fff;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.our-blog .blog-cards .card:hover .share-icon {
    background-color: #FACB48;
}

.our-blog .blog-cards .card .blog-content {
    z-index: 2;
    transform: translateY(76px);
    transition: all 0.3s ease-in-out;
}

.our-blog .blog-cards .card:hover .blog-content {
    transform: translateY(0);
}

.our-blog .blog-cards .card .blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.our-blog .blog-cards .card .blog-content p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
}

/* We Better Section */
.we-better-section {
    padding: 42px 0;
    border-top: 1px solid rgb(45, 45, 45, 10%);
}

.we-better-section .heading {
    margin: 0;
    margin-bottom: 42px;
}

.we-better-section .better-details-section {
    display: flex;
    gap: 42px;
}

.we-better-section .better-details-section h3 {
    font-size: 18px;
    font-weight: 800;
    color: #2D2D2D;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 8px;
}

.we-better-section .better-details-section p {
    font-size: 16px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 24px;
}

/* Footer Section */

.footer-section .footer-top {
    margin: 42px 0;
}

.footer-section .contact-us-icon {
    max-width: 124px;
    max-height: 124px;
    object-fit: contain;
    position: absolute;
    top: -45%;
    right: -32px;
    animation: rotate-icon 10s linear forwards infinite;
}

.footer-section .contact-us-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-section .contact-us-icon:hover {
    animation-play-state: paused;
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-section .inner-container {
    position: relative;
    display: flex;
    gap: 45px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-section .map-view {
    max-width: 402px;
    height: auto;
}

.footer-section .map-view .location-point {
    width: 5px;
    height: 5px;
}

.footer-section .map-view .location-point::before {
    width: 8px;
    height: 8px;
}

.footer-section .footer-content {
    width: 100%;
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.footer-section .footer-content .heading {
    margin: 0;
    margin-bottom: 24px;
}

.footer-section .footer-content .heading .lines {
    justify-content: flex-start;
}

.footer-section .footer-content .heading .lines .line-1 {
    width: 40px;
}

.footer-section .footer-content .heading .lines .line-2 {
    width: 20px;
}

.footer-section .footer-content .heading h2 {
    font-size: 18px;
    font-weight: 800;
    color: #2D2D2D;
}

.footer-section .footer-content .footer-menu-list {
    list-style-type: none;
    padding: 0;
}

.footer-section .footer-content .footer-menu-list li {
    margin-bottom: 8px;
}

.footer-section .footer-content .footer-menu-list li a {
    font-size: 16px;
    font-weight: 400;
    color: #2D2D2D;
    text-transform: capitalize;
    line-height: 150%;
    transition: all 0.2s ease-in-out;
}

.footer-section .footer-content .footer-menu-list li:hover a {
    color: #FACB48;
}

.footer-bottom {
    padding: 12px 0;
    background-color: #2d2d2d0c;
}

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

.footer-bottom .bottom-content p {
    font-size: 16px;
    font-weight: 400;
    color: #2D2D2D;
}

.footer-bottom .bottom-content p a {
    color: #2D2D2D;
}

.footer-bottom .bottom-content p span {
    font-weight: 700;
}

.footer-section .footer-top .inner-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section .inner-bottom-container .left-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .inner-bottom-container .left-side .inner-left-sub {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-section .footer-top .inner-bottom-container .btn-2 {
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    gap: 20px;
}

/* Company Overview */

.page-hero-section {
    width: 100%;
    height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-section.workplace-safety-and-health {
    background: url('../images/workplace-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.company-overview {
    background: url('../images/company-overview-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.why-nrcp {
    background: url('../images/why-nrcp-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.blog {
    background: url('../images/blog-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.mining-service {
    background: url('../images/mining-services-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.water-drilling {
    background: url('../images/water-drilling-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.export-services {
    background: url('../images/hero-bg-mask.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.people {
    background: url('../images/people-bg.webp');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.page-hero-section.fleet {
    background: url('../images/fleet-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.current-project {
    background: url('../images/current-project.webp');
    background-repeat: no-repeat;
    background-position: center 15%;
    background-size: cover;
}

.page-hero-section.privacy-policy {
    background: url('../images/policy-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.sustainability {
    background: url('../images/sustainability-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.carrers {
    background: url('../images/carrer-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.contact-us {
    background: url('../images/contact-us-bg.webp');
    background-repeat: no-repeat;
    background-position: center 100%;
    background-size: cover;
}

.page-hero-section.export-services .page-hero-heading {
    position: absolute;
}

.page-hero-section.export-services {
    overflow: hidden;
    -webkit-mask-position: center;
    /* mask-position: center bottom; */
    mask-position: center top;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    max-height: 390px;
    margin: auto;
    -webkit-mask-image: url(../images/hero-bg-mask.png);
    mask-image: url(../images/hero-bg-mask.png);
}

.page-hero-section.export-services video {
    min-width: 100%;
}

.mission-vision .heading {
    margin-bottom: 22px;
}

.mission-vision-paragraph p,
.mission-vision p {
    font-size: 20px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 34px;
}

.mission-vision-paragraph p {
    text-align: center;
}

.page-hero-section .page-hero-heading {
    padding: 10px;
    background-color: #fff;
}

.page-hero-section .page-hero-heading h1 {
    font-size: 34px;
    font-weight: 900;
    color: #2d2d2d;
}

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

.mission-vision-paragraph {
    margin-bottom: 84px;
}

/* Why NRCP */
.building-relation {
    padding: 84px 0 0 0;
}

.building-relation img {
    width: 100%;
    height: 100%;
}

.committed .nrcp-committed-outer,
.building-relation .relation-outer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.committed ul {
    list-style-type: none;
    padding-left: 0;
}

.committed .custom-list-style li::before {
    background: url('../images/ul-li-marker-black-two.png');
}

.building-relation .building-relation-content {
    padding: 84px;
    background-color: #fff;
    border: 1px solid #2D2D2D0A;
    margin-left: -120px;
    margin-right: 84px;
}

.building-relation .building-relation-content .heading {
    margin: 0;
    margin-bottom: 16px;
}

.building-relation .building-relation-content p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.combine-excellence {
    padding: 84px 0;
}

.combine-excellence img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combine-excellence .content {
    padding: 84px;
    background-color: #2D2D2D;
    height: 100%;
}

.combine-excellence .content .heading {
    text-align: start;
    margin-bottom: 16px;
}

.combine-excellence .content .heading h2 {
    color: #fff;
}

.combine-excellence .content p {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.policy-list {
    padding: 84px 0;
}

.committed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.committed .nrcp-committed {
    padding: 84px;
    margin-right: -120px;
    margin-left: 104px;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #2D2D2D0A;
}

.committed .nrcp-committed p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.committed .nrcp-committed ul li {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.committed .nrcp-committed .heading {
    margin: 0;
    margin-bottom: 16px;
}

.client-partners .partner-paragraph {
    padding: 26px 46px;
    background-color: #FACB48;
}

.client-partners .partner-paragraph p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.explore-career {
    padding: 84px 0;
    background: url('../images/explore-career-mining-img.webp') center/cover no-repeat;
}

.explore-career p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 34px;
    text-align: center;
}

.explore-career .explore-career-container .btn-1 {
    margin: auto;
}

.partner-slider {
    position: relative;
}

.partner-slider .infinite_scroll_animation .item img {
    width: auto;
    height: 58px;
    filter: grayscale(0);
    opacity: 1;
}

.partner-slider .client-partner-list {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FACB48;
    height: 100%;
    padding: 18px 26px 0 42px;
    z-index: 2;
    display: flex;
    align-items: end;
}

.partner-slider .client-partner-list::after {
    position: absolute;
    content: '';
    top: 1px;
    left: 100%;
    width: 56px;
    height: 100%;
    background-color: #FACB48;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.partner-slider .infinite_scroll_animation {
    padding: 19px 0;
}

.partner-slider .client-partner-list h4 {
    font-family: 'Urbanist';
    font-size: 30px;
    font-weight: 700;
    color: #2d2d2d;
}

/* BLog Page CSS*/

.our-blog.bg-none {
    background: none;
}

/* Water Drilling */

.content-section {
    padding-right: 50px;
}

.content-section {
    text-align: left;
}

.content-section h2 {
    color: #FACB48;
    font-size: 20px;
    font-weight: bold;
    
    margin-bottom: 6px;
}

.content-section span {
    color: #2D2D2D;
    font-size: 30px;
    font-weight: bold;
}

.top-headings {
    margin-bottom: 26px;
}

.content-section p {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 26px;
}

.intrested-p span {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
}

.intrested-p {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 26px;
}

.btn-2-black {
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    background-color: #2D2D2D;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-2-black .btn-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #2D2D2D;
    position: relative;
}

.btn-2-black .btn-dot::after {
    position: absolute;
    content: '';
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    transition: all ease-in-out;
    animation: btn-effect 2s linear 1s forwards infinite;
}

.btn-2-black .btn-dot::before {
    position: absolute;
    content: '';
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    transition: all ease-in-out;
    animation: btn-effect 2s linear 2s forwards infinite;
}

.btn-2-black .btn-dot {
    margin-bottom: 0px;
}

.section-padding {
    padding: 84px 0;
}

.mining-info {
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.mining-info img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.right-radius {
    border-radius: 0 100px 0 0;
}

.left-radius {
    border-radius: 100px 0 0 0;
}

.mining-info .mining-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 45, 45, 0.24);
    backdrop-filter: blur(10px);
}

.mining-info .mining-heading {
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 24px;
}

.mining-heading p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.more-services {
    margin-bottom: 42px;
}

.paragraphs-main {
    padding-top: 42px;
}

.paragraphs-main p {
    color: #2D2D2D;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 26px;
}

.paragraphs-main ul {
    list-style-type: none;
    padding-left: 0;
}

.paragraphs-main ul li {
    color: #2D2D2D;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 12px;
}

.paragraphs-main ul li .list-dot {
    width: 100%;
    height: 100%;
    background-color: rgb(45, 45, 45, 35%);
    border-radius: 100px;
}

/* Current Projects CSS */

.project-image {
    width: 100%;
    height: 500px;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;

}

.project-name::before {
    position: absolute;
    top: -30px;
    z-index: 1;
    right: 0;
    width: 30px;
    content: "";
    background: url(../images/before-project.png);
    height: 30px;
    background-repeat: no-repeat;
}

.project-name::after {
    position: absolute;
    bottom: 0px;
    z-index: 1;
    left: -30px;
    width: 30px;
    content: "";
    background: url(../images/before-project.png);
    height: 30px;
    background-repeat: no-repeat;
}

.project-name {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
    background: white;
    padding: 8px 24px 24px 34px;
    border-radius: 32px 0 30px 0;
    max-width: 300px;
}

.project-name h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.current-projects-main .mb-84 {
    margin-bottom: 84px;
}

.project-name p {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

/* .project-image.custom-width{
  width: 500px;
} */
.projects {
    gap: 64px;
    display: flex;
    margin-bottom: 64px;
}

.projects-info.width-max {
    width: max-content;
}

.projects-info {
    width: 500px;
}

.projects-info.custom-width {
    width: 500px;
}

/* Mining Service */
.mine-production img {
    width: 100%;
    height: 100%;
}

.mine-production .mine-production-outer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: flex-start; */
}

.mine-production .mine-production-outer .mine-production-inner {
    margin-left: -100px;
    margin-right: 84px;
    background-color: #2d2d2d;
    color: #fff;
    padding: 42px;
    text-align: left;
}

.mine-production .heading {
    margin: 0px;
    margin-bottom: 16px;
}

.mine-production .heading h2 {
    color: #fff;
}

.mine-production .mine-production-inner p {
    font-size: 20px;
    margin-bottom: 16px;
}

.mine-production .mine-production-inner ul {
    list-style-type: none;
    padding: 0;
}

.mine-production .mine-production-inner ul li {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 14px;
}

.contract-mining {
    padding: 84px 0;
}

.mining-heading .sub-heading {
    font-size: 20px;
    font-weight: 700;
    color: #FACB48;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.mining-heading .main-heading {
    font-size: 30px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.contract-mining .contract-mining-bottom {
    padding: 48px;
    background-color: #FACB48;
}

.contract-mining .contract-mining-bottom .contract-img-section {
    height: 100%;
    width: 100%;
    position: relative;
}

.contract-mining .contract-mining-bottom .mining-contract-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
}

.contract-mining .contract-mining-bottom p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 24px;
    padding-left: 32px;
}

.contract-mining .contract-mining-bottom p span {
    font-weight: 700;
}

.contract-mining .contract-mining-bottom p:first-child {
    border-left: 3px solid #2d2d2d;
}

.contract-mining .contract-mining-bottom ul {
    list-style-type: none;
    padding-left: 32px;
}

.contract-mining .contract-mining-bottom ul li {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.contract-mining-bottom .btn-2 {
    margin-left: 32px;
}

.mining-service-page.more-services {
    padding: 84px 0 0 0;
}

.custom-list-style li:before {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 100%;
    top: 6px;
    left: 0;
    background: url('../images/ul-li-marker.png');
}

.blog-details-style ul li {
    position: relative;
    color: #2D2D2D;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 12px;
    padding-left: 22px;
}

.blog-details-style ul li:before {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 100%;
    top: 6px;
    left: 0;
    background: url(../images/ul-li-marker-black-two.png);
}


.contract-mining-bottom .custom-list-style li:before {
    background: url('../images/ul-li-marker-black.png');
}

.paragraphs-main .custom-list-style li:before {
    background: url('../images/ul-li-marker-black-two.png');
}

.custom-list-style li {
    padding-left: 22px;
    position: relative;
}

/* People Section */

.people-best-skill-right,
.people-best-skill-left {
    padding: 84px 0;
}

.people-best-skill-right img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center right;
    border-radius: 100px 0 0 100px;
}

.people-best-skill-left img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center right;
    border-radius: 0 100px 100px 0;
}

.people-best-skill-left .best-skill-outer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.people-best-skill-right .best-skill-outer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.people-best-skill-right .best-skill-outer .best-skill-inner {
    padding: 100px;
    background-color: #FFFBF0;
    margin-left: 100px;
    margin-right: -100px;
    z-index: 1;
}

.people-best-skill-left .best-skill-outer .best-skill-inner {
    padding: 84px;
    margin-left: -100px;
    background-color: #FFFBF0;
    margin-right: 100px;
}

.best-skill-inner .heading {
    margin: 0;
    margin-bottom: 16px;
}

.best-skill-inner p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.our-approach-card {
    padding: 42px;
    width: 100%;
    height: 100%;
}

.approach-card-one,
.approach-card-four {
    background-color: #FACB48;
}

.approach-card-two,
.approach-card-three {
    background-color: #FACB4814;
}

.our-approach-card img {
    width: 82px;
    height: 82px;
    margin-bottom: 34px;
}

.our-approach-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.our-approach-card p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}


/* === carrer page css start here === */

.beyond-people {
    padding: 84px 0;
}

.job_listings_section {
    padding: 84px 0;
}

.job_listings_section .job_list_accordion .accordion-item {
    border-bottom: 1px solid #2D2D2D1A;
}

.job_listings_section .job_list_accordion .accordion-item:last-child {
    border-bottom: none;
}

.job_listings_section .job_list_accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid #FFBC00;
}

.job_listings_section .job_list_accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 24px 0;
    color: #2d2d2d;
    font-size: 22px;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.job_listings_section .job_list_accordion button:hover,
.job_listings_section .job_list_accordion button:focus {
    cursor: pointer;
    color: #FFBC00;
}

.job_listings_section .job_list_accordion button:hover::after,
.job_listings_section.job_list_accordion button:focus::after {
    cursor: pointer;
    color: #FFBC00;
}

.job_listings_section .job_list_accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.job_listings_section .job_list_accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.job_listings_section .job_list_accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.job_listings_section .job_list_accordion button[aria-expanded='true'] {
    color: #FFBC00;
}

.job_listings_section .job_list_accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.job_listings_section .job_list_accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 100%;
    /* transition: all 200ms linear; */
    /* will-change: opacity, max-height; */
    margin: 24px 0;
    padding: 20px 30px;
}

.job_listings_section .job_list_accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.job_listings_section .job_list_accordion .accordion-content {
    background-color: #F8F8F8;
}

/* === carrer page css end here === */
/* Privacy Policy & Terms & Conditions */

.policy-list .heading {
    margin: 0;
    margin-bottom: 16px;
}

.policy-list p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.policy-list ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-list ul li {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 14px;
}

.policy-list .top-paragraph {
    margin-bottom: 84px;
}

.policy-list .custom-list-style li::before {
    background: url('../images/ul-li-marker-black-two.png');
}

.sustainability-page .combine-excellence img {
    object-position: center right;
}

.sustainability-page .mining-heading .main-heading {
    color: #fff;
    margin-bottom: 26px;
}

.sustainability-page .mining-heading .sub-heading {
    margin-bottom: 6px;
}

.sustainability-page .combine-excellence .content p {
    margin-bottom: 20px;
}

.sustainability-page .combine-excellence .responsible-mining {
    box-shadow: 0px 0px 50px 20px #FACB4840;
}

.sustainability-page.our-approach {
    padding: 84px 0;
}

/* Workplace & Safety */

.cutting-edge {
    padding: 84px 0;
}

.cutting-edge .workplace-heading p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.cutting-edge .workplace-heading h3 {
    font-size: 20px;
    font-weight: 700;
    color: #FACB48;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cutting-edge .workplace-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 26px;
}

.core-values {
    padding: 84px 0;
    background-color: #2D2D2D08;
}

.core-value-cards .core-card {
    padding: 42px;
    border-radius: 20px;
    height: 100%;
}

.core-value-cards .core-card img {
    width: 82px;
    height: 82px;
    margin-bottom: 34px;
}

.core-value-cards .core-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #FFBC00;
    margin-bottom: 12px;
}

.core-value-cards .core-card p {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
}

.core-value-cards .core-card.card-format-one p {
    color: #fff;
}

.core-value-cards .core-card.value-img-container {
    padding: 0;
    display: flex;
}

.core-value-cards .core-card .core-values-img {
    width: 100%;
    height: auto;
    mix-blend-mode: Darken;
    margin-bottom: 0;
}

.core-value-cards .core-card.card-format-one {
    background-color: #2D2D2D;
}

.core-value-cards .core-card.card-format-two {
    background: transparent;
    border: 1px solid #2D2D2D;
}

.core-value-cards .core-card.card-format-three {
    background-color: #fff;
}

.core-value-cards .core-card.card-format-four {
    background-color: #FACB48;
}

.core-value-cards .core-card.card-format-four h4 {
    color: #2d2d2d;
}

.beyond-people h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.beyond-people p {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
}

/* Fleet CSS */
.fleet-inner .heading {
    margin-bottom: 16px;
}

.fleet-inner p {
    font-size: 20px;
}

.fleet-outer {
    background: white;
    padding: 84px;
    width: 720px;
    margin-left: -90px;
    z-index: 2;
}

.banner-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.job_listings_section .heading {
    margin: 0;
    margin-bottom: 48px;
}

.job_list_accordion .content-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.job_list_accordion .content-info .info-details {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job_list_accordion .content-info .info-details img {
    width: 24px;
    height: 24px;
}

.job_list_accordion .content-info .info-details p {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
}

.job_list_accordion .accordion-content .accordion-content-paragraph {
    font-size: 16px;
    font-weight: 400;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.job_list_accordion .accordion-content .accordion-content-paragraph span {
    font-weight: 700;
}

.job_list_accordion .accordion-content .requirements,
.job_list_accordion .accordion-content .key-responsiblity {
    margin-bottom: 20px;
}

.job_list_accordion .accordion-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.job_list_accordion .accordion-content ul {
    list-style-type: none;
    padding: 0;
}

.job_list_accordion .accordion-content ul li {
    margin: 12px 0;
}

.job_list_accordion .accordion-content .custom-list-style li::before {
    background: url('../images/ul-li-marker-black-two.png');
}

.beyond-people .bottom-section {
    margin: 24px 0;
}

/* Fleet CSS */
.fleet-carousel {
    position: relative;
}

.fleet-carousel::before {
    position: absolute;
    content: "";
    left: -130px;
    top: 50%;
    transform: translate(0%, -50%);
    width: 50vw;
    height: 550px;
    background: #FACB48;
}

#owl-carousel3 .item img {
    height: 720px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.fleeet-main-content {
    display: flex;
    align-items: center;
    position: relative;
}

#owl-carousel3.owl-carousel .owl-stage-outer {
    width: 720px;
    height: 720px;
}

#owl-carousel3 .owl-dots .owl-dot.active span {
    width: 26px;
    background: #facb48;
    transition: all ease-in-out 0.3s;
}

#owl-carousel3 .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    transition: all ease-in-out 0.3s;
    background: #E0E0E0;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    margin: 0px 5px;
}

#owl-carousel3 {
    width: auto;
}

#owl-carousel3 .owl-dots {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    filter: blur(1);
    width: 100%;
    bottom: 30px;
    margin-top: 0;
    transition: all ease-in-out 0.3s;
}

/* Blog */

.blog-page .card .blog-main-content {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.blog-page .card:hover .blog-main-content .share-icon {
    background: #FACB48;
    transition: all 0.3s ease-in-out;
}

.blog-page .blog-content .text {
    height: 110px;
}

.blog-page .blog-content {
    z-index: 2;
    transform: translateY(56px);
    transition: all 0.3s ease-in-out;
}

.blog-page .card:hover .blog-main-content {
    background-color: #000000CC;
    transition: all ease-in-out 0.3s;
}

.blog-page .card:hover .blog-content {
    z-index: 2;
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;

}

.blog-page .card .blog-image::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(to bottom, rgba(45, 45, 45, 0), rgba(45, 45, 45, 0.40), rgba(45, 45, 45, 1)) !important;
}

.blog-page .card:hover .blog-image::before {
    transition: all 0.3s ease-in-out;
    background: none;
}

.blog-page .card:hover .blog-content {
    background: none;
    transition: all 0.3s ease-out;
}

.blog-page .card:hover .blog-content a {
    margin-bottom: 24px;
    margin-left: 24px;
}

.blog-page .card .blog-content a {
    margin-left: 24px;
}


.blog-page .blog-content p {
    margin-bottom: 0 !important;
}

.blog-page .blog-content .text h3 {
    padding: 0 24px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-page .blog-content .text p {
    padding: 0 24px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-page .blog-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.blog-page .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-page .card .share-icon {
    width: 52px;
    height: 52px;
    padding: 12px;
    background-color: #fff;
    position: absolute;
    z-index: 2;
    right: 20px;
    transition: all 0.3s ease-in-out;
    top: 20px;
}

.blog-page .card {
    display: block;
    border-radius: 40px 12px;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 396px;
    width: 100%;
}

.blog-page .row .col-12 {
    padding: 0 21px;
}

.blog-page .card {
    margin-bottom: 42px;
}

.blog-details .blog-detail-image img {
    width: 100%;
    height: px;
    object-fit: cover;
    object-position: center;
}

/* .blog-details .regular-p {
  font-size: 16px;
} */

.blog-details-style p {
    font-size: 16px;
}

.blog-details-style ul {
    margin-bottom: 26px;
}

.blog-details .custom-list-style {
    margin-bottom: 26px;
}

.blog-details .paragraphs-main {
    padding-top: 26px;
}

.blog-details .top-headings {
    margin-bottom: 26px;
}

.home-page-bg-video {
    width: 100%;
    position: absolute;
    z-index: -1;
    object-fit: fill;
    top: 0;
    height: 100%;
}

.careers-oppotunities {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: rgba(0, 122, 255, 1);
    text-decoration: underline;
}



/* .video-container {
  width: 640px;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(black, 0.4);

  .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
  }
}
.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/hero-section-bg.jpg') center/cover no-repeat;
  z-index: 2;
  transition: opacity 2s ease-in-out;
} */

/* .hero-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 218px 0;
  transition: all 0.3s ease-in-out;
} */


/* #video-container {
  position: relative;
  width: 100%;
  height: 360px;
}

 #placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  transition: opacity 0.5s ease-in-out;
}

#placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  width: 100%;
  height: 100%;
  display: none;
}  */

.google-map {
    height: 600px;
    position: relative;
    border-radius: 20px;
}

.footer-google-map {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

/* contact us page location table css */

  .our-location_table .table_contain_tile {
  font-size: 30px;
  font-weight: 700;
  color: #2d2d2d;
  font-family: "Urbanist", sans-serif;
  margin: 0 0 4px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.our-location_table .table_contain_tile img {
  width: 40px;
  height: 8px;
}


.our-location_table .location_contain {
  margin-top: 32px;
}

.our-location_table .location_contain_data h1 {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 4px;
}

.our-location_table .location_contain_data p {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

.our-location_table .location_contain_data {
  margin-bottom: 50px;
}

.our-location_table .middel_table_contain {
position: relative;
}

.our-location_table .middel_table_contain:after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  background: #2D2D2D40;
  left: -23px;
}

.our-location_table .middel_table_contain::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  background: #2D2D2D40;
  right: 0;
}
/* contact us page location table css */

.top-paragraph_title {
  margin: 0 !important;
  font-weight: 800 !important;
  color: #2d2d2d !important;
}

.mobile_menu_content {
  justify-content: flex-start !important;
  gap: 15px;
}

.mobile_menu {
  margin-top: 10px;
}

.mobile_menu_content img {
  width: 18px;
  height: 18px;
}

.responsive_content {
    display: none;
}



