@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Poppins", sans-serif;
    color: #444444;
    font-size: 14px;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
section {
    padding: 70px 0;
    overflow: hidden;
}
.section-title {
    text-align: center;
    padding-bottom: 40px;
}
.section-title h2 {
    font-size: 45px;
    line-height: 45px;
    font-family: "Poppins", sans-serif;
    color: #000;
    font-weight: 600;
    margin: 0 0 25px 0;
    text-transform: capitalize;
}
.section-title p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #fff;
    margin: 0 0 0px 0;
    padding: 0 28%;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    /*    z-index: 9999;*/
    padding: 25px 0;
    background: #1f1f1f;
}
.HrRgt {
    margin-top: 5px;
}
.toplink {
    margin-bottom: 30px;
}
.toplink ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: end;
}
.toplink ul li {
    position: relative;
}
.hrBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 12px;
    padding: 12px 35px !important;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    margin-left: 10px;
    border: 1px solid #ca0012;
    transition: 0.3s;
}
.hrBtn:hover {
    background-color: transparent;
    color: #ca0012 !important;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 20px 7px 20px;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    white-space: nowrap;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
}
.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #eb1e24;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #1f1f1f;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #fff;
    font-weight: 400;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    background-color: #ca0012;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width:1024px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
	
	
	
	.navbar-mobile ul {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    width: 100%;
}
	
	
	
	
	
	
	
	
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #202124;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #fff;
    background-color: #ca0012;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #1f1f1f;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #fff;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #ca0012;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



@media (max-width:1024px) {

	
	.navbar-mobile ul {
    display: block;
    position: relative;
    top:50px;
    right: 0;
    bottom: 0;
    left: 0;
    padding:  0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    width: 100%;
}
	
	.navbar {  display: block;        overflow: hidden;}
	
	.hrBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 12px;
    padding: 12px 35px !important;
    border-radius: 0;
    font-family: "Poppins", sans-serif;
    margin-left: 0;
    border: 1px solid #ca0012;
    transition: 0.3s;
}
	
	
	
	
	
	
	
	
}






/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 80vh;
    background: url("../images/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    margin-top: 0;
    padding-top: 100px;
	overflow: visible;
        background-repeat: no-repeat;
}
/*
#hero:before {
  content: "";
  background: rgba(11, 26, 41, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
*/
#hero .container {
    position: relative;
    padding-top: 59px;
    text-align: left;
}
.BannerTXt {
    padding: 0 0 0 0;
    text-align: left;
}
#hero h1 {
    font-size: 53px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
    text-align: left;
}
#hero h1 span {
    color: #CA0012;
}
#hero p {
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 0px;
    color: #fff;
    line-height: 35px;
    text-align: left;
}
.bannerBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 300px;
    height: 59px;
    display: block;
    line-height: 59px;
    line-height: 59px;
    text-align: center;
    margin-top: 32px;
}
.bannerBtn:hover {
    background-color: transparent;
    color: #fff !important;
    border: 1px solid #fff;
}
.BannerFrm {
    background: #000;
    border-radius: 25px;
    padding: 40px 30px;
	margin-top: 100px;
}
.BannerFrm h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
    background: url("../images/battery.svg");
    background-repeat: no-repeat;
    background-size: 30px;
    padding: 0 0 0 45px;
}
.BannerFrm ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.BannerFrm ul li:first-child {
    margin-bottom: 0px;
}
.BannerFrm ul li .select-style {
    overflow: hidden;
    background-color: #000000;
    background-image: url(../images/downarrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    height: 59px;
    width: 100%;
    border-radius: 30px;
    margin-bottom: 10px;
    color: #000;
}
.BannerFrm ul li .select-style select {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    border: 2px solid #C4C4C4;
    padding: 18px 25px;
    outline: none !important;
    background: transparent;
    height: 59px;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.BannerFrm ul li .select-style select option {
    color: #000;
}
.BannerFrm ul li .select-style select:focus {
    outline: none;
}
.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.radio-tile-group .input-container {
    position: relative;
    width: 125px;
    height: 99px;
    margin: 7px;
}
.radio-tile-group .input-container .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 999;
}
.radio-tile-group .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    border: 1px solid #C4C4C4;
    border-radius: 15px;
    padding: 12px 10px;
    transition: transform 300ms ease;
    width: 125px;
    height: 99px;
}
.radio-tile-group .input-container .icon img {
    opacity: 0.8;
        height: 28px;
}
.radio-tile-group .input-container .radio-tile-label {
    text-align: center;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: #CA0012;
    border: 2px solid #CA0012;
    color: white;
    /*	 transform: scale(1.1, 1.1);*/
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .icon img {
    opacity: 1;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
    color: white;
    background-color: #CA0012;
}

#searchForm ul li .radio-tile-group { margin-bottom:20px;}
.submitBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 100%;
    height: 59px;
    display: block;
    line-height: 59px;
    line-height: 59px;
    text-align: center;
    margin-top: 20px;
}
.submitBtn:hover {
    background-color: transparent;
    color: #fff !important;
    border: 1px solid #fff;
}
.submitBtnmodal {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 100%;
    height: 59px;
    display: block;
    line-height: 59px;
    line-height: 59px;
    text-align: center;
    margin-top: 20px;
}
.submitBtnmodal:hover {
    background-color: transparent;
    color: #fff !important;
    border: 1px solid #fff;
}
.modal-body #searchForm ul li .radio-tile-group {
    margin-bottom: 0px;
}
.search-container {
    margin: 0px;
}
.dropdown-container {
    position: relative;
    display: inline-block;
    width: 47%;
    margin: 0 5px;
}
.dropdown-content {
    display: none;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #ca0012 #000; /* For Firefox: thumb and track */
    position: absolute;
    width: 100%;
    border: 1px solid #000;
    border-radius: 0 0 0 0;
    background-color: #000;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
}
/* Webkit-based browsers */
.dropdown-content::-webkit-scrollbar {
    width: 12px; /* Adjust width as needed */
}
.dropdown-content::-webkit-scrollbar-track {
    background: #000; /* Track color */
}
.dropdown-content::-webkit-scrollbar-thumb {
    background: #ca0012; /* Thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
}
.dropdown-content input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ccc;
    background: #000;
    border-radius: 30px;
    color: #fff;
}
.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropdown-content ul li {
    padding: 10px;
    cursor: pointer;
    color: #fff;
}
.dropdown-content ul li:hover {
    background-color: #CA0012;
}
.dropdown-container.active .dropdown-content {
    display: block;
}
/*


.select-style {
       width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    border: 2px solid #C4C4C4;
    padding: 18px 25px;
    outline: none !important;
    background: transparent;
    height: 59px;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/downarrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    text-align: left;
    margin: 0 0;
    cursor: pointer;
}

.select-style select {
    padding: 5px 8px;
    width: 100%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
        font-size: 15px;
    font-weight: 300;
    color: #fff;
}

.select-style select:focus {
    outline: none;
}


*/








.search-container .BannerFrm {
    padding: 0;
    background: none;
    width: 100%;
        margin: 0;
}
.search-container .BannerFrm #searchForm ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}


.search-container .BannerFrm #productSearchForm ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}




.search-container .radio-tile-group .input-container {
    position: relative;
    width: 85px;
    height: 59px;
    margin: 7px;
}
.search-container .radio-tile-group .input-container .radio-tile {
    width: 85px;
    height: 72px;
    color: #fff;
}
.search-container .BannerFrm ul li {
    width:77%;
    margin: 0;
    display: flex;
    gap:10px;
}
.search-container .BannerFrm ul li:first-child {
    width: 19%;
    margin: 0;
}
.search-container .BannerFrm ul li:last-child {
    
    width: 23%;
    margin: 0;
}
.search-container .submitBtn {
    margin: 0
}

.search-container .BannerFrm ul li .select-style{    margin-bottom: 0;}

.BannerFrm .mt-5 {
    margin-top: 0 !important;
     margin-bottom: 20px !important;
}


.modal-body {
    background: #000000;
    border: none;
}
.modal-header {
    background: #000000;
    border: none;
}
.modal-header h5 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
    background: url(../images/battery.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    padding: 0 0 0 45px;
    margin: 0;
}
.search-container .dropdown-button {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    border: 2px solid #C4C4C4;
    padding: 18px 25px;
    outline: none !important;
    background: transparent;
    height: 59px;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/downarrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-color: #000;
    text-align: left;
    margin: 0 0;
    cursor: pointer;
}
.search-container .BannerFrm #searchForm li .dropdown-content ul {
    display: block
}
.search-container .BannerFrm #searchForm li .dropdown-content ul li {
    width: 100%
}
.modal-header .btn-close {
    padding: 0;
    width: 50px;
    height: 50px;
}
/* CSS for highlighting selected item */
.dropdown-content .item {
    padding: 10px;
    cursor: pointer;
}
.dropdown-content .item.selected {
    background-color: #ca0012; /* Highlight color */
}
/* CSS for highlighting search results */
.dropdown-content .highlight {
    background-color: #ca0012; /* Highlight color for search results */
}
.view-details-btn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 154px;
    height: 40px;
    display: block;
    line-height: 40px;
    text-align: center;
}
#resultTableContainer {
    margin-top: 20px;
}



#hero .dropdown-button {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    border: 2px solid #C4C4C4;
    padding: 18px 25px;
    outline: none !important;
    background: transparent;
    height: 59px;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/downarrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    text-align: left;
    margin: 0 0;
    cursor: pointer;
}
#hero .BannerFrm #searchForm li .dropdown-content ul {
    display: block
}
#hero .BannerFrm #searchForm li .dropdown-content ul li {
    width: 100%
}
#hero .dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}


.dropdown-container {
    padding: 0;
    margin: 0;
   border: 2px solid #C4C4C4;
     width: 100%;
  height: 59px;
    border-radius: 30px;
    overflow: hidden;
    background-color: #000;
      background-image: url(../images/downarrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.dropdown-container select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.dropdown-container select:focus {
    outline: none;
}

.select2-container--default .select2-selection--single {
background-color: transparent !important;
    height: 59px !important;
    line-height: 59px !important;
    border: none !important;}

.select2-container--default .select2-selection--single .select2-selection__rendered {

    line-height: 59px!important;
        color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #fff !important;
}

.select2-selection__arrow { display:none!important;}

.select2-dropdown {
    background-color: #000!important;
    border: 1px solid #000!important;
    border-radius: 4px;}
.select2-results__option--selectable {
    cursor: pointer;
    color: #fff!important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color:#CA0012!important;
    color: white!important;
}

.select2-container--default .select2-results>.select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: #ca0012 #000;
}
.select2-container--default .select2-search--dropdown .select2-search__field {

    width: 93%!important;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ccc!important;
    background: #000!important;
    border-radius: 30px!important;
    color: #fff!important;
    margin: 0 2%!important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 400!important;
    height: 53px!important;
    margin-right: 8px!important;
    padding-right: 5px!important;
}
.select2-container .select2-selection--single .select2-selection__clear {
    background-color: #000!important;
    border: none!important;
    font-size: 20px!important;
    color: #fff!important;
}

/*--------------------------------------------------------------
# Box
--------------------------------------------------------------*/
.Box .section-title {
    padding-bottom: 0;
}
.box-slider {
    padding-top: 45px;
    padding-left: 30px;
    padding-right: 30px;
    overflow: hidden;
}
.BlackBox {
    text-align: center;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.BlackBox-img {
    position: relative;
    width: 134px;
    transition: 0.3s;
    margin: 0 auto;
    height: 134px;
}
.BlackBox-img:after {
    content: "";
    width: 134px;
    height: 134px;
    background: #F7F7F7;
    display: block;
    position: absolute;
    top: -22px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 134px;
    z-index: -1;
    transition: 0.3s;
}
.BlackBox-img img {
    filter: grayscale(100%);
}
.box-info {}
.box-info h3 {
    font-size: 17px;
    color: #8E8E8E;
    font-weight: 400;
    margin: 0px 0 0;
}
.BlackBox:hover .box-info h3 {
    color: #CA0012;
}
.BlackBox:hover .BlackBox-img:after {
    background: #CA0012;
}
.BlackBox:hover .BlackBox-img img {
    filter: grayscale(0);
}
.swiper-button-prev {
    width: 35px;
    height: 35px;
    left: 10px;
}
.swiper-button-prev:after {
    background-image: url(../images/icon2.png);
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    background-size: 100%;
    content: "" !important;
}
.swiper-button-next {
    width: 35px;
    height: 35px;
    right: 0;
}
.swiper-button-next:after {
    background-image: url(../images/icon1.png);
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    background-size: 100%;
    content: "" !important;
}
.viewBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 285px;
    height: 59px;
    display: block;
    line-height: 59px;
    line-height: 59px;
    text-align: center;
    margin: 0 auto;
    margin-top: 59px;
}
.viewBtn:hover {
    background-color: transparent;
    color: #ca0012 !important;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    padding-bottom: 20px;
}
.services .icon-box {
    text-align: left;
    padding: 0;
    transition: all ease-in-out 0.3s;
    background: #F0F0F0;
    border-radius: 40px;
}
.services .icon-box .icon {
    margin: 0 auto;
    height: 237px;
    transition: 0.3s;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}
.services .icon-box .icon img {
    width: 100%;
    height: auto;
}
.services .icon-box .icon img {
    border-radius: 40px 40px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services .icon-box .iconTxt {
    padding: 40px 40px 40px;
}
.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 22px;
    color: #000000;
}
.services .icon-box p {
    font-size: 15px;
    font-weight: 300;
    margin: 0 0 25px;
    color: #000;
    line-height: 22px;
}
.services .icon-box .iconTxt a {
    color: #CA0012;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.services .icon-box .iconTxt a i {
    font-size: 20px;
    margin-left: 10px;
}
.services .icon-box:hover {
    border-color: #fff;
    transform: translateY(-10px);
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
    width: 100%;
    padding: 20px 0 100px;
}
.features h4 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 30px;
    color: #000;
}
.features h4 span {
    color: #CA0012;
}
.features p {
    font-size: 17px;
    font-weight: 300;
    margin: 0 0 25px;
    color: #000;
    line-height: 25px;
	    text-align: justify;
}
.features .moreBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 192px;
    height: 59px;
    display: block;
    line-height: 59px;
    line-height: 59px;
    text-align: center;
    margin-top: 45px;
}
.features .moreBtn:hover {
    background-color: transparent;
    color: #ca0012 !important;
}
.features .image img {
    border-radius: 40px;
}
.features .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*--------------------------------------------------------------
# innerSection
--------------------------------------------------------------*/
.about {
    padding: 200px 0 90px;
    background: #F3F3F3;
}
.about h4 {
    color: #000000;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 15px;
}
.about p {
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
}
.pr-4 {
    padding-right: 100px;
}
.about img {
    border-radius: 40px;
}
.about2 {
    padding: 100px 0;
}
.about2 h1 {
    color: #000000;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 15px;
}
.about2 h3 {
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}
.about2 p {
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
	  text-align: justify;
}
.about2 ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.about2 ul li {
    background: url("../images/tick.svg");
    background-repeat: no-repeat;
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 17px;
    margin-bottom: 20px;
    padding-left: 32px;
}
.about2 img {
    border-radius: 40px;
}
.about3 {
    padding: 0px 0;
}
.about3 h4 {
    color: #000000;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 15px;
}
.about3 h3 {
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
}
.about3 p {
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
}
.about3 img {
    border-radius: 40px;
}
.about3.pb-5 {
    padding-bottom: 100px !important;
}
#innerHero {
    width: 100%;
        padding-top: 110px;
        background-size: cover !important;
/*    background: url("../images/innerhero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    margin-top: 0;
    padding-top: 100px;*/
}
.imginnerHero{
    width: 100%;
/*    background: url("../images/innerhero-bg.jpg") top center;*/
    background-size: cover;
    position: absolute;
    margin-top: 0;
/*    padding-top: 100px;*/
}
#innerHero .container {
    position: relative;
    padding-top: 70px;
    text-align: center;
}
#innerHero h4 {
    font-size: 53px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #fff;
    text-align: center;
}
.blackbox {
    padding-top: 0;
}
.blackboxInner {
    width: 100%;
    background: #000000;
    border-radius: 20px;
    padding: 75px 170px;
    text-align: center;
}
.blackboxInner h3 {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}
.blackboxInner p {
    color: #fff;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 25px;
    padding: 0 50px;
}
.btngrp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.btngrp .viewBtn {
    margin: 0;
}
.btngrp .viewBtn:hover {
    color: #fff !important;
    border-color: #fff !important;
}
.batteryresult {
    padding: 0 0 100px;
    position: relative;
    z-index: 100;
    margin-top: -68px;
}
.batteryresult .modal-dialog {
    background: #000;
    border-radius: 20px;
    width: 100%;
}
.batteryresult .modal-content {
    padding: 48px;
}
.batteryresult .services {
    padding: 70px 0 0;
}
.batteryresult .services .redBtn {
    background-color: #ca0012;
    color: #fff !important;
    font-size: 17px;
    border-radius: 45px;
    font-family: "Poppins", sans-serif;
    border: 1px solid #ca0012;
    transition: 0.3s;
    width: 155px;
    height: 50px;
    display: block;
    line-height: 50px;
    text-align: center;
    margin-top: 20px;
    justify-content: center;
}
.batteryresult .services .redBtn:hover {
    background-color: transparent;
    color: #ca0012 !important;
}
.batteryresult .services .icon-box {
    text-align: left;
    padding: 0;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 35px;
    border: 1px solid #A4A4A4;
}
.batteryresult .services .icon-box .icon {
    border-radius: 20px 20px 0 0;
}
.batteryresult .services .icon-box .icon img {
    border-radius: 20px 20px 0 0;
}

.batteryresult  .BannerFrm #searchForm ul {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}

.batteryresult .BannerFrm ul li:first-child {
    width: 25%;
    margin: 0;
}

.batteryresult .BannerFrm ul li {
    width: 55%;
    margin: 0;
}


.batteryresult .dropdown-button {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    border: 2px solid #C4C4C4;
    padding: 18px 25px;
    outline: none !important;
    background: transparent;
    height: 59px;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/downarrow.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    text-align: left;
    margin: 0 0;
    cursor: pointer;
}

.batteryresult .BannerFrm ul li:last-child {
    width: 20%;
    margin: 0;
}

.batteryresult #searchForm ul li .radio-tile-group {
    margin-bottom: 0;
}



.batteryresult .BannerFrm #searchForm li .dropdown-content ul {
    display: block
}
.batteryresult .BannerFrm #searchForm li .dropdown-content ul li {
    width: 100%
}




.faqBox {
    width: 70%;
    margin: 0 auto;
}
.faqBox h5 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: capitalize;
}
.faqBox .accordion {
    border: none;
    border-radius: 0;
}
.faqBox .accordion .accordion-item {
    background: #F5F5F5;
    width: 100%;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px !important;
}
.accordion-button {
    border: none;
    width: 100%;
    background: #F5F5F5;
    border-radius: 10px !important;
    padding: 22px 24px;
    color: #343434 !important;
    font-size: 20px;
    font-weight: 500;
}
.accordion-button:not(.collapsed) {
    background: #F5F5F5;
    box-shadow: none;
}
.accordion-button:focus {
    border: none;
    box-shadow: none;
}
.FaqDiv {
    width: 100%;
    padding: 100px 0;
}
.accordion-body {
    width: 100%;
    padding-top: 0;
}
.accordion-body ul { margin-top: 20px; margin-bottom: 20px;}
.accordion-body ul li {
    color: #727272;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 14px;
}
.accordion-body ul li::marker {
    color: #727272;
}

.accordion-body p {
    color: #727272;
    font-size: 17px;
    font-weight: 300;
	line-height: 22px;
    margin-bottom: 15px;
}

.accordion-button::after { background-image: url("../images/red_icon.svg"); width: 21px; height: 21px; background-size: 100%;}
.accordion-button:not(.collapsed)::after { background-image: url("../images/red_icon2.svg"); width: 21px; height: 21px; background-size: 100%;}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f5f5f5;
    margin-top: 0px;
    padding-top: 70px;
}
.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs ol li {
    color: #a8aaad;
}
.breadcrumbs ol li + li {
    padding-left: 10px;
    color: #a8aaad;
}
.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #343941;
    content: " / ";
}
.breadcrumbs ol li a {
   color: #a8aaad;
}
.btnBox {
    width: 100%;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 44px 30px;
    margin-top: 40;
}
.ProductDetalis {
    width: 100%;
    background: #f5f5f5;
}
.btnBox .viewBtn {
    margin-top: 0;
}
.productdetaImg {
    text-align: center;
    margin-bottom: 50px;
}
.InfoBox {
    width: 100%;
}
.InfoBox h5 {
    width: 100%;
    color: #000000;
    font-size: 25px;
    font-weight: 500;
    position: relative;
    display: inline;
}
.InfoBox h5:before {
    content: "";
    background: #CA0012;
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
}
.InfoBoxtitel {
    width: 100%;
    border-bottom: 1px solid #888888;
    padding-bottom: 8px;
    margin-bottom: 30px;
}
.InfoBox ul {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
}
.InfoBox ul li {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
}
.InfoBox ul li label {
    width: 230px;
    color: #888888
}
.productdetaTxt {
    width: 100%;
    padding-left: 50px;
}
.productdetaTxt h2 {
    color: #000000;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 35px;
}
.SpeBox {
    width: 100%;
    margin-bottom: 55px;
}
.SpeBox h5 {
    background: #CA0012;
    border-radius: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 0 35px;
    padding: 10px 35px;
    display: inline;
}
.SpeBoxinner {
    width: 100%;
    border: 1px solid #A7A7A7;
    border-radius: 20px;
    padding: 40px;
    margin-top: -15px;
    padding-top: 70px;
}
.SpeBoxinner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.SpeBoxinner ul li {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
}
.SpeBoxinner ul li label {
    width: 230px;
    color: #888888
}
.layoutBox {
    width: 100%;
    display: flex;
    gap: 40px;
}
.layoutBox span {}
.layoutBox span h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 18px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding-top: 180px;
    padding-bottom: 100px;
    background: #f5f5f5;
}
.contact .section-title h2 {
    color: #000000;
    font-size: 40px;
    margin-bottom: 15px;
}
.contact .section-title p {
    color: #000000;
    font-size: 20px;
    padding: 0 21%;
}
.contact .info {
    width: 100%;
}
.contact .info i {
    font-size: 20px;
    background: #CA0012;
    color: #151515;
    float: left;
    width: 59px;
    height: 59px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}
.contact .info h3 {
    color: #CA0012;
    font-weight: 500;
    font-size: 20px;
}
.contact .info h5 {
    color: #000000;
    font-weight: 600;
    font-size: 30px;
}
.contact .info p.lft0 {
    color: #000000;
    font-weight: 400;
    font-size: 17px;
    padding-left: 0;
}
.contact .info h4 {
    padding: 0 0 0 80px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #1A202C;
}
.contact .info p {
    padding: 0 0 0 80px;
    margin-bottom: 0;
    font-size: 20px;
    color: #CA0012;
    font-weight: 500;
}
.contact .info p a {
    color: #CA0012;
}
.address {
    margin-top: 30px;
}
.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}
.contact .php-email-form {
    width: 100%;
    background: #fff;
    padding: 37px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3)
}
.contact .php-email-form h4 {
    color: #000000;
    font-weight: 700;
    font-size: 25px;
    margin: 0 0 25px;
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}
.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #CA0012;
}
.contact .php-email-form input {
    height: 54px;
    border-color: #C4C4C4;
    border-radius: 45px;
}
.contact .php-email-form textarea {
    padding: 10px 12px;
    border-color: #C4C4C4;
    border-radius: 25px;
}
.contact .php-email-form input[type="submit"] {
    background: #CA0012;
    border: 1px solid #CA0012;
    padding:0px 24px;
    color: #fff;
    transition: 0.4s;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    border-radius: 45px;
}
.contact .php-email-form input[type="submit"]:hover {
    background: #fff;
    color: #CA0012;
}
.batteryRange {
    padding-top: 110px;
    padding-bottom: 100px;
}
.batteryRange .section-title {
    background: #f5f5f5;
    padding-top: 70px;
}
.batteryRange .section-title h2 {
    color: #000000;
    font-size: 40px;
    margin-bottom: 15px;
}
.batteryRange .section-title p {
    color: #000000;
    font-size: 20px;
    padding: 0 21%;
}
.CategoriesDiv {
    width: 100%;
    padding: 100px 0;
}
.CategoriesDiv h4 {
    font-family: "Poppins", sans-serif;
    color: #000000;
    text-align: center;
    font-weight: 500;
    font-size: 45px;
    margin-bottom: 70px;
}
.CategoriesDiv ul {
    list-style: none;
    padding: 0 15%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px 0;
}
.CategoriesDiv ul li {
    width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saftyDiv {
    width: 100%;
    padding: 50px 0;
}

.careBoxTxt { margin: 35px 0 0 ;}
.careBoxTxt h4 {
	    color: #000000;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 15px;
   }

.careBoxTxt p {
	color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
    text-align: justify;
   }

.careBoxTxt h3 {
	    color: #000000;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 25px;
	margin-top:35px;
   }

.careBoxTxt ul {    padding: 0 0 0 18px;}

.careBoxTxt ul li {
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
    text-align: justify;
}

.careBoxTxt h5 {    margin: 0 0 20px;
    font-size: 18px;}

.careBoxTxt ol {    padding: 0 0 0 18px;}

.careBoxTxt ol li {
    color: #000000;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 20px;
    text-align: justify;
}

.careBoxTxt ol li ul {padding-top:25px;}

    	.proImgside h2 {
    color: #000000;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 35px;
    margin-left: 20px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #000000;
    padding: 0 0 30px 0;
    color: #fff;
}
#footer .footer-top {
    background: #1f1f1f;
    padding: 80px 0 30px 0;
}
#footer .footer-top .footer-info {
    margin-bottom: 30px;
}
#footer .footer-top .footer-info .footerLogo {
    margin-bottom: 40px;
}
#footer .footer-top .footer-info h4 {
    color: #ca0012;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}
#footer .footer-top .footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
#footer .footer-top .footer-info ul li {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
}
#footer .footer-top .footer-info ul li strong {
    color: #fff;
    font-size: 15px;
    font-weight: 300
}
#footer .footer-top .footer-info ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    transition: 0.3s;
}
#footer .footer-top .footer-info ul li a:hover {
    color: #ca0012;
}
#footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
    color: #ffc451;
}
#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}
#footer .footer-top .social-links a {
    font-size: 25px;
    display: inline-block;
    background: #292929;
    color: #fff;
    line-height: 1;
    padding: 12px 0;
    margin-right: 4px;
    border-radius: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
    border: 1px solid #fff;
    margin-right: 10px;
}
#footer .footer-top .social-links a.whatsapp { display: none;}
#footer .footer-top .social-links a img {
    opacity: 0.5
}
#footer .footer-top .social-links a:hover {
    background: #ca0012;
    color: #fff;
    text-decoration: none;
    border: 1px solid #ca0012;
}
#footer .footer-top .social-links a:hover img {
    opacity: 1
}
#footer .footer-top h4 {
    position: relative;
    padding-bottom: 20px;
    color: #ca0012;
    font-size: 20px;
    font-weight: 500;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
    margin: 0 0 25px;
}
#footer .footer-top .footer-links ul li {
    padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    font-weight: 300;
}
#footer .footer-top .footer-links ul a:hover {
    color: #ca0012;
}
#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 15px;
    color: #fff;
    font-weight: 300;
}
#footer .copyright a {
    font-weight: 300;
    color: #fff;
    transition: 0.3s;
}
#footer .copyright a:hover {
    color: #ca0012;
}
table {
    border-spacing: 1;
    border-collapse: collapse;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
table {
    position: relative;
}
table td, table th {
    padding-left: 8px;
}
table thead tr {
    height: 60px;
    background: #2A2A2A;
    font-size: 16px;
    color: #fff;
}
table tbody tr {
    height: 48px;
    border-bottom: 1px solid #e3f1d5;
}
table tbody tr:last-child {
    border: 0;
}
table td, table th {
    text-align: left;
}
table td.l, table th.l {
    text-align: right;
}
table td.c, table th.c {
    text-align: center;
}
table td.r, table th.r {
    text-align: center;
}
.table th {
    background: #2A2A2A;
    color: #fff !important;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    border: none;
}
.table td {
    color: #fff !important;
    font-size: 17px;
    font-family: "Poppins", sans-serif;
    background: #484848;
    border: none;
}


#downloadBtn {  background-image: url(../images/downArrow.png);
       background-repeat: no-repeat;
    background-position: 20px 50%;
    border: 2px solid #ca0012;
    border-radius: 5px;
    padding-top: 20px;
    padding-left: 80px;
    padding-bottom: 20px;
    padding-right: 80px;
    background-color: #fff;}
#downloadBtn h2 {    color: #1b1b1b;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500; margin: 0;    text-align: left;}
#downloadBtn p {       color: #747474;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;    text-align: left;}

#downloadBtn2 {  background-image: url(../images/Download_button.png);
      background-repeat: no-repeat;
    width: 43px;
    height: 212px;
    position: fixed;
    background-position: center;
    z-index: 9999;
    display: block;
    top: 40vh;
    background-size: 100%;
    right: 0;
    background-color: transparent !important;
    border: none !important;}
/*--------------------------------------------------------------
REsponsive
--------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1390px) {}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
	
	#hero .col-lg-8{        flex: 0 0 auto !important;
        width: 100% !important;}
		#hero .col-lg-4{        flex: 0 0 auto !important;
        width: 100% !important;}
	.about {
    padding: 150px 0 50px;
    background: #F3F3F3;
}
	
	.about .align-items-center {
    align-items: flex-start!important;
}
	
		.about2 .align-items-center {
    align-items: flex-start!important;
}
	
		.about3 .align-items-center {
    align-items: flex-start!important;
}
	
	.pr-4 {
    padding-right: 20px;
}
	.search-container .BannerFrm ul li:first-child {
    width: 30%;
    margin: 0;
}
	.batteryresult .modal-content {
    padding: 20px;
}
	
	.search-container .dropdown-button {}
		.features .row {
      display: flex;
    justify-content: space-between;
    align-items: start;
}
	
	    .BannerTXt {
        margin-bottom: 30px;
    }
	
		.section-title h2 {    font-size: 37px;
    line-height: 40px;     margin: 0 0 5px 0;}
	.batteryRange .section-title p {    padding: 0 15px;}
	.section-title p br { display: none;}
	.CategoriesDiv {
    width: 100%;
    padding:50px 0;
}
	.CategoriesDiv h4 {     font-size: 32px;   margin-bottom: 50px;}
	.CategoriesDiv ul li {
    width: 195px;
}
	.CategoriesDiv ul {gap: 40px 0;    padding: 0;}
	
	.blackboxInner {
    width: 100%;
    background: #000000;
    border-radius: 20px;
    padding: 59px 90px;
    text-align: center;
}
	
	.contact .section-title p {
    color: #000000;
    font-size: 20px;
    padding: 0 0;
}
	
	.contact .col-lg-7 {        width:49.33333333%;}
	.contact .col-lg-5 {
        flex: 0 0 auto;
        width: 49.66666667%;
    }
			.ProductDetalis {
    width: 100%;
    background: #f5f5f5;
    padding: 0 0 100px;
}
	
	.productdetaTxt {
    width: 100%;
    padding-left: 0;

}
	
	#footer .footer-top .footer-info .footerLogo img { width:100%; height: auto;}
	
	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hrBtn {
        margin: 0;
        border-radius: 0;
        padding: 10px 20px !important;
    }
    .BannerTXt {
        margin-bottom: 30px;
    }
    #hero .container {
        padding-top: 0;
    }
    .search-container .BannerFrm #searchForm ul {
        display: block;
    }
    .search-container .BannerFrm ul li {
        width: 100%;
        margin: 0 0 15px;
    }
    .search-container .BannerFrm ul li:first-child {
        width: 100%;
        margin: 0 0 15px;
    }
    .search-container .BannerFrm ul li:last-child {
        width: 100%;
        margin: 0 0 15px;
    }
    
    
   .search-container .BannerFrm #productSearchForm ul {
        display: block;
    }
  
    
    
    
    
    .dropdown-container {
        width: 100%;
        margin: 0 0px 15px;
    }
    .services .icon-box {
        margin-bottom: 20px;
    }
    .features .image img {
        width: 100%;
        height: auto;
    }
    .features .image {
        margin: 0 0 30px;
    }
    #footer .footer-top .footer-links {
        margin-bottom: 0px;
    }
	.about {
    padding: 150px 0 50px;
    background: #F3F3F3;
}
	
	.about .align-items-center {
    align-items: flex-start!important;
}
	
		.about2 .align-items-center {
    align-items: flex-start!important;
}
	
		.about3 .align-items-center {
    align-items: flex-start!important;
}
	
	.pr-4 {
    padding-right: 20px;
}
	
	#hero {    padding-top: 145px;}
	#hero p br { display:none;}
	
	
		.section-title h2 {    font-size: 37px;
    line-height: 40px;     margin: 0 0 5px 0;}
	.batteryRange .section-title p {    padding: 0 15px;}
	.section-title p br { display: none;}
	.CategoriesDiv {
    width: 100%;
    padding:50px 0;
}
	.CategoriesDiv h4 {     font-size: 32px;   margin-bottom: 50px;}
	.CategoriesDiv ul li {
    width: 195px;
}
	.CategoriesDiv ul {gap: 40px 0;    padding: 0;}
	
	.blackboxInner {padding: 45px 35px;}
	.blackboxInner p {    padding: 0;}
	
	.contact .section-title p {
    color: #000000;
    font-size: 20px;
    padding: 0 0;
}
	
		.ProductDetalis {
    width: 100%;
    background: #f5f5f5;
    padding: 0 0 100px;
}
	
	.productdetaTxt {
    width: 100%;
    padding-left: 0;
    padding-top: 40px;
}
	
	
	

}
@media (max-width: 767px) {
    .hrBtn {
        margin: 0;
        border-radius: 0;
        padding: 10px 20px !important;
    }
    .BannerTXt {
        margin-bottom: 30px;
    }
    #hero .container {
        padding-top: 50px;
    }
    #hero p br { display: none;}
    .search-container .BannerFrm #searchForm ul {
        display: block;
    }
    .search-container .BannerFrm ul li {
        width: 100%;
        margin: 0 0 15px;
        display: block;
    }
    .search-container .BannerFrm ul li:first-child {
        width: 100%;
        margin: 0 0 25px;
    }
    .search-container .BannerFrm ul li:last-child {
        width: 100%;
        margin: 0 0 15px;
    }
    .services .icon-box .icon {
        margin-bottom: 0px;
    }
    .dropdown-container {
        width: 100%;
        margin: 0 0px 15px;
    }
    .services .icon-box {
        margin-bottom: 20px;
    }
    .features .image img {
        width: 100%;
        height: auto;
    }
    .features .image {
        margin: 0 0 30px;
    }
    #footer .footer-top .footer-links {
        margin-bottom: 0px;
    }
    table {
        display: block;
    }
    table > *, table tr, table td, table th {
        display: block;
    }
    table thead {
        display: none;
    }
    table tbody tr {
        height: auto;
        padding: 8px 0;
    }
    table tbody tr td {
        padding-left: 45% !important;
        margin-bottom: 12px;
    }
    #hero h1 {
        font-size: 30px;}
    table tbody tr td:last-child {
        margin-bottom: 0;
    }
    table tbody tr td:before {
        position: absolute;
        font-weight: 700;
        width: 40%;
        left: 10px;
        /*		 top: 0;*/
    }
    table tbody tr td:nth-child(1):before {
        content: "Selection";
    }
    table tbody tr td:nth-child(2):before {
        content: "Make";
    }
    table tbody tr td:nth-child(3):before {
        content: "Model";
    }
    table tbody tr td:nth-child(4):before {
        content: "Action";
    }
    .table td {
        background: #fff !important;
        color: #000 !important;
    }
    .table tbody tr:nth-child(even) {
        background-color: #EEF0FF;
        color: #000;
    }
    .table tbody tr:nth-child(even) td {
        background: #EEF0FF !important;
        color: #000 !important;
    }
    .addbanner {
        padding: 20px 0 20px;
    }
    .BannerFrm {
        padding: 30px 20px;
      
    }
    .services {
        padding-bottom: 20px;
    }
    .viewBtn {
        margin-top: 20px;
    }
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
    .breadcrumbs {
       padding-top: 55px;
        padding-bottom: 40px;
    }
	.faqBox {
    width: 100%;
    margin: 0 auto;
}
	.about {
    padding: 150px 0 50px;
}
	.pr-4 {
    padding-right: 15px;
}
	.about .image img { width: 100%; height: auto;}
	.about2 {
    padding:50px 0;
}
	.about2 .image img { width: 100%; height: auto;}
	.about3 .image img { width: 100%; height: auto;}
	.batteryresult .modal-content {
    padding: 25px;
}
	.section-title h2 {    font-size: 37px;
    line-height: 40px;     margin: 0 0 5px 0;}
	.batteryRange .section-title p {    padding: 0 15px;}
	.section-title p br { display: none;}
	.CategoriesDiv {
    width: 100%;
    padding:50px 0;
}
	.CategoriesDiv h4 {     font-size: 32px;   margin-bottom: 50px;}
	.CategoriesDiv ul li {
    width: 195px;
}
	.CategoriesDiv ul {gap: 40px 0;    padding: 0;}
	.blackboxInner {    padding: 30px 25px;}
	.blackboxInner h3 {    font-size: 25px;}
    .about2 h4 {    font-size: 35px;}
	.blackboxInner h3 br { display:none;}
	.blackboxInner p {padding: 0;     margin-bottom: 15px;}
	.btngrp {    margin-top: 35px;}
	
	.contact .section-title p {
    color: #000000;
    font-size: 20px;
    padding: 0 0;
}
    
    

 #footer .footer-top .social-links a.whatsapp {display: inline-block;}   
    
    
    
    
	
	.productdetaTxt h2 {
    color: #000000;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 35px;
    margin-left: 20px;
}
	
	.SpeBox h5 {
    background: #CA0012;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 0 15px;
    padding: 10px 20px;
    display: inline;
}
	
	.SpeBoxinner {
    width: 100%;
    border: 1px solid #A7A7A7;
    border-radius: 20px;
    padding: 20px;
    margin-top: -15px;
    padding-top: 50px;
}
	
	.SpeBoxinner ul li label {
    width: 100%;
    color: #888888;
    margin-bottom: 5px;
}
	
	.productdetaTxt {
    width: 100%;
    padding-left: 0;
    padding-top: 35px;
}
	
	.ProductDetalis {
    width: 100%;
    background: #f5f5f5;
    padding: 0 0 100px;
}
	.btnBox {    padding: 29px 14px;}
	.InfoBox ul li label {
    width: 100%;
    color: #888888;
		   margin-bottom: 5px;
}
	
	.layoutBox span {
    width: 50%;
}
	
	.layoutBox span img {
    width: 100%;
		height: auto;
}
	
	.modal-header h5 {
		font-size: 23px; }
	#hero {
    overflow: visible;
}
	
	#innerHero h4 {
    font-size: 35px;
}

	    .batteryresult .BannerFrm #searchForm ul {
        display: block;
    }
	
	.batteryresult .BannerFrm ul li:first-child {
        width: 100%;
        margin: 0 0 15px;
    }
	
	 .batteryresult .BannerFrm ul li {
        width: 100%;
        margin: 0 0 15px;
    }
	
	   .batteryresult  .BannerFrm ul li:last-child {
        width: 100%;
        margin: 0 0 15px;
    }
    
     #downloadBtn {    width: 100%;    padding-right: 10px;}
    
       .search-container .BannerFrm #productSearchForm ul {
        display: block;
    }
    
    
    .modal.customModal {
    overflow: scroll !important;
}

	
	
}