/********** Template CSS **********/
:root {
    --primary: #4776a2;
    --light: #F0FBFC;
    --dark: #02032d;
}

body{
    max-width: 1440px;
    margin: auto;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

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


/*** 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 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 0px;
}


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

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

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


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

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

@media (max-width: 767px) {
    .carousel-inner .carousel-item>div {
        display: none;
    }

    .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

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

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/img3.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

.Customized-btn-top {
    background-color: #14af3b !important;
}

.Customized-btn {
    background-color: #FA0F87;
    border-color: #FA0F87;
}

.cust-textcolor {
    color: #FA0F87;
}

.dark-textcolor {
    color: #000;
}

.footerbg {
    background-color: #FA0F87;
}

.serv-img {
    display: block;
    border: 2px solid #ccc;
    margin: auto;
    width: 100%;
}

.serv-img:hover {
    transition: 0.5s;
    transform: scale(1.1);
}

/*** Service ***/
.service-item {
    transition: .5s;
    border: 1px solid #ccc;
    padding: 10px;
}

.readmorebtn a {
    background-color: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.readmorebtn {
    margin: 20px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.newheading {
    text-align: center;
    font-weight: 800;
    color: #000;
    font-size: 50px;
}

.servicenew img {
    width: 100%;
    margin-bottom: 20px;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


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

.team-item:hover img {
    transform: scale(1.1);
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.Objective {
    background: url('../img/our1.png');
    height: 360px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;

}

.boj-overlay {
    background-color: rgba(0, 0, 0, 0.75);
    height: 360px;
}

.rightsec-boj {
    padding: 60px 0px;
}

.rightsec-boj h2 {
    font-size: 55px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: left;
}

.rightsec-boj ul li {
    color: #fff;
    line-height: 32px;
    font-size: 18px;
}

.Financial-Details {
    background: url('../img/finance.png');
    height: 360px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;

}

.boj-overlay1 {
    background-color: rgba(0, 0, 0, 0.75);
    height: 360px;
}

/* Accordion CSS for white dropdown */
.accordion {
    background: #4776a2;
    border: 1px solid #4776a2;
    border-radius: 5px;
    font-weight: 700;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
}

.accordionDrop {
    padding: 0px 30px;
}

::-webkit-details-marker {
    display: none;
}

.product-table table {
    width: 100%;
}

.product-table table th {
    background: #4776a2;
    color: #fff;
    padding: 5px 15px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.product-table table td {
    border: 1px #ddd solid;
    font-size: 14px;
    color: #222;
    padding: 5px 15px;
    font-family: 'Poppins', sans-serif;
}

.product-table h2 {
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.product-table .wht-btn-schedule-call {
    font-size: 16px;
    font-weight: 500;
    padding: 13px 50px;
    text-transform: uppercase;
    background: #fff;
    position: relative;
    color: #fff;
    border: 2px solid #4776a2;
    display: inline-block;
    background-image: -webkit-linear-gradient(30deg, #4776a2 50%, transparent 50%);
    background-image: linear-gradient(30deg, #4776a2 50%, transparent 50%);
    background-size: 600px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-top: 15px;
}

.e-rickshaw-left img {
    width: 100%;
}

.whatsapp_main {
    position: fixed;
    bottom: 40px;
    left: 40px;
    /* text-align: left; */
    z-index: 10;
}

/* banner */
/* .ban_sec {
    width: 100%;
  }
  .ban_img {
    width: 100%;
    position: relative;
  } */
.ban_img img {
    width: 100%;
}

/* .ban_text {
    position: absolute;
    top: 50%;
    left: 6%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  } */
.ban_text strong {
    font: 800 55.22px/70px "Montserrat", sans-serif;
    color: #02A611;
    text-transform: uppercase;
}

.ban_text strong span {
    font: 400 44.44px/52px "Montserrat", sans-serif;
    letter-spacing: 3px;
}

.ban_text p {
    font: 400 25px/30px "Montserrat", sans-serif;
    color: #050505;
    margin: 7px 0 25px;
}

.ban_text a {
    display: inline-block;
    font: 800 19.39px/24px "Montserrat", sans-serif;
    background: #FA0F87;
    border-radius: 26px;
    color: #fff;
    padding: 12px 28px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.ban_text a:hover {
    background: #751154;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .ban_text p {
        font-size: 21px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ban_text p {
        font-size: 17px;
    }

    .ban_text strong {
        font-size: 50px;
        line-height: 60px;
    }

    .ban_text strong span {
        font-size: 37px;
    }

    .ban_text a {
        font-size: 16px;
        line-height: 19px;
    }
}

@media only screen and (max-width: 991px) {
    .ban_text strong {
        font-size: 35px;
        line-height: 40px;
    }

    .ban_text strong span {
        font-size: 28px;
        line-height: 35px;
        letter-spacing: 2px;
    }

    .ban_text p {
        font-size: 14px;
        line-height: 20px;
    }

    .ban_text a {
        font-size: 13.39px;
        line-height: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .ban_img img {
        min-height: 290px;
        object-fit: cover;
    }
}

@media only screen and (max-width: 575px) {
    .ban_text strong {
        background: rgba(0, 0, 0, 0.8);
        padding: 10px;
        width: 100%;
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    .ban_text strong span {
        font-size: 22px;
        line-height: 31px;
        letter-spacing: 1px;
    }

    .ban_text {
        left: 2%;
    }
}

.main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0px;
    background: #eff0f4;
}

.inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    gap: 40px 60px;
    flex-wrap: wrap;
}

.inner .box {
    position: relative;
    width: 350px;
    height: 350px;
    box-shadow: inset 20px 20px 20px rgba(0, 0, 0, 0.05), 25px 35px 20px rgba(0, 0, 0, 0.05), 25px 30px 30px rgba(0, 0, 0, 0.05), inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner .box:nth-child(1) {
    border-radius: 53% 47% 47% 53% / 62% 65% 35% 38%;
}

.inner .box:nth-child(2) {
    border-radius: 45% 55% 58% 42% / 42% 64% 36% 58%;
}

.inner .box:nth-child(3) {
    border-radius: 41% 59% 58% 42% / 33% 47% 53% 67%;
}

.inner .box:hover {
    border-radius: 50%;
    transition: 0.3s
}

.inner .box::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 85px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
}

.inner .box::after {
    content: '';
    position: absolute;
    top: 90px;
    left: 110px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
}

.inner .box .contant {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    gap: 15px;
}

.inner .box .contant h2 {
    position: relative;
    width: 80px;
    height: 80px;
    background: #eff0f4;
    border-radius: 50%;
    box-shadow: inset 2px 5px 10px rgba(0, 0, 0, 0.1), inset -2px -5px 10px rgba(255, 255, 255, 1), 15px 15px 10px rgba(0, 0, 0, 0.05), 15px 10px 15px rgba(0, 0, 0, 0.025);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--crl);
}

.inner .box .contant a {
    position: relative;
    padding: 10px 25px;
    background: var(--crl);
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    opacity: 0.75;
    transition: 0.5s
}

.inner .box .contant a:hover {
    opacity: 1
}

.inner .box .contant a::before {
    content: '';
    position: absolute;
    left: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 5px;
    border-radius: 5px;
}

/* CHANEL */

.carousel-wrapper {
    --width: 100px;
    --gap: 0;
    --num-items: 10;
    --ani-offset: calc(var(--width) * var(--num-items) * -1);
    --ani-speed: 10s;

    /* width: 400px; */
    overflow: hidden;
    position: relative;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 100%;
    z-index: 1;
    top: 0;
}

.carousel-wrapper::before {
    left: 0;
    background-image: linear-gradient(to right,
            var(--bg-clr) 0%,
            transparent 50%);
}

.carousel-wrapper::after {
    right: 0;
    background-image: linear-gradient(to left, var(--bg-clr) 0%, transparent 50%);
}

.carousel {
    display: flex;
    align-items: center;
    animation: slide var(--ani-speed) linear infinite;
}

.item {
    flex: 1 0 var(--width);
    text-align: center;
    padding: 1rem;
}

.item:last-child {
    /*background: red;*/
}

.item>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@keyframes slide {
    100% {
        transform: translateX(var(--ani-offset));
    }
}

.ban_text1 a {
    display: inline-block;
    font: 800 19.39px/24px "Montserrat", sans-serif;
    background: #FA0F87;
    border-radius: 26px;
    color: #fff;
    padding: 12px 28px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.ban_text a:hover {
    background: #751154;
}