@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500&display=swap');
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

:root {
    --brand: #ed1d2a;
    /*--brand_light: #e44d4c;*/
    --brand_light: #ca2b37;
    --brand_gray: #d86b6e;
    --gray_dark: #83add9;
    --gray_light: #ac98b4;
    --dark: #050708;
    /* --primary: #0bc0ff; */
    --primary: #0d6efd;
    --success: #00c27d;
    --grey_light: #f9fbff;
    --grey_darker: #f1f7ff;
    --grey_blue: #d9e8ff;
    --grey:#555;
    --body-font: 'Univia Pro';
    --second:  'Proxima Nova';
    --proxima: 'Proxima Nova';
    --open:    'Open Sans', sans-serif;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;height: 100%;
}

body {
    font-family: 'Univia Pro';
    font-size: 1rem;
    text-rendering: optimizelegibility;
    color: #535353;
    background-color: #fff;
}


.text-dark { color: #050505 !important; } 

p {
    /* font-family: var(--proxima); */
    font-size: 1.125rem;
    /* line-height: 1.3; */
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-fab {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--grey_darker);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--grey);
    background-color: #fff; 
    position: relative;
    overflow: hidden;
}

.btn-fab.fab-lg {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
}

.btn-fab.fab-lg svg {
    width: 1.25rem;
    height: 1.25rem;
}
.btn-fab svg,
.btn-fab i {
    position: relative;
    z-index: 11;
}

.btn-fab::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top:0%;
    left: 0%;
    background-color: var(--brand_light);
    border-radius: 50%;
    z-index: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.btn-fab:hover {
    color: #fff;
}
.btn-fab:hover::after {
    transform: translateY(0);
    opacity: 1;
}

.btn-fab:focus,
.btn-fab:active {
    color: var(--dark);
    background-color: var(--brand_light);
    border-color: var(--brand) !important;  
}

.text-primary {
    color: var(--primary) !important;
}

.position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hover-scale {
    transition: all .8s ease-in-out;
}
.hover-scale:hover {
    transform: scale(1.2) rotate(-4deg);
}

.title__link {
    color: #2d2b2b;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
}
.title__link:hover {
    color: var(--brand);
}

.rounded-lg {
    border-radius: .5rem;
    overflow: hidden;
}

body.modal-open {
    padding-right: 0 !important;
}

.pro__img {
    max-height: 15rem;
    min-height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0%;
}
.pro__img img {
    max-width: 100%;
    height: auto;
    max-height: 15rem;
    object-fit: contain;
    object-position: center center;
}

.fw-medium {
    font-weight: 500;
}



.video {
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #ccc;
    border-radius: .25rem;
}

.video::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: .2rem;
}

a {
    color: #000;
    text-decoration: none;
    transition: all .3s ease-in-out;
    display: inline-block;
}

a:hover {
    color: #ee432b;
}

.link {
    color: var(--primary);
}

.link:hover {
    text-decoration: underline;
}

.form-select {
    height: 3rem;
}

.form-control[type="text"],
.form-control[type="email"],
.form-control[type="number"],
.form-control[type="password"] {
    height: 3.5rem;padding:1rem 1.25rem;
}

.form-control:focus {
    border-color: #05465f;
}


.more__link {
    position: relative
}

.more__link i {
    transition: all .3s ease-in-out;
}

.more__link:hover i {
    position: relative;
    transform: translateX(.5rem);
}

.owl-dots {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 99;
    margin-top: 1.5rem;
}

.owl-dots .owl-dot {
    width: 14px;
    height: 14px;
    border: 1.5px solid #555 !important;
    border-radius: 50%;
    display: block;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-dots .owl-dot.active {
    border-color: #ee432b !important;
}

.owl-dots .owl-dot:hover {
    border-color: #ee432b !important;
}

.owl-dots .owl-dot.active::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    background: #ee432b;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 45%;
    transform: translateY(-50%) scaleX(1.1);
    left: -3rem;
    width: calc(100% + 6rem);
    transition: all .4s ease-in-out;
    opacity: 0;
}

.owl-carousel:hover .owl-nav {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid #555;
    border-radius: .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all .3s ease-in-out;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.owl-carousel .owl-nav button.owl-prev::before,
.owl-carousel .owl-nav button.owl-next::before {
    content: "\f105";
    font: normal normal normal 26px/1 FontAwesome;
    text-rendering: auto;
    display: block;
    position: absolute;
    top: 48% !important;
    left: 54%;
    transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav button.owl-prev::before {
    content: "\f104";
    left: 47%;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    border-color: var(--grey_blue) !important;
    background-color: var(--grey_blue) !important;
    color: #fff;
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 14px !important;
    height: 14px !important;
    border: 2px solid #fff !important;
    text-indent: inherit;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators .active::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    display: block;
}

/*-------- Breadcrumb Styles --------*/
.breadcrumb-item a {
    color: #6c757d;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.breadcrumb-item a svg { fill: #6c757d;position: relative;top: -2px; }

.breadcrumb-item a:hover {
    color: #ee432b;
}

.breadcrumb-item.active {
    color: var(--dark); 
    text-transform: capitalize;
}

.breadcrumb {
    padding: 1rem 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0;
    color: #6c757d;
    content: '\2014';
    font-weight: 100;
    font-size: 1.4rem;
    transform: rotate(90deg) translateX(-4px);
}

.breadcrumb li:last-child {
    pointer-events: none;
}

.shadow-sm {
    border: 1px solid #f4f4f4;
} .video::after { padding-top: 56.25%;display: block;content: ''; }.video iframe {    position: absolute;top: 0;left: 0;    width: 100%;height: 100%;border-width: 0px;}.scroller * { scrollbar-width: thin;scrollbar-color: #ddd #eee; }.scroller *::-webkit-scrollbar { width: 12px; } .scroller *::-webkit-scrollbar-track { background: #eee; }.scroller *::-webkit-scrollbar-thumb { background-color: #ddd;border-radius: 20px;border: 3px solid #eee; }
.mibreit-fullscreen > .exit-fullscreen {
    cursor: pointer;
}
.mibreit-fullscreen > .exit-fullscreen > svg { 
    fill: #fff;
    width: 2rem;
}
.accordion-button { 
    font-size: 1.125rem;
}
.accordion-button:not(.collapsed) { box-shadow: none; }
/*@import url("_variables.css?v=1");*/




@import url("_component.css");

 


/*====================================================*/

.top-header { padding: 0 5rem; background-color: #ca2b37;align-items:center; } 
.top-header .social__links a { color: #fff;width: 1.875rem;height: 2rem; }
.top-header a:hover { background-color: rgba(255, 255, 255, 0.164); }

/* .video-iframe {
    width:100%;
    height:440px;
} */

/* .top-header ul {
    padding-right: 0;
    align-items:center;
} */

.top-header li a {
    color: #e2999e;height: 2rem;
    font-size: 0.875rem; 
    text-decoration: none;
}

.top-header li select {
    background-color: #ca2b37;
    border: none;
    color: #e2999e;
    padding-left: 0;
    font-size: 0.875rem;
    background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuMDYzMzYgMTEuMDMxNkwzLjU1MTY2IDUuMDU5MjlMMTAuNDc5NiA1LjAwNDIxTDcuMDYzMzYgMTEuMDMxNloiIGZpbGw9IiNFMjk5OUUiLz4KPGNpcmNsZSBjeD0iNyIgY3k9IjciIHI9IjYuNSIgc3Ryb2tlPSIjRTI5OTlFIi8+Cjwvc3ZnPgo=);
    padding-right: .65rem;
    background-position: right;
    background-size: .875rem .875rem; 
    height: 2rem;
    cursor:pointer;
    width: 4.5rem;
}

.top-header li select option {
    padding-left: 8px;font-family: var(--proxima);
}

.container-login {
   width: 1215px;
    margin: 0 auto;
}

.main-header {
    padding: 1rem 5rem;
    background-color: #fff;
}

.main-video {
    background-color: #f2f2f2;
    background: url('./assets/images/video-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-header button {
    text-decoration: none;
}



.image-tabs .nav-link {
    border: none;
    background-color: #fff;
    padding: 0.5rem;
}

.visually-hidden {
    display: none;
}

.carousel-control-next, .carousel-control-prev {
    background-color: transparent;
    border: none;
}

.accordion-veiw-cont {
    text-align: center;
    margin: 20px 0;
}

#accordion .btn-link {
    color:#000;
}

.download-card .icon__box {
    width: 55px;
}
.download-card .caption {
    width: calc(100% - 55px);
}
 
.mobile-accordion {
    display: none;
}
.product-tabs-wrapper {
    display:block;
}

#product-detail .service-breadcrumbs {
    width: 100%;
    border-top: 1px solid #0000002e;
}


.service-breadcrumbs a {
    color: #000;
    text-decoration: none;
    padding: 0 20px;
    text-transform: capitalize;
}

.service-breadcrumbs a:nth-child(1) {
    padding-left: 10px;
}

.service-breadcrumbs a:last-child {
    font-weight:bold;color: #ca2b37;
}

.mobile--breadcrumbs {
    display:none;
    padding-top:.75rem;
}

.mobile--breadcrumbs a {
    padding:.45rem .75rem .45rem 0;
}

.mobile--breadcrumbs a svg { position: relative;top: -2px; }

.mobile--breadcrumbs a.page {
    font-weight:bold;text-transform: capitalize;
}

 

@media (max-width:576px) {
    .mobile--breadcrumbs {
        display:block;
    }
    .service-breadcrumbs {
        display:none;
    }
}

#product-detail .service-breadcrumbs a:nth-child(1) {
    padding-left: 0;
}

@media only screen and (max-width: 1300px) {
    .main-header {
        padding: 0.75rem 2rem;
    }
}

@media (min-width: 1366px) and (max-width: 1441px) {
    .main-header .main-nav-bar li a {
        margin: 0 15px;
    }
}

@media (min-width: 1441px) and (max-width: 1920px) {
    .main-header .main-nav-bar li a {
    margin: 0 20px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    }
}

@media (max-width:1365px) {
    .main-header .main-nav-bar li a {
        margin:0 .75rem;
    }
}

 

.main-header .logo img {
    width: 110px;
}

.main-header .main-nav-bar {
    margin-left: 3rem;
}

.main-header .main-nav-bar li a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition:all .3s ease-in-out;
}

.main-header .main-nav-bar li a:hover {
    color:#ca2b37;
}

.create-account-btn button {
    color: #fff;
    border: none;
    height: 40px;
    background-color: #000;
}

.main-header .main-nav-bar li {
    display: flex;
    align-items: center;
}
 

label {
    display: inline-block;
    margin-bottom: 5px;
}

.forgot-links a {
    padding:0 10px;
}

.forgot-links a:hover {
    color:#ca2b37;
}

.login-right-text h5 {
    font-size: 22px;
    margin-bottom: 20px;
}
.toggler__btn {
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    background: white;
}
.toggler__btn.active { position: relative;top: -3rem;z-index: 11111; }
#heroNavMenu.fixed-top .toggler__btn.active { top: 0; }

@media(max-width:470px) {
    .toggler__btn.active { top: -5.5rem; }
    #heroNavMenu.fixed-top .toggler__btn.active { top: 0; }

}


.hamburger-menu {
    width: 30px;
    height: 24px;
    /*position: absolute;*/
    /*left: 10px;*/
    cursor: pointer;
    z-index: 3;
    /*top: 70px;*/
    /* display: none; */
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    background-color: #fff;
    position: relative;
}
.hamburger-menu.open { top: -6px; }

.hamburger-menu span {
    display: block;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 0px;
}

.hamburger-menu span:nth-child(2) {
    top: 10px;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.hamburger-menu span:nth-child(3) {
    top: 20px;
}

.hamburger-menu.open span {
    background-color: #1e1854;
}

.hamburger-menu.open span:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    right: 560px;
}

.hamburger-menu.open span:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);
}

.fixed-header {
    /*position: fixed;*/
    top: 0;
    width: 100%;
    z-index: 888;
    background-color: #fff;
    box-shadow: -1px 4px 8px #24242469;
}

.main-header .main-nav-bar li:last-child a {
    margin-right: 0;
}

.main-header .headersearchcontainer {
    border: 1px solid #ddd;
    padding: 0rem;
    border-radius: 5px;
    margin-right: 18px;
}

.main-header .headersearchcontainer .close-btn {
    display: none;
}

.main-header .headersearchcontainer input {
    border: none;
    height: 2.875rem;
    line-height: 1;
}

.main-header .headersearchcontainer button {
    border: none;
    background-color: transparent;
    width: 2.8rem;
    font-size: 1.125rem;
    color: #555;
}

.hasmegamenu {
    position: relative;
    min-height: 40px;
}

.submenu-wrap {
    position: absolute;
    bottom: 0;
    top: 40px;
    left: -18px;
    background: #fff;
    z-index: 999;
    min-width: 250px;
    visibility: hidden;
    height:0;
    transform:scaleY(0);
    transition:all .4s ease-in-out;
}

.hasmegamenu:hover > a,
.main-header .main-nav-bar li:hover > a {
    color: var(--brand) !important;
}
.submenu-wrap a:hover { background: #f2f2f2; }

.hasmegamenu:hover .submenu-wrap,
.hasmegamenu:focus .submenu-wrap { 
    transform:scaleY(1);
    height:auto;
    visibility: visible;
}

.main-header .main-nav-bar li.active > a {
    color: var(--brand) !important;
}

.submenu-wrap ul {
    /* padding-top: 15px; */
    padding-left: 0;
    list-style: none;
    background: #fff; 
    border-top:2px solid #ca2b37;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border-radius: .15rem;
}

.submenu-wrap ul li a {
    padding: 8px 14px;
    display: inline-block;
    margin-right: 0!important;
    width: 100%;
    font-size: 14px!important;
    position: relative;
    margin:0 !important;
    color: #535353 !important;
}

.submenu-wrap ul li a:hover {
    color: var(--brand) !important;
}

.megamenu-inner {
    position:relative;
}

.submenu-wrap ul li.megamenu-inner>a::after,
.childmenu > a::after {
    content: "\f105";
    font: normal normal normal 17px/1 FontAwesome;
    text-rendering: auto;
    position: absolute;
    right: 10px; 
}

.submenu-inner {
    position: absolute;
    top: 0;
    visibility:hidden;transform:scaleY(0);
    transition:all .4s ease-in-out;
    left: 250px;
    min-width: 240px;
    border-left: 1px solid #ddd;
}

.childmenu {
    position:relative;
}
 
.childmenu ul {
    position: absolute;
    top: 0;
    visibility:hidden;transform:scaleY(0);
    transition:all .4s ease-in-out;
    left: 240px;
    min-width: 240px;
    border-left: 1px solid #ddd;
} 
 

.megamenu-inner:hover .submenu-inner {
    visibility:visible;transform:scaleY(1);
}

.childmenu:hover ul {
    visibility:visible;transform:scaleY(1);
}
ul {
    list-style:none;
}
ul li {
    list-style-type:none;
}
/* Add smart-scroll in Navigation class */
/* .smart-scroll {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: #fff;
}

.scrolled-down {
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
}

.scrolled-up {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
} */

#heroNavMenu { transition: all .3s ease-in-out; }
#heroNavMenu.fixed-top { box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1); }
#heroNavMenu.fixed-top .main-header { padding: .5rem 5rem; }
#heroNavMenu.fixed-top .top-header { display: none !important; }

.mobileMenuWrapper {
    position: fixed;
    top: 2.5rem;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color:#fff;
    transform:translateX(-100%);
    opacity:0;
    visibility:hidden;
    transition:all .4s ease-in-out;
}

.mobileMenuWrapper.open {
    transform:translateX(0%);
    opacity:1; 
    visibility: visible;
}

.mobileMenuWrapper .accordion {
    max-height: calc(100vh - 5rem);
    overflow-y: auto;overflow-x: hidden;
}

.mobileMenuWrapper .accordion .accordion-body {
    padding: .5rem 1rem;
}
.mobileMenuWrapper .accordion .accordion-button:not(.collapsed) {
    color: #ca2b37;
    background-color: transparent;
}
.mobileMenuWrapper .accordion .accordion-item {
    margin-bottom:0;
}
.mobileMenuWrapper .accordion ul {
    padding-left: 1rem;margin:0;
}
.mobileMenuWrapper .accordion a {
    font-size:1.125rem;padding: .75rem 0;letter-spacing: .3px;
}
.mobileMenuWrapper .accordion ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.mobileMenuWrapper .accordion .accordion-button { 
    padding: 1.25rem 0.5rem;
    font-size: 1.2rem;
}
.mobileMenuWrapper .accordion .accordion-button.no-icon { 
    background-color:#fff;
    box-shadow: none;
    color: #333;
}
.mobileMenuWrapper .accordion .accordion-button.no-icon::after { 
    content:none;
}
.mobileMenuWrapper .parent__btn::after {
    content: '';width: 1.25rem;height: 1.25rem;display: block;
}
.mobileMenuWrapper .parent__btn.collapsed::after {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLXBsdXMiPjxsaW5lIHgxPSIxMiIgeTE9IjUiIHgyPSIxMiIgeTI9IjE5Ij48L2xpbmU+PGxpbmUgeDE9IjUiIHkxPSIxMiIgeDI9IjE5IiB5Mj0iMTIiPjwvbGluZT48L3N2Zz4=') no-repeat center center / 1.25rem; 
}
.mobileMenuWrapper .parent__btn::after { 
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNlZTQzMmIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLW1pbnVzIj48bGluZSB4MT0iNSIgeTE9IjEyIiB4Mj0iMTkiIHkyPSIxMiI+PC9saW5lPjwvc3ZnPg==') no-repeat center center / 1.25rem;
}

@media (max-width:576px) {
    .mobileMenuWrapper .accordion .accordion-button {
        padding: 1.25rem 0rem;
        font-size: 1.1rem;
    }
    .mobileMenuWrapper .accordion a {
        font-size:1rem;
    }
    .mobileMenuWrapper .accordion ul {
        padding-left: 0; 
    }
}





.btn-brand {
    color: #212121;
    text-decoration: none;
    border: 1px solid #656262;
    padding: 0 40px;
    min-height: 45px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    transition:all .3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.how-to-buy {
    border-radius: 0!important;
}

.common-title-header {
    padding: 2rem 0;
    text-align: center;
}



.dark-bg {
    background-color: #212121;
    color: #fff;
}

.grey-bg {
    background-color: #717171;
    color: #fff;
}

.main-footer {
    padding: 5rem 0;
    background: #F6F6F6;
}

.main-footer .logo img {
    width: 130px;
}

.main-footer p {
    font-size: 14px;
    color: #999999;
    margin-top: 1rem;
}

.main-footer h3 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #040404;
}

.main-footer .headersearchcontainer {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.footer-sections h4 {
    font-size: 14px;
    position: relative;
    transition: 0.5s all ease-in;
}

.footer-sections h4 i {
    position: absolute;
    bottom: 2px;
    margin-left: 8px;
    display: none;
}

.main-footer .headersearchcontainer input {
    border: none;
    height: 2.5rem;
}

.main-footer .headersearchcontainer button {
    border: none;
    padding: 0.25rem;
    text-align: center;
    background-color: var(--brand_light);
    color: #fff;
    width: 3rem;
    width: 3rem;
    height: 2.5rem;
    border-radius: 0;
}

.main-footer .headersearchcontainer button i {
    /* padding: 0.25rem; */
    color: #fff;
    margin: 0;
}

.main-footer ul {
    padding-left: 0;
    list-style: none;
}

.main-footer ul a {
    margin: 4px 0;
    display: inline-block;
    font-size: 14px;
    color: #999999;
    text-decoration: none;
}

.footer-top-banner {
    background-color: #CA2B37;
}

.footer-top-banner h5 a {
    color: #fff;
    font-size: 15px;
    letter-spacing: .5px;
}

.footer-top-banner h5 a i {
    color: #fff;
    font-size: 20px;
    font-weight: bolder;
}

.footer-top-banner-sections {
    border-left: 1px solid #fff;
}

.main-footer i {
    margin-right: 0.75rem;
}

/* .fa-twitter {
    color: #0f9afb;
}

.fa-facebook-f {
    color: #149ff9;
}

.fa-youtube {
    color: #ff0000;
}

.fa-linkedin-in {
    color: #0a66c2;
}

.fa-instagram {
    color: #cb3e7b;
}

.fa-pinterest-p {
    color: #b7081b;
} */

.topbanner-carousel .carousel-item {
    min-height: calc(100vh - 110px);
    background-size: cover !important;
    background-position: top;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.34);
}
.topbanner-carousel .carousel-item .container { min-height: calc(100vh - 110px); }

.topbanner-carousel .top-content { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
    margin-right: 50px;
}

.top-content h1 span {
    font-weight: 500;
}

.top-content h1 {
    font-weight: 400;
}

.topbanner-carousel .top-content h1 {
    font-size: 4.25rem;
    margin-right: 0;
}

.topbanner-carousel .top-content h2 {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 37rem;
    margin-bottom: 1.5rem;
}

.topbanner-carousel .top-content .link-btn {
    padding: .65rem 2.5rem;
    border: 4px solid #fff;
    color: #fff;
    font-size: 21px;
    text-decoration: none;
}

.topbanner-carousel .top-content .link-btn:hover {
    background-color: #fff;
    color:#ca2b37;
}

.topbanner-carousel .controls {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
}

.topbanner-carousel .carousel-control-next, .topbanner-carousel .carousel-control-prev {
    width: 5rem;
    height: 5rem;
    font-size: 2.5rem;
    position:unset;
}
 

.services-wrap .services-wrap-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-wrap .service {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #fff;
    min-height: 170px;
    position:relative;
    background-color: #fff;
    border-radius:.5rem;
    transition:all .3s ease-in-out;
}

.services-wrap .service img {
    top: 50%;
    left: 15%;
    width: 3.5rem;
    height: 3.5rem;
    transform: translateY(-50%);
}

.services-wrap .service:hover {
    transform: translateY(-.5rem);
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.carousel-item { 
    text-align: center;
    margin-bottom: 10px;
}

.services-wrap .service:last-child {
    border-right: 0;
}

.services-wrap .service .icon {
    font-size: 2.5rem;
    color: #1c455d;
}

.services-wrap .service .content {
    text-align: center;
    margin-left: 1rem;
}

.services-wrap .service .content h1 {
    margin: 0;
    font-weight: 300;
    color: #454344; 
    opacity: 0.8;
}

.services-wrap .service .content span {
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
}

.services-wrap .service .content a {
    color: #1c455d;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.8;
    font-size: 12px;
}

.services-wrap .service .content a:hover {
    color:#ca2b37;
}

 
.featured-section-wrap #featured-carousel,
.featured-section-wrap #resource-carousel,
.featured-section-wrap #news-carousel {
    /* padding: 6.25rem 1rem; */
    position: relative;
    overflow: hidden;
}

.featured-section-wrap #resource-carousel {
    padding: 0.25rem 1rem;
    position: relative;
    overflow: hidden;
}

.featured-section-wrap .feature {
    min-height: 300px; 
    background-color: #fff;
    /* padding: 50px 20px 50px 10px; */
}

 

.featured-carousel-main {
    position: relative;
}

.featured-carousel-main .swiper-button-next {
    position: absolute;
    right: -45px;
}

.featured-carousel-main .swiper-button-prev {
    position: absolute;
    left: -45px;
}


/* .featured-section-wrap .feature:last-child {
    border-right: 0;
} */

.featured-section-wrap .feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.video-section {
    /*padding: 0 120px 100px;*/
    max-width: 1160px;
    margin: 50px auto;
    width:800px;
}

.video-section .carousel-item {
    text-align: left;
}

.video-section #video-carousel iframe {
    border: 1px solid #000;
}

.video-section #video-carousel h1 {
    margin-top: 1.25rem;
}

#video-carousel .carousel-control-prev {
    left: -4rem; 
}
#video-carousel .carousel-control-next {
    right: -4rem; 
}

#video-carousel .carousel-control-prev,
#video-carousel .carousel-control-next{
    border: 1px solid #ca2b37;
    width:2.4rem;height:4rem;
    top:44%;transform:translateY(-50%);
}



#video-carousel .carousel-control-prev img,
#video-carousel .carousel-control-next img {
    height: 24px;
    width: 24px; 
}

.video-section h1 {
    font-size: 27px;
    font-weight: bold;
}

.video-section span {
    font-size: 14px;
} 
/* 
.featured-section-wrap .feature h2 {
    font-size: 0.875rem;
    margin-bottom: 0%;
}

.featured-section-wrap .feature p {
    font-size: 12px;
    font-weight: 600;
}

.featured-section-wrap .feature span {
    color: #ca2b37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5em;
}

.featured-section-wrap .feature h4 {
    font-size: 1.5rem;
    margin-bottom:1rem;
} */

.feature a {
    color: #000;
}

.copyright {
    border-top: 1px solid #999999;
    background: #000;
}

.copyright p {
    color: #999999;
    font-size: 14px;
}

.copyright a {
    color: #999999 !important;
    font-size: 13px;
}

.conditions {
    padding-right: 25px;
}

.privacy {
    text-align: center;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.cookies {
    text-align: start;
    padding-left: 25px;
}


/* Cookies consent css */

.cookies-wrap {
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba( 255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 4px);
    -webkit-backdrop-filter: blur( 4px);
    z-index: 999;
}

.cookies-wrap-inner {
    background-color: #fff;
    width: 20%;
    border-radius: 10px;
    position: absolute;
    bottom: 40px;
    right: 50px;
    padding: 20px 30px;
    box-shadow: -4px 4px 15px 3px #7b7b7b80;
}

.cookies-wrap-inner .links-wrap {
    text-align: right;
    margin-top: 1.5rem;
}

.cookies-wrap-inner h1 {
    font-size: 1.25rem;
    color: #CB2B37;
    margin-bottom: 1rem;
}

.cookies-wrap-inner .link-btn {
    background-color: #d30d0d;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
}

.cookies-wrap-inner .info-link {
    color: #CB2B37;
    margin-right: 1rem;
}


/* Common banner */

.common-banner-wrapper { 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-size: cover;
    flex-direction: column;
    background-position:center center;
    padding: 5rem 0;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.34);
}

.common-banner-wrapper h1 {
    color: #fff;
    font-size: 3.4rem;
    font-weight: 700;
}

.common-banner-wrapper p {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width:1200px) {
     
    .common-banner-wrapper h1 {
        color: #fff;
        font-size: 2.5rem;
        font-weight: 500;
    }
}

@media (max-width:576px) {
    .common-banner-wrapper {
        height: auto;
    }
}

.common-head {
    font-size: 1.75rem;
    color: #b7081b;
    margin-bottom: 1.25rem;
}

.h-80vh {
    height: 80vh;
}

.common-filter-wrapper {
    margin: 80px 0 10px;
    position:sticky;
    top:4.5rem;
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    padding-bottom: 1.5rem;
}

.common-filter-wrapper h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.common-filter-wrapper .search-container {
    margin-bottom: 1.25rem;
    border: 1px solid #ddd;
    padding: 0;
    border-radius: 5px;
}

.common-filter-wrapper .search-container button {
    border: none;
    background-color: transparent;
    width: 2.4rem;
    color: #828282;
    transition:all .3s ease-in-out;
}
.common-filter-wrapper .search-container button:hover {
    color:#7a49a5;
}

.common-filter-wrapper .search-container input {
    border: 0 !important;
    padding-left: 1rem !important;
    height: 2.65rem;
}

 

.common-filter-wrapper .accordion-item {
    border: 1px solid #e4e4e4;
    margin-bottom:.45rem;
}
.accordion-flush .accordion-item:first-child {
    border-top: 1px solid #e4e4e4;
}
.accordion-flush .accordion-item:last-child {
    border-bottom: 1px solid #e4e4e4;
}

   
.accordion-item {
    background-color: #fff; 
    margin-bottom:.25rem;
}

.common-filter-wrapper .accordian-filter-wrapper .accordion-button::after {
    /*display: none;*/
}

.accordian-filter-wrapper .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #000;
    box-shadow: none;
}

.accordian-filter-wrapper .accordion-button-filter:not(.collapsed) {
    /*background-color: #e8e8e8;*/
    background-color: var(--dark);
    color: #fff;
    box-shadow: none;
}

.accordian-filter-wrapper .accordion-button:not(.collapsed) span {
    background-color: #CB2B37;
    color: #fff;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.accordian-filter-wrapper .accordion-button-filter:not(.collapsed) span {
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-check-label {
    cursor: pointer;
    display: block;
    font-size: 0.875rem; 
    color: #161617;
    opacity: 0.9;
    font-weight: 500;
    padding-left: .25rem;
    padding-top: .2rem;
    text-transform: capitalize;
}

.form-check-input[type="checkbox"] { 
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 !important; 
    background-color: transparent;  
    width:18px;
    height:18px;
    cursor:pointer;
}

.form-check-input[type="radio"] { 
    border: 1.5px solid rgba(0, 0, 0, 0.15);  
    width:18px;
    height:18px;
    cursor:pointer;
}

.form-check-input:focus, .accordion-button:focus, .form-control:focus {
    box-shadow:none;
}

.form-check-input[type="checkbox"]:checked {
    background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLWNoZWNrIj48cG9seWxpbmUgcG9pbnRzPSIyMCA2IDkgMTcgNCAxMiI+PC9wb2x5bGluZT48L3N2Zz4=) !important;
    background-color:#0d6efd;
    border-color:#0d6efd;
}
.form-check-input[type="radio"]:checked {
    background-color:#0d6efd;
    border-color:#0d6efd;
}

.accordian-filter-wrapper .checkbox-button-control {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 0.675rem;
    vertical-align: middle;
    background-color: inherit;
    color: #161617;
    border: 2px solid #1616176e;
}

  
/*.accordian-filter-wrapper .accordion-button {*/
/*    padding: 1rem 1.25rem 0;*/
/*}*/

.accordian-filter-wrapper .accordion-button-filter {
    padding: 1rem 1.25rem;
    background-color: #f4f4f4;
}

.common-technical-wrapper {
    margin-top: 20px;
    padding: 1rem 1.25rem 1rem 1.25rem;
    border: 1px solid #ddd;
}

.common-technical-wrapper h3 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.common-technical-wrapper h5,
.common-technical-wrapper span {
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.common-search-container {
    margin-bottom: 1.25rem;
    border: 1px solid #ddd;
    padding: 0;
    border-radius: 5px;
}

.common-search-container button {
    border: none;
    background-color: transparent;
    width:2.5rem;
}

.common-search-container input {
    border: none;
    width:calc(100% - 2.5rem);
    height:2.8rem;
}


/* Blog page */

#static .blog-inner-section {
    padding: 80px 0;
}

#static .blog-header-content p {
    opacity: 0.8;
    font-weight: 300;
}

#static .blog-header-content a {
    color: #b7081b;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.875rem;
}

#static .blog-header-content a i {
    margin-left: 1rem;
}

#static .btn-brand {
    background-color: #fff;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    border: 2px solid #000;
    transition:all .3s ease-in-out;
}

#static .btn-brand:hover {
    background-color: #000;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    border: 2px solid #fff;
}

.log-in {
    border: 3px solid #000!important;
}

.btn-brand:hover {
    border-color: #000;
    background-color: #000;
    color: #fff; 
}

/* #static .blog-inner-section .blog-img {
    height: 250px;
    background-size: cover;
}

#static .blog-inner-section .blog-card {
    width: calc(100%/3 - 20px);
    background-color: #fff;
    box-shadow: -1px 5px 20px 0px #c1c1c14a;
    margin: 20px 0;
}

#static .blog-inner-section .blog-card .content {
    padding: 20px 15px;
}

#static .blog-card-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
} */

/* #static .blog-inner-section .blog-card .content h2 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
} */

/* #static .blog-inner-section .blog-card .content p {
    font-size: 0.875rem;
    opacity: 0.8;
}

#static .bg-grey {
    background-color: #f9f9f9;
} */


/* Login Page css */

.login-wrapper {
    padding: 40px 0;
}






/* download-page */

 

.download-section-wrapper .download-header {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.download-section-wrapper .download-header span {
    color: #000;
    opacity: 0.8;
    font-size: 1rem;
}


.download-section-inner {
    display: flex; 
    flex-wrap: wrap;
    margin: 20px 0 50px;
    border-bottom: 1px solid #ddd;
}

.download-section-wrapper .download-header .select { 
    min-width:12rem;
    margin-left:.75rem;
}
.download-section-wrapper .download-header .select label { 
    display:block; 
    width: 5.5rem;
    margin: 0;
}
.download-section-wrapper .download-header .form-select { 
    max-width:13rem; 
    background-position: right .25rem center;
    background-color: #ced4da63;
    cursor: pointer;
    height: 2.4rem;
    padding: .2rem 0 .25rem .35rem !important;
    line-height: 1;
}

.form-select:focus {
    box-shadow:none;
}


.download-section-inner .download-card {
    display: inline-flex;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    transition: 0.5s all;
    width: calc(100%/3 - 30px);
    margin-bottom: 1rem;
}

.download-section-inner .seller-card {
    padding: 2rem 1rem .5rem 1rem;
    width: calc(100%/3 - 25px);
    transition: 0.5s all;
    margin-bottom: 1.5rem;
    /* border: 1px solid #ddd; */
    position: relative;
    background-color: #fff;
    /* border-radius: .25rem; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.download-section-inner .seller-card .img__wrapp {
    padding:1rem;
    margin:0;
    min-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-section-inner .seller-card.grid {
    width: calc(100%/3 - 25px);
    display: block;
    margin-bottom: 2.5rem;
}

.download-section-inner .seller-card.gridnogap {
    width: calc(100%/4 - 0px);
    display: block;
    margin-bottom: 1.5rem;
}

.download-section-inner .seller-card.list {
    width: calc(100%/1 - 0px);
    display: flex;
    padding:1rem;
    margin-bottom: 1.5rem;
}

.download-section-inner .seller-card .wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.12rem;
    z-index: 99;
}

.download-section-inner .seller-card .content {
    padding: 1rem 0 0 0;
    text-align: center;
}

.download-section-inner .seller-card .img__wrapp img {
    display: block;
    margin: 0 auto;
    transition:all .3s ease-in-out;
    max-height: 14rem;
}

.howToBuy .download-section-inner .seller-card .img__wrapp { 
    min-height: 8rem;
}

.howToBuy .download-section-inner .seller-card .img__wrapp img { 
    max-height: 6rem;
}

.download-section-inner .seller-card .img__wrapp:hover img {
    transform:scale(1.2);
}

.download-section-inner .seller-card .pro__title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: var(--dark);
    display: block;
    margin-bottom: .5rem; 
}

.download-section-inner .seller-card .pro__title:hover {
    color: var(--brand_light);
}

.download-section-inner .seller-card .details {
    margin-bottom:1rem;
}
.download-section-inner .seller-card .brand {
    font-size: .937rem;
    font-weight: 400;
    color: dimgray;
    text-align: left;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    min-height:2.5rem;
}
.download-section-inner .seller-card .category {
    font-size: .875rem;
    color: var(--brand_light);
    font-weight: 400;
    text-align: left;
    display: block;
    margin-bottom: .2rem;
}
.download-section-inner .seller-card .desc { 
    font-size: .875rem;
    font-weight: 400;
    color: var(--grey); 
    text-align: left;
    margin:0;
    display:none;
    font-family: var(--open);
    line-height: 1.5;
}

.download-section-inner .download-card:hover {
    color: #000;
    box-shadow: 3px 3px 8px 1px #e4e4e4;
}
.download-section-inner .seller-card .ac__box .btn {
    width: 100%;
    margin-bottom: .75rem;
    padding: 0 1rem;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-section-inner .seller-card .ac__box .btn.pdf svg {
    width: 1.75rem;
    height: 1.45rem;
}



.download-section-inner .seller-card .ac__box .btn-primary { 
    background-color:#ca2b37;
    border-color:#ca2b37; 
}
 
.download-section-inner .seller-card .ac__box .btn-primary:hover { 
    background-color:#c63520;
    border-color:#c63520;
}

.download-section-inner .download-card label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.download-section-inner h5 {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: #CB2B37;
}

.download-section-inner .download-card span {
    display: block;
    font-size: 0.875rem;
    line-height: 1;
}





.download-section-inner .seller-card.list .img__wrapp { 
    width: 15rem;
}
.download-section-inner .seller-card.list .caption { 
    width: calc(100% - 15rem);
}
.download-section-inner .seller-card.list .details { margin-bottom: .5rem; }
.download-section-inner .seller-card.list .content {
    padding: 1rem 0;
    text-align: left;
} 
.download-section-inner .seller-card.list .desc {
    display:block;
}
.download-section-inner .seller-card.list .pro__title {
    min-height:auto;
}
.download-section-inner .seller-card.list .ac__box .btn {
    width: 30%; 
    display: inline-flex; 
}
 
.download-section-inner .seller-card.gridnogap .ac__box .btn-primary img,
.download-section-inner .seller-card.gridnogap .ac__box .btn-secondary svg {
    display:none; 
}
/* .short__info__modal .table td  { 
    font-family: 'Univia Pro';
 }
.short__info__modal .table td:nth-child(1) { 
    font-size: .875rem;
    font-weight: 500;
    color: #212121;
 }
.short__info__modal .table > tbody > tr:nth-of-type(2n+1) > * { background: #f2f2f2; }
.short__info__modal .table > tbody > tr:nth-of-type(2n+1) > * { color: var(--bs-table-striped-color); } */

@media (max-width:1200px) {
    .download-section-wrapper {
        margin: 1.5rem 0 0;
    }
    .common-filter-wrapper {
        margin: 2.4rem 0 0;
    }
    .download-section-inner .seller-card.grid {
        width: calc(100%/3 - 10px); 
    }
    .download-section-inner .seller-card.gridnogap {
        width: calc(100%/3 - 0px);
    }
    .download-section-inner .seller-card .pro__title {
        font-size: 1.125rem;
        min-height: 3rem;
    }
    .download-section-inner .seller-card .price {
        font-size: 1.125rem; 
        display: block;
    }
    .download-section-inner .seller-card .details {
        margin-bottom: .35rem;
    }
    .download-section-inner .seller-card .ac__box .btn img,
    .download-section-inner .seller-card .ac__box .btn svg {
        display:none;
    }
    .download-section-inner .seller-card.list .img__wrapp {
        width: 13rem;
        align-items: self-start;
    }
    .download-section-inner .seller-card.list .caption {
        width: calc(100% - 13rem);
    }

}


@media (max-width:991px) {
    .download-wrapper .col-lg-3.col-md-4 {  
        width: 28%;
    }
    .download-wrapper .col-lg-9.col-md-8 {
        width: 72%;
    }
    .download-section-inner .seller-card.grid {
        width: calc(100%/2 - 10px); 
    }
    .download-section-inner .seller-card.gridnogap {
        width: calc(100%/2 - 0px);
    }
    .download-section-inner .seller-card.list {
        display:block;
    }
    .download-section-inner .seller-card.list .caption {
        width: 100%;
    }
    .download-section-inner .seller-card.list .pro__title { 
        min-height: auto;
    }
    .download-section-inner .seller-card.list .content {
        padding: 1rem 0; 
    }
    .download-section-inner .seller-card .img__wrapp {
        min-height:12rem;
    }
    .download-section-inner .seller-card .img__wrapp img { 
        max-height: 11rem;
    }
    .download-section-inner .seller-card.list .img__wrapp {
        width: 100%;
        min-height:auto; 
    }
}
@media (max-width:767px) {
    .download-wrapper .col-lg-3.col-md-4 {  
        width: 100%;
    }
    .download-wrapper .col-lg-9.col-md-8 {
        width: 100%;
    } 
}
@media (max-width:576px) { 
    .download-section-inner .seller-card.grid {
        width: calc(100%/1 - 0px); 
    }
    .download-section-inner .seller-card.gridnogap {
        width: calc(100%/1 - 0px);
    }
    .download-section-inner .seller-card.list {
        display:block;
    }
    .download-section-inner .seller-card.list .caption {
        width: 100%;
    }
    .download-section-inner .seller-card .pro__title { 
        min-height: auto;
        font-size:1rem;
    }
    .download-section-inner .seller-card.list .content {
        padding: .75rem 0; 
    }
    .download-section-inner .seller-card,
    .download-section-inner .seller-card.grid { 
        margin-bottom: 1rem;
    }
    .download-section-inner .seller-card .ac__box .btn {
        font-size:.875rem;
    }
    .download-section-inner .seller-card .img__wrapp {
        min-height:9rem;
    }
    /* .download-section-inner .seller-card .img__wrapp img { 
        max-height: 8rem;
    } */
    .download-section-inner .seller-card.list .img__wrapp {
        width: 100%;
    }
}







.pagination .page-item {
    margin:0 .25rem .25rem .25rem;
} 

.pagination .page-item .page-link {
    border: 1px solid #ddd;
    color: #000;
    min-width: 35px;
    height: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
}
  
.pagination .page-item .page-link i {
    font-size:1.125rem;
}

.pagination .page-item .page-link:hover {
    background: #ca2b37;
    border-color: #ca2b37;
    color: #fff;
}

.pagination .page-item .page-link:focus {
    box-shadow:none;
}
 
.pagination .page-item.active .page-link {
    background: #ca2b37 !important;
    border-color: #ca2b37 !important;
    color: #fff;font-size: .875rem;
}
 
.pagination .page-item.disabled {
    opacity: .5;
}


/* careers section */

.careers-wrap { 
    border-left: 1px solid #ddd;
    padding-left: 3rem;
}

.careers-wrap .title-header {
    padding-bottom: 0.5rem;
}

.careers-wrap .title-header h1 {
    font-size: 1.75rem;
    color: #CB2B37;
}

.careers-wrap .title-header .search-container {
    margin-bottom: 1.25rem;
    border: 1px solid #ddd; 
    border-radius: 5px;
}

.careers-wrap .title-header .search-container button {
    border: none;
    background-color: transparent;
    width: 2rem;
}

.careers-wrap .title-header .search-container input {
    border: none;
    width: calc(100% - 2rem);
}

.career-innder-card {
    padding: 20px 0; 
}
.career-innder-card:not(:last-child) { 
    border-bottom: 1px solid #ddd;
}

.career-innder-card h3 {
    font-size: 1.5rem;
}

.tags b {
    display: inline-block;
    color: #d30d0d;
    border: 1px solid #efc6c6;
    padding: 5px;
    font-size: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
}

.career-innder-card .tags {
    margin-left: 4rem;
}

.career-innder-card span {
    font-size: 0.875rem;
    opacity: 0.8;
    display: inline-block;
    margin-right: 1rem;
    padding-right: 1rem;
}

.career-innder-card span i {
    color: #05465f;
}

.career-innder-card span strong {
    font-weight:500;
    color:#333; 
}

.career-innder-card span:first-child {
    padding-left: 0;
}
.career-innder-card span:not(:last-child) {
    border-right: 1px solid rgb(182, 181, 181);
}


/* partner page */

.partner-section {
    padding: 80px 0;
}

.partner-section h1 {
    font-size: 1.75rem;
    color: #000;
}

.partner-section p { 
    opacity: 0.8;
}

.partner-section .form-check-input:checked {
    background-color: #ca2b37;
    border-color: #ca2b37;
}

.partner-section .form-check {
    display: inline-flex;
}

.partner-section h3 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
}
 
.partner-section input[type="text"],
.partner-section input[type="email"] {
    padding: .375rem 2.25rem .375rem .75rem;
}

 
.partner-section .btn-wrap button {
    width: 48%;
    padding: 10px 10px !important;
    text-align: center; 
}

.gutter > div[class*="col-"] {
    margin-top:1rem;
}

.partner-section .btn-secondary {
    background-color: #fff;
    border: 1px solid #ddd;
    color: grey;
    border-radius: 7px;
}

form .btn-brand {
    padding: 10px 30px!important;
    width: max-content;
}


/* Company moto  */

.company-moto-wrapper {
    margin: 80px 0;
}

.company-moto-wrapper .vision-mission-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.vision-mission-wrapper .company-card { 
    padding: 1.5rem;   
    transition: 1s all;
    background-color: #fff;
    border-radius: .5rem; 
}

.vision-mission-wrapper .company-card svg {
    margin-right: 1rem;
}

.vision-mission-wrapper .company-card p { 
    margin-bottom: 0;
}

.vision-mission-wrapper .company-card h3 {
    font-size: 1.5rem;
    color: #d30d0d;
    font-weight: 600;
    margin: 1rem 0;
}

 
 
   

.our-history-wrap {
    margin: 60px 0;
}

.our-history-wrap h1 {
    font-size: 1.75rem;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.our-history-wrap h1 span,
.our-history-wrap .text-center p span {
    color: #d30d0d;
}

/* .our-history-wrap .text-center p {
    width: 80%;
    margin: 0 auto 40px;
    font-size: 20px;
    font-weight: 600;
} */

.about-cont {
    align-self: center;
}

.our-history-inverse {
    background-color: #fff!important;
    color: #000!important;
}

.our-history-inverse a {
    text-decoration: none;
}

.our-history-wrap .our-history-inner {
    background-color: #ca2b37;
    color: #fff;
}

.our-history-wrap .our-history-inner .content {
    padding: 1.5rem;
}

.our-history-wrap .our-history-inner .content i {
    color: #232323;
}


/* Tech Support ---------------- */

.primary-color {
    color: #CB2B37!important;
}

.color-white {
    color: #fff;
}

.partner-section a {
    color: #000;
    text-decoration: none;
    margin-right: 0.5rem;
    opacity: 0.8; 
}

.tech-features-wrap .tech-feature .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-radius: 50%;
    box-shadow: 9px 2px 20px 2px #e8e8e8;
    width: 70px;
    height: 70px;
    padding: 0.875rem;
    margin-right: 1.25rem;
    background-color: #fff;
}

.tech-features-wrap {
    margin-top: 3rem;
}

.tech-features-wrap .tech-feature {
    margin-top: 1.5rem;
}

.tech-features-wrap .tech-feature h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.w50 {
    width: 50%;
}


/* Quality assurance */

.quality-assurance-wrapper {
    padding: 70px 0;
    margin: 80px 0;
}

.quality-assurance-wrapper h1 {
    margin-bottom: 2rem;
}

.quality-assurance-wrapper .quality-card {
    padding: 40px 20px;
    border: 1.5px solid #CB2B37;
    transition: 0.5s all;
}

.quality-assurance-wrapper .quality-card h2 {
    font-size: 1.75rem;
    color: #CB2B37;
}

.quality-assurance-wrapper .quality-card svg {
    margin-right: 0.75rem;
}

.quality-assurance-wrapper .quality-card p {
    margin-top: 1.25rem;
}

.quality-assurance-wrapper .quality-card:hover {
    background-color: #CB2B37;
    color: #fff;
}

.quality-assurance-wrapper .quality-card:hover h2 {
    color: #fff;
}

.quality-assurance-wrapper .quality-card:hover svg path {
    fill: #fff;
}

.gallery-info-wrapper {
    margin-bottom: 80px;
}

.gallery-info-wrapper .d-flex {
    justify-content: space-between;
}

.gallery-info-wrapper img {
    width: 100%;
    height: 51.2vh;
    object-fit: cover;
}

.content-box-wrapper {
    width: 42%;
}

.inf-sq {
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    height: 24vh;
}

.gallery-info-wrapper .info-card {
    position: relative;
}

.gallery-info-wrapper .info-card .content {
    position: absolute;
    bottom: 0;
    background: linear-gradient(transparent, #00000087);
    width: 100%;
    padding: 15px;
}

.gallery-info-wrapper .info-card .content span {
    color: #fff;
    display: block;
}

.certificate-wrapper .content-inner {
    padding: 60px;
}

.certificate-wrapper .accordian-filter-wrapper .accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.certificate-wrapper .accordian-filter-wrapper .accordion-button {
    padding-bottom: 1rem;
}

.certificate-wrapper .accordian-filter-wrapper .accordion-body p {
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: 1px solid #ddd;
}

.certificate-wrapper .accordion-button:not(.collapsed)::after,
.certificate-wrapper .accordion-button::after {
    display: none;
}


/* About-us page  */

.quality-wrapper .accordion-button::after {
    display: none;
}

.quality-wrapper .accordian-filter-wrapper .accordion-button,
.quality-wrapper .accordian-filter-wrapper .accordion-body {
    padding: 1rem 1.25rem;
}

.quality-wrapper h1 {
    font-size: 1.75rem;
}

.quality-wrapper .accordian-filter-wrapper .accordion-item .accordion-button span {
    position: absolute;
    right: 0;
}

.about-mission-wrapper .company-card {
    border: none;
}

.about-mission-wrapper .company-card:hover {
    background-color: #fff;
    color: #000;
}

.about-mission-wrapper .company-card .content {
    margin-top: 1rem;
    width: 100%;
    border: 1px solid #000;
    padding: 3rem 1rem;
}

.about-mission-wrapper .company-card .content p {
    height: auto;
    margin-bottom: 1rem;
}

.about-mission-wrapper .company-card .content a {
    text-decoration: none;
}

.about-mission-wrapper .company-card .content a i {
    color: #212529;
}


/*Contact us*/

.contact-us-footer {
    padding: 60px 0;
}

.contact-us-footer p {
    margin-bottom: 0;
    opacity: 0.8;
}


/*Product details page*/

.product-wrapper {
    margin: 80px 0;
}

.product-wrapper h4 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

#myTab {
    justify-content: center;
}

.product-wrapper p {
    font-size: 1rem;
    /* opacity: 0.8; */
    color: #808080;
    text-align: justify;
    font-family: var(--body-font);
    line-height: 1.6;
}

.product-wrapper .desc {
    color: #808080;
}

.product-wrapper .search-icon-wrap {
    color: #000;
    text-decoration: none;
    margin-right: 2rem;
    font-weight: 18px;
}

.product-tabs-wrapper .nav-tabs .nav-link {
    color: #000;
    padding: 17px 40px;
}

.product-tabs-wrapper .nav-item {
    margin-right: 5rem;
}
 
.product-tabs-wrapper .download-product-wrap h5 {
    font-size: 22px;
    margin-top: 4rem;
}

.product-tabs-wrapper .download-product-wrap hr {
    opacity: 0.2;
    margin-bottom: 2rem;
}

.product-tabs-wrapper .download-card {
    background-color: #fff;
    box-shadow: 0px 13px 23px #ececec;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.product-tabs-wrapper .download-card p {
    font-size: 14px;
}

.product-tabs-wrapper .download-card h6 {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    text-align: left;
}

.product-tabs-wrapper .download-card span {
    opacity: 0.7;
    font-size: 14px;
    margin-right: 2rem;
}

.product-tabs-wrapper .download-card span:last-child {
    margin-right: 0;
}
.product-tabs-wrapper table { 
    border: 0 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; 
}
.product-tabs-wrapper table tbody tr:nth-child(odd) {
    background-color: #f3f3f3;
}

/* .product-tabs-wrapper table {
    margin-top: 3rem;
} */
.product-tabs-wrapper table td { border: 0; }
.product-tabs-wrapper table tr {
    font-size: 1rem;
    opacity: 0.8;
}

.product-tabs-wrapper table tr th {
    padding: 1rem 0 1rem 1rem;
}

.product-tabs-wrapper table td:nth-child(1) {
    width: 30%;padding-left: 2rem;
}


.mobile-f-pass {
    text-align: right;
}


/* image tabs */

.img-tabs-wrap .tab-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.img-tabs-wrap .tab-menu ul li {
    padding: 1rem;
    background: #ddd;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 1rem;
}

.img-tabs-wrap .tab-menu ul li:hover {
    background: rgba(221, 221, 221, 0.8);
}

.img-tabs-wrap .tab-menu ul li:nth-child(even) {
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
}

.img-tabs-wrap .tab-menu ul li:first-child {
    border-radius: 3px 0 0 3px;
}

.img-tabs-wrap .tab-menu ul li:last-child {
    border-radius: 0 3px 3px 0;
}

.img-tabs-wrap .tab-menu ul .active-menu {
    background: #444;
    color: #ddd;
    cursor: default;
}

.img-tabs-wrap .tab-menu ul .active-menu:hover {
    background: #444;
    color: #ddd;
}

@media (min-width: 405px) {
    .img-tabs-wrap .tab-menu ul li {
        padding: 1rem 2rem;
    }
}

.tab-content>.active {
    display: block;
    text-align: center;
}

#pills-tabContent>.active img {
    /*border: 1px solid #979797;*/
    margin-bottom: 20px;
}

.img-tabs-wrap .tab-content {
    position: relative;
}

.img-tabs-wrap .slide {
    transform: translateX(100vw);
    position: absolute;
}

.img-tabs-wrap .slide img {
    width: 100%;
}

.img-tabs-wrap .active-menu {
    background: #444;
}

.img-tabs-wrap .active-tab {
    transform: translateX(0);
    -webkit-animation: moveLeft 600ms ease;
    animation: moveLeft 600ms ease;
}

.image-tabs .nav-pills .nav-link.active,
.image-tabs .nav-pills .show>.nav-link {
    background-color: #fff;
}

.image-tabs .nav-link img {
    width: 60px;
    height: auto;
    object-fit: contain;
}


@-webkit-keyframes moveLeft {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes moveLeft {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.show .footer-dropdown h4 i {
    display: none;
    bottom: -2px;
    transition: 0.5s all ease-in-out;
    transform: rotateZ(0deg);
}

@media only screen and (max-width: 1024px) {
    .toggler__btn {
        display: flex!important;
    }
    .main-header .main-nav-bar {
        margin-left: 0;
    }
    .main-nav-bar {
        padding: 0 0px 0 0px;
        display: flex;
        height: 100%;
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 45px;
        width: 65%;
        overflow-y: auto;
        flex-wrap: wrap;
        transform: translateX(-200%);
        transition: .4s ease;
        color: #1e1854;
        overflow-x: hidden;
        flex-direction: column;
        z-index: 2;
        padding-top: 70px;
        text-align: unset;
    }
    .main-nav-bar li {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border-bottom: 1px solid #ddd;
    }
    .main-header .main-nav-bar .active li a {
        margin: 0 20px;
        font-size: 16px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        border: 1px solid #ca2b37;
        width: fit-content;
        padding: 5px 14px;
        border-radius: 20px;
    }
    .main-header .main-nav-bar li {
        align-items: flex-start;
    }
    .main-nav-bar li a {
        color: #1e1854;
        margin-bottom: 1rem;
        margin-right: 0!important;
    } 
    .main-nav-bar.active {
        transform: translateX(0);
    }
    .topbanner-carousel .top-content h1 {
        font-size: 40px;
        margin-right: 0;
    }
    .common-title-header h1 {
        font-size: 30px;
    }
   
    #static .common-head h1 {
        font-size: 1rem;
    }
    .download-section-inner .download-card,
    .download-section-inner .seller-card {
        width: calc(100%/2 - 30px);
    }
    .quality-assurance-wrapper .quality-card {
        text-align: center;
    }
    .product-tabs-wrapper .download-card span {
        margin-right: 0.5rem;
    }
    .product-tabs-wrapper .nav-item {
        margin-right: 0;
    }
    .product-tabs-wrapper .nav-tabs .nav-link {
        padding: 17px 27px;
    }
    .image-tabs .nav-link {
        margin-right: 0;
    }
    .image-tabs .nav-link {
        padding: 0.5rem;
    }
    .product-wrapper .search-icon-wrap {
        margin-right: 1rem;
    }
    .video-section {
        padding: 0 0px 100px;
    }
    #video-carousel .carousel-control-next {
        right: 0;
    }
    #video-carousel .carousel-control-prev {
        left: 0px;
    }
}

@media only screen and (max-width: 768px) {
    .top-header {
        padding: 5px 2rem;
    }
     
    .partner-section {
        padding: 40px 0;
    }
    .certificate-wrapper .content-inner {
        padding: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .main-header {
        position: relative;
    }
    .main-header .headersearchcontainer { 
        background-color: #fff;
        /* width: 50px; */
        border: 0;
    }
    
    .main-header .headersearchcontainer.active {
        border: 1px solid #ddd;
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 11;
        transform: translate(-50%, -50%);
        width: 95%;
    }
    .main-header .headersearchcontainer.active input {
        padding-left: 1.5rem;
    }
    .main-header .headersearchcontainer input {
        width:0;display: none;
    }
    
    .headersearchcontainer.active input {
        width: calc(100% - 5rem);
        margin-left: auto;
        padding-left: .5rem !important;
        display: block;
    }
    .main-header .headersearchcontainer .close-btn { 
        font-size: 1.12rem;
        color: red;
    }
    .main-header .headersearchcontainer button[type="submit"] { display: none; }
    .main-header .headersearchcontainer button[type="button"] { 
        width: 2.5rem;
        font-size: 1.125rem;
        color: #555;
        height: 2.5rem; 
        border-radius: 50%; 
    }

    .main-header .headersearchcontainer.active button {
        border:0; box-shadow: none;
    }
    .main-header .headersearchcontainer.active button[type="button"] { display: none; }
    .main-header .headersearchcontainer.active button[type="submit"] { display: block; }
   
    .main-header .headersearchcontainer.active .close-btn {
        display: block;
        position: absolute;
        left: 10px;
        cursor: pointer;
    }
    .footer-top-banner-sections {
        border: none;
    }
    .show .footer-dropdownmenu{
        display: block!important;
    }
    .footer-sections h4 i  {
        display: inline-block;
    }
    .show .footer-dropdown h4 i {
        display: inline-block;
        transform: rotateZ(-180deg);
    }
   
    .featured-section-wrap .feature {
        padding: 0;
        min-height: auto;
    }
    .our-history-wrap .text-center p {
        width: 100%;
    }
    .mobile-top-margin {
        margin-top: 40px;
    }
    .mobile-f-pass {
        text-align: left;
    }
    
    .product-tabs-wrapper .download-card p {
        text-align: left;
    }
    .product-tabs-wrapper .download-card {
        text-align: left;
    }
    .image-tabs .nav-link img {
        width: 70px;
    }
    /*.featured-carousel-main .swiper-button-next {*/
    /*    display: none;*/
    /*}*/
    .footer-top-banner h5 a i {
        font-size: 14px;
    }
    .main-nav-bar {
        padding: 0 0px 0 0px;
        display: flex;
        height: 100%;
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 45px;
        width: 100%;
        overflow-y: auto;
        flex-wrap: wrap;
        transform: translateX(-200%);
        transition: .4s ease;
        color: #1e1854;
        overflow-x: hidden;
        flex-direction: column;
        z-index: 2;
        padding-top: 70px;
        text-align: unset;
    }
    .video-section {
        width:auto;
    }
    .main-nav-bar li {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border-bottom: 1px solid #ddd;
    }
    .main-header .main-nav-bar .active li a {
        margin: 0 20px;
        font-size: 16px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        border: 1px solid #ca2b37;
        width: fit-content;
        padding: 5px 14px;
        border-radius: 20px;
    }
    .main-header .main-nav-bar li {
        align-items: flex-start;
    }
    .main-footer {
        padding: 3rem 0 1rem 0;
    }
}

@media only screen and (max-width: 767px) {
    
    .link-hidden-md {
        display: none;
    }
    .top-header li a,
    .top-header li select {
        font-size: 13px;
    }
    .top-header li select { 
        -moz-appearance: none;
        -webkit-appearance: none;
    }
    
    .services-wrap .service,
    .featured-section-wrap .feature {
        min-height: auto;
        padding: 3rem 0;
        margin-bottom: 1rem;
    }
    .topbanner-carousel .top-content {
        width: 90%!important;
        margin-right: 10px;
    }
    .topbanner-carousel .top-content h1 {
        font-size: 32px;
        margin-right: 0;
    }
    .topbanner-carousel .top-content p {
        font-size: 15px;
        width: 75%!important;
    }
    .topbanner-carousel .top-content .link-btn {
        padding: 0.3rem 1rem 0.45rem 1rem;
        border: 2px solid #fff;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
    }
    
    .featured-section-wrap .feature {
        padding: 50px 20px;
        text-align: justify;
    }
    .main-footer {
        text-align: center;
    }
    /* .main-footer .footer-dropdown {
        text-align: left;
    } */
    /* .footer-sections {
        margin-top: 25px;
    } */
    .footer-top-banner h5 {
        margin-top: 5px;
    }
    .conditions {
        text-align: center;
        padding-right: 0;
    }
    .privacy {
        text-align: center;
        border-left: 0;
        border-right: 0;
    }
    .cookies {
        text-align: center;
        padding-left: 0;
    }
    #static .blog-inner-section .blog-card {
        width: 100%;
    }
    .download-section-inner .download-card,
    .download-section-inner .seller-card {
        width: 100%;
    }
    .download-section-wrapper {
        margin: 60px 0;
    }
    .careers-wrap {
        padding-left: 0 !important;
        border: 0; 
    }
    .career-innder-card .tags {
        margin-left: 0rem;
    }
    .common-filter-wrapper {
        margin: 40px 0;
    }
    
    .common-search-container {
        margin-bottom:0;
    }
     
     
    .vision-mission-wrapper .company-card {
        margin-bottom: 1rem;
    }
    .main-nav-bar {
        padding: 0 0px 0 0px;
        display: flex;
        height: 100%;
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 45px;
        width: 65%;
        overflow-y: auto;
        flex-wrap: wrap;
        transform: translateX(-200%);
        transition: .4s ease;
        color: #1e1854;
        overflow-x: hidden;
        flex-direction: column;
        z-index: 2;
        padding-top: 70px;
        text-align: unset;
    }
    .main-nav-bar li {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border-bottom: 1px solid #ddd;
    }
    .main-header .main-nav-bar .active li a {
        margin: 0 20px;
        font-size: 16px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        border: 1px solid #ca2b37;
        width: fit-content;
        padding: 5px 14px;
        border-radius: 20px;
    }
    .main-header .main-nav-bar li {
        align-items: flex-start;
    }
}

@media only screen and (max-device-width: 640px),
only screen and (max-device-width: 667px),
only screen and (max-width: 480px) {
    .main-nav-bar {
        padding: 0 0px 0 0px;
        display: flex;
        height: 100%;
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 102px;
        width: 100%;
        overflow-y: auto;
        flex-wrap: wrap;
        transform: translateX(-200%);
        transition: .4s ease;
        color: #1e1854;
        overflow-x: hidden;
        flex-direction: column;
        z-index: 2;
        padding-top: 70px;
        text-align: unset;
    }
    .main-nav-bar li {
        display: flex;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #ddd;
    }
    .main-header .main-nav-bar .active li a {
        margin: 0 20px;
        font-size: 16px;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        border: 1px solid #ca2b37;
        width: fit-content;
        padding: 5px 14px;
        border-radius: 20px;
    }
    .main-header .main-nav-bar li {
        align-items: flex-start;
    }
}

/*==================================================== CSS: shuvro dev roy ================================*/


.header {
    font-size:1.5rem !important;
    font-weight:500;
    color:#000;
    line-height:1.4;
    margin-top:0;
}

.header-lg {
    font-size: 2.875rem;
    color: var(--dark);
    margin: 0;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.btn:focus {
    box-shadow:none !important;
}
.openFilterMenu {
    border-radius:2rem;
    background-color: #aaa;
    border-color: #aaa; 
    display:none;
    padding: .75rem .75rem;
}
 

.openFilterMenu.active {
    background-color: var(--primary);
    border-color: var(--primary); 
    color:#fff;
}

.nav-link {
    font-size:1.25rem;
    color:#333;
    border-radius:0 !important;
}

.nav-link:hover {
    color:#ca2b37;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #ca2b37;
}
  
.scroll__nav {
    position: sticky;
    top: 4rem;
    z-index: 99;padding: .5rem 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}

.filter__wrapp .btn {
    padding:.5rem;
    transition:all .3s ease-in-out;
    opacity:.6;
}
.filter__wrapp .btn svg {
    width:1.4rem;
    height:1.5rem;
    transition:all .3s ease-in-out;
}
.filter__wrapp .btn.lg {
    font-size:1.55rem;
}
.filter__wrapp .btn:hover {
    box-shadow:0 2px 4px rgba(0,0,0,0.01);
}
.filter__wrapp .btn:hover {
    opacity:1; 
}

.filter__wrapp .btn.active {
    opacity:1;
}
.tooltip-inner {
    font-family:Roboto; 
}

#scrollspySpecfication::before, #scrollspyDownloads::before, #scrollspyOrder::before, #scrollspyRelatedProducts::before {
    content:'';
    width:100%;height:6rem;display:block;
}
#scrollspyOrder table tbody tr:nth-child(1) td { font-weight: 700; }

/*---------- Product Details Page -------------*/

.product__box {
    position:relative;
    min-height:33rem;
    margin-top: -5rem;
    margin-right: 5rem;
    background-color: #fff;
}

.mibreit-thumbs {
    margin-bottom: 0;
    margin-left: -.7rem;
}
    
.mibreit-slideshow-previous,
.mibreit-slideshow-next {
    display: none !important;
}
 
.mibreit-thumbview {
    position: absolute;
    margin-top: 0;
    min-width: 20rem; 
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.mibreit-thumbElement .mibreit-center-box {
    border: 1px solid #eee;  
    border-radius: .2rem;
    padding: .2rem;
    cursor:pointer;
}
.mibreit-thumbElement.active .mibreit-center-box {
    border: 1px solid #6c757d75;
    box-shadow: 0 1px 5px #6c757d75;
}
.hide__arrows .mibreit-thumbview-previous, 
.hide__arrows .mibreit-thumbview-next { display: none; } 

.mibreit-thumbElement {
    width: 5rem !important;
    height: 5rem !important;
}
.mibreit-thumbElement img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}
#full-gallery {
    min-height: 28rem; 
}
.mibreit-imageElement img {
    max-height:27rem;
}
 
.mibreit-thumbview-previous svg, .mibreit-thumbview-next svg { 
    width: 1.125rem;
    height: 1.125rem; 
    cursor:pointer;
    margin-top: -0.7rem;
}
.mibreit-fullscreen {
    z-index:1040;
}
.mibreit-slideshow-previous svg,
.mibreit-slideshow-next svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: -1rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color:#0a79a4;
    border-color:#0a79a4;
}
.quality__accordion .accordion-button {font-size:1.35rem;color:#000000;}.quality__accordion .accordion-button:not(.collapsed) {  color: #ca2b37;}
.accordion-button::after {  
    width: 30px; 
    height: 30px;  
    border-radius: 50%; 
    background-position: center center; 
    
}
.quality__accordion .accordion-button::after {  border: 2px solid #ca2b37;    background-image: var(--plus); }
.accordion-button:not(.collapsed)::after { 	
    /*background-image: var(--minus);*/
    background-color: #fff; 
}

.videoSlider .owl-dots {
    margin-top:2rem;
}

/* .btn-brand {
    color: #212121;
    text-decoration: none;
    border: 1px solid #656262;
    padding: 0px 25px;
    min-height: 30px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 500;
} */

@media (min-width:1400px) {
    .main-header .left__panel {
        width: 810px;
    }
    .main-header .main-nav-bar li a {
        margin: 0 16px;
    }
    .main-header .right__panel {
        width: calc(100% - 900px);
        max-width: 700px;
        justify-content: flex-end;
    }
    .main-header .right__panel .region__box {
        width: 5rem; 
    }
    .main-header .right__panel .headersearchcontainer {
        width: calc(100% - 8rem); 
        margin-right: 0;
    }
}

@media (max-width:1400px) {
    .product__box {
        margin-right:0;
    }
    .careers-wrap { 
        padding-left: 1.5rem;
    }
}

@media (max-width:1100px) {
    .main-header .main-nav-bar li a {
        margin: 0 .5rem;
    }
    form .btn-brand {
        padding: 3px 30px 5px 30px !important; 
    }
}


@media (max-width:992px) {
    .nav-link {
        font-size: 1rem;
    }
    .topbanner-carousel .carousel-item {
        height: auto;min-height: 530px;
    }
    .topbanner-carousel .carousel-item .container {
        min-height: 530px;
    }
    .product-tabs-wrapper table {
        margin-top: 1.5rem;
    }
    #scrollspySpecfication::before, #scrollspyDownloads::before, #scrollspyOrder::before, #scrollspyRelatedProducts::before { 
        height: 5rem;
    }
    .product-tabs-wrapper .download-card { 
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    .product__box { 
        margin-bottom: 4rem;
    }
    .career-innder-card {
        padding: 15px 0;
    }
    .our-history-wrap .text-center p { 
        font-size: 16px;
    }
    .company-moto-wrapper {
        margin-top:0;
    }
    .vision-mission-wrapper .company-card {
        padding:0;
    }
    .about-mission-wrapper .company-card .content {
        margin-top: 0; 
        border: 1px solid #333;
        padding: 2rem 2rem;
    }
}

@media(max-width:767px) {
    .desktop__details__acc__wrapper {
        display:none;
    }
    .topbanner-carousel .top-content {
        height:auto;
        padding:4rem 0;
    }
    .topbanner-carousel .carousel-item {
        height: auto;min-height: 480px;
    }
    .topbanner-carousel .carousel-item .container {
        min-height: 480px;
    }
    .openFilterMenu {
        display:block;
    }
    .accordian-filter-wrapper {
        display:none;
    }
    .download-section-wrapper {
        margin: 0 0;
    }
    .download-section-wrapper .download-header span { 
        font-size: .875rem;
    }
    .download-section-wrapper .download-header .form-select {
        max-width: 11rem; 
        background-color: #ced4da63;
        cursor: pointer;
        height: 2.2rem;
        padding: 0rem .25rem 0 !important;
        font-size: .95rem;
        line-height: 1;
    }
    
    .mobile-accordion {
        display:block;
    }
    .h3, h3 {
        font-size: 1.25rem;
    }
 
    #product-detail .featured-section-wrap .feature {
        padding:1.5rem 0;
    }

    .accordion-button { 
        padding: .5rem 1rem;
    }
    
    .product-tabs-wrapper .table td {
        vertical-align: middle;
        color: var(--grey);
    }
    .mobile-accordion .accordion-button:not(.collapsed) {
        color: #000;
        background-color: var(--brand_light); 
    }
    .product-tabs-wrapper table tr th {
        padding: .5rem 0 .5rem .5rem;
    }
    .product-tabs-wrapper .download-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .product__box {
        margin-bottom: 3rem;
        margin-top: -2rem;
    }
    .lead {
        font-size: 1.125rem; 
    }
    .vision-mission-wrapper .company-card {
        margin-bottom: 0 !important;
    }
    .about-mission-wrapper .company-card .content {
        margin-top: 0;
        border: 1px solid #333;
        padding: 1rem;
    }
}

@media(max-width:576px) {
    html {
        font-size: 93.75%;
    }
    .lead {
        font-size: 1rem; 
    }
    .breadcrumb {
        display:none;
    }
    .openFilterMenu {
        width:100% !important;
    }


    .services-wrap .service, .featured-section-wrap .feature { 
        padding: 1rem 0; 
      }

    #heroNavMenu.fixed-top .main-header {
        padding: .5rem 1rem;
      }
     
    .download-section-wrapper .download-header span { 
        font-size: .875rem;
    }
    .download-section-wrapper .download-header .form-select {
        max-width: 9.5rem;
        background-color: #ced4da63;
        cursor: pointer;
        height: 1.8rem;
        padding: .14rem !important;
        font-size: 12px;
        line-height: 0;
        background-position: right;
    }
    .common-filter-wrapper {
        margin: 16px 0;
    }
    
    .product-tabs-wrapper .download-card {
        padding: .25rem;
        margin-bottom: .5rem;
    }
    .product-tabs-wrapper .download-card h6 {
        font-size: 13px; 
        font-weight: 600;
    }
    .product-tabs-wrapper .download-card p {
        font-size: 13px;
        margin-bottom: .25rem;
    }
    .product-tabs-wrapper .download-card span { 
        font-size: 12px; 
        /* width: 46%; */
        display: inline-block;
    }
    .accordion-veiw-cont { 
        margin: 12px 0;
    }
    .featured-carousel-main .swiper-button-prev {
        position: absolute;
        left: 0;
    }
    .featured-carousel-main .swiper-button-next { 
        right: 0;
    }
    .product-wrapper {
        margin: 40px 0;
    }
    .main-header .logo img {
        width: 95px;
    }
    /*header .logo {*/
    /*    position: absolute;*/
    /*    left: 30%;*/
    /*}*/
    /*.hamburger-menu {*/
    /*    top:63px;*/
    /*}*/

    .footer-top-banner h5 a { 
        font-size: 12px;
    }
    .main-header .headersearchcontainer button { 
        font-size: 1.24rem;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-header .headersearchcontainer {
        margin-right:0;
    }
    .common-banner-wrapper { padding: 1rem 0; }
    .common-banner-wrapper h1 { 
        font-size: 1.75rem;
        padding:2.5rem 0;
        margin:0;
    }
    
    #full-gallery {
        min-height: 25rem;
    }
    .mibreit-imageElement { 
        max-height: 20rem;
    }
    .product__box { 
        min-height: 23rem;
    }
    .mibreit-imageElement img {
        max-height: 20rem;
    }
    .product-wrapper h4 {
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 0.25rem;
    }

    .download-section-inner .seller-card .desc {
        font-size: .875rem;
    }

    .download-section-wrapper .download-header .select { 
        margin-left: auto;
    }
    
    .career-innder-card .details {
        flex-wrap:wrap;
    }
    .career-innder-card .details span {
        flex:0 0 100%;
        width:100%;margin: 0%;
        padding: .15rem 0;
        border: 0;
    }
    .career-innder-card {
        padding: 10px 0;
    }
    .topbanner-carousel .controls {
        display:none;
    }
    .carousel-indicators {
        bottom: 1rem;
    }
    .topbanner-carousel .top-content {
        width: 100% !important;
        margin-right: 0;
        align-items: center;
    }
    .header-lg {
        font-size: 2rem;
    }
    .featured-section-wrap .feature h4 {
        font-size: 1.15rem;
    }
    .btn-brand {  
        padding: 5px 15px;
        min-height: 40px;
    }
    
    #video-carousel .carousel-control-prev,
    #video-carousel .carousel-control-next {
        display:none;
    }
    #video-carousel .carousel-indicators {
        bottom: -3rem;
    }
    #video-carousel .carousel-indicators [data-bs-target] { 
        border: 2px solid #333 !important;
    }
    #video-carousel .carousel-indicators .active { 
         border-color: #ca2b37 !important;
    }
    #video-carousel .carousel-indicators .active::after { 
        background-color: #ca2b37;
    }
    .video-section {
        padding: 0 0px 4rem;
        margin: 0;
    }
    .video-section h1 {
        font-size: 20px;
    }
    .our-history-wrap .text-center p { 
        font-size: 14px;
        font-weight:500;
    }
    .main-footer ul a { 
        font-size: 12px;
    }
    p { 
        font-size: .925rem; 
    }

    .btn-play {
        position: absolute;
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    .btn-play .circle {
        width: 50px;
        height: 50px;
    }
    .our-history-wrap h1 {
        font-size: 1.275rem;
    }
    .header {
        font-size: 1.45rem !important;
    }
    h5 {
        font-size: 1.12rem;
    }

    .accordian-filter-wrapper .accordion-button-filter {
        padding: .5rem 1rem;
    }
    .product-tabs-wrapper table td {
        font-size: 13px;
    }
    .product-tabs-wrapper table td:nth-child(1) {
        width: 40%;
        padding-left: 0.5rem;
    }
    .owl-nav { 
        width: 100%;
        left: 0;  
    }
}

.accordion-button:not(.collapsed) { 
  background-color: var(--dark);
}
