@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+Bengali:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');

:root {
    --primary-color: #0072BC;
    --secondary-color: #01ACFA;
    --tertiary-color: #f3a287;
    --light-color: #f3a287;
    --default-font-size: 18px;
}

body {

    font-size: var(--default-font-size);
    line-height: 30px;

    /* font-family: "Noto Sans Bengali", "Inter", sans-serif;*/

    font-family: "Baloo Da 2", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;


    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

a {
    text-decoration: none;
    color: #212529;
}

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

html, body, p {
    padding: 0px;
    margin: 0px;
}

.btn-big {
    font-weight: 600;
    padding: 15px 20px;
}

.btn-main-color {
    background: var(--primary-color);
    border: none;
}

.item {
    background: #ffffff;
    padding: 7px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.item:hover {
    /*    border: 1px solid var(--primary-color;*/
}

.feature-grid .uil {
    font-size: 35px;
    padding: 15px;
    border-radius: 5px;
    width: 75px;
    height: 70px;
    text-align: center;
    color: #fff;
    line-height: 75px;
}

.icon-size {
    width: 75px;
}

h3 {
    font-size: 29px;
    font-weight: 700;
}

h5 {
    font-size: 45px;
    font-weight: 600;
}

.sub-header {
    font-size: 17px;
    line-height: 30px;
    color: var(--primary-color);
    font-weight: 500;
}

.news-headline {
    font-size: 25px;
    font-weight: 500;
}

span {
    color: var(--primary-color);
}

.vjs-big-play-button span {
    color: #ffffff !important;
    font-size: 35px !important;
}

.bg-dark-red {
    background: var(--primary-color);
}

.bg-light-red {
    background: var(--light-color);
}

.bg-light-blue {
    background: #d1cffd;
}

.bg-light-primary {
    background: #E3F6F3;
}

.bg-light-showroom {
    background: #EAEDFF;
}

.bg-light-ash {
    background: #E4E4E4;
}

.bg-dark-blue {
    background: var(--primary-color);
}

section {
    padding: 35px 0px;
}

.footer-section {
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
    color: #000000;
}

.icon-size {
    min-width: 75px !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.icon-image {
    padding: 1px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--secondary-color);
    --bs-btn-disabled-border-color: var(--secondary-color);
}

/*
Page Loader CSS*/
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

.max-width {
    max-width: 500px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary-color);
    --bs-gradient: none;
}

.btn-border-radius-20 {
    border-radius: 20px;
}

h5 {
    font-size: 35px;
    font-weight: 600;
}

.margin-bottom {
    margin-bottom: 15px;
}

.news-grid {

    padding: 15px;
    background: #ffffff;
    margin: 15px;
    border-radius: 7px;
}

.zoom-effect {
    transition: transform 1s ease; /* Adjust the duration to 1 second for a slower zoom */
}

.zoom-effect:hover {
    transform: scale(1.08); /* Increase the scale factor for a larger zoom */
}

.padding-15 {
    padding: 15px 0px;
}

.text-right {
    text-align: end;
}

.video-js .vjs-big-play-button {

    /*  top: 65px !important;
      left: 50px !important;*/
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #0072bcd1 !important;
    color: #fff !important;
    border: none !important;
    top: 50% !important;
    left: 50% !important;
    line-height: 50px !important;
    font-size: 30px !important;
}

.news-headline {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    color: black;
}

.video-js {
    width: 100% !important;
    /*  max-height: 235px !important;*/
    background: none;
}

.vjs-poster img {
    border-radius: 7px;
}

.vjs-youtube .vjs-poster {
    background: #fff;
}

.h5, h5 {
    padding: 0px;
    margin: 0px;
}

.nav-link {
    font-weight: 600;
    color: #ffffff;
}

.active {
    color: #ffffff !important;
}

.nav-item {
    padding: 0px 5px;
}

.carousel-fade .carousel-item {
    max-height: 350px;
}

.header:hover {
    color: var(--primary-color);
    cursor: pointer;
}


/*CSS for mobile screen*/
@media (max-width: 767px) {
    .margin-bottom {
        margin-bottom: 15px;
    }

    .margin-bottom h5 {
        font-size: 25px;
    }

    h3 {
        font-size: 30px;
        font-weight: 700;
    }

    .news-grid {
        padding: 0px 15px 0px 15px;
    }

    .video-js {
        width: 100% !important;
        /* height: 200px !important;*/
        background: none;
    }

    .hero-section-right {
        padding-top: 25px;
        text-align: center;
    }

    .video-js .vjs-big-play-button {
        top: 65px !important;
    }

    .vjs-youtube-mobile .vjs-big-play-button {
        display: block !important;
    }

    .news-details {
        padding: 0px 0px 15px 0px;
    }
}

.hero-section {
    width: 100%;
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


.title-section {
    margin-bottom: 30px;
}

.title-section h2 {
    font-weight: bold;
    color: rgba(56, 78, 110, 1);
}


.navbar {
    background: #384e6e;
    box-shadow: 0px 0px 10px -5px #333333;
}

.brand-card {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* background: rgba(233, 235, 252, 1); */
    height: 230px;
    margin: 0 auto;
    width: 230px;
    padding: 0px;
    margin-bottom: 45px;
    background: #fff;
    box-shadow: 0px 0px 10px -5px #262626;
    cursor: pointer;
}

.bg-light-yellow {
    background: #FAEADD;
}

.bg-light-red {
    background: #F9E2E8;
}

.bg-light-purple {
    background: #E8F2FF;
}

.product-card {
    background: #fff;
    max-width: 351px;
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px -3px #262626;
    border-radius: 5px;
}

.top-product-img {
    height: 275px;
    object-fit: contain;
}

.product-card p {
    color: #1B1E38;
    line-height: 20px;
}

.cart-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-align: left;


}

.price-area {
    background: #1B1E38;
    padding: 10px 15px;
}

.btn-price {
    background: #FFEAEC;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 5px;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    text-align: left;
}

.btn-price:hover {
    background: #d8babc;
    box-shadow: 0px 4px 4px 0px #00000040;
}

.discount {
    text-decoration: line-through;
    color: #FF0303;
}

.section-title {
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
    color: #4F4F4F;
}

.news-card {
    background: rgb(239 239 239 / 22%);
    margin-bottom: 20px;
}

.news-card-body {
    padding: 20px;
    box-shadow: 0px 0px 8px 0px #00000040;
}

.date {
    font-size: 14px !important;
    border-left: 2px solid rgba(38, 161, 188, 1);
    padding-left: 5px;
    line-height: 16px !important;
    margin-top: 12px !important;
    font-weight: 400 !important;
    color: rgba(150, 150, 150, 1) !important;
}

.news-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: rgba(0, 0, 0, 1);
}

.img-news {
    border-radius: 5px 5px 0px 0px;
}

.video-card {
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px -3px #262626;
    border-radius: 5px;
}

.child-video {
    margin-bottom: 20px;
}

.main-video img {
    min-height: 400px;
    object-fit: contain;
}

.main-video-text {
    font-size: 25px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    text-align: left !important;
}

.video-card-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    padding: 0px 15px 10px 15px;
}

.video-card-body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #000000;

}

.input-group-append {
    margin-left: -17px;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
    font-family: Inter;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    text-align: left;
    color: #B4B4B4 !important;
}

.nav-link {
    color: #ffffff;
    font-size: 18px !important;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    padding: 0px;
}

.nav-border {

    line-height: 15px;
    margin-top: 3px;
    padding-left: 2px;
    background: white;
    width: 1px;
    position: absolute;
    margin-left: 12px;
    height: 15px;
}

/*Mobile css*/
@media (max-width: 767px) {
    .brand-card {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(233, 235, 252, 1);
        height: 175px;
        margin: 0 auto;
        width: 175px;
        padding: 40px;
        margin-bottom: 25px;
    }

    .navbar-nav.ms-auto {
        align-items: flex-end;
    }

    .nav-item .btn{
        margin-bottom: 10px;
    }
}

.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

.navbar-custom {
    background-color: #384e6e;
}

.btn-secondary {
    --bs-btn-bg: #384e6e;
    padding: 10px 15px;
}

.navbar-brand img {

}

.navbar-nav .nav-link {
    color: white;
    font-size: 16px;
}

.searchbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.searchbar {
    width: 50%;
}

.form-control {
    display: block;
    padding: 10px 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.search-field {
    width: 55%;
}

.searchbar-container {
    top: 79% !important;
    margin-left: 207px;
}

.searchbar-container-mobile {
    background: #384e6e;
    padding: 20px 0px 2px 0px;
    display: none;
}

.navbar-toggler {
    border: none;
}

.bg-dark {
    background: #384E6E !important;
}

.desktop-view2 {
    visibility: visible;
}

.mobile-view2 {
    visibility: hidden;
}

@media (max-width: 768px) {
    .searchbar {
        width: 100%;
    }
}

@media (max-width: 1200px) {

    .searchbar-container {
        top: 52% !important;
    }

    .form-control {
        display: block;
        width: 90%;
    }

    .cart-text {
        font-size: 10px;
        font-weight: 600;
        line-height: 15px;
        text-align: left;
    }
}

@media (max-width: 995px) {

    .logo {
        height: 100px;
    }

    .brand-card {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(233, 235, 252, 1);
        height: 175px;
        margin: 0 auto;
        width: 175px;
        padding: 20px;
        margin-bottom: 25px;
    }

    .cart-text {
        font-size: 10px;
        font-weight: 600;
        line-height: 15px;
        text-align: left;
    }

}

@media (max-width: 770px) {
    .searchbar-container {
        display: none !important;
    }

    .searchbar-container-mobile {
        display: block;
    }

    .logo {
        height: 80px;
    }

    .brand-card {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(233, 235, 252, 1);
        height: 110px;
        margin: 0 auto;
        width: 110px;
        padding: 20px;
        margin-bottom: 25px;
    }

    .cart-text {
        font-size: 10px;
        font-weight: 600;
        line-height: 15px;
        text-align: left;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .desktop-view2 {
        visibility: hidden;
    }

    .mobile-view2 {
        visibility: visible;
    }

    .section-title h2 {
        font-size: 20px;
        font-weight: 700;
        line-height: 10px;
        text-align: left;
        color: #4F4F4F;
    }

    section {
        padding: 25px 0px;
    }

    .section-title {
        padding-bottom: 15px;
    }

    .navbar-brand img {
        left: 0px;
        position: relative;
    }
}
.top-product-title {
    height: 60px;
    margin-top: 15px;
    padding: 0px 10px;
}
/*smaller screen*/
@media (max-width: 576px) {
    .logo {
        height: 60px;
    }

    /*.brand-card {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(233, 235, 252, 1);
        height: 80px;
        margin: 0 auto;
        width: 80px;
        padding: 20px;
        margin-bottom: 25px;
    }*/
    .brand-card {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(233, 235, 252, 1);
        height: 130px;
        margin: 0 auto;
        width: 130px;
        padding: 0px;
        margin-bottom: 25px;
    }

    .top-product-img {
        height: 160px !important;
        object-fit: contain;
    }

    .cart-text {
        font-size: 9px;
        font-weight: 600;
        line-height: 15px;
        text-align: left;
    }

    .top-product-title {
        height: 75px !important;
        padding-top: 5px;
    }

    .section-title h2 {
        font-size: 20px;
        font-weight: 700;
        line-height: 10px;
        text-align: left;
        color: #4F4F4F;
    }

    section {
        padding: 25px 0px;
    }

    .section-title {
        padding-bottom: 15px;
    }

    .navbar-brand img {
        left: 0px;
        position: relative;
    }

    .news-card-body p {
        font-size: 8px;
        font-weight: 400;
        line-height: 9.68px;
        text-align: left;

    }

    .date {
        font-size: 8px;
        font-weight: 400;
        line-height: 9px;
        text-align: left;

    }

    .footer-section {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-align: left;
        color: #000000;
    }

    .footer-section img {
        width: 200px;
    }
}


.video-js {
    height: 235px !important;
}

/* mobile css*/
@media (max-width: 767px) {
    .video-js {
        height: 100px !important;
    }

    .video-js .vjs-big-play-button {
        top: 50% !important;
        left: 60% !important;
    }

    .news-headline {
        font-size: 14px;
        font-weight: 400;
        margin-top: 0px;
    }

    .video-card-body {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;
        padding: 12px;
    }

    iframe {
        height: 100px !important;
    }

    .product-card-body p {
        font-size: 15px;
        line-height: 18px;
    }

    .price-area {
        background: #1B1E38;
        padding: 5px 5px;
    }

    .btn-price {
        font-size: 10px;
    }
}

.vjs-poster img {
    object-fit: contain !important;
}

.see-more-section {
    margin-top: 25px;
}

.main-video iframe {
    height: 360px;
    border-radius: 7px 7px 0px 0px;
}

.child-video iframe {
    height: 125px;
    border-radius: 7px 7px 0px 0px;
}
