/********** Template CSS **********/
:root {
    /* --primary: #f0a049; */
    --primary: #286787;
    /* --secondary: #213a7c; */
    --text-color: #000000;
    --secondary: #309acd;
    --main-blue-color: #213a7c;
    --second-blue-color: #0385c5;
    --second-orange-color: #f0a049;
    --backgroundColor: #ffe4f2;
    --contentColor: #969696;
    --iconColor: #17b4ff;
}

body {
    color: var(--text-color);
    font-family: "Montserrat", sans-serif;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

a.text-primary.mb-5 {
    text-decoration: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
    /* padding-right: 10px !important;
    padding-left: 10px !important; */
}

.navbar-expand-lg .navbar-nav .nav-link.active {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav.ms-auto.py-0 {
    font-size: 18px !important;
}

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

h1.fw-bold.text-uppercase.text-blue.text-center {
    margin-top: 120px;
    margin-bottom: 80px;
}

.chooseUsbox {
    background-color: white;
    width: 526px;
    height: 180px;
    margin: 20px;
    position: relative;
    border: 1px solid #86d4fa;
    overflow: hidden;
    border-radius: 50px;
    /* box-shadow: 0px 1px 68px rgba(64, 119, 147, 0.19); */
}

.chooseUsbox1 {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chooseUsbox2 {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--secondary);
    height: 0;
    padding: 2.5rem;
    color: white;
    font-size: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chooseUsbox:hover .chooseUsbox2 {
    bottom: 0;
    -webkit-transition: all 1s, -webkit-transform 1s;
    transition: all 1s, transform 1s;
    width: 100%;
    height: 100%;
}

.strengthDiv {
    padding: 5rem;
}

.chooseUsContent {
    color: var(--contentColor);
    font-size: 18px;
    font-weight: 300;
}

.chooseUsImgBox {
    position: absolute;
    bottom: -45px;
}

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

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.nav-link {
    color: var(--text-color);
    font-size: 14px;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-left: 25px;
}

.careerIcon {
    font-size: 14px;
    color: #747171;
    margin-left: 0.3rem;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

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

/*** Heading ***/
h1,
h2,
.fw-bold {
    /* font-weight: 600 !important; */
    /* color: var(--secondary); */
    /* color: var(--text-color); */
    color: var(--primary);
}

h4,
.fw-semi-bold {
    font-weight: 500 !important;
    color: var(--secondary);
}

h3.text-black.mb-0 {
    font-weight: 600;
}

.text-primary {
    color: var(--text-color) !important;
}

.text-blue {
    color: var(--secondary) !important;
}

.text-secondary {
    color: var(--primary) !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
    color: var(--text-color) !important;
}

/* gradient */

/*** Button ***/
.btn {
    /* font-family: "Nunito", sans-serif; */
    font-weight: 600;
    transition: 0.5s;
}

.btn-primary,
.btn-secondary {
    /* color: #ffffff; */
    box-shadow: inset 0 0 0 50px transparent;
}

#navbarCollapse .btn-primary {
    background: var(--primary) !important;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-dark:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.btn-outline-custom {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-custom:hover {
    color: #fff;
    background-color: var(--second-orange-color);
    border-color: var(--second-orange-color);
}

/*** Navbar ***/

.navbar .text-primary {
    color: var(--primary) !important;
}

.navbar img {
    height: 89px;
}

@media (max-width: 500px) {
    .navbar img {
        height: 60px;
    }

    .licenseHolder {
        font-size: 9px !important;
        right: 11% !important;
    }

    .navbar {
        padding: 10px !important;
        margin: 10px !important;
    }
}

@media (max-width: 1198px) {
    .summarySection {
        display: contents;
    }

    .leftCircle {
        border-bottom-left-radius: 0px !important;
        border-top-left-radius: 0px !important;
    }

    .rightCircle {
        border-bottom-right-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }
}

@media (max-width: 983px) {
    .bg-business {
        padding: 15px !important;
        border-bottom-left-radius: 0px !important;
        border-top-left-radius: 0px !important;
    }

    .bgg-business {
        padding: 15px !important;
        border-bottom-right-radius: 0px !important;
        border-top-right-radius: 0px !important;
    }
}

.navbar-dark .navbar-nav .nav-link {
    /* font-family: "Nunito", sans-serif; */
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    /* color: var(--text-color);
     */
    color: white;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--text-color);
    /* color: var(--text-color); */
}

.sticky-top .logoClass {
    padding: 5px 0 0 0 !important;
}

.sticky-top .logoClass .licenseHolder {
    font-size: 10px;
    transition: 0.3s;
    right: 14%;
}

.sticky-top .logoClass img {
    /* zoom: 80%; */
    transition: 0.3s;
    height: 70px;
}

/* .sticky-top.navbar-dark {
    background: var(--secondary);
} */

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

.navbar-dark .navbar-brand h1 {
    color: #ffffff;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.quote_color {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #ffffff;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /* border-bottom: 1px solid rgba(256, 256, 256, 0.1); */
        z-index: 999;
        /* background: white; */
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #ffffff;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: 0.5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/*** Carousel ***/

.carousel-item {
    /* height: 540px; */
}

.carousel-item img {
    /* height: 100%;
    object-fit: cover; */
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, 0.7); */
    z-index: 1;
    /* background: linear-gradient(12deg, var(--second-blue-color), transparent); */
    /* background: linear-gradient(12deg, var(--main-blue-color), transparent); */
    /* background: radial-gradient(transparent, rgba(0, 0, 0, 0.7)); */
}

.text-white.text-capitalized.animated.slideInDown {
    background-color: var(--primary);
    text-transform: uppercase;
    width: fit-content;
    padding: 25px 50px !important;
}

.carousel-caption span {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary) !important;
    color: white !important;
    z-index: 1;
    width: fit-content;
    padding: 16px 35px !important;
    letter-spacing: 1px;
}

.sliderTitle {
    color: white;
    text-align: center;
    font-size: calc(1.5rem + 1.5vw);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-shadow: 0px 0px 8px #000000;
}

.sliderBtn {
    font-size: 14px;
    padding: 15px 50px;
    font-weight: 500;
    border-radius: 0px !important;
    background-color: var(--primary) !important;
    margin-top: 45px !important;
    color: white;
}

.facts {
    margin-top: 50px !important;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 12px;
        font-weight: 400 !important;
    }

    .carousel-caption h1 {
        font-size: 14px;
        font-weight: 400 !important;
        margin-top: 30px;
        margin-bottom: 10px;
        width: 85%;
    }

    .text-white.text-capitalized.animated.slideInDown {
        margin-left: auto;
        margin-right: auto;
        font-size: 13px;
        padding: 15px 40px !important;
    }

    .mobileHomeSlider {
        margin-left: 0 !important;
        padding: 10px !important;
        text-align: center;
        max-width: 100% !important;
    }
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}

/*** Service ***/
.service-item {
    position: relative;
    min-height: 300px;
    padding: 30px;
    transition: 0.5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.owl-carousel .owl-stage {
    margin-left: auto;
    margin-right: auto;
}

.owl-carousel .owl-item img {
    height: 100% !important;
    object-fit: cover !important;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dddddd;
    border-radius: 2px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #ffffff !important;
    box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
    transition: 0.5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.team-social i {
    padding: 5px;
    color: var(--primary);
    /* color: #ffffff; */
}

.team-social p {
    position: relative;
    opacity: 0;
    color: #fff;
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 149.4%;
    /* 20.916px */
    margin: 0;
    padding: 35px;
}

.team-item:hover .team-social {
    border-radius: 17px;
    background: var(--primary);
    box-shadow: 0px 4px 38px 25px rgba(232, 230, 230, 0.25);
}

.team-item:hover .team-social p {
    opacity: 1;
    transition: 0.6s 0s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: 0.5s;
}

.pageSectionTitle {
    padding: 4rem;
}

.pageSectionTitle h1::first-line {
    color: var(--text-color);
}

.pageSection {
    padding: 4rem;
    position: relative;
}

.strengthBackground {
    background-color: #f9f7f8;
    position: relative;
}

.page-line {
    background-color: #ffe0f0;
    height: 10px;
    width: 100px;
    position: absolute;
    left: -10%;
}

.page-line2 {
    background-color: #cb2a7d;
    height: 5px;
    width: 60%;
    position: absolute;
    top: 0;
}

.pageSection h1 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px !important;
}

.pageSection p {
    color: var(--contentColor);
    font-weight: 300;
    font-size: 16px !important;
}

.pageSection li {
    color: var(--contentColor);
    font-weight: 300;
    font-size: 16px !important;
}

.pageSectionBg {
    background-color: #fdf7fa;
    padding: 5rem;
}

.pageSectionBg p {
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 300;
    font-size: 16px;
}

.strBg {
    background-color: #fdf7fa;
}

.pageSectionBigImg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    left: -10%;
    height: 100%;
}

.pageSectionBigImg img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.pageSectionBigImg h1 {
    color: var(--primary);
    font-size: 21px;
    margin-bottom: 20px !important;
    text-align: right;
    margin-top: 10px;
}

.team-item {

    margin-left: auto;
    margin-right: auto;
    /* padding: 10px 30px;
    flex-shrink: 0; */
}

.team-img {
    width: 370px !important;
    background-size: cover;
    height: 550px;
    border: 1px solid var(--primary);
    border-radius: 17px;
    box-shadow: 0px 4px 38px 25px rgba(232, 230, 230, 0.25);
}

.team-img img {
    width: 370px !important;
    border-radius: 17px;
    height: 100%;
    object-fit: cover;
}

.blog-item .blog-img img {
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
}

.blog_Section_div {
    /* width: 25%; */
    /* margin: 0 8px 0 20px; */
}

.blog-imgSection {
    width: 100%;
    height: 220px;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
}

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

.blog-content {
    padding: 25px 30px;
    background-color: white;

}

.blogBorder1 {
    border-bottom: 8px solid var(--primary);
    height: 100%;
}

.blogBorder2 {
    border-bottom: 8px solid #ffc9e4;
    height: 100%;
}

.newBlogBorder3 {
    border-bottom: 2px solid var(--primary);
    height: 100%;
}

.blogTitle1,
.blogTitle2 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
    line-height: 149.4%;
    text-decoration: none;
}

.blogHomeDate {
    color: #575757;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.36px;
    margin-bottom: 0;
}

.blogHomeDate i {
    color: var(--secondary);
    font-size: 12px;
    margin-right: 8px;
}

.blogTitle3 {
    color: var(--primary);
    font-size: 16px;
    margin-top: 0.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.blogTitle4 {
    color: var(--primary);
    font-size: 16px;
    margin-top: 0.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}

/* business div  */
.container_business_div {
    background-color: #EAF2F7;
}

/* timeline  div  */
.timeline_div {
    /* background-color: rgb(206 222 247 / 25%)!important;
     */
    /*background: linear-gradient(0deg, #E4EBEE 0%, rgba(228, 235, 238, 0.00) 100%);*/
    background: linear-gradient(2deg, #dce1e3 0%, rgba(228, 235, 238, 0.00) 80%);
}

.newBlogBorder1,
.newBlogBorder2 {
    height: 100%;
    /* background-color: white; */
    stroke: #f3f1f1;
    stroke-width: 2px;
    border-radius: 25px;
    overflow: hidden;
}

.newsContent {
    color: var(--contentColor);
    font-size: 16px;
    font-weight: 300;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.blog-item {
    height: 100%;
    border-width: 2px !important;
}

.support {
    background-color: var(--primary);
    padding: 15px 35px;
    width: fit-content;
}

.support h2 {
    margin-bottom: 0;
    font-weight: 500 !important;
}

li.text-white {
    font-weight: 400;
}

.list-support {
    background-color: var(--secondary);
    padding: 4rem;
    min-height: 280px;
    margin-bottom: 50px !important;
}

.st-line {
    border-top: 7px solid var(--primary);
    width: 30%;
    margin-top: 80px;
}

button.btn.btn-danger {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    margin-top: 30px;
    border-radius: 0px;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 400;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -55px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 40px;
    z-index: 99;
    color: var(--primary) !important;
    /* color: white !important; */
    padding: 10px;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(12deg, black, transparent);
    opacity: 0.7;
}

.image-wrapper {
    margin: 0;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

.image-wrapper img::after {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(12deg,
            var(--main-blue-color),
            transparent) !important;
    opacity: 0.7;
}

.image-wrapper figcaption {
    width: 100%;
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    text-align: center;
    font-size: calc(1.5rem + 1vw);
    z-index: 10;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.image-wrapper figcaption h1 {
    font-size: 40px !important;
    margin-top: 275px !important;
    font-weight: 600 !important;
}

/* .captionBorder {
    position: absolute;
    width: 30%;
    height: 10px;
    background-color: white;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
} */

.img-overlay {
    background: linear-gradient(12deg, var(--main-blue-color), transparent);
}

.bg-header {
    /* background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(3, 12, 24, 0.7)),
        url(../images/carousel-1.jpg) center center no-repeat; */
    background: linear-gradient(12deg, var(--main-blue-color), transparent),
        center center no-repeat;
    background-size: cover;
}

.bg-header a {
    text-decoration: none;
}

.social-icons i {
    /* color: var(--secondary); */
    padding: 4px;
}

.link-animated a {
    transition: 0.5s;
    text-decoration: none;
    margin-bottom: 6px;
}

/* .link-animated i {
    color: var(--secondary);
} */

.link-animated a:hover {
    padding-left: 10px;
}

/* @media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
} */

/* custom css */
.btn-primary {
    background-color: var(--secondary) !important;
    border: none;
}

.btn-secondary {
    background-color: var(--primary) !important;
    border: none;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.whyChooseUs {
    position: relative;
}

.whyChooseUs::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background: url("../images/creativity2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hotjob-box {
    border-bottom: 1px solid #ccc;
}

.hotjob-box a {
    text-decoration: none;
    font-weight: 500;
}

.hotJobBtn {
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 400;
}

.job-image {
    padding: 10px;
    border: 1px solid #f3f3f3;
    width: 100%;
    height: 150px;
    border-radius: 10px;
}

.job-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.modal_desc h2 {
    font-size: 14px;
}

/* news and updates */

.blog-img a {
    text-decoration: none;
}

h5.news-name {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 149.4%;
    /* 35.856px */
}

.recent-news-box a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    width: 100%;
}

.single-blog-img {
    /* height: 600px; */
    overflow: hidden;
}

/* Hot Jobs */

.titleColor {
    color: var(--secondary);
}

.gradient-bg {
    background: linear-gradient(151deg, #c4d3da, #ffffff);
}

.secondary-gradient-bg {
    background: linear-gradient(162deg, white, var(--primary), var(--primary));
}

.lightBg {
    /* background: #0385c530; */
    background-color: #eef9ff !important;
}

.teamCss {
    height: 400px;
    object-fit: cover;
}

.text-web-primary {
    color: var(--primary) !important;
}

.customAnchor {
    text-decoration: none;
    color: var(--secondary);
}

h5.text-black.mb-0 {
    font-size: 15px;
}

/* vendors */

.clients-section {
    position: relative;
    background-image: url("../images/clientsbg.jpeg");
    /* Set a specific height */
    /* min-height: 400px; */
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 2.5rem;
}

.clients-section .overlay-bg {
    position: absolute;
    /* background-color: var(--main-blue-color); */
    background: linear-gradient(90deg,
            var(--second-blue-color),
            var(--main-blue-color));
    opacity: 0.7;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.certificate-bar {
    background-image: url("../images/shtc/certiBg.png");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

}

.certificate-bar i.fa-award {
    color: #36a7de;
    font-size: 35px;
}

.certiTitle {
    color: var(--primary);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.certiSubtitle {
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    margin-top: 28px;
    line-height: 149.4%;
    margin-bottom: 3rem;
}

.ps-5 {
    padding-left: 6rem !important;
}

.certificateCard {
    border-radius: 25px;
    width: 100%;
    border: 1px solid #ddd;
    cursor: pointer;
}

.certificateCard-imgBox {
    width: 100%;
    /* height: 220px; */
    height: 230px;
    border-radius: 25px 25px 0 0;
    background: #309acd50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificateCard-imgBox i {
    color: white;
    font-size: 100px;
}

.certificateCard-imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
}

.certificateCard-content {
    background-color: var(--primary);
    border-radius: 0 0 25px 25px;
    padding: 30px 6px;
    height: 100px;
    text-align: center;
    border-top: 2px solid rgb(234, 233, 233);
}

.certificateCard-content p {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 149.4%;
    /* 29.88px */
}

/* Sandeep-newChanges */
.logoClass {
    position: relative;
}

.licenseHolder {
    font-size: 11px;
    font-weight: 500;
    /* text-align: right; */
    position: absolute;
    right: 17%;
    bottom: -11%;
    background: var(--primary);
    padding: 2px 5px;
}

.parallax1 {
    /* The image used */
    background: #ffeff7;

    /* Set a specific height */
    min-height: 200px;

    /* Create the parallax scrolling effect */
    text-align: center;
    position: relative;
}

.parallax1 h2 {
    color: var(--primary);
}

.parallax1 p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
}

.certificateBox {
    border: 1px solid rgba(71, 91, 13, 0.21);
    border-radius: 10px;
    padding: 15px;
}

.certiLogo {
    width: 100%;
}

.flex-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax2 {
    /* The image used */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(../images/pen-writing.jpg) center center no-repeat;
    background-size: cover;

    /* Set a specific height */
    min-height: 200px;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.centered-text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.vendor-item {
    background-color: transparent;
    width: 100%;
    height: 150px;
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    border: none;
    margin-top: 30px;
    margin-bottom: 20px;
}

.whyChooseUsBox {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.expertise-item {
    background-color: transparent;
    /* width: 100%; */
    height: 250px;
    /* border: 1px solid #f1f1f1; */
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
    border: none;
    margin-bottom: 25px;
}

/* .vendor-item img {
    height: 100px;
    width: 100% !important;
    object-fit: contain;
} */

/* This container is needed to position the front and back side */
.flip-card-inner,
.flip-card-innerClient {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.expertise-item:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.innerStrengthIcon {
    font-size: 30px;
    margin-bottom: 5px;
}

.workforceList {
    margin-bottom: 15px;
}

.workforceList h5 {
    color: white !important;
    font-weight: 300 !important;
}

.workforceIcon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.workforceIcon i {
    font-size: 12px;
    color: white;
}

.experTitle {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 149.4%;
    /* 35.856px */
    text-transform: uppercase;
    margin-bottom: 0;
}

.experDesc {
    font-size: 17px;
    line-height: 1.5em;
    text-align: center;
    overflow: hidden;
}

.notice p {
    margin-bottom: 0;
    margin-right: 10px;
    font-size: 13px !important;
}

.scrollbar {
    overflow-y: scroll;
    margin-bottom: 25px;
}

#style-2::-webkit-scrollbar-track {
    border-radius: 10px;
    /* background-color: #F5F5F5; */
}

#style-2::-webkit-scrollbar {
    width: 8px;
    /* background-color: #F5F5F5; */
}

#style-2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #ddd;
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back,
.flip-card-frontClient {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
    padding: 10px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    /* background-color: blue; */
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../images/parallax.jpg"); */
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: black;
}

.flip-card-frontClient {
    background-color: white;
    color: black;
}

/* Style the back side */
.flip-card-back {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("../images/parallax.jpg"); */
    color: white;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    transform: rotateY(180deg);
    border-radius: 10px;
}

/* .experteeText:hover {
    font-weight: 500;
    color: var(--primary);
    cursor: default;
    padding-left: 10px;
    padding-bottom: 8px;
    transition: 0.6s;
    border-left: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
} */

.fa-circle:before {
    content: "\f111";
    font-size: large !important;
}

.certificate-div {
    padding: 50px 100px;
}

.img-certificate {
    width: 100%;
    height: 350px;
    /* border-style: inset; */
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

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

/* // clients logo showcase */

.clients-tab {
    background-color: rgb(245, 245, 245);
    padding: 20px 0;
    margin-top: -15px;
}

.clients-tab .nav-pills .nav-link {
    color: black;
    font-size: 20px;
}

.clients-tab .nav-pills .nav-link.active {
    background-color: transparent;
    border: 0;
    border-bottom: 3px solid var(--primary);
    color: #1f1f1f;
    outline: none;
}

.clients-contents {
    padding: 30px 10px;
}

.clientlogo {
    padding: 5px;
}

/* .clients-content-inner .logo-showcase {
    padding: 25px 0;
} */

.form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25px #dc3545 !important;
}

.logo-col {
    border: 1px solid #ccc;
    margin-bottom: 25px;
    width: 100%;
    height: 90px;
}

.clients-content-inner h1 {
    text-transform: uppercase;
}

.clients-content-inner img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    margin: auto;
}

.clients-sections .overlay-bg {
    position: absolute;
    /* background-color: var(--main-blue-color); */
    background: linear-gradient(90deg, #1c4789, rgba(13, 110, 253, 0.25));
    opacity: 0.7;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.clients-sections {
    position: relative;
    background-image: url(../images/contactimage-01.png);
    /* min-height: 400px; */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.description {
    font-size: 14px;
}

.chooseUsMainDiv {
    position: relative;
    min-height: 550px;
    margin-top: 55px;
    margin-bottom: 35px;
}

/* Styles for all Circles */
.chooseUsCircle1,
.chooseUsCircle2,
.chooseUsCircle3 {
    height: 350px;
    width: 350px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    transition: transform 0.5s ease-in-out;
    padding: 20px;
    position: absolute;
}

.chooseUsCircle1 {
    top: 150px;
}

.chooseUsCircle1::before,
.chooseUsCircle3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(90deg, #b6b8df, var(--main-blue-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-left: none;
    border-right: none;
}

.chooseUsCircle2 {
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.chooseUsCircle2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(90deg, #fdcdb4, var(--primary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-top: none;
    border-bottom: none;
}

.chooseUsCircle3 {
    top: 150px;
    right: 0;
}

/* Styles for Different Colors */
.chooseUsCircle1 .subCircle1,
.chooseUsCircle2 .subCircle2,
.chooseUsCircle3 .subCircle3 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-transform: uppercase;
}

.chooseUsCircle1 .subCircle1 {
    background: linear-gradient(90deg,
            var(--second-blue-color),
            var(--main-blue-color));
}

.chooseUsCircle2 .subCircle2 {
    background: linear-gradient(130deg, #fdcdb4, var(--primary));
}

.chooseUsCircle3 .subCircle3 {
    background: linear-gradient(90deg,
            var(--second-blue-color),
            var(--main-blue-color));
}

/* Styles for Hover Congif */
.chooseUsCircle1:hover,
.chooseUsCircle2:hover,
.chooseUsCircle3:hover {
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

.chooseUsCircle1:hover .chooseUsHover1,
.chooseUsCircle2:hover .chooseUsHover1,
.chooseUsCircle3:hover .chooseUsHover1 {
    display: none;
    opacity: 0;
}

.chooseUsCircle1:hover .chooseUsHover2,
.chooseUsCircle2:hover .chooseUsHover2,
.chooseUsCircle3:hover .chooseUsHover2 {
    display: block;
    opacity: 1;
}

.chooseUsHover2 {
    display: none;
    opacity: 0;
}

.chooseUsTitle {
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.23);
}

.chooseUsDesc {
    height: 80%;
    font-size: 12px;
    font-weight: 300;
    width: 80%;
    margin-left: auto;
    margin-bottom: 0;
    margin-right: auto;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.23);
}

#our-team {
    background: #f0faff;
}

.teamSectionDiv {
    display: flex;
    flex-wrap: wrap;
}

.teamBorder {
    border-right: 1px solid rgba(150, 150, 150, 0.73);
}

.team-line {
    border-top: 1px solid #cb2a7d;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7px;
    margin-bottom: 7px;
}

.designation {
    color: #36a7de;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 149.4%;
    /* 23.904px */
}

.contactIcons {
    color: var(--text-color);
}

.contactDivBookmark1 {
    position: absolute;
    height: 100%;
    background-color: var(--primary);
    right: -38px;
    width: 40px;
    z-index: 1;
}

.contactDivBookmark2 {
    position: absolute;
    height: 100%;
    background-color: #431c30;
    right: -15px;
    width: 42px;
    bottom: -33px;
    z-index: 0;
    transform: rotate(70deg);
}

.footerContactUs .overlay-bg {
    position: absolute;
    /* background-color: var(--main-blue-color); */
    background: linear-gradient(90deg,
            var(--second-blue-color),
            var(--main-blue-color));
    opacity: 0.7;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.galleryImageHolder {
    height: 280px;
    border: 1px solid #ccc;
}

.galleryImageHolder img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.modal-content {
    border: 8px solid #eaeaea;
    border-radius: 0px;
}

.modal-body {
    padding: 0 !important;
}

.modal-body .carousel-item {
    height: 100%;
}

.modal-body img {
    width: 100%;
    object-fit: contain;
}

.modal-content .close {
    position: absolute !important;
    z-index: 100 !important;
    right: 10px !important;
    background-color: var(--primary);
    color: white;
    padding: 0 5px !important;
    top: 5px;
}

.btn-info {
    color: #fff;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Topbar */
.topbar {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

.topbarContent {
    color: var(--primary);
}

.topbarContent span {
    color: var(--contentColor);
    font-size: 14px;
}

.mobileJob {
    display: none;
}

.desktopMenu {
    justify-content: space-between;
    padding: 20px 3rem;
    z-index: 11;
}

.desktopMenu .navbar-collapse {
    flex-grow: 0;
}

.hotJobsBtn {
    text-transform: uppercase;
    border-radius: 50px;
    color: var(--text-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    padding: 8px 20px;
    margin-left: 30px;
}

.loginImgCircle {
    width: 21px;
    height: 21px !important;
    object-fit: contain;
    margin-right: 0.3rem;
}

.hotJobsBtn:hover {
    background-color: var(--secondary);
    color: white;
    border: 1px solid var(--secondary);
}

.dropdown-menu {
    /* width: 7rem!important; */
    /* margin-left: 10px; */
    border-radius: 0px !important;
    border: none;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.33);
    padding: 0.5rem;
}

.dropdown-item {
    color: var(--text-color);
    font-size: 14px;

}

.dropdown-item:hover {
    color: var(--primary);
    background-color: transparent;
}

/* Summary */
.summarySection {
    position: absolute !important;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -50px;
    z-index: 1;
}

.summarySection1 {
    background: linear-gradient(to right,
            var(--secondary) 50%,
            var(--primary) 70%);
    position: relative;
}

.summaryEmptyBoxMain {
    background-color: white;
    height: 149px;
    width: 70%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.summary {
    background: linear-gradient(to right, white 41%, var(--secondary) 41%);
    height: 200px;
}

.summaryMainDiv3 {
    background-color: var(--primary);
    z-index: 11;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

.testimonialsBox {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    background: var(--primary);
}

.summaryMainDiv1 {
    display: flex;
    align-items: flex-end;
    padding-right: 3rem;
    padding-bottom: 4rem;
    padding-top: 3rem;
    background-color: var(--primary);
}

.summaryMainDivision {
    display: flex;
    align-items: flex-end;
    padding-right: 3rem;
    padding-bottom: 14rem;
    background-color: var(--secondary);
}

.summaryMainDiv2 {
    background: white;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 7rem;
    position: relative;
}

.summaryMainBorder {
    width: 35%;
    height: 28px;
    position: absolute;
    background-color: var(--primary);
    bottom: 0;
    left: -1px;
}

.summaryBg {
    /* background: linear-gradient(to right,  #ffffff 0%,#e0e7eb 100%); */
    background: linear-gradient(180deg, rgba(245, 248, 249, 1) 0%, rgba(255, 255, 255, 1) 48%, rgba(238, 243, 246, 1) 100%);
    /* box-shadow: inset 7px -7px 8px -10px rgba(0,0,0,0.75); */
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.69);
}

/* .summaryBg1 {
    background: #fff;
    box-shadow: 0px 1px 68px 0px rgba(64, 119, 147, 0.19);
}

.summaryBg2 {
    background-color: #fff;
    box-shadow: 0px 1px 68px rgba(64, 119, 147, 0.19);
} */

.alterText {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}

.sectionContent {
    color: white;
    font-size: 16px;
    font-weight: 300;
}

.contentStyle {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 149.4%;
    /* 29.88px */
}

.ckEditorData p {
    color: var(--contentColor);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 3rem;
}

.bi-square::before {
    background-color: var(--primary);
}

/* Strength */
.strengthImgDiv {
    width: 100%;
    max-height: 400px;
}

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

/* Footer Css  */
.footerContainer {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.88)),
        url("../images/nassar/footerBg.png");
    background-size: cover;
    background-attachment: fixed; */
    background-color: var(--primary);
}

.emailContactBox a:hover .footerContent {
    color: var(--secondary) !important;
}

.workforceContainer {
    visibility: visible;
    animation-delay: 0.1s;
    animation-name: fadeInUp;
    max-height: 480px;
    margin-top: 100px;
}

.footerTitleIcon {
    color: var(--iconColor);
    font-size: 20px;
    margin-right: 8px;
}

.footerTitle {
    color: white;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-style: normal;
    line-height: 166.5%;
    letter-spacing: 0.72px;
}

.footerContent {
    color: white;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 157.5%;
    margin-bottom: 0;
}

.emailContactBox {
    display: flex;
}

.footerList {
    padding-left: 0;
    margin-bottom: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.footerList li {
    list-style-type: none;
    color: white;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 280%;
    font-weight: 600;
    padding-left: 0;
}

.footerList a {
    color: white;
    text-decoration: none;
}

.footerList a:hover {
    color: var(--secondary);
}

.socialIconUl {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(4, 1fr);
    width: 100px;
    /* height: 100px; */
}

.grid-1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.grid-2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.grid-3 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.grid-4 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 60em) {
    .socialIconUl {
        grid-template-rows: repeat(4, 1fr);
    }

    .grid-1 {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row: 1;
    }

    .grid-2 {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row: 2;
    }

    .grid-3 {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row: 3;
    }

    .grid-4 {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row: 4;
    }
}

.footer-hr {
    border: 1px solid #fff;
    color: #fff;
    margin: 0;
}

.socialIconUl i {
    font-size: 30px;
}

.socialIconUl i:hover {
    color: var(--secondary) !important;
}

.footerInput {
    background-color: transparent;
    border-radius: 0;
}

.footerInput::placeholder {
    font-size: 14px;
    color: white;
}

.subscribeBtn {
    background-color: white;
    color: var(--primary);
    padding: 10px 25px;
    text-align: center;
    font-size: 14px;
    margin-left: 2px;
    border: 1px solid white;
    text-decoration: none;
    cursor: pointer;
}

.subscribeBtn:hover {
    background-color: var(--primary);
    color: white;
    /* border: 1px solid var(--primary); */
}

.footerCopyright {
    padding: 40px 25px 25px 25px;
    text-align: center;
    background-color: var(--primary);
}

.btn-outline-light:hover {
    background-color: var(--primary) !important;
}

.copyrightText {
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 165.5%;
    /* 26.48px */
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

.recentTitle {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.recentContent {
    color: var(--contentColor);
    font-weight: 300;
    font-size: 15px;
}

.recentBorder {
    border-bottom: 1px solid #ffe0f0;
}

.socialBtn {
    border: 1px solid var(--primary);
}

.socialBtn:hover {
    background-color: var(--primary);
}

.socialBtn:hover i {
    color: white;
}

.socialBtn i {
    color: var(--primary);
}

.cvMessage {
    font-size: 12px;
}

.testimonialClient {
    background: var(--primary);
}

.recruitCard1 {}

.recruitCard2 {
    background-color: #fdf7fa;
}

.recruitCardTitle {
    color: var(--primary) !important;
    margin-bottom: 1rem;
}

.recruitCardText {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 300;
}

.aboutChooseUsSection {
    background: linear-gradient(180deg,
            #e4ebee 0%,
            rgba(228, 235, 238, 0) 100%);
}

.chooseUsboxAbout {
    background-color: white;
    margin: 20px;
    position: relative;
    border: 1px solid #86d4fa;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0px 1px 68px rgba(64, 119, 147, 0.19);
}

.mileDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 80px;
    flex-direction: column;
}

.mileContent {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 149.4%;
    /* 23.904px */
    margin-bottom: 0;
    margin-top: 10px;
}

.aboutUsBannerOverlay {
    padding: 65px;
    border-radius: 96px;
    background: #fff;
    box-shadow: 1px 4px 25px 10px rgba(176, 176, 176, 0.08);
    position: absolute;

    top: -18rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 100;
}

@media (max-width: 768px) {
    .ps-5 {
        padding-left: 0rem !important;
    }
}

@media (max-width: 900px) {
    .aboutUsBannerOverlay {
        margin-top: -65px;
        padding: 40px;
    }
}

@media (max-width: 970px) {
    .flip-card {
        width: 320px;
    }

    .owl-carousel .owl-next {
        right: -34px !important;
    }
}

@media (max-width: 768px) {
    .aboutUsBannerOverlay {
        margin-top: -90px;
    }

    .flip-card {
        width: 250px;
        height: 332px;
    }

    .owl-carousel .owl-next {
        right: -34px !important;
    }
}

@media (max-width: 766px) {
    .aboutUsBannerOverlay {
        display: contents !important;
    }

    .row.d-flex.banner {
        margin: 55px;
    }

    .container-fluid.wow.fadeInUp.aboutUsSection.pb-3 {
        padding-top: 10px !important;
    }
}

.timelineDiv {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}

/* .timelineCarouselImg_div{
    box-shadow: 10px 10px 10px 10px  rgba(194, 186, 186, 0.11);

} */
.timelineCarouselImg_content_div_img {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.11);
    left: 10%;
    overflow: hidden;
    border-radius: 17px;
    background: #fff;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -18px;
    z-index: 999;
}

/* .timelineCarouselImg_content_div_img img{
   height: 100% ;
   width: 100% ;
   object-fit: cover;

} */



.timelineDash {
    border-top: 1px dashed var(--primary);
    width: 100%;
    position: absolute;
    /* top: 50%; */
    top: 100px;
}

.page-link {
    color: var(--primary);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.hotJobContent h5 {
    color: #a4a0a0 !important;
    font-weight: 400 !important;
    font-size: 16px;
}

.hotJobContent p {
    color: var(--contentColor);
    font-size: 14px;
}

.applyBeforeClass {
    color: var(--contentColor);
    font-size: 13px;
}

.applyBeforeClass span {
    color: var(--primary);
    font-weight: 500;
}

.clientContainer {
    margin-top: 85px !important;
}

.homeBlogSection {
    background-image: url("../images/shtc/blogBg.png");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

}

.visionMissionSection {
    background-image: url("../images/shtc/Rectangle 30.png");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.homePageTitle {
    color: var(--secondary);
    font-size: calc(1.5rem + 1vw);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.timelineCarousel {
    position: relative;
    margin: 0 15px;

}


.button.accordion-button.collapsed {
    background-color: #e7f1ff !important;
}

.timelineCarouselDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.timelineCarouselImg {
    border-radius: 17px;
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.11);
    padding: 25px;
    width: 126px;
    height: 114px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timelineCarouselImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.timelineCarouselContent h3 {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 149.4%;
    /* 29.88px */
    margin-top: 0.5rem;
}

.timelineCarouselContent p {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 149.4%;
    /* 23.904px */
}

.owl-carousel .nav-button {
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
    padding-left: 3px;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.owl-carousel .owl-prev {
    left: 0;
    padding-left: 0;
}

.owl-carousel .owl-next {
    right: -12px;
}


.section#our-team.owl-carousel .owl-next {
    right: -19px;
}

.owl-theme .owl-nav [class*="owl-"] {
    color: #ffffff;
    /* font-size: 39px; */
    background: var(--primary);
    border-radius: 100%;
}

/* .owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}
.owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
} */

@media screen and (max-width: 1200px) {
    .container.aboutUsBannerOverlay {
        display: contents;
    }

    .row.d-flex.banner {
        padding-right: 40px;
        padding-left: 40px;
    }

    .container-fluid.wow.fadeInUp.aboutUsSection.pb-3 {
        padding-top: 10px !important;
    }

    #about-banner>div>img {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 460px) {
    .row.d-flex.banner {
        padding: 0px !important;
    }
}

@media screen and (max-width: 1200px) {
    .chooseUsMainDiv {
        min-height: 470px;
    }

    .chooseUsCircle1,
    .chooseUsCircle2,
    .chooseUsCircle3 {
        width: 300px;
        height: 300px;
    }

    .chooseUsTitle {
        font-size: 16px;
    }

    .chooseUsDesc {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .mobileJob {
        display: block;
    }

    .desktopJob {
        display: none;
    }

    .chooseUsMainDiv {
        min-height: 470px;
    }

    .chooseUsCircle1,
    .chooseUsCircle2,
    .chooseUsCircle3 {
        width: 250px;
        height: 250px;
    }

    .chooseUsTitle {
        font-size: 16px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .chooseUsDesc {
        font-size: 9px;
    }

    .mobileFooterMargin {
        margin-top: 2rem;
    }

    .certificate-div {
        padding: 50px 0;
    }

    .justify-content-md-center {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {

    /* .nav-btn.owl-next{
        margin-right:-15px;
    } */
    .topbar {
        display: none;
    }

    .mobileContainer {
        max-width: 100%;
    }

    .carousel-item {
        height: auto;
    }

    .footerContactUs {
        border-right: none;
        padding-top: 0;
        padding-bottom: 0;
    }

    .footerIframe {
        height: 400px !important;
    }

    .footerList {
        margin-bottom: 4rem;
    }

    .footerContactUs {
        margin-left: 0px;
        padding: 6%;
    }

    .footerListLink {
        margin-bottom: 0 !important;
    }

    .mobileNewsletter {
        margin-bottom: 4rem;
    }

    .contactDivBookmark1,
    .contactDivBookmark2 {
        display: none;
    }

    .certificate-div {
        padding: 0;
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .dropdown-menu {
        background: white;
        margin-right: -32px;
        padding: 0.5rem;
    }

    .dropdown-item {
        color: var(--primary);
    }

    .aboutUsSection {
        height: auto;
    }

    .aboutUsSectionImg {
        position: relative;
        height: auto;
        top: unset;
        /* top: -1rem; */
    }

    .summaryMainDivision {
        padding-bottom: 3rem;
    }

    .testimonialsBox {
        width: 100%;
    }

    .summaryMainDiv3 .carousel-item {
        height: auto;
        padding: 3rem 0;
    }

    .chooseUsImgBox {
        position: relative;
        bottom: 0;
    }

    .workforceContainer {
        max-height: 100% !important;
    }

    .clientContainer {
        margin-top: 0 !important;
    }

    #about-banner>div>img {
        margin: 0 auto;
    }
}

@media screen and (max-width: 700px) {
    .chooseUsMainDiv {
        margin-top: 0;
    }

    .chooseUsCircle1,
    .chooseUsCircle2,
    .chooseUsCircle3 {
        position: relative;
        width: 320px;
        height: 320px;
    }

    .chooseUsCircle1 {
        top: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .chooseUsCircle2 {
        margin-top: 40px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .chooseUsCircle3 {
        top: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: 40px;
    }

    .chooseUsTitle {
        font-size: 18px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .chooseUsDesc {
        font-size: 11px;
    }

    .certiLogo {
        width: 25%;
    }
}

@media screen and (max-width: 700px) {
    .carousel-item {
        /* height: 350px; */
    }

    .sliderBtn {
        display: none;
    }
}

/* @media screen and (max-width: 1398px) {

.nav-btn.owl-next {
    margin-right: -48px!important;
}
} */

@media screen and (max-width: 500px) {
    .footerTitle {
        font-size: 18px;
    }

    .footerList li::marker {
        font-size: 16px;
    }

    .copyrightText {
        font-size: 13px;
    }

    .certi_text a {
        font-size: 24px;
    }

    .manageContactPadding {
        padding: 2rem;
    }

    .manageContactPadding>div {
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 380px) {
    .mobileHomeSlider span {
        font-size: 11px;
    }

    .chooseUsCircle1,
    .chooseUsCircle2,
    .chooseUsCircle3 {
        width: 250px;
        height: 250px;
    }

    .chooseUsTitle {
        font-size: 16px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .chooseUsDesc {
        font-size: 8px;
    }
}

@media screen and (max-width: 360px) {
    .footerTitle {
        font-size: 16px;
    }

    .certi_text a {
        font-size: 18px;
    }
}

.vertical-divider {
    clear: both;
    position: relative;
}

.vertical-divider:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
}

/* .vertical-divider .owl-item:not(:first-child):after,
.vertical-divider .owl-item:not(:first-child):after {
    background: #dddddd;
    bottom: 0;
    content: " ";
    position: absolute;
    top: 0;
    width: 1.5px;
    height: 75%;
    margin: auto 0 auto -4px;
    border-radius: 6px;
} */

.owl-stage-outer {
    padding: 10px 0;
}

/* .owl-item {
    margin: 0 5px !important;
    padding: 10px;
} */

.product-image {
    height: 170px;
    max-width: 200px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f9f7f8;
    padding: 10px;
}

.title-wrapper {
    border-bottom: 1px solid #ddd;
}

.title-wrapper h3:before {
    content: "";
    display: block;
    width: 115px;
    height: 3px;
    border-radius: 6px;
    background: #fed700;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: -1px;
}

.product-divider {
    width: 1px;
    margin: 0;
    background-color: #ddd;
}

.big-image-item {
    height: 100%;
}

.merchant-item {
    font-size: 12px;
}

.product-title {
    font-size: 14px;
}

.price {
    font-size: 20px;
}

.strike {
    font-size: 12px;
}

.card {
    position: relative;
    border: none !important;
}

.card:hover {
    -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 2px 3px 3px rgba(25, 25, 25, 0.2);
}

.card:hover .overlay-btn {
    display: flex;
    flex-direction: row;
}

.overlay-btn {
    border-top: 1px;
    display: none;
}

.overlay-btn .btn {
    color: #555;
    font-size: 13px;
}

.overlay-btn .btn:hover {
    color: #dede00;
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.42857;
}

.customAnchors {
    text-decoration: none;
    color: white;
}

.btn-circle:hover {
    background-color: #dede00;
    color: #555;
}

a:hover {
    /* border: none; */
    text-decoration: none;
}

.slider__caption {
    font-size: 16px;
    color: white;
}

.slider__txt {
    font-size: 16px;
    line-height: 1.7;
    color: #e1dede;
    margin-top: -20px;
    margin-bottom: 20px;
    text-align: center;
}

.quote {
    font-weight: bold;
    font-size: 80px;
    color: #e1dede;
    margin-bottom: 0;
}

.testimonialLogo {
    width: 60px;
    height: 60px;
}

.testimonialLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a.btn.py-2.px-4.hotJobsBtn:hover {
    color: white !important;
}

.row.p-3.m-5.hotjob-box {
    border-radius: 5px;
    border: 1px solid #d9d9d9;
}

/*
@media (max-width: 992px){
.navbar-expand-lg {
    flex-wrap: wrap!important;
    justify-content: flex-start;
}
.hotJobsBtn {
    letter-spacing: 0px!important;
}
} */

/* @media(max-width: 576px){
.container, .container-sm {
    max-width: 100%!important;
}} */

.sec-con {
    background-color: #eaeaea85;
    padding: 40px;
    border-radius: 80px;
}

.facts {
    position: relative;
    margin-top: -55px !important;
    z-index: 1;
}

.experIcon {
    background-color: var(--primary);
    color: white;
    font-size: 35px;
    border-radius: 100%;
    padding: 26px;
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iconSecondary {
    background-color: var(--secondary);
}

.bg-business {
    background-color: var(--primary);
    color: white;
    padding: 30px;
    border-end-start-radius: 30px;
    border-top-left-radius: 30px;

}

.bgg-business {
    background-color: var(--primary);
    color: white;
    padding: 30px;

    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}

.experIcons {
    background-color: #0daccd;
    color: white;
    font-size: 26px;
    padding: 22px;
    border-radius: 50%;
}

.experTitles {
    font-size: 20px;
    line-height: 1.6em;
    color: var(--text-color);
    /* text-transform: uppercase; */
    font-weight: 600;
    margin-bottom: 8px;
}

.text1-primary {
    color: white !important;
    background-color: var(--primary) !important;
    width: 50px;
    height: 50px;
    padding: 12px;
    text-align: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alterText1 {
    color: white !important;
    background-color: var(--primary) !important;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 9px;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.summaryTitle {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 149.4%;
    /* 20.916px */
    margin-bottom: 0;
}

.leftCircle {
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.rightCircle {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

/* .owl-carousel .nav-btn {
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 270px !important;
    display: flex;
    margin-right:-18px;
    justify-content: center;
    align-items: center
}
.nav-btn.owl-prev {
    left: -27px;
} */

/* .nav-btn.owl-next{
    right:-50px;
} */

.owl-carousel .nav-buttons {
    height: 29px;
    width: 29px;
    cursor: pointer;
    position: absolute;
    top: 50px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-buttons.owl-prev {
    margin-left: -45px;
}

.nav-buttons.owl-next {
    margin-right: -10px;
}

i.fas.fa-angle-left.ser {
    font-size: 22px;
}

i.fas.fa-angle-right.ser {
    font-size: 22px;
}

i.fas.fa-arrow-left.team {
    font-size: 14px;
    /* padding: 10px; */
}

i.fas.fa-arrow-right.team {
    font-size: 14px;
    /* padding: 10px; */
}

/* service */
.accordion-item {
    background-color: #fff;
    border: none;
}

.accordion-header {
    margin-bottom: 0;
    border: none;
    border-radius: 12px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 1px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 12px;
    background-color: #e7f1ff;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-top-left-radius: 1px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 10px;
    background-color: #e7f1ff;
}

.accordion-button:not(.collapsed) {
    border-top-left-radius: 1px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 12px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: #e7f1ff;
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: none;
    border-radius: 12px;
}

.service {
    font-weight: 700;
    font-size: 40px !important;
    color: var(--primary);
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 10px;
}

.accordion-body {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.timelineCarouselImgs {
    background: #fffefe;
    /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08); */
    /* box-shadow: 2px 1px 5px  #edeaea;  */

    padding: 25px;
    width: 110px;
    height: 110px;
    border-radius: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 10px;
}

.timelineCarouselCustom:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 2px 2px var(--primary);
}

.timelineCarouselImgs:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 2px 2px var(--primary);
}

.modal-content.team {
    border: 1px solid var(--primary) !important;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 6px -6px #777;
}

img.img-fluid.team {
    width: 100%;
    background-size: cover;
    border-bottom-left-radius: 70px;
    border-top-right-radius: 70px;
    padding: 20px;
    background-color: white;
}

@media screen and (max-width: 1088px) {
    figcaption.about-section {
        top: 50%;
    }
}

@media screen and (max-width: 1370px) {
    .chooseUsbox {
        width: 444px;
        height: 160px;
    }

    .chooseUsbox1 {
        position: absolute;
    }

    .customPad {
        margin-right: 4.5rem;
    }
}

@media screen and (max-width: 876px) {

    .image-wrapper figcaption h1 {
        font-size: 30px !important;
        margin-top: 160px !important;
    }

    .socialIconUl {
        display: inline-flex;
        gap: 5px;
    }

    .float-right {
        float: right;
        width: 100%;

    }



}

@media screen and (max-width: 465px) {
    img.content-left {
        width: 100%;
    }
}

.network_map_img {
    overflow: hidden;
    height: 100%;
}

.customPad {
    padding-left: 5%;
}

.businessPadding {
    padding-left: 10%;
}

.bgColorCollapse {
    background-color: #e7f1ff;
}

/* Homepage */
.bd-highlight {
    padding: 12px 0;
}

.bd-highlight>.align-self-center {
    padding: 0 0 0 15px;
}

/* .certAwardCarousel {
    margin-left: 35px;
} */
#certAward-prev,
#certAward-next {
    background: inherit;
}

/* @media screen and (max-width: 768px) {
    #certAward-prev {
        margin-left: 10px;
    }
    #certAward-next {
        margin-right: 25px;
    }
}
@media screen and (max-width: 425px) {
    .certAwardCarousel {
        width:90%;
        margin-left: 20px;
    }
    #certAward-prev {
        margin-left: 10px;
    }
    #certAward-next {
        margin-right: 35px;
    }
} */
@media screen and (max-width: 450px) {
    .certAward {
        font-size: 6.3vw !important;
    }
}

@media screen and (max-width: 991px) {
    .summaryBg {
        -webkit-box-shadow: 0px 1px 5px -2px rgba(0, 0, 0, 0.69);
        -moz-box-shadow: 0px 1px 5px -2px rgba(0, 0, 0, 0.69);
        box-shadow: 0px 1px 5px -2px rgba(0, 0, 0, 0.69);
    }
}

/* Homepage */

/* About Us Page */
@media screen and (max-width: 1200px) {
    #about-banner h1 {
        margin-top: 30px;
        margin-bottom: 28px;
        text-align: center;
    }
}

h1 {
    font-size: calc(1.5rem + 1vw);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 10px;
}

.whoWe {
    max-width: 1300px;
    /* padding:0 5px; */
    margin: 0 auto;
}

.whoWe h1 {
    text-align: left;
}

@media screen and (max-width: 1399px) {
    .whoWe {
        max-width: 1140px;
        /* padding:0 35px; */
        margin: 0 auto;
    }
}

@media screen and (min-width: 960px) {
    .whoWe h1.whoWeHeaderMD {
        display: none;
        text-align: center;
    }

    img.whoWeImg {
        margin-right: 3%;
    }
}

@media screen and (max-width: 960px) {
    img.whoWeImg {
        margin-right: 0 auto;
    }

    .whoWe h1.whoWeHeaderLG {
        display: none;
    }

    .whoWe h1.whoWeHeaderMD {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 555px) {}

.aboutUsSection {
    background-image: url("../images/shtc/worldMap.png") !important;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 7rem;
}

#whoWeContentLg>p,
#whoWeContentMd>p {
    text-align: justify;
}

@media screen and (max-width: 991px) {
    .aboutUsSection {
        padding-top: 2rem;
    }

    .homeAboutSectionLg {
        display: none;
    }

    .homeAboutSectionMd {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .homeAboutSectionLg {
        display: block;
    }

    .homeAboutSectionMd {
        display: none;
    }
}

@media screen and (max-width: 553px) {
    .image-wrapper figcaption h1 {
        font-size: 30px !important;
        margin-top: 116px !important;
    }

    .float-left {
        float: right;

    }

    #about-banner {
        margin: 10px;
    }
}

img.whoWeImg {
    float: left;
    max-height: 350px;
}

@media screen and (max-width: 960px) {
    img.whoWeImg {
        float: none;
        margin: 0 auto;
        display: block;
    }
}

#about-banner>p,
#who-we>p {
    text-align: justify !important;
}

.aboutUsBannerOverlay .img-holder {
    float: right;
    position: relative;
}

.aboutUsBannerOverlay .img-holder img {
    padding: 0px 0px 0px 15px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1200px) {
    #about-banner {
        padding: 0 35px;
    }

    .whoWe {
        padding: 0 25px;
    }
}

@media screen and (max-width: 500px) {
    #about-banner {
        padding: 0 10px;
    }

    .whoWe {
        padding: 0 5px;
    }
}

@media screen and (max-width: 767px) {
    .aboutUsBannerOverlay .img-holder {
        float: none;
        display: block;
    }

    .aboutUsBannerOverlay .img-holder img {
        padding: 5px 0px;
        width: auto;
        height: auto;
        margin: 0 auto;
    }

    .mileDiv {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        flex-direction: column;
    }

    p.quote_color {
        text-align: center;
        padding-top: 5px;
    }
}

/* Timeline */
.owl-nav #timeline-next {
    margin-right: 3px;
}

@media screen and (max-width: 1100px) {
    .owl-nav #timeline-next {
        float: right;
        margin-right: 25px;
    }

    .owl-nav #timeline-prev {
        float: left;
        margin-right: -5px;
    }
}

.teamCarousel {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

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

@media screen and (max-width: 1042px) {

    #ourTeam-prev,
    #ourTeam-next {
        background: inherit;
    }

    #ourTeam-prev {
        margin-left: 32px;
    }

    #ourTeam-next {
        margin-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    #ourTeam-prev {
        margin-left: 12px;
    }

    #ourTeam-next {
        margin-right: 17px;
    }
}

@media screen and (max-width: 430px) {
    .teamCarousel {
        overflow-x: hidden;
    }

    #ourTeam-prev {
        margin-left: 32px;
    }

    #ourTeam-next {
        margin-right: 40px;
    }

    .flip-card {
        width: 300px !important;
    }
}


/* About Us Page */

/* Our Network */
.network-list-inside {
    padding-top: 17px !important;
    list-style: none;
}

.network-list-inside li {
    width: 100%;
    padding-left: 15px;
}

.network-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.network-list li {
    width: 33%;
    padding-left: 15px;
}

@media screen and (max-width: 425px) {
    .network-list li {
        width: 50%;
    }
}

@media screen and (max-width: 374px) {
    .network-list li {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    img.networkImg {
        width: 75% !important;
        margin: 0 auto;
        display: block;
    }
}

.networkHeader {
    margin-top: 14px;
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .networkHeader {
        text-align: center;
        padding-bottom: 10px;
    }
}

/* Our Network */

/* Our Business */
h1.ourBusiness {
    text-align: center;
    margin: 30px 0 20px 0;
}

/* Our Business */

/* Contact */
.footerContactUs {
    position: relative;
    height: 100%;
    margin-left: 5rem;
}

.footerContactUs label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

.form-control-footer {
    border-radius: 10px;
    background: linear-gradient(0deg,
            rgba(211, 211, 211, 0.2) 0%,
            rgba(211, 211, 211, 0.2) 100%),
        #fff;
    border: none;
    padding: 15px 40px;
    resize: none;
}

.contactFormIcon {
    position: absolute;
    bottom: 18px;
    left: 15px;
    color: var(--primary);
}

.contactFormBtn {
    background-color: var(--primary);
    color: white;
    border: unset;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    padding: 15px;
}

.contactFormBtn:hover {
    background-color: var(--secondary);
    color: white;
}

.form-control-footer::placeholder {
    color: #696969;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.contactSectionTitle {
    color: var(--primary);
    font-size: calc(1.5rem + 1vw);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contactSectionText {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    word-break: break-all;
}

.contactSectionText span {
    font-size: 14px;
    color: var(--text-color);
    font-weight: normal;
    text-transform: none;
}

.manageContactPadding {
    padding: 4rem;
    position: relative;
    z-index: 2;
    background-color: #f9f7f8;
}

.footerIframe {
    height: 590px;
    margin: 0 10px;
}

.footerIframe iframe {
    width: 100%;
    height: 100%;
}

.contactMessage {
    height: 300px;
}

@media screen and (max-width: 1024px) {
    .contactMessage {
        height: 200px;
    }
}

@media screen and (max-width: 767px) {
    .footerContactUs {
        margin-left: 0px;
        padding: 4%;
    }
}

/* Contact */

/* Blogs */
.pagination nav {
    display: block;
    margin: 0 auto;
}

/* Blogs */