@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


html,
body {
    background: #fff !important;
    font-size: 16px;
    color: #222e48;
    font-family: "Roboto", serif;
}

header .navbar {
    background: #fff !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Roboto", serif;
} 

a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


header .navbar {
    background: #f5f6f7 !important;
}

.navbar-nav .nav-link {
    color: #0f172a;
    font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    color: #2e4492;
    font-weight: 500;
}

.navbar-expand-lg .navbar-nav {
    gap: 15px;
}

.support-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-meta .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: #64748b1a;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00170f;
}

.support-meta .icon a {
    color: #00170f;
}

.support-meta .icon svg {
    height: 18px;
}

.support-meta .title {
    font-size: 14px;
    color: #2e4492;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: unset;
}

.support-content a {
    text-decoration: none;
}

.support-content p {
    color: #64748b;
    font-size: 15px;
}

/* banner */

.banner {
    display: block;
    position: relative;
    background: #fff;
    padding: 40px 0px 40px;
}

.banner::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner-bg.png) no-repeat center right;
    background-size: contain;
    z-index: 0;
}

.banner .banner-content {
    padding-right: 30px;
}

.banner .banner-content h6 {
    font-size: 24px;
    color: #334155;
}

.banner .banner-content h1 {
    font-size: 34px;
    color: #0f172a !important;
    line-height: normal;
    margin-top: 15px;
    font-weight: 600;
}

.banner .banner-content h1 span {
    color: #2e4492;
}

.banner .banner-content p {
    font-size: 20px;
    color: #64748b !important;
    margin-top: 30px;
    line-height: normal;
}

.landing-btn {
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
    transition: all 0.4s;
    font-weight: 400;
    padding-block: 8px;
    padding-inline: 16px;
    border-radius: 5px;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(180deg, #2e4492 9%, #1990fe 100%);
}

.landing-btn:hover {
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(180deg, #2e4492 9%, #1990fe 100%);
    border-color: #2e4492;
}

.landing-btn svg {
    height: 18px;
    transition: all 0.4s;
}

.landing-btn:hover svg {
    transform: rotate(46deg);
}


/* batches */

.batches, .services {
    display: block;
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
    padding: 50px 0px;
}

.batches .section-title h2 {
    font-size: 34px;
    color: #0f172a !important;
    line-height: normal;
    margin-top: 15px;
    font-weight: 600;
}

.batches .section-title p {
    font-size: 18px;
    color: #64748b !important;
    margin-top: 15px;
    line-height: normal;
}

.batch-card {
    transition: all 0.4s;
    border: 1px solid #ebecef;
    border-radius: 16px;
    background: #fff;
    padding: 15px;
    height: 100%;
}

.batch-img img {
    width: 100%;
    border-radius: 16px;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
}

.batch-content {
    padding: 0px 10px;
}

.batch-content h4 {
    margin: 20px 0px 15px; 
    font-size: 20px;
    color: #0f172a;
    text-transform: capitalize;
}

.batch-img .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #13a900;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.batch-img .offline {
    background: #5e5e5e;
}

.batch-content .icon-box {
    margin: 12px 0px 2px;
    border-bottom: 1px dashed rgba(34, 46, 72, 0.4);
    padding-bottom: 12px;
}

.batch-content .icon-box p {
    display: flex;
    font-size: 14px;
    color: #64748b;
    align-items: center;
    white-space: nowrap;
}

.batch-content .icon-box p svg {
    height: 18px;
    margin-right: 5px;
}

.batch-content .landing-btn {
    font-size: 16px;
    font-weight: 400;  
}

.batch-content .landing-btn svg {
    height: 16px;
}

.batch-content .amount {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.batch-content .amount p {
    font-size: 22px;
    color: #0f172a;
    font-weight: 500;
    margin-right: 6px;
}

.batch-content .amount s {
    font-size: 14px;
    color: #64748b;
}

.batch-content .date {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    display: block;
    margin-top: 10px;
    line-height: 24px;
}

.batch-content .date svg {
    height: 16px;
}

.batches .owl-carousel .owl-nav {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.batches .owl-carousel .owl-nav button.owl-next {
    font-size: 30px;
    line-height: 0;
    border: 1px solid #222e48;
    border-radius: 50%;
    padding: 18px 16px 22px !important;
    color: #222e48;
}

.batches .owl-carousel .owl-nav button.owl-prev {
    font-size: 30px;
    line-height: 0;
    border: 1px solid #222e48;
    border-radius: 50%;
    padding: 18px 16px 22px !important;
    color: #222e48;
}

.batches .owl-carousel .owl-nav button.owl-prev.disabled,
.batches .owl-carousel .owl-nav button.owl-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border: 1px solid #64748b;
    color: #64748b;
}

/* app */

.app {
    display: block;
    position: relative; 
    background-color: transparent;
    background-image: linear-gradient(180deg, #2e4492 9%, #1990fe 100%);
    padding: 40px 0px 0;
}

.app .app-content {
    padding-right: 30px;
}

.app .app-content h6 {
    font-size: 24px;
    color: #f5f5f5;
}

.app .app-content h1 {
    font-size: 50px;
    color: #ffffff !important;
    line-height: normal;
    margin-top: 15px;
    font-weight: 600;
}

.app .app-content p {
    font-size: 20px;
    color: #ffffff !important;
    margin-top: 30px;
    line-height: normal;
}

.dwd-btn {
    text-decoration: none;
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.dwd-btn img {
    width: 100%;
    max-width: 160px;
}


/* about */

.about {
    display: block;
    position: relative;
    background: #fff;
    padding: 60px 0px;
}

.about .about-content {
    padding-right: 30px;
}

.about .about-content h6 {
    font-size: 20px;
    color: #334155;
}

.about .about-content h1 {
    font-size: 34px;
    color: #0f172a !important;
    line-height: normal;
    margin-top: 15px;
    font-weight: 600;
    margin-bottom: 0px;
}

.about .about-content p {
    font-size: 18px;
    color: #64748b !important;
    margin-top: 30px;
    /* line-height: normal; */
}

/* footer */

footer.footer {
    background: #fff;
    padding: 60px 0px 40px;
}

.footer h4 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 20px;
}

.footer p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

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

.footer ul li {
    margin-bottom: 12px;
    color: #64748b;
}

.footer ul li span {
    color: #2e4492;
}

.footer ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 16px;
}

.footer ul li a:hover {
    color: #2e4492;
}

.copy-right {
    background: #1c1d20;
    padding: 22px 0px;
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    color: #fff;
}

.copy-right span {
    color: #2e4492;
}

/* slider */

.slider-content {
    position: absolute;
    z-index: 9;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.slider-content h6 {
    font-size: 18px;
    color: #fff;
}

.slider-content h2 {
    color: #fff;
    font-size: 42px;
    margin-block: 10px;
}

.slider-btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(180deg, #2e4492 9%, #1990fe 100%);
}


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

.navbar-brand {
    padding: 0px;
}

.navbar-brand img {
    height: 40px;
    padding: 0px;
}

.navbar-expand-lg .navbar-nav {
    gap: 0;
    margin: 20px 10px 10px 10px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
    padding: 0px 0px;
}

.support-meta {
    margin-bottom: 20px;
}

.navbar-toggler-icon {
    width: 1em;
}

.navbar-toggler {
    padding: 0px 8px !important;
}

.banner {
    padding: 30px 0px 0px;
}

.banner .banner-content {
    padding-right: 0;
}

.banner .banner-content h6 {
    font-size: 14px;
}

.banner .banner-content h1 {
    font-size: 28px;
    margin-top: 10px;
}

.banner .banner-content p {
    font-size: 16px;
    margin-top: 10px;
}

.landing-btn {
    font-size: 16px;
    margin-top: 0;
}

.banner::before {
    background-position: top right;
    opacity: 0.5;
}

.banner-img {
    margin-top: 35px;
}

/* .app .banner-img {
    margin-top: 30px;
    margin-bottom: 0px;
} */

.banner-img img {
    height: 250px;
    object-fit: contain;
}

.batches {
    padding: 40px 0px;
}

.batches .section-title h2 {
    font-size: 24px;
}

.batches .section-title p {
    font-size: 16px;
    margin: 10px 0 0;
}

.batches .section-title p br {
    display: none;
}

.batch-content h4 {
    margin: 20px 0px 10px;
    padding-bottom: 15px;
    font-size: 18px;
}

.batch-content .amount p {
    font-size: 18px;
}

.batch-content .amount s {
    font-size: 12px;
}

/* .batch-content .amount {
    flex-direction: column;
} */

.batch-content .icon-box .amount p {
    font-size: 22px;
}

.batch-content .icon-box p {
    font-size: 13px;
}

.batch-content .icon-box p svg {
    height: 16px;
}

.batch-content .landing-btn {
    font-size: 15px;
    margin-top: 10px;
}

.batches .owl-carousel .owl-nav {
    margin-top: 30px;
}

.owl-dots {
    display: none;
}

.app .app-content {
    padding-right: 0;
}

.app .app-content h6 {
    font-size: 16px;
}

.app .app-content h1 {
    font-size: 24px;
    margin-top: 10px;
}

.app .app-content p {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

.dwd-btn {
    margin-top: 20px;
}

.dwd-btn img {
    max-width: 120px;
}

.about {
    padding: 40px 0px;
}

.about .banner-img {
    margin-top: 0px;
    margin-bottom: 25px;
}

.about .about-content h6 {
    font-size: 16px;
}

.about .about-content h1 {
    font-size: 24px;
    margin-top: 10px;
}

.about .about-content p {
    font-size: 16px;
    margin-top: 15px;
}

.footer p {
    margin-bottom: 30px;
}

.footer h4 {
    font-size: 18px;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer .col-md-3 {
    margin-bottom: 15px;
}

footer.footer {
    padding: 40px 0px 20px;
}

.slider-content h6 {
    font-size: 12px;
}

.slider-content h2 {
    font-size: 28px;
}

.slider-content {
    align-items: center;
    text-align: center;
    left: 0;
    padding-inline: 10px;
}

.hero {
    height: 60vh !important;
}

.slider-content h2 br {
    display: none;
}

}