@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
/********* Template CSS **********/
:root {
    --primary: #e98123;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #224f95;
}
img.img-fluid.logo-img {
    height:70px;
}
h1.blog__title {
    font-size: 25px;
    max-width: 550px;
    font-weight: 600;
}
.navbar-dark{
    background-color: #fff;
}
.carousel-item h1{
    font-size:3rem;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}
/*** 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;
}

@-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);
    }
}

#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;
}
body{
    font-family: 'Rubik', sans-serif;
}
/*h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'Rubik', sans-serif !important;
}*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Rubik', sans-serif !important;
}
/*** Heading ***/
a:hover {
    color: #0053a4;
}
/*** Button ***/
.btn {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    transition: .5s;
}
.btn:hover{
    color: #fff;
}
.btn-bg{
     color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
    background-color: #e98123;
}
.common-bg{
    background-color: #e98123;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #e98123;
}
.btn-bg-blue{
        background-color: #0054a5;
}
.text-primary-color{
     color: #0054a5 !important;
}
.header-call-area .header-call-text a{
    color: #0054a5;
}
.header-call-area .header-call-text span{
    color: #0054a5;
}
.header-call-area .header-call-icon i {
    margin-top: 5px;
    color: #e98123;
    transform: rotate(92deg);
    font-size: 22px;
}
.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.common-bg:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
    /*color: #000;*/
}
.text-orange{
    color: #e98123;
}
.text-color-blue{
    color: #224f95;
}
.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

.btn-sm-square {
   width: 26px;
    /* height: 27px; */
    padding: 3px 7px 0px 8px;
}
.btn-sm-square:hover{
    color: #000 !important;
}
.btn-lg-square {
    width: 48px;
    height: 48px;
}

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


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Rubik', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 15px 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

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

.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;
}

@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;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}
.navbar-dark .navbar-nav .show>.nav-link, .navbar-dark .navbar-nav .nav-link.active{
    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, .1);
        z-index: 999;
    }
    
    .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: .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-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .8);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }
    .carousel-item img {
        height: 440px !important;
        object-fit: cover !important;
    }
    .carousel-caption h1 {
        font-size: 25px; 
        width: 300px;
        font-weight: 600 !important;
        margin: 0 auto;
    }
    .ptb-100 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .about-image {
        position: unset;
        text-align: center;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .about-content h3 {
        font-size: 26px;
        margin-bottom: 6px;
    }
    .ctp-protec-card {
        padding: 25px 25px 25px 0;
    }
    .single-fun-fact {
        text-align: center;
        position: relative;
        border-right: unset;
        margin-bottom: 30px;
    }
    .single-fun-fact h3 {
        font-size: 35px !important;
    }
    .single-fun-fact p {
            font-size: 16px !important;
    }
    .about-image .experience{
        display: none;
    }
    .single-fun-fact {
        border-right:unset !important;
        margin-bottom: 30px;
    }
    .bg-header {
        background-color: #fef9f3 !important;
        background: #fef9f3 !important;
    }
    .solution-item .content h3 {
        font-size: 18px !important;
    }
    .solution-item .solution-info i{
        display: none !important;
    }
    .solution-item .solution-info {
        position: relative;
        padding-left: 0 !important;
        text-align: left !important;
    }
    .solution-item .solution-info h3 a {
        font-size: 30px !important;
    }
    .order1{
        order: 1;
    }
    .order2{
        order: 2;
    }
    .section-title p {
        max-width: 100%;
        margin: auto;
        font-size: 15px;
    }
    .section-title h2 {
        font-size: 30px;
        margin-top: 3px;
    }
    .shape {
        display: none !important;
    }
    .procces-bar {
        display: block !important;
    }
    button.accordion-button.collapsed{
    font-size: 16px !important;
    }
    p{
        font-size: 15px !important;
    }
    .award-img {
       margin-top: 20px;
    }
    .main-career-img-txt {
    width: 100% !important;
    padding: 10px !important;
    position: unset !important;
}
.section-title-side h3 {
    margin-top: 18px;
    font-size: 24px !important;
}
.header-call-area {
    margin-bottom: 10px;
}
img.img-fluid.logo-img {
    height: 55px !important;
}
.blog-main-img img{
    height: auto !important;
}
.blog-main-contain h2 {
    font-size: 19px !important;
    margin-top: 15px !important;
}
.blog-main-contain h4 {
    font-size: 18px;
}
.blog-img img {
    height: auto !important;
}
.contact-page-contact-form{
        background: #0053a459;
        padding: 15px !important;
        border-radius: 5px;
}
.carousel-inner{
        padding-top: 0px !important;
}
.director-main-img {
    height: auto !important;
    width: 100% !important;
        float: unset !important;
}
.director-main-txt{
    padding-top: 20px;
}
}

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

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


/*** Section Title ***/
/*.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}*/

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

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

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.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;
    height: 300px;
    padding: 0 30px;
    transition: .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;
}


/*** 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: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #e98123;
}

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

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

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


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

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

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
        background: #e98123;
    padding: 5px 8px 2px 8px;
    border-radius: 50px !important;
    color: #fff;
}
i.fab.fa-facebook-f.fw-normal {
    padding: 0px 3px;
}
.team-item:hover .team-social {
    /*background: rgba(9, 30, 62, .7);*/
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: 1s 0s;
}

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

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

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

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

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}
.team-item .content {
    margin-top: 25px;
}
.team-item .content h3 {
    font-size: 20px;
    color: #224f95;
    margin-bottom: 8px;
}
.team-item .content span {
    font-size: 16px;
    color: #606060;
}
.blog-item h4 {
    font-weight: 500 !important;
}
.blog-item a {
    font-weight:500 !important;
}
/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

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

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .0), rgba(9, 30, 62, .0)), url(../img/about-us-banner.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

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

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


/*---------------------- CSS Start ----------------------*/
/*---------------------- Heding CSS Start ----------------------*/
.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title .first-span {
    color: #000;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    margin-top: 10px;
    color: #e98123;
}
.section-title p {
    max-width: 608px;
    margin: auto;
}

/*--------*/
.section-title-side .first-span{
    font-size: 16px;
    color: #000;
}
.section-title-side h3 {
    font-size: 30px;
    color: #e98123;
}
p {
    line-height: 1.8;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}
img.img-fluid.footer-logo-img {
    height: 70px;
    background: #fff;
    padding: 6px 15px;
}
/*************/
.section-bg-color{
    background: #f1f1f1;
}
.section-bg-color-light{
    background: #f1f1f1;
}
.ptb-100 {
    padding-top:65px;
    padding-bottom:65px;
}
/*---------------------- Heding CSS End ----------------------*/
.about-image .experience {
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    max-width: 470px;
    margin: auto;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    padding: 40px;
    border-left: 2px solid #0053a4;
}
.about-image img:nth-child(2) {
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 1;
}
.about-image {
    position: relative;
    text-align: left;
    padding-right: 100px;
    padding-bottom: 100px;
}
.about-image .experience h4 {
    font-size: 80px;
    margin-bottom: 0;
    position: absolute;
    left: 50px;
    top: 35px;
    font-weight: 400;
}
.about-image .experience p {
    font-size: 28px;
    color: #111111;
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 120px;
    line-height: 1.4;
    font-family: "Rubik", sans-serif;
}
.about-content .first-span {
    color: #e98123;
    font-size: 16px;
}
.about-content h3 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 16px;
    color: #e98123;
}

.about-content strong {
    font-size: 18px;
    color: #606060;
    font-weight: 400;
}
.about-content .about-list li {
    list-style-type: none;
    color: #606060;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.about-content .about-list li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #e98123;
    font-size: 20px;
}
.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #e98123;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.default-btn:hover{
    color: #fff !important;
}
/*---------------------------------------------------*/
.process-item {
    text-align: center;
    background-color: #ffffff;
    padding: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 30px;
}
.process-item::before {
    position: absolute;
    content: "";
    height: 65%;
    width:98%;
    background-color: #e981235c;
    left: 0;
    right: 0;
    margin: auto;
    top: -110px;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.process-item .icon {
    margin-bottom: 20px;
    position: relative;
}
.process-item .icon i {
    display: inline-block;
    height: 90px;
    width: 90px;
    line-height: 90px;
    background-color: #ffffff;
    text-align: center;
    font-size: 50px;
    color: #0054a5;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.process-item h3 {
    font-size: 25px;
    margin-bottom: 15px;
}
.process-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.process-item:hover .icon i {
    background-color: #e98123;
    color: #ffffff;
}
/*----------------------------------------*/
.company-image img{
    height:100%;
    width:100%;
}
.company-content h3 {
    font-size: 36px;
    margin-bottom: 50px;
}
.company-content .company-text p {
    line-height: 28px;
}
.company-content .company-text {
    position: relative;
    padding-left:90px;
    margin-bottom: 20px;
}
.company-content .company-text .icon {
    position: absolute;
    left: 0;
    top: 0;
}
.company-content .company-text .icon img {
    height: 62px;
    border-radius: 50px;
    border: 2px solid #e98123;
    padding: 5px;
}
.company-content .company-text h4 {
    font-size: 25px;
    margin-bottom:5px;
}
/*----------------------------------------*/
.services-item {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 30px;
}
.services-item::before {
    position: absolute;
    content: "";
    height: 65%;
    width: 90%;
    background-color: #e98123;
    left: 0;
    right: 0;
    margin: auto;
    top: -130px;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.services-item h3 {
    font-size: 25px;
    margin-bottom: 20px;
}
.services-item .icon {
    margin-bottom: 20px;
    position: relative;
}
.services-item .icon img{
    display: inline-block;
    height: 90px;
    width: 90px;
    line-height: 90px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.services-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.services-item:hover::before {
    background-color: #e98123;
}
.services-item .learn-btn {
    color: #0054a5;
    display: inline-block;
    font-weight: 500;
}
/*----------------------------------------*/
.solution-item {
    background-color: #224f95;
    border-radius: 5px;
    padding-top: 65px;
    padding-bottom: 65px;
    padding-left: 50px;
    padding-right: 50px;
}
.solution-item .content {
    position: relative;
}
.solution-item .content::before {
    position: absolute;
    right: -35px;
    top: 0;
    width: 1px;
    content: '';
    height: 85px;
    background-color: #9cb8d2;
}
.solution-item .content h3 {
    font-size: 34px;
    color: #ffffff;
    font-weight: 400;
}
.solution-item .solution-info {
    position: relative;
    padding-left: 85px;
    text-align: right;
}
.solution-item .solution-info i {
    display: inline-block;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    background-color: #ffffff;
    color: #e98123;
    font-size: 30px;
    position: absolute;
    left: 50px;
    top: -14px;
    transform: rotate(90deg);
}
.solution-item .solution-info h3 {
    font-size: 36px;
    margin-bottom: 0;
}
.solution-item .solution-info h3 a {
    color: #ffffff;
    font-size: 34px;
    text-decoration: none;
}
/*----------------------------------------*/
.single-fun-fact h3 {
    position: relative;
    margin-bottom: 5px;
    line-height: 1;
    color: #0053a4;
    font-size: 48px;
}
.single-fun-fact p {
    line-height: initial;
    color: #111111;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 500;
    font-size: 24px;
}
.single-fun-fact {
    text-align: center;
    position: relative;
    border-right: 1px solid #d3d2ce;
    /*margin-bottom: 30px;*/
}
.col-lg-3:last-child .single-fun-fact {
    border-right: none;
}
/*----------------------------------------*/
.clients-item {
    background-color: #ffffff;
    -webkit-box-shadow: 1px 14px 20px 0 rgb(231 60 62 / 9%);
    box-shadow: 1px 14px 20px 0 rgb(231 60 62 / 9%);
    padding: 40px;
    position: relative;
    margin-bottom: 30px;
}
.clients-item .info img {
    position: absolute;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    line-height: 60px;
}
.clients-item .info {
    position: relative;
    padding-left: 75px;
    margin-bottom:45px;
}
.clients-item p {
    margin-bottom: 0;
    font-size: 16px;
}

.clients-item .info h4 {
    font-size: 16px;
    color: #e98123;
    margin-bottom: 16px;
    position: relative;
    top: 10px;
}
.clients-item .info span {
    font-size: 15px;
}
/*-------------------*/
.ctp-protec-card {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 7px 15px rgb(0 0 0 / 5%);
    box-shadow: 0px 7px 15px rgb(0 0 0 / 5%);
    border-radius: 15px;
    padding: 35px 30px 35px 0;
    margin-bottom: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.ctp-protec-card .content {
    position: relative;
    padding-left: 110px;
}
.ctp-protec-card .content .number {
    display: inline-block;
    width: 85px;
    height: 120px;
    line-height: 120px;
    background: #0054a530;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}
.ctp-protec-card .content h3 {
    font-size: 20px;
    color: #212529;
    font-weight: 600;
    margin-bottom: 15px;
}
.ctp-protec-card .content p {
    color: #57647C;
    margin-bottom: 0;
    font-size: 16px;
}
/*----------------------------------------*/
.choose-title h2 {
    font-size: 32px;
    margin-top:0px;
    margin-bottom: 14px;
    color: #e98123;
}
.choose-title .first-span-head {
    font-size: 16px;
    color: #000;
}
.process-item.bg-top1 {
    margin-top: 30px;
}
.process-item.bg-top2 {
    margin-top: 0;
}
.process-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
/*-----------------------------*/
.vision-misition-section {
    background: #0053a41f;
    padding: 30px;
    margin-top:15px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: 0.5s;
}
.vision-misition-section:hover{
    background: #e9812347;
} 
.vision-misition-section h3{
    color: #000;
}
.vision-misition-section p{
    color: #000;
}
.vision-misition-section .icon{
    margin-bottom:15px;
}
.vision-misition-section .icon i {
    color: #0054a5;
    font-size:40px;
    background: #ffff;
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
}
/* Blog Page CSS */
.blog-main-contain h2 {
    font-size: 28px;
    margin-top: 25px;
}
.blog-main-img img {
    height: 400px;
}
.blog-main-contain blockquote {
    margin-bottom: 20px;
    border-left: 3px solid #e98123;
    background-color: #ebeaea;
    text-align: center;
    padding: 30px 30px 30px;
    position: relative;
}
.blog-main-contain blockquote .just-one-blog-text {
    font-style: italic;
    line-height: 1.6;
}
.blog-main-contain .details-grow h3{
   font-size: 26px;
}
.blog-main-contain .details-grow ul {
    margin-bottom: 15px;
    padding: 0px;
}
.blog-main-contain .details-grow ul li {
    list-style-type: none;
    display: block;
    padding-left: 20px;
    font-weight: 400;
    position: relative;
    margin-bottom: 12px;
    color: #000;
}
.details-grow ul li:before{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    top: 7px;
    left: 0;
    background-color: #011a41;
}
.blog-main-contain .article-share {
    margin-top: 30px;
}
.blog-main-contain .article-share .social {
    padding-left: 0px;
    list-style-type: none;
    background-color: #f9fafb;
        padding: 12px 0px 10px 4px;
    line-height: 1;
    margin-bottom: 0;
}
.blog-main-contain .article-share .social li {
    display: inline-block;
    margin-right: 8px;
}
.blog-main-contain .article-share .social li span {
    display: inline-block;
    margin-right: 2px;
    font-weight: 600;
    color: #333333;
    position: relative;
    top: -5px;
}
.blog-main-contain .article-share .social li a {
    font-size: 20px;
    color: #333333;
    padding: 3px 7px;
    transition: 0.5s;
}
.blog-main-contain .article-share .social li a:hover{
    background: #e98123;
    padding: 3px 7px;
    color: #fff;
}
.blog-main-contain .blog-details-ul li {
    color: #0053a4;
    font-size: 17px;
}
.blog-main-contain .blog-details-ul span{
    margin-bottom: 25px;
}
/*-*--------------*/
.award-img img {
    border: 3px dashed #e98123;
}
/*----------------------*/
.service-loan-contain{
    padding:0px;
}
.service-loan-contain .service-contain-list li {
    list-style-type: none;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}
.service-loan-contain .service-contain-list li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #e98123;
    font-size:16px;
}
/*----------------------------*/
.works-item {
    text-align: center;
    margin-bottom: 30px;
}
.works-item .icon {
    margin-bottom: 20px;
}
.works-item .icon img {
    display: inline-block;
    height: 80px;
    padding: 10px;
    line-height: 100px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 10%);
    box-shadow: 0px 0px 29px 0px rgb(102 102 102 / 10%);
    text-align: center;
    border-radius: 50px;
}
.works-item h3 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.2;
}
.works-shape .shape {
    position: absolute;
    left: 21%;
    top: 55%;
    -webkit-transform: translateY(-60%);
    transform: translateY(-150%);
}
.works-shape .shape2 {
    position: absolute;
    right: 28%;
    top: 55%;
    -webkit-transform: translateY(-55%);
    transform: translateY(-150%);
}
.shape img {
    height: 26px;
}
/**/
.procces-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
}
.shape {
    position: absolute;
    right: -2.3rem;
    top: 5rem;
}
/*.background-image11 {
    background-image: linear-gradient(to right bottom, #ffffffa1, #e5e6e9ad),url(../img/3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}*/
/*application-contain*/
.application-contain .application-row {
    margin-bottom:20px;
}
.application-contain .application-row span {
    float: left;
    padding: 10px 18px;
    border: 2px solid #e98123;
    border-radius: 50px;
    margin-right: 20px;
}
.application-contain .application-row h4 {
    color: #000;
    font-size: 20px;
}
.application-contain .application-row p {
    color: #000;
    font-size: 15px;
    margin-left: 69px;
    margin-bottom: 0px;
    line-height: 22px;
} 
.application-services-form {
    background: #0053a4;
}
.application-services-form .form-heading h4 {
    color: #e98123;
    text-align: center;
    padding-bottom: 28px;
    font-size: 28px;
}
.application-services-form button {
    color: #fff;
    background: #e98123;
    border: none;
    margin-top: 8px;
}
/*-------------------------*/
.accordion-button:focus{
    box-shadow: none;
    box-shadow: unset;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: unset;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
    color: #e98123;
    text-transform: capitalize;
}
button.accordion-button.collapsed {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    border-bottom: 1px solid #eee;
}
.accordion-item{
    border: unset;
}

/*---------------------- CSS End ----------------------

/*------Career Page CSS Start--------*/
.career-img img{
    height:auto;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px;
}
.career-box {
    text-align: left;
    background-color:#F9F9F9;
    padding:25px;
    box-shadow: 4px 8px 15px 0px rgba(27.000000000000007, 117, 107.00000000000003, 0.24);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 10px 10px 10px 10px;
}
.career-box .eiusmod p {
    line-height: 22px;
    margin: 0px;
} 
.main-career-img{
    position: relative;
}
.main-career-img-txt {
    width: 92%;
    padding: 40px 30px 40px 30px;
    background-color: #FFF;
    box-shadow: 4px 8px 15px 0px rgba(27.000000000000007, 117, 107.00000000000003, 0.24);
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 10px 10px 10px 10px;
    position: absolute;
    bottom: -46px;
    left: 24px;
}
.main-career-img-txt img {
    height: 60px;
    margin-right: 10px;
}
.main-career-img-txt h5{
    font-size: 24px;
    color: #0053a4;
}
.career-boxes-row .career-box .icon img {
    height:70px;
    width: 110px;
}
/*--------------*/
.contact-us-column .icon{
    background: #0053a4;
}
.contact-us-column h5{
    color: #e98123;
}
.contact-us-column p{
    color: #000;
}
.bg-light {
    background-color: #f7f7f7!important;
}
.form-select{
    border: 1px solid transparent !important;
}
.form-select:focus{
    box-shadow: unset;
    border: 1px solid #e98123 !important;
}
.form-control{
    border: 1px solid transparent !important;
}
.form-control:focus{
    box-shadow: unset;
    border: 1px solid #e98123 !important;
}
/**/

.service-loan-img img {
    width: 100%;
}
.service-main-title h2 {
    color: #f6811f;
    font-size: 30px;
}
/*------Career Page CSS End--------*/
/*-----------------*/
.border-btm-ftr{
    position: relative;
}
.border-btm-ftr::before {
    content: "";
    border-bottom: 2px solid #e98123;
    width: 100px;
    position: absolute;
    left: 0;
    top: 35px;
    z-index: 1;
}
/*-------------------------------------*/
/* Style for all input containers */
/*-----------------*/
.emi-label label {
    color: black;
    font-size: 18px;
}
.emi-input input {
    height: 40px;
    padding: 0px 8px;
    margin: 6px 0px;
    width: 100%;
    border: 1px solid #e98123;
}
.emi-input input:focus{
    outline: none;
    border: 1px solid #0054a5;
}
.emi-form-btn input {
    background: #0054a5;
    border: 1px solid #eee;
    color: #fff;
    padding: 2px 10px;
    font-size: 18px;
    width: 100%;

}
/*-----------------*/
.input-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 30px;
}
.input-container label {
    font-size: 19px;
    color: #000;
}
.input-container input {
    font-size: 16px;
    border: 1px solid #0054a5;
    height: 38px;
    padding: 20px 16px 22px 8px;
}
.input-container input:focus{
    border:1px solid red;
    outline: none;
}
/* submit button style */
/*.submit-container{
    margin: 20px;
    display: flex;
    justify-content: center;
}*/
/*#calculate {
    padding: 4px 10px;
    font-size: 20px;
    background-color: rgb(233 129 35);
    border-radius: 3px;
    color: white;
    border: none;
    outline: none;
    box-shadow: unset;
    transition: 0.4s;
    cursor: pointer;
}*/
#calculate:active{
    box-shadow: none;
    font-size:large;
}

/* Loan duration style */
.radio-container input[type="radio"]{
    display: none;
}
.radio-container label {
    background-color: rgb(236, 235, 234);
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
    /*color: #fff;*/
}
.radio-container label:hover{
    background-color:rgb(0 84 165);
    color:white;
} 
.radio-container input[type="radio"]:checked+label{
    background-color:rgb(0 84 165);
    color: white;
} 

/* Output */
.output p {
    border: 1px solid #e98123;
    padding: 3px 8px 0px;
    color: #000;
    height: 40px;
    font-size: 18px;
    cursor: no-drop;
    margin: 5px 0px 12px;
}
.output p span {
    float: right;
    color: rgb(0 84 165);
    cursor: no-drop;
    font-weight: 500;
    font-size: 18px;
}
.emi-refesh-btn.text-center button {
    background: #e98123;
    width: 100%;
    border: none;
    color: #fff;
    padding: 4px 0px;
    font-size: 17px;
}
/*----------------*/
h5.mb-3.blogs-font-size {
    font-size: 19px;
}
.contact-page-contact-form{
        background: #0053a459;
        padding: 30px;
        border-radius: 5px;
}
.blog-img img {
    height: 183px;
}
                  .director-main-img {
    height: 330px;
    width: 330px;
    float: left;
}
.director-main-txt h6 {
    color: #e98123;
}
.director-main-img img {
    border: 5px solid #0054a5;
}
.table__content table thead th {
    background: #e98123;
    color: #fff;
}

/*=================================15-10-2024*/
.loan-image img {
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
section.bg-color1 {
    background: #e3ecf5;
}

/* Basic styling for the dropdown */
.nav-item {
    position: relative;
    display: inline-block;
}



/* Hide dropdown initially */
.dropdown__menu_list {
    display: none;
    position: absolute;
    top: 100%; /* Position below the 'Services' link */
    left: 0;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    list-style-type: none;
    padding: 0;
    margin: 0;
    min-width: 210px;
    z-index: 1;
}

/* Style dropdown list items */
.dropdown__menu_list li {
    padding: 10px;
}

.dropdown__menu_list li a {
    text-decoration: none;
    color: black;
    display: block;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown__menu_list {
    display: block;
}

/* Change background color of items on hover */
.dropdown__menu_list li:hover {
    background-color: #f1f1f1;
}
section#services-box {
    background-image: linear-gradient(#fff, #f1f1f1);
}
.services__box {
    /* padding: 20px; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    
    border-radius: 0px 0px 40px 0px;
}
.services__box .services__content h5 {
    font-size: 22px;
}
.services__box img {
border-radius: 40px 0px 0px 0px;
}
.services__box .services__content {
    padding: 20px;
    background-color: #fff;
    /* min-height: 260px; */
    border-radius: 0px 0px 60px 0px;
    text-align: center;
    margin-bottom: 30px;
}
.services__box .services__content p {
    /* margin: 0; */
    text-align: center;
}
.services__box .services__content a {
    background-color: #e98123;
    padding: 8px 18px;
    color: #fff;
}