@import 'common.css';

/* new css add 26.11.2024 */
.schedule_banner p {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 18px;
    font-style: italic;
    line-height: 1;
    gap: 8px;
}

.schedule_banner {
    padding: 10px 0px;
    background: rgb(238 78 36);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    margin-bottom: 3px;
    color: rgb(238 78 36);
}

.remember-forgot label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(238 78 36);
}

.remember-forgot a {
    color: rgb(238 78 36);
    text-decoration: none;
}

/* scrollbar start */

/* width */
body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer;
}

/* Track */
body::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7300 0%, #ff7b00 100%);
    transition: var(--transition-05s);
    border-radius: 10px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff7300 0%, #ff7b00 100%);
    border-radius: 10px;
}

body::-webkit-scrollbar-button {
    background: no-repeat center center / 60%;
    height: 8px;
    width: 8px;
    /* -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2); */
    cursor: pointer;
}

body::-webkit-scrollbar-button:vertical:increment {
    background-image: url(../image/scroll-down.svg);
}

body::-webkit-scrollbar-button:vertical:decrement {
    background-image: url(../images/scroll-up.svg);
}

.MainHeader {
    position: absolute;
    background: rgba(var(--white-color), 1);
    top: 0;
    z-index: 999;
    width: 100%;
}

.navbar {
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 8px 0px;
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(var(--white-color), 0.9);
    border: none;
    animation: slideDown 0.35s ease-out;
    backdrop-filter: blur(5px);
    box-shadow: 0px 5px 20px -8px rgba(14, 13, 14, 0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.MobileNav {
    display: none;
}

.DesktopNav .row {
    align-items: center;
    justify-content: space-between;

}

.navbar.DesktopNav .HeadContainer {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: end;
}

.NBM-box {
    display: flex;
    gap: 50px;
}

.DesktopNav .navbar-brand,
.MobileNav .navbar-brand {
    height: 60px;
    width: 100%;
    margin-right: 15px;
}

.navbar-brand img {
    object-fit: cover;
}

.head-BrandMenu {
    display: flex;
    gap: 16px;
}

.navbar-toggler {
    padding: 6px;
    border: none;
    background: rgba(var(--main-color), 1);
    border-radius: 0px;
}

.navbar-toggler .navbar-toggler-icon {
    background: rgba(var(--white-color), 1);
    width: 1.1em;
    height: 2px;
    position: relative;
    display: block;
}

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

.navbar-toggler-icon.bar-2 {
    width: 0.9em;
}

.navbar-toggler-icon.bar-2 {
    margin: 4px 0px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link {
    color: rgba(var(--black-color), 1);
    transition: var(--transition-05s);
    position: relative;
    text-transform: capitalize;
    white-space: nowrap;
    font-weight: 300;
    padding: 4px 10px;
    margin-right: 30px;
    font-size: 18px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0px;
}

.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link.active,
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:hover,
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:focus,
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link[aria-current="page"] {
    color: rgba(var(--main-color), 1);
    border-bottom: 2px solid rgba(var(--main-color), 1);
    transition: var(--transition-05s);
}

.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 0%;
    height: 2px;
    border-radius: 5px;
    background: rgba(var(--main-color), 1);
    transition: var(--transition-05s);
    right: 0px;
    bottom: 0px;
    opacity: 0;
    visibility: hidden;
}

.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link.active::before,
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:hover::before,
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link:focus::before,
.navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link[aria-current="page"]::before {
    opacity: 1px;
    visibility: visible;
    width: 100%;
    left: 0px;
    right: auto;
}

.HeadCForm {
    width: 40%;
}

.HeadCForm .form-control,
.HeadCForm .common-btn {
    padding: 6px 14px;
    min-height: 38px;
}

.HeadCForm .common-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.HeadCForm .form-control,
.HeadCForm .form-control:hover,
.HeadCForm .form-control:focus {
    border-color: rgba(var(--main-color), 0);
    background: rgba(var(--main-color), 0.2);
    color: rgba(var(--black-color), 1);
    color: rgba(var(--main-color), 0.8);
}

.HeadCForm .form-control::placeholder {
    color: rgba(var(--main-color), 0.8);
}

.navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    content: '\f107';
    font-family: var(--font-awesome);
    font-weight: 600;
    border: none;
    vertical-align: middle;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
    padding: 0px;
    border: 0;
    border-radius: 0px;
    margin: 0 !important;
    transition: var(--transition-05s);
    /* overflow: hidden; */
    box-shadow: -12px 8px 20px -8px rgba(14, 13, 14, 0.08), 12px 8px 20px -8px rgba(14, 13, 14, 0.08);
}

.navbar .navbar-nav .nav-item .dropdown-menu li a,
.dropdown-menu .dropdown-submenu a {
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px dashed rgba(var(--black-color), 0.175);
    padding: 8px 10px;
    color: rgba(var(--black-color), 0.8);
    transition: var(--transition-05s);
    background: none;
}

.navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.navbar .navbar-nav .nav-item .dropdown-menu li a:active,
.navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.navbar .navbar-nav .nav-item .dropdown-menu li a.active,
.dropdown-menu li .dropdown-submenu a:hover,
.dropdown-menu li .dropdown-submenu a:active,
.dropdown-menu li .dropdown-submenu a:focus,
.dropdown-menu li .dropdown-submenu a.active {
    color: rgba(var(--white-color), 1);
    background-color: rgba(var(--main-color), 1);
    border-color: rgba(var(--main-color), 1);
}

.navbar .navbar-nav .nav-item .dropdown-menu ul>li:last-child a {
    border-bottom: none;
}

.top-social-list li a {
    --ehw-sla: 40px;
    width: var(--ehw-sla);
    height: var(--ehw-sla);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(238 78 36);
    color: rgba(var(--white-color), 1);
    font-size: 20px;
    border-radius: 50%;
    transition: var(--transition-05s);
}

.top-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* banner start */


/* .banner-section {
    --banner-hvh: 70vh;
    --banner-hhp: 100%;
    min-height: var(--banner-hvh);
    height: var(--banner-hhp);
    position: relative;
    z-index: 9;
} */
/* 
.banner-section.banner-inner-page {
    --banner-hvh: 60vh;
} */

/* .banner-section>*:first-child,
.banner-slider>*:first-child>*,
.banner-slider>*:first-child>*>*,
.banner-slider>*:first-child>*>*>*,
.banner-slider>*:first-child>*>*>*>* {
    min-height: var(--banner-hvh);
    height: var(--banner-hhp);
} */

.banner-inner-section {
    display: flex;
    align-items: end;
    width: 100%;
    background-position: bottom;
    justify-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    position: relative;
    background-size: 100% auto;
    z-index: 0;
    height: calc(80vw /(1920 / 790));
    /* overflow: hidden; */
    position: relative;
    padding-bottom: 80px;
}

.banner-section.banner-inner-page .banner-inner-section .row {
    text-align: center;
    justify-content: center;
}

.banner-inner-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100%;
    background: linear-gradient(rgba(var(--second-color), 0), rgba(var(--black-color), 0.4) 98%);
    width: 100%;
}

.banner-box {
    margin-top: -200px;
    margin-top: -100px;
}

.banner-section.banner-inner-page .banner-box {
    margin-top: 0px;
}

.banner-title,
.banner-box h1 {
    /* font-family: var(--Cinzel-Decorative-font); */
    color: rgba(var(--black-color), 1);
    position: relative;
    /* text-transform: capitalize; */
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 70px;
}

.banner-section.banner-inner-page .banner-title,
.banner-section.banner-inner-page .banner-box h1 {
    margin: auto;
}

.banner-title span,
.banner-box h1 span {
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    background: rgba(var(--main-color), 0.81);
    padding: 16px 16px 8px;
    line-height: 1;
    margin-bottom: 30px;
    display: block;
    border-radius: 10px;
    width: max-content;
}

.banner-section.banner-inner-page .banner-title span,
.banner-section.banner-inner-page .banner-box h1 span {
    margin: auto;
}

.banner-box .common-para {
    color: rgba(var(--black-color), 1);
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 1.6;
    /* font-weight: 300; */
    width: 60%;
}

.banner-box .common-btn {
    font-size: 20px;
    color: rgba(var(--black-color), 1);
    padding: 14px 34px;
}

.banner-box .common-btn:hover,
.banner-box .common-btn:first-child:active,
.banner-box .common-btn:active,
.banner-box .common-btn:focus,
.banner-box :not(.btn-check)+.common-btn:active,
.banner-box .common-btn:focus-visible,
.banner-box button.common-btn:focus:not(:focus-visible),
.banner-box .common-btn:first-child:hover {
    /* --common-btn-color: rgba(var(--white-color), 1); */
    color: var(--common-btn-color);
}

.banner-img {
    margin-bottom: -240px;
    width: 95.5%;
    margin-left: -40px;
    margin-top: 18px;
}

/* banner end */

/* bce start */

.bce-box {
    text-align: center;
    padding-left: 35px;
}

.bce-title,
.bce-txt>h3,
.common-section .bce-txt>h3 {
    font-size: 50px;
    margin-bottom: 0px;
    text-transform: capitalize;
    letter-spacing: 3px;
    text-align: left;
    color: rgba(var(--black-color), 1);
    font-weight: 200;
    word-spacing: 10px;
    font-family: 'roman font bold';
}

.bce-box .common-para,
.bce-txt>.common-para,
.common-section .bce-txt>.common-para {
    font-size: 22px;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 1px;
    word-spacing: 6px;
    font-weight: 200;
    text-transform: capitalize;
    color: rgba(var(--black-color), 0.8);
}

.Introducing-img {
    width: auto;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: auto;
}

/* bce end */


/* footer end */

.footer-section {
    background: rgba(var(--black-color), 1);
    background: #000000;
}

.inner-footer {
    padding: 30px 0px 30px;
}

.foot-logo {
    display: block;
    margin: 0px auto;
    width: 200px;
    overflow: hidden;
}

.foot-logo img {
    object-fit: contain;
}

ul.social-linksnew {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

ul.social-linksnew li a {
    color: #fd3400;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition-05s);
}

ul.social-linksnew li a:hover {
    color: #ffffff;
    text-decoration: underline;
    transition: var(--transition-05s);
    text-decoration-color: #fd3400;
}

.foot-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 20px;
}

.foot-list li a {
    text-transform: capitalize;
    color: rgba(var(--white-color), 1);
    font-size: 20px;
    margin: 0px 15px;
    transition: var(--transition-05s);
}

.foot-list li a:hover,
.foot-list li a:focus,
.foot-list li a:active,
.foot-list li a.active,
.foot-list li a[aria-current="page"] {
    color: rgba(var(--main-color), 1);
}

.social-list {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-list li a {
    --ehw-sla: 50px;
    width: var(--ehw-sla);
    height: var(--ehw-sla);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--second-color), 0);
    color: rgba(var(--white-color), 1);
    font-size: 26px;
    border-radius: 50%;
    transition: var(--transition-05s);
}

.social-list li a:hover,
.social-list li a:focus {
    background: rgba(var(--main-color), 0);
    color: #fd3400;
}

.copy-box {
    background: transparent;
    color: rgba(var(--white-color), 1);
    font-weight: 300;
    padding: 15px 0px;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid rgba(var(--second-color), 1);
}

/* footer end */



/* inner pages design start */
.innerbanner-section.banner-section {
    --banner-hvh: 50vh;
}

.innerbanner-section .banner-inner-section {
    height: 50vh;
}

.innerpageheading {
    letter-spacing: 4px;
    text-align: left;
    text-transform: capitalize;
    font-size: 65px;
    color: rgba(var(--black-color), 1);
    font-weight: 300;
    font-family: 'roman font bold';
}

.subpara {
    color: rgba(var(--black-color), 0.6);
    margin-bottom: 0;
    letter-spacing: 1px;
    font-size: 20px;
    word-spacing: 8px;
    text-align: left;
    text-transform: capitalize;
}

/* .progress {
    background-color: #d8d8d8;
    border-radius: 30px;
    position: relative;
    margin: auto;
    height: 50px;
    z-index: 0;
    width: 100%;
}

.progress-done {
    background: linear-gradient(to left, #000000, #65c0d0);
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 0;
    opacity: 0;
    z-index: 0;
    transition: 1s ease 0.3s;
} */

.titlespan {
    position: absolute;
    right: 14px;
    top: 10px;
    color: #000;
    font-size: 18px;
    z-index: -1;
}

/* card start */
.mycard {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.mycard:hover {
    transform: translateY(-5px);
}

.mycard .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mycard .card-content {
    padding: 20px 20px;

}

.mycard .card-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 200px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}

.mycard .card-subheading {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: auto;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}

.mycard .card-prices {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.mycard .card-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e53e3e;
}

.mycard .card-discount {
    font-size: 1rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 8px;
}

@media (min-width: 768px) {
    .mycard {
        display: flex;
        max-width: 100%;
    }

    .mycard .card-image {
        width: 40%;
        height: auto;
    }

    .mycard .card-content {
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.mypurchase-card.mycard .card-name {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 12px;
    overflow: visible;
    text-overflow: inherit;
    white-space: wrap;
    max-width: 100%;
    -webkit-line-clamp: 20;
    -webkit-box-orient: vertical;
}

.mypurchase-card.mycard .card-subheading {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 12px;
    overflow: visible;
    text-overflow: inherit;
    white-space: wrap;
    max-width: 100%;
    -webkit-line-clamp: 20;
    -webkit-box-orient: vertical;
}

/* From Uiverse.io by andrew-demchenk0 */
.button {
    --main-focus: #2d8cf0;
    --font-color: #323232;
    --bg-color-sub: #dedede;
    --bg-color: #eee;
    --main-color: #323232;
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 2px solid #ee4e24;
    box-shadow: 4px 4px #ee4e24;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

.button,
.button__icon,
.button__text {
    transition: all 0.3s;
}

.button .button__text {
    transform: translateX(22px);
    color: var(--font-color);
    font-weight: 600;
}

.button .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: var(--bg-color-sub);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button .svg {
    width: 20px;
    fill: var(--main-color);
}

.button:hover {
    background: var(--bg-color);
    border: 2px solid #ee4e24;
}

.button:hover .svg {
    fill: #ff3500;
}

.button:hover .button__text {
    color: transparent;
}

.button:hover .button__icon {
    width: 148px;
    transform: translateX(0);
}

.button:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px var(--main-color);
}

/* card end */


/* contact start */

.address-details {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.ContactBox-FormTitle {
    position: relative;
    z-index: 2;
    background: rgba(var(--white-color), 0);
    /* padding: 30px; */
    /* padding-right: 60px;
    margin-right: 0px;
    margin-left: 60px; */
}

.contact-titleBox .common-title,
.common-box.contact-titleBox>h2,
.common-section .common-box.contact-titleBox>h2 {
    font-size: 35px;
    font-weight: 500;
    padding: 0px;
}

/* .cta-form-box {
    margin-top: 30px;
} */

.address-details li i {
    font-size: 20px;
    color: rgba(var(--main-color), 1);
}

.address-details li,
.address-details li a {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 9px;
    margin-bottom: 4px;
    color: #000000;
    font-size: 23px;
}

/* contact end */

/* my account start */
.user-info {
    --card-border: #e0e0e0;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --card-background: #f9f9f9;
    background-color: var(--card-background);
    border-radius: 5px;
    padding: 1rem;
    /* margin-bottom: 2rem; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* my account end */
div#mobonly {
    display: none;
}

div#deskonly {
    display: block;
}

.my-modal .modal-content {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
}

.mynew-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    background: white;
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
}

.mynew-container .form-container {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mynew-container .form-box {
    background: white;
    padding: 0px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mynew-container .form-box.register {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    pointer-events: none;
}

.mynew-container .form-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.mynew-container form {
    display: flex;
    flex-direction: column;
}

.mynew-container input {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    position: relative;
    background: rgba(var(--white-color), 0);
    color: rgba(var(--black-color), 0.8);
    --boco-btn: rgba(var(--second-color), 1);
    border: 1px solid var(--boco-btn);
}

.mynew-container input:focus {
    outline: none;
    background: rgba(var(--white-color), 0);
    color: rgba(var(--black-color), 0.8);
    --boco-btn: rgba(var(--second-color), 1);
    border: 1px solid var(--boco-btn);
}

a.toggle-form {
    color: #ff4a00;
}

a.toggle-form:hover {
    text-decoration: underline;
    text-decoration-color: #e3522b;
}

.btn-close {
    background: none;
    opacity: 8 !important;
}

.btn-close i {
    font-size: 24px;
}

/* course details page design */

.course-description {
    background-color: #ffffff;
    padding: 2rem 0;
}

.video-player {
    width: 100%;
    max-width: 100%;
    height: 350px;
}

.course-img {
    height: 350px;
}

.defaultsec ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.defaultsec ul li {
    color: #787878;
}

.defaultsec ul li::marker {
    content: "◉ ";
    color: rgb(238 78 36);
    font-size: 20px;
}


@media (max-width: 992px) {
    .container {
        flex-direction: row;
        height: auto;
    }

    .mynew-container .form-box.register {
        top: -30%;
        left: 3%;
        padding: 20px;
    }

    .form-box {
        transition: none !important;
        /* Disables animations */
        transform: none !important;
        /* Resets transformations */
    }

    .mynew-container .form-box {
        position: relative;
        transform: none;
        top: 34%;
        left: 3%;
        padding: 20px;
    }

    .mynew-container .form-container {
        padding: 20px;
    }

}

@media (max-width: 580px) {
    .mynew-container .form-box.register {
        left: 0%;
        top: -41%;

    }

    .mynew-container .form-box {
        left: 0%;
        top: 59%;
    }
}

/* media start */
@media (max-width: 1599px) {
    /* .banner-section {
        --banner-hvh: 50vh;
    } */
}

@media(min-width: 320px) {
    .navbar.DesktopNav>* {
        display: block;
    }
}

@media (min-width: 992px) {
    .Head-CaLog {
        display: none;
    }

    .nav-item.dropdown .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-item.dropdown:hover>.dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show,
    .dropdown-menu ul li:hover>.dropdown-menu.dropdown-submenu {
        opacity: 1;
        display: block;
        visibility: visible;
    }

    .navbar-expand-lg .navbar-collapse {
        width: max-content;
        max-width: max-content;
    }

    .nav-item.dropdown .DDMenu.dropdown-menu {
        left: 100px;
    }
}

@media (min-width: 1200px) {
    .nav-item.dropdown .dropdown-menu[data-bs-popper] {
        top: 100%;
    }
}


@media (max-width: 1400px) {
    /* .banner-section {
        --banner-hvh: 50vh;
    } */

    .bce-title,
    .bce-txt>h4,
    .common-section .bce-txt>h4 {
        font-size: 22px;
    }

    .bce-box .common-para,
    .bce-txt>.common-para,
    .common-section .bce-txt>.common-para {
        font-size: 17px;
    }

    .foot-logo {
        width: 360px;
    }

    .foot-list {
        gap: 50px;
    }


}

@media (max-width: 1199px) {

    .navbar.DesktopNav .HeadContainer {
        justify-content: flex-end;
    }

}

@media (max-width: 1024px) {
    /* .banner-section {
        --banner-hvh: 30vh;
    } */
}

@media (max-width: 991px) {

    /* .banner-section {
        --banner-hvh: auto;
    } */
    div#deskonly {
        display: none;
    }

    div#mobonly {
        display: block;
    }

    .top-social-list {
        justify-content: center;
    }

    .banner-inner-section {
        height: 50vh;
    }

    .navbar.DesktopNav .HeadContainer {
        justify-content: flex-end;
    }

    .NBM-box .navbar-nav.ms-auto.navbar-nav-scroll {
        gap: 10px;
    }

    .NBM-box {
        display: flex;
        gap: 50px;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0px;
        /* padding: 20px 30px; */
    }

    .NBM-box>* {
        background: rgb(255 255 255);
        padding: 20px 30px;
    }

    .navbar.DesktopNav .HeadContainer .navbar-nav .nav-item .nav-link {
        margin: 0;
        width: max-content;
    }

    .bce-title,
    .bce-txt>h4,
    .common-section .bce-txt>h4 {
        font-size: 20px;
    }

    .bce-box .common-para,
    .bce-txt>.common-para,
    .common-section .bce-txt>.common-para {
        font-size: 20px;
    }

    .bce-box {
        padding: 0px;
    }

    /* .bce-img {
        --ehw-bcei: 70px;
        margin: 0px auto 30px;
    } */

    .foot-logo {
        width: 300px;
    }

}

@media (max-width: 767px) {
    .foot-list {
        gap: 20px;
        margin-top: 50px;
    }

    .foot-list li a {
        font-size: 17px;
        margin: 0px 12px;
    }

    .foot-logo {
        width: 250px;
    }

    .bce-title,
    .bce-txt>h3,
    .common-section .bce-txt>h3 {
        font-size: 35px;
        line-height: 1.2;
        letter-spacing: 2px;
        word-spacing: 5px;
        margin-bottom: 1.5rem;
    }

    .banner-inner-section {
        height: 47vh;
    }

    .mycard {
        max-width: 100%;
    }

    .innerpageheading {
        letter-spacing: 4px;
        font-size: 35px;
        margin-bottom: 1.5rem !important;
    }

}

@media (max-width: 580px) {

    .banner-inner-section {
        height: 43vh;
    }

    .innerbanner-section .banner-inner-section {
        height: 32vh;
    }

    .DesktopNav .navbar-brand,
    .MobileNav .navbar-brand {
        /* margin: auto; */
        width: fit-content;
        display: block;
        margin-right: 0;
    }

    /* .banner-section {
        --banner-hvh: 30vh;
    } */


    .owl-carousel button.owl-dot.active {
        border: 2px solid #e3522b;
    }

    .owl-carousel button.owl-dot {
        --ehw-ocbd: 10px;
    }

    .bce-title,
    .bce-txt>h4,
    .common-section .bce-txt>h4 {
        font-size: 18px;
    }

    .bce-img {
        --ehw-bcei: 60px;
    }

    .foot-list {
        gap: 10px;
        margin-top: 40px;
    }

    .foot-list li a {
        font-size: 15px;
        margin: 0px 8px;
    }

    .social-list li a {
        --ehw-sla: 40px;
        font-size: 16px;
    }

    .copy-box {
        font-size: 13px;
    }

    .foot-logo {
        width: 190px;
    }

    .inner-footer {
        padding: 60px 0px 40px;
    }

    .social-list,
    .foot-list {
        margin-top: 30px;
    }

    .banner-inner-section {
        height: 36vh;
    }

    .bce-title,
    .bce-txt>h3,
    .common-section .bce-txt>h3 {
        margin-bottom: 0.1rem;
    }

    .DesktopNav .navbar-brand,
    .MobileNav .navbar-brand {
        height: 54px;
    }
}

@media (max-width: 480px) {
    .common-section {
        padding: 30px 0px;
    }

    .innerbanner-section .banner-inner-section {
        height: 29vh;
    }
}


/* media end */