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

@font-face {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

@font-face {
    font-family: "Hind", sans-serif;
    font-weight: 300;
    font-style: normal;
}

p {
    font-family: "Hind", sans-serif !important;
}

ul {
    padding: 0 !important;
}

header {
    position: relative;
}

header .navbar {
    background: #fbfafade;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    padding: 5px 50px;
}

header .nav-item a.nav-active {
    font-size: 20px;
}

header nav img {
    width: 35%;
    object-fit: cover;
}

.navbar-brand {
    width: 13%;
}

.navbar-brand img {
    width: 100%;
}

header .dropdown-menu li:hover {
    background: #868fd942;
}

header .dropdown-menu {
    width: 300px;
}

header .dropdown-menu {
    animation: growDown 500ms ease-in-out forwards;
    transform-origin: top center;
}

#navbarSupportedContent .navbar-nav {
    align-items: center !important;
}


@keyframes growDown {
    0% {
        transform: scaleY(0);
    }

    80% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(1);
    }
}

header .dropdown-menu li {
    padding: 7px 10px;
    border-bottom: 1px solid rgb(190, 190, 190);

}

header .dropdown-menu .dropdown-item {
    background: none !important;
    color: #000;
    margin: 0 !important;
    font-size: 14px;
}

header .dropdown-menu li:hover .dropdown-item {
    color: #18538f;
}

#navbarSupportedContent {
    width: 100%;
}

header .nav-item a {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    margin: 0 15px;
    padding: 0 !important;
    font-family: "Roboto Slab", serif;
}

header .nav-item a:hover {
    color: #003f7f;
    transition: .5s;
}

header .btn {
    background: #18538f;
    padding: 5px 22px;
    border: 2px solid #18538f;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #FFF;
    margin-left: 15px;
    border-radius: 6px;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
}

header .btn:hover {
    background: none;
    color: #000;
}

.is-sticky .btn:hover {
    color: #000 !important;
}


.page-header {
    z-index: 9999;
}

header .contact .nav-item a {
    color: #000;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0 15px;
}

.nav-link {
    transition: none !important;
}


header .nav-item>a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #003f7f;
    transition: width .3s;
}

header .nav-item>a:hover::after {
    width: 100%;
}

.navbar-nav .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    position: relative;
    background: var(--white);
}

.navbar-nav .nav_list {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
}

.navbar-nav .nav_action {
    display: flex;
    align-items: center;
    /* gap: 1rem; */
}


.navbar-nav .nav_toggle {
    cursor: pointer;
    display: none;
}

.navbar-nav .nav_toggle ion-icon {
    font-size: 3.5rem;
    color: var(--text-primary);
}

.navbar-nav .dropdown {
    position: absolute;
    left: 144px;
    width: 84%;
    transition: all 0.5s ease-in;
    top: 130px;
    background: #FFF;
    border-top: 3px solid #003f7f;
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    margin: 0 auto;
}

.nav_list_menu:hover.dropdown {
    display: block;
}

.dropdown-item:hover {
    background: #FFF !important;
}

.navbar-nav .dropdown-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.navbar-nav .nav_list_menu:hover ion-icon {
    transition: all 0.5s ease-in;
    transform: rotate(180deg);
}


.navbar-nav .item-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    width: 90%;
}

.navbar-nav .item-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
}

.navbar-nav .item-list-info {
    position: relative;
    width: 100%;
}

#navbarSupportedContent .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
}

.navbar-nav .info-badge {
    position: absolute;
    right: 1rem;
    top: 0;
    background: var(--badge-bg);
    padding: 0.1rem 0.5rem;
    border-radius: 1rem;
    color: var(--badge-text);
}

.nav_list a {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    margin: 0 15px;
    padding: 0 !important;
    font-family: "Roboto Slab", serif;
    text-decoration: none;
}

.nav_list i {
    position: relative;
    top: 2px;
}

.nav_list a:hover {
    color: #003f7f;
}

/* header .nav-item>a:after {
    content: '';
    display: block;
    width: 0;
    height: 0px;
    background: none;
    transition: width .3s;
} */

.item-list-info p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    font-family: "Hind", sans-serif;
    display: none;
}

.item-heading {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    margin: 0 15px;
    padding: 0 !important;
    font-family: "Roboto Slab", serif;
}

.item-list-info a {
    color: #000;
    font-size: 17px;
    font-weight: 500;
    padding: 0 !important;
    margin: 0;
    font-family: "Roboto Slab", serif;
}

.item-list .item-img img {
    width: 80% !important;
}

.page-header.is-sticky {
    position: fixed;
    background: #FFF;
    color: #000;
    animation: slideDown .5s ease-out;
    top: 0;
    width: 100%;
    border-bottom: 1px solid #18538f;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.page-header.is-sticky .nav-item a {
    color: #000;
}

.scrollbar {
    margin-left: 30px;
    float: left;
    height: 300px;
    width: 65px;
    background: #F5F5F5;
    overflow-y: scroll;
    margin-bottom: 25px;
}

.your-career::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.your-career::-webkit-scrollbar {
    height: 10%;
    width: 7px;
    background-color: #F5F5F5;
}

.your-career::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #003f7f;
    height: 10px;
}

::-webkit-scrollbar {
    max-height: 50%;
    height: 50%;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.fade-in-out {
    animation: fadeInOut 1.1 infinite;
}

.banner-sec {
    position: relative;
    background-attachment: fixed;
}

.banner-mr {
    position: absolute;
    top: 50%;
    left: 44%;
    transform: translateX(-45%) translateY(-50%);
    text-align: center;
    width: 100%;
}

.banner-sec .hiro-sec {
    overflow: hidden;
    height: 685px;
    margin-top: -171px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-attachment: fixed;
}

.banner-sec .banner-mr h1 {
    color: #FFF;
    font-size: 65px;
    font-weight: 700;
    padding: 10 0;
    width: 100%;
    font-family: "Roboto Slab", serif;
    text-transform: uppercase;
}

.banner-sec .banner-mr p {
    color: #FFF;
    width: 55%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    text-transform: uppercase;
}

.button-sec {
    background: #003f7f;
    padding: 8px 30px;
    border: 2px solid #003f7f;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    color: #fff;
    margin-top: 20px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
}

.button-sec:hover {
    background: none;
    color: #000;
}

.banner-sec .hiro-sec::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
}

.bg-image::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: .5px;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

#animation-text {
    animation: slideIn var(--animate-duration) ease-out;
}

#animation-texts {
    animation: slideIn var(--animate-duration) ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: .5px;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.services-sec,
.work-sec,
.our-empire-sec,
.our-team,
.experience,
.best-projects,
.our-projects,
.more-projects,
.previous-projects {
    position: relative;
    width: 85%;
    margin: 30px auto;
}

.b-divider {
    text-align: center;
    margin: 0 auto 30px;
    font-weight: 800;
    font-family: "Roboto Slab", serif;
}

h2 {
    font-size: 34px;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.card-services {
    overflow: hidden;
    text-align: center;
    float: left;
    position: relative;
}

.card-services img {
    width: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.card-services img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.services-sec h5 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 6px;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
}

.card-sec {
    height: 520px;
    background: #e8ecf178;
    border-radius: 13px;
    cursor: pointer;
}

.card-sec:hover {
    background-color: #FFF;
}

.card-content h5 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    padding: 5px 10px;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
}

.footprint {
    text-align: center;
    margin: 0 !important;
}

.our-empire-sec .b-divider {
    margin-bottom: 0 !important;
}

.card-content p {
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Hind", sans-serif;
}

.analysing {
    text-align: center;
    margin-bottom: 20px;
}

.card-sec img {
    width: 100%;
}

.card-content a {
    background: #003f7f;
    padding: 8px 30px;
    border: 2px solid #003f7f;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    color: #fff;
    margin: 20px 10px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    bottom: 0;
}

.card-content a:hover {
    background: none;
    color: #000;
}




.work-sec img {
    width: 100%;
    /* height: 260px; */
}

.our-empire-sec img {
    width: 100%;
}

.our-empire-sec h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 20px 0 6px;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
}

.our-empire-sec p {
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0;
    line-height: 30px;
    font-family: "Hind", sans-serif;
}

/* 
.sm-border {
    border: 2px solid #003f7f;
    width: 16%;
    border-radius: 10px;
} */

.work-sec h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 50px 0 6px;
    text-transform: capitalize;
    font-family: "Roboto Slab", serif;
}

.work-sec p {
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0;
    line-height: 30px;
    font-family: "Hind", sans-serif;
}

.work-img-sec {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.work-img-sec img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* .work-sec nav {
    width: 400px;
    margin: 10px auto;
} */

.work-sec nav a {
    display: inline-block;
    width: 149px;
    height: 46px;
    line-height: 30px;
    color: #18538f;
    font-size: 16px;
    font-weight: 500;
    line-height: 42px;
    margin: 0 10px 20px 0;
    text-align: center;
    border: 1px solid #18538f;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Roboto Slab", serif;
}

.work-sec nav a:last-child {
    border: none;
}

.work-sec .tabContainer {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    position: relative;
    height: 345px;
}

.work-sec .tabContainer h5 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.work-sec .tabContainer p {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    text-align: justify;
    line-height: 20px;
    font-family: "Hind", sans-serif;
}

.work-sec .tabContainer img {
    width: 100%;
}

.work-sec .Tabcondent {
    position: absolute;
    color: #000;
    text-align: left;
    opacity: 0;
    border-radius: 32px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 37px auto;
    transition: all ease-in-out 0.3s;
}

.work-sec a.active {
    background-color: #18538f;
    color: #FFF;
}

.work-sec .Tabcondent.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 0px;
    transition: all ease-in-out 0.6s;
    margin: 0 auto;
}

.tabContainer i {
    font-size: 24px;
    color: #FFF;
    background: #003f7f;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    line-height: 62px;
    text-align: center;
}

.our-team .hiro-sec {
    height: 500px;
    border: 2px solid gainsboro;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
}

.Crew {
    overflow: hidden;
}

.our-team img {
    width: 100%;

}

.bg-image {
    position: relative;
    height: 500px;
    background-size: cover;
    margin: 50px 0;
    background-attachment: fixed;
    background-position-x: center;
}

.forward {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-45%) translateY(-50%);
    text-align: center;
    width: 55%;
    margin: 0 auto;
}

.forward h3 {
    color: #FFF;
    font-size: 34px;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.forward p {
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    line-height: 30px;
    font-family: "Hind", sans-serif;
}


.round-logo:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.empire-sec {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;

}

.round-logo {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    cursor: pointer;
}

.round-logo {
    position: absolute;
    width: 20% !important;
    left: 40%;
    top: 35%;
}

.dirbtn {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    background: #222;
    color: #fff;
}

.our-team .owl-carousel .item {
    display: grid;
    align-items: center;
    height: 125px;
}

.our-team .owl-carousel img {
    width: 100%;
}

/* .technology {
    height: 300px;

} */

.experience p {
    padding: 100px 0;
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0;
    line-height: 30px;
    font-family: "Hind", sans-serif;
}

.best-projects {
    margin-bottom: 130px;
}


.best-projects h5 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.best-projects p {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    font-family: "Hind", sans-serif;
}

.ft-border {
    border: 2px solid #FFF;
    width: 15%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.image_card {
    position: relative;
    cursor: pointer;
}

.image_card:hover .quality {
    bottom: -60px;
    transition: all 0.3s ease-out;
}

.quality {
    background: #FFF;
    padding: 10px 20px;
    border-radius: 10px;
    position: absolute;
    bottom: -80px;
    width: 90%;
    height: 100px;
    margin: 0 auto;
    left: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.image_card img {
    width: 100%;
}

footer {
    background: radial-gradient(138.14% 2552.37% at -8.77% 37.31%, #2465AD 0%, rgba(36, 101, 173, 0.8) 9.85%, #2465AD 48%, rgba(36, 101, 173, 0.8) 75.42%, rgba(36, 101, 173, 0) 100%);
    padding: 50px;
}

footer .footer-sec {
    width: 85%;
    margin: 0 auto;
}

.footer-sec img {
    width: 50%;
    position: relative;
    margin-bottom: 20px;
}

.footer-sec p {
    margin-bottom: 20px !important;
}

.footer-sec p {
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: "Roboto Slab", serif;
}

.footer-sec h5 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
}

.footer-sec ul li {
    list-style: none;
    padding: 0;
}

.footer-sec ul li a {
    text-decoration: none;
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: "Hind", sans-serif;
    line-height: 33px;
}

.footer-sec ul li a:hover {
    text-decoration: underline;
}

.footer-sec h6 {
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    font-family: "Hind", sans-serif;
    margin-left: -6px;
}


.footer-sec .sos-icon a:hover i {
    color: #003f7f;
}

.sos-icon img {
    filter: none !important;
    width: 65%;
    margin-bottom: 0px !important;
}

.our-mission {
    width: 85%;
    margin: 50px auto 0;
}

.our-mission h2 {
    margin-bottom: 10px;
}

.our-mission p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Hind", sans-serif;
    width: 80%;
    text-align: center;
    margin: auto;
}

.mission::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
    border-radius: 8px;
}

.mission {
    position: relative;
    overflow: hidden;
}

.mission img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.our-mission-conten {
    position: absolute;
    bottom: 32px;
    left: 35px;
    width: 73%;
}

.footer-sec img {
    filter: brightness(0) invert(1);
}

.our-mission-conten h6 {
    font-size: 17px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
    color: #FFF;
    text-align: left !important;
    font-family: "Hind", sans-serif;
}

.our-mission-conten h4 {
    font-size: 18px;
    color: #FFF;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
}

.about-sec,
.contact-sec {
    width: 85%;
    margin: 50px auto;
}

.about-sec p {
    font-size: 17px;
    font-weight: 400;
    margin: 20px 0;
    line-height: 30px;
    font-family: "Hind", sans-serif;
}

.about-img {
    overflow: hidden;
}

.about-sec img {
    width: 100%;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    cursor: pointer;

}

.about-sec img:hover {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.form-sec {
    padding: 20px 30px;
    border-radius: 10px;
    border: 2px solid gainsboro;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}

.form-sec input {
    font-size: 17px;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
    border: 2px solid gainsboro;
    margin: 10px 0;
    border-radius: 13px;
}

.form-sec textarea {
    font-size: 17px;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
    border: 2px solid gainsboro;
    margin: 10px 0;
    border-radius: 13px;
}

.form-sec .btn {
    background: #003f7f;
    padding: 8px 100px;
    border: 2px solid #003f7f;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    color: #FFF;
    margin-top: 20px;
    border-radius: 20px;
    cursor: pointer;
}

.form-sec .btn:hover {
    color: #003f7f;
    background: none;
}

.contact-img img {
    width: 100%;
}

.min-logo img {
    width: 20%;
}

.min-logo p {
    margin: 0;
}

.min-logo .btn {
    background: #003f7f;
    padding: 8px 100px;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    color: #FFF;
    margin-top: 20px;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid #003f7f;
}

.min-logo .btn:hover {
    color: #003f7f;
    background: none;
}

.your-career {
    height: 850px;
    overflow-y: scroll;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 184, 2, 0.2);
    box-shadow: rgb(177 177 177 / 27%) 0px 12px 28px 0px, rgb(255 255 255 / 10%) 0px 2px 4px 0px, rgb(255 255 255 / 5%) 0px 0px 0px 1px inset;
}

.your-career h5 {
    font-size: 21px;
    color: #003f7f;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
}

.your-career .location {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.your-career ul {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.your-career li {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
    list-style: none;
}

.your-career i {
    color: #003f7f;
}

.your-career h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 30px;
    font-family: "Roboto Slab", serif;
}

.your-career p {
    margin: 0 0 20px !important;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Roboto Slab", serif;
}

.your-career .experience-sec {
    display: block;
    padding-left: 20px !important;
}

.your-career .experience-sec li {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    font-family: "Roboto Slab", serif;
    list-style: disc;
    line-height: 30px;
}





.your-career .min-logo {
    text-align: center;
}

.hiring {
    float: right;
}

.your-career .modal-dialog {
    margin: 9.75rem auto !important;
}

.your-career .form-sec {
    border: none;
    box-shadow: none;
    padding: 10px;
}

.hiring .btn {
    background: #003f7f;
    padding: 8px 31px;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    color: #FFF !important;
    margin-top: -8px;
    border-radius: 21px;
}

.our-projects p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.project-image {
    width: 85%;
    margin: 30px auto;
}

.project-image img {
    width: 100%;
}


.Services-hiro-sec {
    height: 400px;
    background-size: cover;
    background-attachment: fixed;
    background-position-x: center;
}

.Services-hiro-sec::before {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
}

.services-content {
    position: absolute;
    left: 9%;
    top: 30%;
}

.services-content h1 {
    font-size: 50px;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
    color: #FFF;
}

.services-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #FFF;
    font-family: "Roboto Slab", serif;
}

.services-quality {
    width: 85%;
    margin: 50px auto 0;
}

.services-quality h5 {
    color: #18538f;
    font-size: 28px;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
}

.services-quality h2 {
    margin: 20px 0 10px;
}

.services-quality p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Hind", sans-serif;
}

.services-cards-section .card-sec {
    position: relative;
    height: 522px;
}

.services-quality .tabContainer i {
    font-size: 20px;
    color: #FFF;
    background: #003f7f;
    width: 46px;
    height: 46px;
    border-radius: 30px;
    line-height: 47px;
    margin-left: 20px;
}

.services-quality .tabContainer h5 {
    font-size: 15px;
    margin-left: 20px;
}

.services-quality .tabContainer p {
    font-size: 15px;
    line-height: 22px;
}

.services-box-sec {
    background: #003f7f;
    height: 420px;
    margin: 100px 0;
    overflow: hidden;
    padding: 0 20px 20px 0;
    border-radius: 3px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.services-box-sec img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-cards-section {
    width: 85%;
    margin: 0px auto;
}

.services-communications {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.services-communications h5 {
    color: #18538f;
    font-size: 28px;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
}

.services-communications h2 {
    line-height: 40px;
}


.services-choose-section {
    width: 85%;
    margin: 0px auto;
}

.justav {
    background: #FFF;
    padding: 10px;
    border-radius: 10px;
    margin: 18px 0 10px 0;
    border: 1px solid gainsboro;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.justav .helmet-icon {
    background: #003f7f;
    width: 46px;
    height: 46px;
    border-radius: 30px;
    line-height: 47px;
    margin-left: 20px;
    text-align: center;
}

.helmet-icon i {
    font-size: 20px;
    color: #FFF;
}

.justav h5 {
    color: #18538f;
    font-size: 16px;
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    letter-spacing: .5px;
}


.justav p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Hind", sans-serif;
}


.our-projects .missions {
    text-align: center;
    width: 100%;
}

.missions h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: #000;
    font-family: "Roboto Slab", serif;
}

.our-projects .missions img {
    width: 100%;
    margin-bottom: 20px;
}


.more-projects img {
    width: 100%;
}

.projects-box {
    background: rgba(34, 101, 170, 0.25);
    padding: 20px 20px 5px;
    border-radius: 10px;
    border: 1px solid #18538f;
    margin: 10px 0;
}

.projects-box h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 22px;
    font-family: "Roboto Slab", serif;
}

.projects-box p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #000;
    margin-top: 10px;
    font-family: "Roboto Slab", serif;
}

.projects-box i {
    color: #18538f;
    font-size: 15px;
    margin-right: 10px;
}

.projects-box .borders-lines {
    border-left: 2px solid #18538f;
    height: 65px;
    position: absolute;
    left: 38%;
    top: 78px;
}

.our-team .item {
    height: 100px;
}

.fielding-sec {
    width: 85%;
    margin: 50px auto;
}

.fielding-sec img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 10px;
}

.fielding-sec h2 {
    font-size: 34px;
    font-weight: 500;
    font-family: "Roboto Slab", serif;
}

.fielding-sec p {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    margin-top: 10px;
    font-family: "Hind", sans-serif;
}

.fielding-sec {
    width: 85%;
    margin: 50px auto;
}

.fielding-sec ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #000;
    margin-top: 10px;
    font-family: "Hind", sans-serif;
}

.fielding-sec ul li::marker {
    color: #003f7f;
}

.fielding-sec ul li:hover {
    color: #003f7f;
    cursor: pointer;
}

.fielding-sec .accordion-item {
    border: none !important;
}

.fielding-sec .accordion-item:first-of-type .accordion-button {
    border-radius: 14px;
    background: #e8eaed;
    margin-bottom: 10px;
}

.fielding-sec .accordion-button {
    border-radius: 14px;
    background: #e8eaed;
    margin-bottom: 10px;
    border: 1px solid gainsboro;
}

.srvice-sob-menu {
    background: #FFF;
    position: sticky;
    top: 170px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ededed;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.srvice-sob-menu h5 {
    cursor: pointer;
    border-bottom: 1px solid gainsboro;
}

.srvice-sob-menu h5 a {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
    font-family: "Roboto Slab", serif;
    text-decoration: none;
}

.srvice-sob-menu h5 a i {
    color: #18538f;
    margin-right: 10px;
}

.srvice-sob-menu h5:hover a {
    color: #18538f;
}

.mission-vision-sec {
    width: 85%;
    margin: 50px auto;
}

.mission-vision-sec img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

header .offcanvas-end {
    width: 270px;
}


#our-team-page {
    width: 90%;
    margin: 100px auto;
}

#our-team-page .card {
    border-radius: 20px;
    min-height: 100%;
}

#our-team-page .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

.user-picture {
    width: 100%;
    height: 100%;
}

#our-team-page .card .user-picture img {
    /* position: absolute; */
    top: -40%;
    padding: 6px;
    border: 1.5px solid #003f7f;
    text-align: center;
    left: 22%;
    background-color: #FFF;
    border-radius: 4px;
    width: 55%;
    height: 200px;
    object-fit: contain;
}

.our-team-img {
    margin: 60px 0;
}

#our-team-page .card .user-content .user-name {
    margin-top: 13px;
    font-family: 'Roboto Slab';
    color: #003f7f;
}

.user-content {
    text-align: center;
}

#our-team-page .text-muted {
    color: #000 !important;
    margin-top: 10px;
    font-size: 18px;
    font-family: 'Hind' !important;
    font-weight: 500;
}

.panel {
    background-color: white;
    border-radius: 10px;
    padding: 15px 25px;
    width: 85%;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 0px auto;
    border: 1px solid #FFF;
}

.pricing-plan {
    border-bottom: #FFF;
}

.pricing-plan:last-child {
    border-bottom: none;
}

.pricing-img {
    margin-bottom: 25px;
    width: 100%;
    max-width: 100%;
}

.pricing-header {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    letter-spacing: 1px;
}

.pricing-features {
    margin: 50px 0 25px;
    color: #18538f;
}

.pricing-features-item {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 0;
    text-align: left;
    border-top: 1px solid #e1f1ff;
    font-family: 'Hind';
}

.pricing-features-item:last-child {
    border-bottom: 1px solid #e1f1ff;
}

.pricing-price {
    color: #18538f;
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.pricing-button {
    border: 1px solid #9dd1ff;
    border-radius: 10px;
    color: #18538f;
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    margin: 25px 0;
    transition: background-color 200ms ease-in-out;
}

.pricing-button:hover,
.pricing-button:focus {
    background-color: #e1f1ff;
}

.pricing-button.is-featured {
    background-color: #18538f;
    color: white;
}

.pricing-button.is-featured :hover,
.pricing-button.is-featured :focus {
    background-color: #18538f;
}


.roadmap-container {
    float: left;
    width: 100%;
    font-family: "Roboto Slab", serif;
    font-size: 16px;
}

.roadmap-auto {
    max-width: 950px;
    margin: 0 auto;
}

.roadmap-auto h2 {
    text-align: center;
    margin-top: 50px;
}

.roadmap-container .roadmap-h2 {
    background: url(../template/images/underline-background.png) center bottom no-repeat;
    background-size: 250px 3px;
    color: #18538f;
    z-index: 1;
    font-family: "Roboto Slab", serif;
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 6px;
    text-align: center;
}

.roadmap-container .roadmap-timeline {
    padding-top: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-container .timeline-dot {
    position: absolute;
    left: 50%;
    z-index: 3;
    width: 8px;
    height: 8px;
    margin-left: -6px;
    border: 2px solid #18538f;
    border-radius: 6px;
    background-color: #18538f;
}

.roadmap-container .timeline-list {
    float: left;
    width: 100%;
    position: relative;
}

.roadmap-container .timeline-list .timeline-list-col {
    float: left;
    width: 50%;
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    position: relative;
    z-index: 3;
}

.roadmap-container .timeline-list .timeline-item-block {
    width: 350px;
    margin-bottom: 50px;
    float: left;
    text-align: left;
}

.roadmap-container .timeline-list .timeline-item-block17q4 {
    margin-top: 50px;
}

.roadmap-container .timeline-list .timeline-item-block18q2 {
    margin-top: 50px;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-time {
    position: relative;
    width: 320px;
    min-height: 36px;
    border-bottom: 0 solid #18538f;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-label {
    float: left;
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    color: #222;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-content {
    position: relative;
    left: 0;
    width: 280px;
    margin-top: 0;
    margin-right: 40px;
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 21px;
    color: #555;
    font-weight: 400;
    text-transform: none;
    border: 1px solid #ddd;
    border-top: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    padding-bottom: 0;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-content p {
    background: url(../template/images/arrow-dot-gray2.png) 0 2px no-repeat;
    margin-bottom: 10px;
    background-size: 16px 16px;
    font-size: 14px;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-content p.no-bullet {
    background: none;
    padding-left: 0;
}

.roadmap-container .timeline-list .timeline-col-right {
    padding-top: 150px;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-block {
    float: right;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-label {
    float: right;
    text-align: right;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-content {
    text-align: left;
    margin-left: 0px;
    margin-right: 0;
}

.roadmap-container .timeline-list .timeline-list-vr {
    width: 0;
    height: 99%;
    border-left: 1px solid #18538f;
    border-right: 1px solid #18538f;
    position: absolute;
    left: 49.8%;
    margin-left: -1px;
    z-index: 2l
}

.roadmap-container .timeline-list .timeline-item-label-hr {
    float: left;
    width: 475px;
    height: 3px;
    background-color: #555;
    position: relative;
}

.roadmap-container .timeline-list .timeline-item-block .item-dot {
    left: auto;
    right: 0;
    bottom: -3px;
    margin-right: -3px;
    margin-left: 0;
}

.roadmap-container .timeline-list .timeline-col-right .item-dot {
    left: 0;
    right: auto;
    margin-right: 0;
    margin-left: -4px;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-label-hr {
    margin-left: -125px;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-label2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    text-transform: capitalize;
    color: #fff;
    padding: 7px 10px 6px 10px;
}

.roadmap-container .timeline-list .timeline-item-block-green .timeline-item-label2 {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-green .timeline-item-label-hr {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-green .item-dot {
    background-color: #18538f;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-green2 .timeline-item-label2 {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-green2 .timeline-item-label-hr {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-green2 .item-dot {
    background-color: #18538f;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-blue .timeline-item-label2 {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-blue .timeline-item-label-hr {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-blue .item-dot {
    background-color: #18538f;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-blue2 .timeline-item-label2 {
    background-color: #00507F;
}

.roadmap-container .timeline-list .timeline-item-block-blue2 .timeline-item-label-hr {
    background-color: #00507F;
}

.roadmap-container .timeline-list .timeline-item-block-blue2 .item-dot {
    background-color: #00507F;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-violet .timeline-item-label2 {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-violet .timeline-item-label-hr {
    background-color: #18538f;
}

.roadmap-container .timeline-list .timeline-item-block-violet .item-dot {
    background-color: #18538f;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-mobile {
    display: none;
}

.linkedin {
    background: #FFF !important;
    width: 60%;
    color: #003f7f !important;
    font-family: "Roboto Slab", serif;
    font-weight: 600 !important;
}

.uplode-file input {
    border: none;
    border-radius: 0;
    cursor: pointer;
}



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

    .linkedin {
        width: 46% !important;
        margin-bottom: 10px;
    }

    .roadmap-container {
        padding: 22px 0;
    }

    .spacer-block {
        margin-bottom: 0;
    }

    .roadmap-container .roadmap-h2 {
        font-size: 25px;
        line-height: 30px;
        background-size: 150px 3px;
    }

    .roadmap-container .timeline-list .timeline-list-vr {
        left: 20px;
    }

    .roadmap-container .timeline-dot {
        left: 20px;
    }

    .roadmap-container .roadmap-timeline {
        padding-top: 0;
    }

    .roadmap-container .timeline-list .timeline-list-col {
        float: none;
        width: auto;
        margin-left: 25px;
        padding-left: 25px;
        margin-right: 25px;
    }

    .roadmap-container .timeline-list .timeline-item-block-mobile {
        display: block;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-time {
        width: auto;
    }

    .roadmap-container .timeline-list .timeline-item-label-hr {
        float: none;
        width: auto;
        margin-left: -30px;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-label {
        float: none;
    }

    .roadmap-container .timeline-list .timeline-item-block .item-dot {
        left: 0;
        right: auto;
        margin-left: -6px;
        margin-right: 0;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-label2 {
        width: auto;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-content {
        float: none;
        width: auto;
        margin-right: 0;
    }

    .roadmap-container .timeline-list .timeline-col-right {
        display: none;
    }

    .roadmap-container .timeline-list .timeline-item-block {
        float: none;
        width: auto;
    }

    .sos-icon img {
        width: 95%;
    }

}

@media (min-width: 900px) {

    header .nav-item a {
        font-size: 15px;
    }

    .panel {
        flex-direction: row;
    }

    .pricing-plan {
        border-bottom: none;
        border-right: 1px solid #e1f1ff;
        padding: 25px 50px;
    }

    .pricing-plan:last-child {
        border-right: none;
    }
}

@media only screen and (max-width: 600px) {
    .navbar-brand {
        margin: 0 0 20px 0;
        height: 80px;
    }

    #our-team-page {
        width: 100%;
        margin: 0 auto 50px;
    }

    #our-team-page .card .user-picture img {
        left: 23%;
        top: 0;
    }


    .navbar-brand {
        width: 29%;
    }

    .navbar-toggler i {
        line-height: 35px;
    }

    .offcanvas-header {
        justify-content: end !important;
    }

    .offcanvas-start {
        width: 350px !important;
    }

    .quality {
        height: 130px;
    }

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

    header .nav-item a.active {
        font-size: 17px !important;
    }

    header .nav-item a {
        font-size: 17px !important;
    }

    .nav-item i {
        float: right;
    }

    header nav img {
        width: 27%;
        padding-top: 12px;
    }

    .nav-item {
        border-bottom: 1px solid gainsboro;
        padding: 10px 0;
    }

    header .btn {
        height: 45px;
        font-size: 18px;

    }

    .owl-carousel,
    .owl-carousel .owl-item {
        -webkit-tap-highlight-color: transparent;
        position: static !important;
    }

    header .navbar {
        padding: 2px 0px;
    }

    .navbar-toggler-icon {
        color: #FFF;
        line-height: 33px;
        width: 100%;
    }

    .banner-sec .hiro-sec {
        height: 246px;
        margin-top: 0;
    }

    .navbar-toggler {
        position: absolute;
        top: 30px;
        right: 20px;
        background: #18538f !important;
        z-index: 999;
        border: 1px solid #18538f !important;
    }

    .banner-mr {
        top: 45%;
    }

    .banner-sec .banner-mr h1 {
        font-size: 28px;
    }

    .banner-sec .banner-mr p {
        width: 94%;
        font-size: 16px;
    }

    .banner-sec .hiro-sec::before {
        height: 95%;
    }

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

    .our-mission p {
        text-align: left !important;
    }

    .services-content {
        position: absolute;
        left: 9%;
        top: 10%;
    }

    .services-content h1 {
        font-size: 35px;
    }

    .fielding-sec h2 {
        margin-top: 20px;
        font-size: 25px;
    }

    .our-empire-sec h3 {
        font-size: 24px;
        text-align: center;
    }

    .our-empire-sec p,
    .work-sec p {
        font-size: 19px;
        text-align: left;
    }

    .footprint {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .work-sec h3 {
        font-size: 24px;
        text-align: center;
        margin: 0;
    }

    .work-img-sec img {
        height: 83px;
    }

    .work-sec nav {
        display: flex;
        gap: 7px;
        margin-top: 34px;
    }

    .work-sec nav a {
        font-size: 14px;
    }

    .work-sec .tabContainer {
        height: 440px;
        overflow-y: scroll;
    }

    .forward {
        left: 46%;
        width: 86%;
    }

    .forward h3 {
        font-size: 25px;
    }

    .our-team img {
        margin: 10px 0;
    }

    .empire-videp-sec .mt-4 {
        margin-top: -0.5rem !important;
    }

    .round-logo {
        left: 32%;
        top: 30%;
        width: 35% !important;
    }

    .b-divider {
        margin-bottom: 20px;
    }

    .experience p {
        padding: 0;
        font-size: 19px;
        text-align: left;
    }

    .image_card {
        margin: 60px 0;
    }

    footer {
        position: relative;
        padding: 50px 0;
    }

    .sos-icon {
        position: absolute;
        bottom: 0;
    }

    .services-box-sec {
        margin: 50px 0 0 0;
    }

    .services-box-sec img {
        height: 280px;
    }

    .services-box-sec {
        height: 300px;
    }

    .services-communications {
        width: 100%;
        margin-top: 30px;
    }

    .services-cards-section .card-sec {
        margin: 10px 0;
    }

    .justav .helmet-icon {
        margin-left: 0;
    }

    .our-team .owl-carousel .item {
        height: 63px;
    }

    .our-projects p,
    .our-mission p {
        width: 100%;
        text-align: left;
    }

    .more-projects img {
        margin: 10px 0;
    }

    .mission {
        margin: 10px 0;
    }

    .about-img {
        margin-top: 20px;
    }

    .form-sec {
        margin: 20px 0;
    }

    .min-logo img {
        width: 41%;
        margin-top: 40px;
    }

    .our-empire-sec .min-logo h3 {
        margin: 7px 0;
    }

    .our-empire-sec .min-logo p {
        text-align: center;
    }

    .your-career {
        margin: 20px 0;
    }

    .your-career ul {
        display: block;
    }

    .your-career ul li {
        margin: 10px 0;
    }

    .work-sec .tabContainer h5 {
        margin-left: 15px !important;
    }

    .Tabcondent p {
        margin-left: 15px !important;
    }

    #our-team-page .card .user-content .user-name {
        font-size: 21px;
        margin-top: 25px;
    }

    #our-team-page .card .user-picture img {
        width: 100%;
    }

    #our-team-page {
        overflow: hidden;
    }

    .nav_list {
        border-bottom: 1px solid gainsboro;
        padding: 10px 0;
        margin: 0 !important;
    }

    .nav_list i {
        position: absolute;
        right: 13px;
        font-size: 18px;
    }

    .navbar-nav .dropdown {
        width: 96% !important;
        top: 134px !important;
        left: 24px !important;
        height: 680px;
        overflow: scroll;
    }

    .our-team-img .col-lg-4 {
        margin-bottom: 100px !important;
    }

    .work-sec .tabContainer p {
        text-align: left;
    }

    .nav_list-item a {
        color: #000 !important;
        font-size: 17px;
        font-weight: 500;
        margin: 0 15px;
        padding: 0 !important;
        font-family: "Roboto Slab", serif;
        text-decoration: none;
    }

    .fielding-sec img {
        height: 230px;
    }

    .Services-hiro-sec {
        background-attachment: local;
    }

    .nav_list-item .dropdown-sec {
        position: absolute;
        left: 11px;
        width: 96%;
        transition: all 0.5s ease-in;
        top: 143px;
        background: #FFF;
        border-top: 3px solid #003f7f;
        border-radius: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        margin: 0 auto;
        display: none;
        height: 592px;
        overflow-y: scroll;
    }

    .navbar-nav .dropdown-inner {
        padding: 1rem 0;
    }



    .nav_list-item:hover .dropdown-sec {
        display: block;
    }

    .nav_list-item .item-list-info a {
        margin: 0;
    }

    .nav_list-item i {
        float: right;
        margin-right: 20px;
    }

    .nav_list-item {
        border-bottom: 1px solid gainsboro;
        padding: 10px 0;
    }

    .footer-sec h6 {
        margin-left: 0;
    }

    .banner-sec .hiro-sec::before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: none;
        opacity: 0.4;
    }

    .bg-image {
        background-attachment: local;
    }

    .sos-icon {
        width: 56%;
    }

    .team-card img {
        width: 100%;
    }

    .team-user-content {
        margin-left: 0 !important;
    }

    .user-picture {
        height: 56%;
    }

    .mobile-card {
        display: block !important;
        overflow: hidden;
    }

    .mobile-card .user-picture img {
        width: 100%;
        height: 424px;
        object-fit: contain;
    }

    .mobile-card .user-content h5 {
        text-align: center;
        font-size: 20px;
        color: #003f7f;
        font-weight: 600;
        font-family: 'Roboto Slab';
        margin-top: 10px;
    }

    .mobile-card .user-content h4 {
        text-align: center;
        font-size: 18px;
        color: #000 !important;
        font-weight: 600;
        font-family: 'Roboto Slab';

    }

    .mobile-card .user-content p {
        text-align: center;
        font-size: 18px;
        width: 85%;
        margin: 11px auto 0;
    }

    #our-team-page {
        display: none;
    }

    .modal {
        top: 50px !important;
        z-index: 9999 !important;
    }

    .all-team .row {
        margin: 100px 0;
        gap: 85px 0;
    }

    .navbar-nav .item-list{
        gap: 0;
        width: 100%;
    }

    .navbar-nav .item-list-info {
        position: relative;
        width: 100%;
        top: 0;
        left: 14px;
    }

    .navbar-nav .dropdown-inner{
        padding: 0;
    }

    .box-add{
        position: relative;
        top: -70px !important;
    }


    .box-drop{
        position: relative;
        top: -33px !important;
    }

    .team-cars-add .user-content p{
        text-align: center !important;
    }

    .empire-team{
        display: none;
    }

}



@media screen and (max-width: 599px) {
    header nav img {
        width: 110px;
        padding-top: 7px;
    }
}

@media screen and (max-width: 599px) {
    header nav img {
        width: 110px;
        padding-top: 7px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #003f7f;
}

#our-team-page {
    width: 90%;
    margin: 30px auto;
    overflow: hidden;
    background: #FFF;
    /* height: 555px; */
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.user-content span {
    font-size: 16px;
    font-family: 'Roboto Slab';
    color: #FFF;
    margin-top: 15px;
    background: #003f7f;
    padding: 7px 19px;
    border-radius: 6px;
}


#our-team-page p {
    text-align: center;
    width: 76%;
    margin: 10px auto;
    font-size: 16px;

}

#our-team-page .card .user-picture img {
    top: -12%;
}


.mobile-card {
    display: none;
}


.team-card {
    width: 90%;
    margin: 30px auto;
    overflow: hidden;
    background: #FFF;
    height: 380px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.team-card img {
    border: 1px solid #003f7f;
    padding: 5px;
    border-radius: 10px;
}

/* 
.user-content{
    height: 190px;
} */

.team-user-content {
    margin-top: 20px;
    margin-left: 30px;
}

.team-card h5 {
    font-size: 24px;
    color: #003f7f;
    font-family: 'Roboto Slab';
}

.team-card h4 {
    font-size: 18px;
    color: #000;
    font-family: 'Roboto Slab';
}

.paragraphs {
    text-align: justify !important;
}

.modal {
    top: 50px !important;
    z-index: 9999;
}

#cards .card {
    border-radius: 20px;
    min-height: 100%;
}

#cards .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

.card {
    position: sticky;
    top: 30px;
}

#cards .card .user-picture img {
    position: absolute;
    top: -100px;
    right: 31%;
    background: #f8f9fa !important;
    padding: 10px;
    border: 1px solid #003f7f;
    width: 40%;
}

#cards .card .user-content .user-name {
    margin-top: 35px;
}

.team-cars-add .user-content h5 {
    margin-top: 63px;
    font-family: 'Roboto Slab';
    color: #003f7f;
}

.team-cars-add .user-content h6 {
    font-family: 'Roboto Slab';
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin: 10px auto;
    width: 76%;
    line-height: 30px;
}

.team-cars-add .user-content p {
    text-align: justify;
    font-size: 16px;
    width: 87%;
    margin: 0 auto 20px;
}

.all-team {
    overflow: hidden;
    background: #FFF;
    margin-bottom: 100px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.crad-items {
    height: 300px;
    position: sticky;
    top: 255px;
    margin-bottom: 50px;
    bottom: 50px;
}

.empire-team {
    text-align: left;
    margin-bottom: 50px;
}


.card-sec-images img{
    height:174px !important;
}

.item-list .item-img .net-worck{
    width: 47px !important;
}
.lst-text{
font-size: 17px;
font-weight: 600;
color: #000;
font-family: "Roboto Slab", serif;
text-decoration: none;
}

