/********** Template CSS **********/
:root {
    --primary: #4364a2;
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 300 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 300 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 300 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

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


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 400;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    min-height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #333;
    font-weight: 400;
    outline: none;
    font-size: 18px !important;
    outline: none;
    margin-top: 8px;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: #012e81;
    border: 10px solid #012e81;
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 400;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(67, 100, 162, .95), rgba(67, 100, 162, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(67, 100, 162, .95), rgba(67, 100, 162, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
    background: #4364a2;
    color: #fff;
}


.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 1rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
    max-width: 310px;
}

.project-item .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item .project-title h4 {
    color: #FFFFFF;
    font-size: 1.1rem
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    /* right: 3rem; */
    bottom: 0;
    /* left: 3rem; */
    padding: 8px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
    margin: 0;
    width: 100%;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
    background: #2a529d;
    color: #fff;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #2a529d transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #2a529d transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

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

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

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


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

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

/* custom styles */
body {
    font-family: "Poppins", sans-serif;
}

.topmost-nav-wrapper {
    background-color: #fff !important;
}

.hero-text {
    color: #fff;
    margin-bottom: 8px !important;
}

.inner-nav {
    background-color: #ededed54 !important;
    font-size: 20px;
    color: #000;
}

.navbar-nav a {
    font-size: 16px !important;
}

.text-start i,
.text-end i {
    font-size: 18px;
}

.logo-wrapper img {
    width: 75%;
}

.hero-sub-text {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
}

.hero-btn {
    font-size: 18px !important;
}


.why-us {
    font-size: 1.2rem;

}

.why-us-home {
    font-size: 1.1rem;
    color: #fff;

}

.check-mark {
    color: #fff !important;
}

.p-inner {
    font-size: 18px;
}

.custom-mrgn {
    margin-top: 14px;
}

.owl-nav i::before {
    vertical-align: -4px !important;
}

.hidden {
    visibility: hidden;
}

.key-values {
    background: #eee;
    border: none !important;
    border-radius: 10px;
}

.awards-wrapper img {
    border: 10px solid #f9f9f9;
    border-radius: 0 !important;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 100% !important;
}

.service-buttons {
    height: 75px;
}

.inner-page {
    padding-top: 12rem !important;
}

.headshot {
    max-width: 90%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.container-margin {
    border-radius: none !important;
    display: flex;
    margin-bottom: 30px;
}

.about-margin {
    border-bottom: 1px solid #eee;
    border-radius: none !important;
    display: flex;
}

.about-margin .row {
    padding: 30px 20px;
}

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

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

.full-width {
    width: 100% !important;
}

/* animation-delay */
.delay-1 {
    animation-delay: .25s;
}

.delay-2 {
    animation-delay: .5s;
}

.delay-3 {
    animation-delay: .75s;
}

.delay-4 {
    animation-delay: 1s;
}

.delay-5 {
    animation-delay: 1.5s;
}

.grp-h1 {
    font-size: 32px;
    margin-top: 20px;
}

.company-card {
    margin-bottom: 30px;
}

.company-card h4 {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 20px !important;
    color: #fff !important;
}

.company-card .team-text {
    background: #4364a2 !important;
}

.video-container {
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
}

.inner-pages-top {
    margin-top: 100px !important;
}

.video-text {
    margin-top: 41px !important;
    background: #4364a2;
    padding: 24px;
    min-height: 471px;
    box-sizing: border-box;
}

.elementor-video {
    max-width: 100%;
}

.awards-wrapper .owl-nav.disabled {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-header {
    background: #4364a2;
}

.modal-header h5 {
    color: #fff;
}

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

.news-modal .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #fff;
    background: transparent url("../img/close.png") center/1em auto no-repeat;
    border: 0;
    border-radius: 8px;
    opacity: .5
}

.group-companies h4 {
    color: #011A41 !important;
}

#newsCards p {
    margin-top: 20px;
}

#newsCards p span {
    padding: 6px 12px;
    background: #4364a2;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

.company-card {
    background: #efefef;
    padding: 20px;
    border-radius: 10px;
}

.company-card .company-logo {
    margin-bottom: 20px;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #2a529d;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.company-card.group-company h4 {
    color: #011A41 !important;
    background-color: transparent;
}

.contact-form input {
    border: 1px solid #DFE4FD !important;
}
.awards-wrapper .card{
    border:none;
    width:95%;
}
.awards-wrapper .card-title{
    font-weight:500 !important;
}
/* .palat h1, .palat h5{
    color:#000 !important;
} */

@media (max-width: 992px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        display: block;
    }

    .mobile-tags {
        justify-content: flex-start !important;
    }

    .mobile-service {
        display: block;
    }

    .desktop-service {
        display: none;
    }

    .custom-margin-service {
        margin-bottom: 40px;
    }

    #header-carousel .carousel-item {
        background: #4364a2;
    }

    #header-carousel .carousel-item img {
        visibility: hidden;
    }

    .reverse-column {
        flex-direction: column-reverse;
    }

    .hero-sub-text {
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
    }

    .play-button {
        display: none !important;
    }

    #header-carousel .carousel-control-prev-icon,
    #header-carousel .carousel-control-next-icon {
        display: none;
    }

    .mobile-service img {
        object-fit: cover !important;
        object-position: 50% 10%;
    }

    .inner-page {
        padding-top: 7.2rem !important;
    }

    .headshot {
        max-width: 100%;
    }
    .client-centric{
        padding-top:0 !important;
    }
    .bg-dark {
        background-color: #20447d !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}