/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  color: #428bca;
  text-decoration: none;
}

a:hover {
  color: #9eccf4;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99;
  background: #e70006;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #7d0104;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  /*border-bottom: 1px solid #eee;*/
  font-size: 15px;
  /*height: 80px;*/
  padding: 0 0 10px 0;
  z-index: 999;
}
#topbar .contact-info a {
  line-height: 0;
  color: #444;
  transition: 0.3s;
}
#topbar .contact-info a:hover {
  color: #428bca;
}
#topbar .contact-info i {
  color: #428bca;
  line-height: 0;
  margin-right: 5px;
}
#topbar .contact-info .phone-icon {
  margin-left: 15px;
}
#topbar .social-links a {
  color: #5c768d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}
#topbar .social-links a:hover {
  color: #428bca;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*height: 70px;*/
  background: #fff;
  z-index: 997;
  box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.06);
  padding: 15px 0;
  position: relative;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header .logo h1 a,
#header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}
#header.d-flex .logo-mobile {
  width: 65px;
  height: auto;
  float: left;
  padding: 0 10px 0 0;
  display: none;
  opacity: 0;
}
#header.d-flex.fixed-top .logo-mobile {
  width: 65px;
  height: auto;
  float: left;
  padding: 0 10px 0 0;
  display: block;
  /*animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;*/
  animation: opacity-in 1s forwards;
}
@keyframes opacity-in {
  100% {
    opacity: 1;
  }
}
button {
  border: 0;
  background: transparent;
}
#topbar .contact-info .login-box .user-icon {
  width: 1.4rem;
  color: var(--text-white);
}
#topbar .contact-info .login-mobile {
  float: right;
  padding-top: 7px;
}
/*#topbar .contact-info .login-box svg.user-icon path{
  fill: #c0c0c0;

}*/
#topbar .contact-info .login-box svg.user-icon path:hover {
  fill: #e70006;
}

.scrolled-offset {
  /*margin-top: 70px;*/
  margin-top: 0px;
}

/*--------------------------------------------------------------
# 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: 25px 10px 25px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  margin-right: 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 1401px) {
  .navbar a,
  .navbar a:focus {
    padding: 10px 25px 10px 25px;
  }
}
.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: #e70006;
  background-color: #f2f2f2;
  border-radius: 25px;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar li ul li a {
  margin-right: 10px;
  margin-left: 10px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #e70006;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  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%;
  }
}
/*---Shopping Cart Icon*/
.navbar-right {
  float: right;
  position: absolute;
  right: 40px;
}
.cart-button {
  color: #515783;
  font-size: 27px;
  margin-right: -8px;
  float: right;
  width: 45px;
  height: 35px;
  background-color: #e70006;
  padding: 2px 8px;
  display: inline-table;
  border-radius: 5px;
  margin-top: -5px;
}
.single_add_to_cart_button {
  color: #fff;
  font-size: 27px;
  display: flex;
  align-items: center;
  /* margin-right: -8px;*/
  float: right;
  /* width: 60px; */
  height: 35px;
  background-color: #e70006;
  padding: 2px 8px;
  display: inline-table;
  border-radius: 5px;
  margin-top: -5px;
}
.cart img {
  width: 30px;
  height: 25px;
}
.badge {
  background-color: white;
  border-radius: 10px;
  color: #e70006;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 3px 5px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  position: absolute;
  top: 0px;
  right: 12px;
}
.tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0%;
}
#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.25em;
  padding: 1em;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  #respond
  input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles))
  .woocommerce
  input.button.alt {
  background-color: #e70006;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
}
.cart-collaterals {
  width: 100%;
  float: right;
}
.cart_totals {
  width: 48%;
  float: right;
}

.shopping-cart {
  background: white;
  width: 320px;
  position: absolute;
  top: 38px;
  right: -10px;
  border-radius: 3px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26) !important;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform-origin: right top 0;
  -webkit-transform: scale(0);
  transform-origin: right top 0;
  transform: scale(0);
  z-index: 999999;
}
.shopping-cart.active {
  opacity: 1;
  -webkit-transform-origin: right top 0;
  -webkit-transform: scale(1);
  transform-origin: right top 0;
  transform: scale(1);
}
.shopping-cart .shopping-cart-header {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 15px;
}
.shopping-cart-header .badge {
  background-color: #e70006;
  border-radius: 10px;
  color: white;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  padding: 3px 5px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
}
.shopping-cart .shopping-cart-header .shopping-cart-total {
  float: right;
}
.shopping-cart .shopping-cart-items {
  padding-top: 20px;
}
.shopping-cart .shopping-cart-items li {
  margin-bottom: 18px;
  list-style-type: none;
  margin-left: -20px;
}
.shopping-cart .shopping-cart-items img {
  float: left;
  margin-right: 12px;
  max-width: 70px;
  max-height: 70px;
}
.shopping-cart .shopping-cart-items .item-name {
  display: block;
  font-size: 13px;
  color: #000000;
}
.shopping-cart .shopping-cart-items .item-detail {
  display: block;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000000;
}
.shopping-cart .shopping-cart-items .item-price {
  color: #e70006;
  margin-right: 8px;
  font-size: 11px;
}
.shopping-cart .shopping-cart-items .item-quantity {
  color: #000000;
  font-size: 11px;
}

.shopping-cart:after {
  bottom: 100%;
  left: 89%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: white;
  border-width: 8px;
  margin-left: -8px;
}

.cart-icon {
  color: #e70006;
  font-size: 24px;
  margin-right: 7px;
  float: left;
}

.shopping-cart .button {
  background: #e70006;
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  display: block;
  border-radius: 3px;
  font-size: 16px;
  margin: 25px 0 15px 0;
  text-transform: uppercase;
}
.shopping-cart .button:hover {
  background: #cd0207;
  color: #ffffff;
}
.shopping-cart .button i {
  padding-left: 20px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 35px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background-color: #e70006;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  /*margin-bottom: 10px;*/
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 1000;
}
.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: #1f3548;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #e70006;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  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;
}
.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 {
  color: #e70006;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.fixed-top {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/*---------- Search Bar Style Start ----------*/
.searchbar {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}

.sb-search {
  position: relative;
  /*margin-top: 20px;*/
  width: 0%;
  min-width: 40px;
  height: auto;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden;
  border: none;
}

.sb-search-input {
  /*position: absolute;
    top: 0;
    right: 0px;
    border: 1px solid #959595;*/
  outline: none;
  background: #fff;
  width: 5%;
  height: 40px;
  margin: 0;
  z-index: 10;
  padding: 10px 45px 10px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #2c3e50;
  border-radius: 25px !important;
  border: 1px solid #fff;
}
.sb-search.sb-search-open .sb-search-input {
  width: 100%;
}

/*input[type="search"].sb-search-input {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}*/
.sb-search-input::-webkit-input-placeholder {
  color: #b1b1b1;
  font-size: 13px;
}

.sb-search-input:-moz-placeholder {
  color: #b1b1b1;
  font-size: 13px;
}

.sb-search-input::-moz-placeholder {
  color: #b1b1b1;
  font-size: 13px;
}

.sb-search-input:-ms-input-placeholder {
  color: #b1b1b1;
  font-size: 13px;
}

.sb-icon-search,
.sb-search-submit {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.sb-search-submit {
  background: #fff; /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
  filter: alpha(opacity=0); /* IE 5-7 */
  opacity: 0;
  color: transparent;
  color: red;
  border: none;
  outline: none;
  z-index: -1;
}

.sb-icon-search {
  color: #000;
  /*background: #e67e22;*/
  z-index: 90;
  font-size: 22px;
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  border: none;
}
#topbar .sb-icon-search i {
  color: #000;
}
#topbar .sb-search.sb-search-open .sb-icon-search i {
  color: #fff;
}

.sb-icon-search:before {
  content: "";
}

.sb-search.sb-search-open,
.no-js .sb-search {
  width: 290px;
  /*width: 120%;*/
  border-radius: 25px;
  border: 2px solid #f4f4f4;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
  background: #e70006;
  color: #fff;
  z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
  /*    z-index: 90;*/
}

/* Login Button */
.login-box {
  position: relative;
  margin-top: 20px;
  float: right;
}
.loginbtn {
  background-color: #c0c0c0;
  border-radius: 25px;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  border: none;
  padding: 12px 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-right: 10px;
}
.loginbtn:hover {
  background-color: #e70006;
  color: #fff;
  padding: 12px 15px;
}

/*---- Login Popup Form Modal Box Start ----*/

/*Modal*/
#login-popup h5 {
  font-weight: bold;
  color: #fff;
}
#login-popup .close {
  color: #fff;
  transform: scale(1.2);
}
#login-popup .modal-content {
  font-weight: bold;
  background: linear-gradient(to bottom right, #ff0000, #860000);
}
#login-popup .form-control {
  margin: 1em 0;
}
#login-popup .form-control:hover,
#login-popup .form-control:focus {
  box-shadow: none;
  border-color: #fff;
}
#login-popup .username,
#login-popup .password {
  border: none;
  border-radius: 0;
  box-shadow: none;
  border: 2px solid #ffffff;
  border-radius: 25px;
  padding: 10px;
  font-weight: normal;
  background: transparent;
}
#login-popup .form-control::-webkit-input-placeholder {
  color: #eee;
}
#login-popup .form-control:focus::-webkit-input-placeholder {
  font-weight: bold;
  color: #fff;
}
#login-popup .login {
  padding: 10px 20px;
  border-radius: 25px;
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #fab87f;
  font-weight: bold;
  transition: all 0.5s;
  margin-top: 1em;
}
#login-popup .login:hover {
  background: none;
  color: #e70006;
}

/*---- Login Popup Form Modal Box Start ----*/

/* Flag Dropdown */
.flags-box .btn-flag {
  border-radius: 25px;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #000000;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 0px;
}
.flags-box {
  position: relative;
  /*margin-top: 20px;*/
  float: right;
}
.flags-box input {
  border-radius: 25px;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #959595;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 0px;
}
.flags-box .dropdown-toggle.btn-default {
  border-radius: 25px;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #959595;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.flags-box .dropdown-toggle::after {
  display: inline-block;
  margin-left: -0.745em;
}
.flags-box .bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333 !important;
  outline: 0px auto-webkit-focus-ring-color !important;
  outline-offset: -1px;
}
/*.flags-box .dropdown-toggle:focus .dropdown-menu.open{
  display: block;
  z-index: 999;
}*/
/*.flags-box .dropdown-toggle:focus .open>.dropdown-menu {
    display: block !important;
}*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 130px);
  /*height: calc(100vh - 25px);*/
  padding: 0;
  overflow: hidden;
  background: #000;
}
#hero .carousel-item {
  width: 100%;
  height: calc(100vh - 130px);
  /*height: calc(100vh - 25px);*/
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}
#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(13, 30, 45, 0.6);*/
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
#hero .carousel-content {
  text-align: left;
}
#hero .carousel-content .textbox {
  margin-top: 68px;
}
@media (max-width: 992px) {
  #hero,
  #hero .carousel-item {
    /*height: calc(100vh - 90px);*/
    /*height: calc(100vh - 285px);*/
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 10%;
    opacity: 1;
    margin: 0 11px;
  }
}
#hero h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 600;
  color: #292929;
}
#hero h2 span {
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: 600;
  color: #292929;
}
#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  font-size: 13px;
  color: #292929;
  margin-bottom: 5px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
  opacity: 1;
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 25px;
  line-height: 1;
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  padding: 12px;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #e70006;
}
#hero .btn-get-started:hover {
  background: #880004;
}
#hero-carousel-indicators {
  display: none;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
  }
  #hero h2 span {
    font-size: 24px;
    font-weight: 500;
    color: #000;
  }
  #hero img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    display: block;
  }
  #hero .carousel-content .textbox {
    margin-top: 15px;
  }
  #hero {
    height: calc(100vh - 95px);
  }
  #hero .carousel-item {
    height: calc(100vh - 95px);
  }
}
@media (max-height: 500px) {
  /*#hero, #hero .carousel-item {
    height: 120vh;
  }*/
  #hero h2 {
    font-size: 28px;
    font-weight: 500;
    color: #000;
  }
  #hero h2 span {
    font-size: 24px;
    font-weight: 500;
    color: #000;
  }
  #hero img {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    display: block;
  }
  #hero .carousel-content .textbox {
    margin-top: 15px;
  }
  #hero {
    height: calc(100vh - 95px);
  }
  #hero .carousel-item {
    height: calc(100vh - 95px);
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

.scroll-icon {
  position: relative;
  left: 0;
  right: 0;
  bottom: 60px;
  z-index: 99;
}
.mouse {
  width: 20px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 60px;
  position: relative;
  margin: 0 auto;
}
.mouse::before {
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 1s infinite;
  -webkit-animation: wheel 1s infinite;
}
@keyframes wheel {
  to {
    opacity: 1;
    top: 60px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 1;
    top: 60px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  /*overflow: hidden;*/
}

.section-bg {
  background-color: #f5f9fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #4e5153;
}
.section-title p {
  margin-bottom: 0;
}
.section-title .about-border {
  display: block;
  width: 80px;
  height: 3px;
  background: #e70006;
  margin: 20px auto;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.inner-banner {
  padding: 15px 0;
  background-color: #eaeaea;
  background-image: url("/source/36aed4cd4bc7cc8ef74a4bc7bc907f00/inner-bg.jpg");
  background-size: cover;
  min-height: 142px;
  /* max-height: 180px; */
  background-position: center;
}
.inner-banner h2 {
  font-size: 2.125rem;
  font-weight: 600;
  color: #292929;
  padding: 25px 0;
  line-height: 54px;
}
.inner-banner ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.inner-banner ol li + li {
  padding-left: 10px;
}
.inner-banner ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .inner-banner .d-flex {
    display: block !important;
  }
  .inner-banner ol {
    display: block;
  }
  .inner-banner ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding-bottom: 30px;
}
.about .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}
.about .video-box img {
  padding: 15px 0;
}
.about .section-title p {
  text-align: left;
  font-style: italic;
  color: #666;
}
.about .about-content {
  padding: 40px;
}
.about .icon-box + .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #428bca;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #428bca;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #428bca;
}
.about .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box {
  position: relative;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #428bca;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Our Segments
--------------------------------------------------------------*/
.our-segments {
  /*padding: 40px;*/
}
.our-segments .row {
  overflow: hidden;
}
.our-segments .content-item {
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  /*border-bottom: 1px solid #d9e8f4;*/
  margin: 0px;
  text-align: center;
}
.our-segments .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #9eccf4;
}
.our-segments .content-item h4 {
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin: 20px 0;
  color: #e80007;
  text-transform: uppercase;
}
.our-segments .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .our-segments .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Best Selling Products 14 Nov 2023
--------------------------------------------------------------*/
.best-selling {
  /*padding: 40px;*/
}
.best-selling .row {
  overflow: hidden;
}
.best-selling .content-item {
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  /*border-bottom: 1px solid #d9e8f4;*/
  margin: 0px;
  text-align: center;
}
.best-selling .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #9eccf4;
}
.best-selling .content-item h4 {
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  margin: 20px 0;
  color: #e80007;
  text-transform: uppercase;
}
.best-selling .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .best-selling .content-item {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Latest Blog Post 14 Nov 2023
--------------------------------------------------------------*/
.latest-blogpost {
  /*padding: 40px;*/
}

.latest-blogpost .videobox {
  /*-webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.25);*/
  box-shadow: none;
  border-radius: 0px;
  border: 2px solid rgba(0, 0, 0, 0.25);
}
.latest-blogpost .post > * {
  z-index: 4;
  position: relative;
}
.latest-blogpost .post__meta {
  grid-area: footer;
  align-self: start;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: normal;
  color: #393939;
  padding: 5px 5px;
}
.latest-blogpost .post__meta a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: normal;
  color: #393939;
  text-decoration: none;
}
.latest-blogpost .post__meta a:first-child:before {
  content: "\ea19";
  margin-left: 0;
}
.latest-blogpost .post__meta a:first-child:after {
  content: "";
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Customer Satisfaction
--------------------------------------------------------------*/
.testimonials {
  padding-bottom: 30px;
  direction: ltr;
}

.custom-testimonials {
  position: relative;
  margin-top: 0px;
}
.custom-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
.custom-testimonials .owl-stage-outer {
  padding: 5px 0;
}
.custom-testimonials .owl-nav {
  display: none;
}
.custom-testimonials .owl-dots {
  text-align: center;
}
.custom-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #9fa3a7;
  border: 1px solid #9fa3a7;
  margin: 0 5px;
}
.custom-testimonials .owl-dots .active {
  box-shadow: none;
}
.custom-testimonials .owl-dots .active span {
  background: #e70006;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
  border: 3px solid #e70006;
}
.custom-testimonials .card {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 #e70006;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}
.custom-testimonials .card .card-img-top {
  max-width: 100%;
  margin: 15px auto 0;
  width: 495px;
  height: 335px;
}
.custom-testimonials .card h5 {
  font-family: "Montserrat", sans-serif;
  color: #e70006;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}
.custom-testimonials .card h5 span {
  font-size: 13px;
  color: #666666;
}
.custom-testimonials .card p {
  font-size: 15px;
  color: #ffffff;
  padding-bottom: 5px;
  margin-bottom: 3px;
}
.custom-testimonials .active {
  /* opacity: 1; */
  transition: all 0.3s;
}
.custom-testimonials .center {
  opacity: 1;
}
.custom-testimonials .center h5 {
  font-size: 16px;
}
.custom-testimonials .center h5 span {
  font-size: 13px;
}
.custom-testimonials .center .card-img-top {
  max-width: 100%;
  width: 495px;
  height: 335px;
}

@media (max-width: 767px) {
  .custom-testimonials {
    margin-top: 20px;
  }
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}

/*--------------------------------------------------------------
# Featured Product
--------------------------------------------------------------*/
.featured-product {
}
.featured-product h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.188rem;
  font-weight: 600;
  margin-bottom: 55px;
  color: #000000;
}
.featured-product .btn-seeall {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #000000;
}
.featured-product .divder {
  width: 1px;
  height: 100%;
  background-color: #f2f2f2;
  float: left;
  position: relative;
  left: 0;
  margin-right: 10px;
}
#hero .btn-seeall:hover {
  background: #1c5c93;
}
.featured-product .faq-item {
  margin-bottom: 40px;
}
.featured-product .faq-item h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f3548;
}

/* --- Slider Start ---*/

.slider {
  /*max-width: 1200px;*/
  margin: 0 auto;
  overflow-x: hidden;
}

.swiper-container {
  padding-bottom: 20px;
}

.swiper-scrollbar {
  background: #d6d6d6;
}

.swiper-container-horizontal > .swiper-scrollbar {
  border-radius: 2px;
  height: 5px;
  width: 200px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-wrapper img {
  /*width: 100%;*/
  text-align: center;
}
.featured-product .swiper-slide {
  text-align: center !important;
}
.swiper-wrapper .swiper-slide img {
  /*width: 100%;*/
  display: block;
  text-align: center;
  margin: 0px auto;
}
.swiper-slide .title {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3a3d3f;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
  height: 40px;
}
.swiper-slide .price {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
  padding: 0 10px;
}
.swiper-slide .crossprice {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #838d8f;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
  padding: 0 10px;
  text-decoration: line-through;
}
.swiper-slide .packof {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
  padding: 0 10px;
}
.swiper-horizontal > .swiper-scrollbar {
  position: relative;
  left: 0 !important;
  bottom: -20px;
  z-index: 50;
  height: 5px;
  width: 100% !important;
}
.swiper-slide .btn-red {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 15px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #e70006;
}
.swiper-slide .btn-red:hover {
  background: #cd0207;
  color: #fff;
}

/*--------------------------------------------------------------
# Latest Blogs
--------------------------------------------------------------*/
.blog {
  padding-bottom: 30px;
  padding-top: 30px;
}
.blog .blog-item {
  margin-bottom: 40px;
}
.blog .blog-item h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f3548;
}

.blog .section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0px 0;
  color: #000000;
}
.blog-section-bg {
  background-color: #d0d0d0;
}

.blog {
  padding: 0px;
}
.blog .blog-item {
  margin-bottom: 40px;
}
.blog .blog-item h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f3548;
}
.blog-section-bg {
  background-color: #d0d0d0;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: #ffffff;
  fill: #ffffff;
}

.background {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("/source/2835501707df70cd49e0883078910606/blog-bg.png");
  background-size: cover;
  padding-bottom: 60px;
  padding-top: 60px;
  overflow-x: hidden;
  /*opacity: 0.6;*/
}
/*.background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, #000000 100%);
  opacity: 0.9;
}*/
.background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.item-bg {
  width: 300px;
  height: 280px;
  position: absolute;
  top: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s;
  left: -30px;
}
.item-bg.active {
  left: 0;
  top: 0;
  opacity: 1;
  display: none;
}

.news-slider {
  z-index: 2;
  /*max-width: 1280px;*/
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 20px;
  opacity: 1;
}
@media screen and (max-width: 1300px) {
  .news-slider {
    /* max-width: 1024px;*/
  }
}
@media only screen and(max-width: 1024px) {
  .news-slider {
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .news-slider {
    margin-top: 45px;
    /*width: 375px;*/
    width: 425px;
  }
}
.news-slider__wrp {
  display: flex;
  /*gap: 4px;*/
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.news-slider__item {
  width: 380px;
  height: 435px;
  flex-shrink: 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .news-slider__item {
    width: 320px;
  }
}
.news-slider__item.swiper-slide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  /*background-color: rgba(255,255,255,0.4);
  border-radius: 10px;*/
}
.news-slider__item.swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
  /* background-color: rgba(255, 255, 255, 1); */
  border-radius: 10px;
}
.news-slider__item.swiper-slide-prev,
.news-slider__item.swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}
.news-slider__ctr {
  position: relative;
  z-index: 12;
  width: 80%;
  margin: 0 auto;
}
.news-slider__arrow {
  background: #e70006;
  border: none;
  display: inline-flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 12;
  cursor: pointer;
  outline: none !important;
}
.news-slider__arrow:focus {
  outline: none !important;
}
.news-slider__arrow .icon-font {
  display: inline-flex;
}
.news-slider__arrow.news-slider-prev {
  left: 15px;
  transform: translateY(-50%);
}
.news-slider__arrow.news-slider-next {
  right: 15px;
  transform: translateY(-50%);
}
.news-slider__pagination {
  text-align: center;
  margin-top: 50px;
}
.news-slider__pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: rgba(0, 0, 0, 1);
  opacity: 0.8;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.news-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e70006;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .news-slider__pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}
.news__item {
  padding: 20px;
  color: #000;
  border-radius: 10px;
  display: block;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  margin: 10px;
  height: 425px;
}
@media screen and (min-width: 800px) {
  .news__item:hover {
    color: #222222;
    transition-delay: 0.1s;
  }
  .news__item:hover .news-date,
  .news__item:hover .news__title,
  .news__item:hover .news__txt {
    opacity: 1;
    transition-delay: 0.1s;
  }
  .news__item:hover .news__img {
    box-shadow: none;
  }
}
.news__item.active {
  color: #222222;
}
.news__item.active .news-date,
.news__item.active .news__title,
.news__item.active .news__txt {
  opacity: 1;
}
.news__item.active .news__img {
  box-shadow: none;
}
@media screen and (max-width: 992px) {
  .news__item {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .news__item {
    padding: 20px;
  }
}
.news-date {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 4px solid #e70006;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
  .news-date {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    padding-bottom: 0;
  }
}
.news-date__title {
  display: block;
  font-size: 32px;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (max-width: 576px) {
  .news-date__title {
    margin-right: 10px;
  }
}
.news-date__txt {
  font-size: 16px;
}
.news__title {
  font-size: 25px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 10px;
  margin-bottom: 15px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 576px) {
  .news__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.news__txt {
  margin: 10px 0;
  line-height: 1.6em;
  font-size: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.news__img {
  border-radius: 10px;
  box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
  height: 200px;
  margin-top: 30px;
  width: 100%;
  transition: all 0.3s;
  transform-origin: 0% 0%;
  position: relative;
  /* bottom: 50px;*/
}
@media screen and (max-width: 576px) {
  .news__img {
    height: 180px;
    margin-top: 20px;
  }
}
.news__img img {
  max-width: 100%;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}

.swiper-slide-active {
  background-color: transparent !important;
  border-radius: 20px;
}
.swiper-slide-active .news__item {
  color: #000;
}

/*--------------------------------------------------------------
# Testimonials 
--------------------------------------------------------------*/

.testi-section-bg {
  background-color: #222222;
}

.testimonials .section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.188rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
  width: 100%;
}
.contact .info-box i {
  font-size: 32px;
  color: #428bca;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #9eccf4;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #428bca;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type="submit"] {
  background: #428bca;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type="submit"]:hover {
  background: #629fd3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #2c2c2c;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
  font-weight: bolder;
}
#footer .footer-top {
  background: #2c2c2c;
  border-top: 1px solid #616161;
  border-bottom: 1px solid #616161;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Open Sans", sans-serif;
  color: #c8c8c8;
}
#footer .footer-top .footer-info p a {
  color: #c8c8c8;
  transition: 0.3s;
}
#footer .footer-top .footer-info p a:hover {
  color: #ffffff;
}
#footer .social-links.mt-3 {
  display: flex;
}
#footer .footer-top .social-links a {
  font-size: 24px;
  display: inline-block;
  /*background: #768fa6;*/
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  /*background: #428bca;*/
  font-size: 20px;
  color: #e80007;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 2px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #9eccf4;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  /* padding: 10px 0; */
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #c8c8c8;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #e80007;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #428bca;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #5295ce;
}
#footer .footer-bottom /* Made on 14 nov 2023 */ {
  background: #404040;
  border-top: 1px solid #616161;
  border-bottom: 1px solid #616161;
  padding: 10px 0 10px 0;
}
#footer .copyright {
  text-align: center;
  padding-top: 10px;
  color: #fff;
}
#footer .copyright a {
  text-align: center;
  color: #fff;
  font-size: 14px;
}
#footer .copyright a:hover {
  text-align: center;
  color: #e80007;
  font-size: 14px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a {
  color: #9eccf4;
}

/*--------------------------------------------------------------
# Modal Box
--------------------------------------------------------------*/

.icon-feedback {
  position: fixed;
  /*right:0;*/
  left: 35px;
  bottom: 25px;
  padding: 20px;
  border-radius: 50%;
  font-size: 0.8em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background-color: #e70006;
  color: #fff;
  z-index: 999999999;
}
.icon-feedback img {
  width: 35px;
  height: 35px;
}

.modal-box {
  display: none;
  position: absolute;
  z-index: 1000;
  width: 98%;
  background: white;
  border-bottom: 1px solid #aaa;
  border-radius: 4px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-clip: padding-box;
}

.modal-box header,
.modal-box .modal-header {
  padding: 1.25em 1.5em;
  border-bottom: 1px solid #ddd;
}

.modal-box header h3,
.modal-box header h4,
.modal-box .modal-header h3,
.modal-box .modal-header h4 {
  margin: 0;
}

.modal-box .modal-body {
  padding: 2em 1.5em;
}

.modal-box footer,
.modal-box .modal-footer {
  padding: 1em;
  border-top: 1px solid #ddd;
  background: rgba(0, 0, 0, 0.02);
  text-align: right;
}

.modal-overlay {
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
}
.modal-title {
  color: #e70006;
  font-size: 28px;
  font-weight: 600;
}
.modal-body p,
.modal-body label {
  color: #000;
  font-size: 15px;
}
hr {
  width: 100%;
  height: 2px !important;
  background: #6d6d6d;
  margin: 10px auto;
}
.modal-body textarea {
  width: 100%;
  color: #000;
  font-size: 15px;
  border: 2px solid #000;
  padding: 5px;
}

a.close {
  line-height: 1;
  font-size: 1.5em;
  position: absolute;
  top: 5%;
  right: 2%;
  text-decoration: none;
  color: #bbb;
}

a.close:hover {
  color: #222;
  -webkit-transition: color 1s ease;
  -moz-transition: color 1s ease;
  transition: color 1s ease;
}
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-item {
  width: 50px;
  height: 40px;
  background-color: #ffffff;
  border: 2px solid #000;
  cursor: pointer;
  text-align: center;
  padding: 5px 10px;
  margin: auto 5px;
}
.rating-item.active,
.rating-item.active ~ *,
.rating-item:hover,
.rating-item:hover ~ * {
  background-color: #ff0000;
  border: 2px solid #000;
  color: #fff;
}

@media (min-width: 32em) {
  .modal-box {
    width: 70%;
  }
}

/*--------------------------------------------------------------
# All Buttons
--------------------------------------------------------------*/
.btn-red-force {
  opacity: 1 !important;
  height: 50px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  letter-spacing: 1px !important;
  display: inline-block !important;
  padding: 18px 25px !important;
  border-radius: 35px !important;
  transition: 0.5s !important;
  line-height: 1 !important;
  margin: 10px !important;
  color: #fff !important;
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
  border: 0 !important;
  background: #e70006 !important;
}
.btn-red {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 25px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #e70006;
}
.btn-red:hover {
  background: #cd0207;
  color: #fff;
}

.btn-greeyy {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 25px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #797979;
}
.btn-greeyy:hover {
  background: #797979;
  color: #fff;
}

.btn-grey {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 25px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #797979;
  border: 3px solid #797979;
}
.btn-grey:hover {
  background: #ffffff;
  border: 3px solid #797979;
  color: #797979;
}

.btn-bordered {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #e80007;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #ffffff;
  border: 2px solid rgba(255, 0, 0, 0.6);
}
.btn-bordered:hover {
  background: #e80007;
  color: #ffffff;
}
.btn-bordered-black {
  /*width: 94%;*/
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px 0;
  color: #000000;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.6);
}
.btn-bordered-black:hover {
  background: #000000;
  color: #ffffff;
}

.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  /* box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);*/
  box-shadow: none;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb-box {
  background-color: #ffeeee;
  border-radius: 6px;
  display: block;
  padding: 2px 5px;
}
.breadcrumb {
  padding: 10px;
  margin: 0;
}
.breadcrumb-box .breadcrumb-item {
  color: #000000;
  font-size: 13px;
}
.breadcrumb-box .breadcrumb-item a {
  color: #000000;
  font-size: 13px;
}
.breadcrumb-box .breadcrumb-item.active {
  color: #e70006;
}

/*--------------------------------------------------------------
# About Us Page
--------------------------------------------------------------*/

.content-section {
  width: 100%;
  display: block;
  padding: 2px 5px;
}
.content-section h2 {
  font-size: 1.75rem; /*28px*/
  font-weight: 600;
  color: #000000;
  padding: 10px 0;
  margin: 0;
}
.content-section p {
  font-size: 0.875rem; /*14px*/
  color: #3a3a3a;
  padding: 5px 0;
  margin: 0;
  line-height: 24px;
}
.content-section p a {
  font-size: 0.875rem; /*14px*/
  color: #e70006;
  text-decoration: none;
}
.content-section h4 {
  /*font-family: 'Open Sans', sans-serif;*/
  font-size: 1rem; /*16px*/
  color: #000000;
  font-weight: 700;
  padding: 5px 0;
  margin: 0;
  line-height: 24px;
}
.content-section li {
  font-size: 0.875rem; /*14px*/
  color: #3a3a3a;
  padding: 3px 0;
  margin: 0;
  line-height: 18px;
}
.coprofile-bg {
  background-color: #f5f5f5;
}
.imgwidth {
  width: 100%;
  margin: 10px auto;
}
ol.k {
  list-style-type: lower-alpha;
}

/*---------- Company History ----------*/

.company-history {
  background-image: url("/source/70903e0a60b5582a88e0eed2c8128d12/company-history.jpg");
  background-position: cover;
}

.company-history h2 {
  font-size: 2.188rem;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
  text-align: center;
}
.company-history .img-fullwidth {
  width: 100%;
}

/*---------- Company Awards ----------*/

.company-awards h2 {
  font-size: 2.188rem;
  font-weight: 600;
  color: #4e5153;
  padding: 10px 0;
  margin: 0;
  text-align: center;
}
.nav-tabs {
  border-bottom: 2px solid #e70006;
}
.company-awards li.nav-item {
  width: 32.6%;
  margin: 0 3px;
}
.nav-link {
  padding: 0.5rem 0rem;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #e70006;
  border-color: #e70006 #e70006 #e70006;
  border-radius: 0px;
  margin: 0;
  /* padding: 0; */
  width: 100%;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: #dedede;
  border: 1px solid transparent;
  border-radius: 0px;
  margin: 0;
  /* padding: 0; */
  width: 100%;
  color: #000000;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.tab-content > .active {
  border: 1px solid #e70006;
}
.tab-pane {
  padding: 15px;
}

.company-awards .tab-content > .tab-pane .swiper-slide-active {
  border-radius: 0px;
}
.company-awards .tab-content > .tab-pane .swiper-slide {
  text-align: center !important;
  margin: 0px auto;
  border: 2px solid #f3f3f3;
}
.company-awards .tab-content > .tab-pane .swiper-slide hr {
  width: 100%;
  height: 3px !important;
  background: #e80007;
  margin: 3px auto;
  opacity: 1;
}
.company-awards .tab-content > .tab-pane .swiper-slide img {
  /*width: 100%;*/
  display: block;
  text-align: center;
  margin: 0px auto;
}
.company-awards .swiper-pagination {
  text-align: center;
  margin-top: 50px;
}
.company-awards .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #e70006;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.company-awards .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e70006;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .company-awards .swiper-pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}

.company-awards .swiper-pagination-bullet:only-child {
  display: block !important;
}
.company-awards .swiper-pagination-lock {
  display: block;
}
.company-awards .swiper-pagination {
  position: relative;
}

/*.swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 10px;
  display: inline-block;
  background: #fff;
  opacity: 0.2;
  margin: 0 5px;
  border-radius: 20px;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition-delay: 0.5s, 0.5s, 0s;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 100px;
  transition-delay: 0s;
}
@media screen and (max-width: 576px) {
  .swiper-pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
}*/

/*---------- Main & Sub Category Page ----------*/

.maincate-container {
  width: 100%;
  display: block;
  padding: 10px 0;
}
.maincate-container .container {
  padding-left: 0px;
  padding-right: 0px;
}
.maincatebox {
  border: 3px solid #efefef;
  border-radius: 6px;
}
.maincatebox:hover {
  border: 3px solid #e70006;
  -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.25);
}
.image-box {
  /* margin-bottom: 20px;*/
  text-align: center;
}

.image-box .body {
  padding: 0px;
}
.image-box .body img {
  width: 80%;
}
.image-box .body-title {
  padding: 10px;
  background-color: #f2f2f2;
}
.maincatebox:hover .image-box .body-title h3 {
  font-size: 1.063rem;
  color: #e70006;
}
.image-box .body-title h3 {
  margin-top: 0;
  text-align: center;
  line-height: 20px;
  font-size: 1.063rem;
  /*min-height:55px;*/
  /*max-height:75px;*/
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /*   overflow: hidden; */
  text-overflow: ellipsis;
  padding: 0;
}
.image-box .body p:last-child {
  margin-bottom: 0;
}

.image-box.style-4 {
  border: none;
}

.image-box.style-3-b {
  display: block;
  margin-bottom: 40px;
}

.image-box.style-3-b .body {
  padding: 10px 0;
}

.image-box--shadowed {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.image-box--shadowed:hover {
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Medium devices (tablets, laptops, smartphones 768px and up) */
@media (min-width: 768px) {
  .image-box.style-3-b .body {
    padding: 0;
  }
}

/* Medium devices (desktops, tablets less than 991px) */
@media (max-width: 991px) {
  .image-box.style-4 {
    margin-bottom: 30px;
  }
}

.white-bg {
  background-color: #ffffff;
}

.maincatebox .btn-bordered {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 35px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #000000;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  /*background: #ffffff;*/
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 425px) {
  .maincatebox .btn-bordered {
    padding: 5px 20px; /* Set padding to 5px top and bottom, 20px left and right */
  }
}

.maincatebox:hover .btn-bordered {
  color: #e80007;
  /*background: #ffffff;*/
  background: transparent;
  border: 2px solid rgba(255, 0, 0, 0.6);
}
.maincatebox:hover .btn-bordered:hover {
  background: #e80007;
  color: #ffffff;
}

/*---------- Product Sidebar Accordian Menu -------------*/

/*========== NEW ACCORDIAN ===============*/

.accordion-container {
  width: 100%;
  margin: 0 auto;
}

.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  cursor: pointer;
  padding: 10px 15px;
  background: #e70006;
  text-decoration: none;
  color: #ffffff;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open {
  background: #999;
  color: #fff;
}
.accordion-container .accordion-title::before,
.accordion-container .accordion-title::after {
  /*content: "";
  position: absolute;
  top: 25px;
  right: 25px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #fff;*/
  content: "";
  position: absolute;
  /*top: 50%;*/
  top: 18px;
  transform: translateY(-50%);
  right: 15px;
  width: 15px;
  height: 2px;
  background: #ffffff;
}
.accordion-container .accordion-title::after {
  transform: rotate(-90deg);
  transition: all 0.5s ease;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(0deg);
}

.accordion-container .accordion-title.open::after {
  /*content: "";
  position: absolute;
  top: 15px;
  border: 8px solid transparent;
  border-bottom-color: #fff;*/
  transform: rotate(180deg);
  transition: all 0.5s ease;
}
.accordion-content {
  padding: 10px;
  border: 1px solid #999;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: -15px;
}
.accordion-content ul {
  width: 100%;
  /*border-top: 1px solid #999;
    border-right: 1px solid #999;
    border-left: 1px solid #999;*/
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

/*CSS for CodePen*/

/*--------- Product Image Gallery ----------*/

#product-detail .product-left.mb-5.mb-lg-0 {
  width: 100%;
  overflow: hidden;
}
/*#product-detail .swiper-wrapper .swiper-slide {
    background-color: #ffffff;
    border-radius: 0px;
    border: 4px solid #e1e1e1;
}

#product-detail .product-thumbs .swiper-slide img {
  border:2px solid #e1e1e1;
  object-fit: cover;
  cursor: pointer;
}
#product-detail .product-thumbs .swiper-slide-active img {
  border-color: #bc4f38;
}
#product-detail .product-slider .swiper-button-next:after,
#product-detail .product-slider .swiper-button-prev:after {
    font-size: 20px;
    color: #000;
    font-weight: bold;
}*/

/*------------Product Detail Start ---------------*/

.product-details-box {
  width: 100%;
  display: inline-block;
}

.product-details-box h2 {
  font-size: 1.5rem;
  color: #e70006;
  font-weight: 700;
  margin: 0.3rem 0 0.3rem 0;
  padding: 0px;
}
.product-details-box h2 span {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 700;
}
.product-details-box p {
  font-size: 1.125rem;
  color: #000000;
  font-weight: normal;
  line-height: 25px;
  padding: 0px;
}
.product-details-box p.instock {
  font-size: 0.875rem;
  color: #4c4c4c;
  font-weight: normal;
  line-height: 25px;
  padding: 5px 0px 0;
}

.product-details-box p.outofstock {
  font-size: 0.875rem;
  color: #e70006;
  font-weight: bold;
  line-height: 25px;
  padding: 5px 0px 0;
}

.ratingbox {
  width: 100%;
  display: inline-block;
  padding: 5px 0;
}
.star-icon {
  color: #ccc;
  font-size: 24px;
  vertical-align: middle;
}

.star-icon.filled {
  color: #f7a115;
}
/*-- Star Rating --*/
.srating {
  position: relative;
  width: 116.55px;
  padding: 0;
  unicode-bidi: bidi-override;
  color: #c5c5c5;
  font-size: 28px;
}
.rating__top {
  position: absolute;
  display: block;
  top: 0;
  left: 0px;
  padding: 0;
  color: gold;
  z-index: 1;
  height: 31px;
  overflow: hidden;
}
.rating__top--effect {
  color: #ffef99;
}
.rating__top--transitioneff {
  transition: 0.2s ease;
}
.rating__top--zindex {
  z-index: 10;
}
.rating__bottom {
  color: silver;
  z-index: 0;
}
.rating--big {
  /*width: 199.9px;
  font-size:20px;*/
  width: 102.9px;
  font-size: 20px;
  /* display: block; */
  margin: 0;
  float: left;
}
.rating--big .rating__top {
  height: 51px;
}
.rating--select {
  cursor: pointer;
}
/*-- Star Rating End --*/

.reviews-text {
  color: #555555;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  margin-left: 5px;
  vertical-align: middle;
}
.reviews-text a {
  color: #111111 !important;
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline !important;
  margin-left: 5px;
  vertical-align: middle;
}
.product-price {
  width: 100%;
  margin-top: 4px;
  position: relative;
}
.product-price p {
  display: inline-block;
  font-family: "Montserrat", serif;
  margin: 0 0 0 0px;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-decoration: line-through;
}
.product-price span {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: 24px;
  color: #e70006;
  font-weight: 700;
  padding: 0 22px;
}
.product-price span.savetext {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: 16px;
  color: #5c5c5c;
  font-weight: 400;
  padding: 7px 20px;
}

/* ------ Quantity Input Start ------ */

input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
.body input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pt_Quantity {
  display: inline-block;
  margin: 0 0 10px;
  position: relative;
  width: 150px;
}
.pt_Quantity input {
  color: #443017;
  border-radius: 2px;
  background-color: #ffffff;
  border: solid 1px #b7b7b7;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  min-width: 50px;
  height: 36px;
  float: left;
  display: block;
  padding: 0 15px 0 2px;
  margin: 0;
  text-align: center;
  width: 70px;
}
.pt_Quantity input:focus {
  outline: 0;
}
.pt_Quantity .pt_QuantityNav {
  float: left;
  position: relative;
  height: 36px;
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #b7b7b7;
  width: 15px;
  text-align: center;
  color: #333;
  font-size: 14px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 1.1;
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton:active {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton.pt_QuantityUp {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #b7b7b7;
}
.pt_Quantity .pt_QuantityNav .pt_QuantityButton.pt_QuantityDown {
  position: absolute;
  bottom: 0px;
  height: 50%;
}

.quantitybox {
  width: 100%;
  margin-top: 10px;
  padding: 5px 0;
  position: relative;
}
.pt_Quantity label {
  float: left;
  padding: 0 16px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
}

.colorelasticbox {
  width: 100%;
  margin-top: 10px;
  padding: 5px 0;
  position: relative;
}
.colorelasticbox input,
.colorelasticbox select {
  color: #443017;
  border-radius: 2px;
  background-color: #ffffff;
  border: solid 1px #b7b7b7;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  height: 36px;
  float: left;
  display: block;
  padding: 0px 7px 0 7px;
  margin: 0;
  text-align: left;
  width: 65%;
}
.colorelasticbox label {
  float: left;
  padding: 0 16px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 35px;
}

.featurelistbox {
  width: 100%;
  padding: 5px 0;
  position: relative;
}
.featurelistbox .shortdes ul {
  /*list-style: none !important; */
}
.featurelistbox .shortdes ul li {
  font-family: "Open Sans", sans-serif;
  text-align: left;
  font-size: 0.813rem;
  line-height: 16px;
  color: #555555;
  margin-left: -25px;
  padding: 2px 0;
}
.featurelistbox .shortdes ul li span {
  font-family: "Open Sans", sans-serif;
  font-size: 0.813rem;
  color: #555555;
  font-weight: 800;
}
.featurelistbox .shortdes p {
  font-family: "Open Sans", sans-serif;
  text-align: left;
  font-size: 0.813rem;
  line-height: normal;
  color: #555555;
  margin-left: -25px;
  padding: 2px 0;
  margin-top: 5px;
}
.featurelistbox .shortdes a.downloadcatlogue {
  font-family: "Montserrat", sans-serif;
  text-align: left;
  font-size: 0.813rem;
  line-height: normal;
  font-weight: 700;
  color: #e70006;
  padding: 2px 5px;
  margin-top: 5px;
}

#exTab1.product-info .tab-content {
  color: white;
  background-color: #428bca;
  padding: 5px 15px;
}

/* remove border radius for the tab */

#exTab1.product-info .nav-pills > li > a {
  border-radius: 0;
}

/*----- NEW Product Slider ------*/

.outer {
  margin: 0 auto;
}
#big .item {
  padding: 0px 0px;
  margin: 2px;
  color: #fff;
  border-radius: 0px;
  border: 4px solid #e1e1e1;
  text-align: center;
}
#thumbs .item {
  background: #f3f3f3;
  height: auto;
  padding: 0px;
  margin: 10px 2px 2px;
  color: #fff;
  border-radius: 0px;
  border: 1px solid #e1e1e1;
  text-align: center;
  cursor: pointer;
}
#thumbs .item h1 {
  font-size: 18px;
}
#thumbs .current .item {
  border: 1px solid #e70006;
}
.owl-theme .owl-nav [class*="owl-"] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}
#big.owl-theme {
  position: relative;
}
#big.owl-theme .owl-next,
#big.owl-theme .owl-prev {
  /*background:#333; */
  color: #000;
  width: 22px;
  line-height: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%;
}
#big.owl-theme .owl-prev {
  left: 10px;
}
#big.owl-theme .owl-next {
  right: 10px;
}
#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
  /*background:#333;*/
  color: #000;
}

/*------------Video & Event Pages Start ---------------*/

.videobox {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.videobox:hover {
  -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.45);
}
.videobox .vidbody {
  padding: 0px;
  position: relative;
}
.videobox .vidbody img {
  width: 100%;
  text-align: center;
  position: relative;
}
.videobox .vidbody h3 {
  height: 70px;
  text-align: left;
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  padding: 15px 15px;
}
.video-icon-center {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  /*transform: translate(-50%,-50%);*/
  transform: translate(-50%, -100%);
  z-index: 99;
}
.videobox .vidbody h2 {
  text-align: left;
  font-size: 0.938rem;
  line-height: normal;
  color: #000000;
  padding: 10px 15px 5px;
  height: 50px;
  min-height: 50px;
  /*max-height: 75px;*/
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.videobox .vidbody h2 a {
  font-size: 0.938rem;
  line-height: normal;
  color: #000000;
  text-decoration: none;
}
.videobox .vidbody h2 a:hover {
  color: #e70006;
  text-decoration: none;
}
.videobox .vidbody p {
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: normal;
  color: #000000;
  padding: 5px 15px;
  margin-bottom: 10px;
  height: 50px;
  min-height: 79px;
  /* max-height: 75px; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post {
  padding: 10px 0;
  text-align: center;
}

.post > * {
  z-index: 4;
  position: relative;
}
.post__meta {
  grid-area: footer;
  align-self: start;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: normal;
  color: #393939;
  padding: 5px 15px;
}
.post__meta a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: normal;
  color: #393939;
  text-decoration: none;
}
.post__meta a:first-child:after {
  content: "|";
  margin-left: 15px;
}
.vidbody:hover .post .btn-bordered-black {
  color: #e80007;
  /*background: #ffffff;*/
  background: transparent;
  border: 2px solid rgba(255, 0, 0, 0.6);
}
.vidbody .post .btn-bordered-black:hover {
  border: 2px solid rgba(255, 0, 0, 0.6);
  background: #e80007;
  color: #ffffff;
}

/*.maincate-container input[type="date" i] {
    align-items: center;
    display: inline-flex;
    font-family: monospace;
    padding-inline-start: 1px;
    cursor: default;
    overflow: hidden;
    padding: 0px;
}*/

/* Removes the clear button from date inputs */
input[type="date"]::-webkit-clear-button {
  display: none;
  /*background-color: #e70006;*/
}

/* Removes the spin button */
input[type="date"]::-webkit-inner-spin-button {
  display: none;
  /* background-color: #e70006;*/
}

/* Always display the drop down caret */
input[type="date"]::-webkit-calendar-picker-indicator {
  color: #2c3e50;
}

/* A few custom styles for date inputs */
.maincate-container input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color: #95a5a6;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  border: 1px solid #ecf0f1;
  background: #ffffff;
  padding: 10px;
  display: inline-block !important;
  visibility: visible !important;
  border-radius: 5px;
}

input[type="date"],
focus {
  color: #95a5a6;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

/*-------- Pagination Style --------*/

.pagi-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.pagination {
  display: flex;
  flex-direction: row;
  background-color: #e0e0e0;
  border-radius: 25px;
  width: auto !important;
  padding: 4px;
}
.pagination-item {
  margin-right: 8px !important;
  /*border: solid 1px #ececec;*/
  border-radius: 25px;
  color: #000;
}
.pagination-item a {
  padding: 11px 16px 11px 16px;
  display: inline-block;
  transition: 0.2s all;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  border-radius: 25px;
}
.pagination-item a:hover {
  background-color: #e70006;
  color: #fff;
  border-radius: 25px;
}

.pagination-item.pg-active a {
  background-color: #e70006;
  color: #fff !important;
  border-radius: 25px;
}
.pagination-item a.disabled {
  color: #6c757d;
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
.pagination-item a.active {
  background-color: #e70006;
  color: #fff;
  border-radius: 25px;
}
.pagination-item span {
  padding: 11px 16px 11px 16px;
  display: inline-block;
  transition: 0.2s all;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background-color: #e70006;
  border-radius: 25px;
}
/*-------- Pagination Style END --------*/

/*------------ BLOG DETAIL PAGE START ------------*/

.blog-container {
  width: 100%;
  display: block;
  padding: 10px 0;
}

.cs-blog {
  margin-bottom: 30px;
}
.cs-blog h2 {
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 29px;
  margin: 0 0 11px;
  position: relative;
  text-transform: uppercase;
}
.cs-blog::after {
  clear: both;
  content: "";
  display: block;
}
ul.blog-list {
  list-style: outside none none;
  margin: -30px 0 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.blog-list.blog-slide {
  margin: 0;
}
.blog-list.blog-slider {
  margin: 0;
}
ul.blog-list li {
  float: left;
  list-style: outside none none;
  margin: 30px 0 0;
}
.blog-slide .slick-list {
  margin: 0 -15px;
}
ul.blog-list.blog-slide li {
  margin-bottom: 10px;
  margin-top: 0;
}
ul.blog-list li:first-child {
  border: 0 none;
}
ul.blog-list li figure {
  overflow: hidden;
  position: relative;
}
ul.blog-list li figure img {
  width: 100%;
}
ul.blog-list li .cs-text {
  border: 1px solid #f0f0f0;
  overflow: hidden;
  padding: 15px 20px;
}

.cs-blog-detail .cs-text .post-option {
  border-top: 1px solid #f0f0f0;
  float: left;
  padding-top: 10px;
  width: 100%;
}
.cs-blog-detail .cs-text .post-option span a {
  color: #777;
}
.widget ul.blog-list li .cs-text {
  height: auto;
  margin: 0;
  min-height: inherit;
  padding: 9px 0 13px;
}
ul.blog-list li .cs-text span {
  color: #8b919e;
  display: inline-block;
  font-size: 12px;
  line-height: 19px;
}
ul.blog-list li .cs-text p {
  margin-bottom: 12px;
}
ul.blog-list li .cs-text h5 {
  border-bottom: 1px solid #fff;
  font-size: 15px;
  margin: 0;
  min-height: 56px;
  padding: 0 0 5px;
}
ul.blog-list li .cs-text h5 a {
  color: #292c33;
}
ul.blog-list li .cs-text .readmore {
  float: right;
  font-size: 11px;
  line-height: 20px;
  padding-top: 6px;
  position: relative;
  text-transform: uppercase;
}
ul.blog-list .slick-list.draggable {
  overflow: hidden;
}
.cs-auther-name a {
  color: #999;
}
.blog-list .slick-arrow {
  background-color: #f9f9f9;
  float: left;
  height: 29px;
  margin: 5px 0 0 5px;
  text-align: center;
  width: 29px;
}
.blog-list .slick-arrow a {
  color: #999;
  font-size: 18px;
  line-height: 32px;
}
.cs-blog.classic {
  margin: 0 0 30px;
}
.cs-blog.classic ul {
  margin: 0;
}
.cs-blog.classic li {
  border-top: 2px solid #eceef0;
  float: left;
  list-style: outside none none;
  padding: 16px 0;
  width: 100%;
}
.cs-blog.classic p {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 0 -4px 0 0;
  vertical-align: middle;
  width: 100%;
}
.cs-blog.classic p i {
  color: #c4c6c8;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.cs-blog.classic span {
  display: inline-block;
  float: right;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
}
.cs-blog.classic span i {
  color: #e2e5e8;
  float: right;
  font-size: 24px;
  margin: 2px 0 0 10px;
}
.cs-pagination-blog {
  margin-bottom: 30px;
}
.cs-blog.blog-medium {
  border-bottom: 0 none;
  margin: 0;
  padding-bottom: 30px;
}
.cs-blog.blog-medium::after {
  clear: both;
  content: "";
  display: block;
}
.cs-blog.blog-medium .blog-text .cs-post-title {
  clear: both;
}
.cs-blog .cs-media figure {
  position: relative;
}
.cs-blog .cs-media figure figcaption {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s ease-in-out 0s;
  visibility: hidden;
  width: 100%;
}
.cs-blog .cs-media:hover figure figcaption {
  opacity: 1;
  visibility: visible;
}
.cs-blog.blog-medium .post-title h3 {
  margin-bottom: 0;
}
.cs-blog .post-title {
  margin-bottom: 10px;
}
.cs-blog.blog-medium .cs-media figure figcaption .cs-readmore a {
  color: #fff;
  font-size: 24px;
  left: 50%;
  margin: -10px 0 0 -65px;
  position: absolute;
  top: 50%;
  transform: scale(0.7);
}
.cs-blog.blog-medium .cs-media:hover figure figcaption .cs-readmore a {
  transform: scale(1);
}
.cs-blog.blog-medium:last-child {
  border-bottom: medium none;
  padding-bottom: 40px;
}
.blog-medium .cs-media {
  display: inline-block;
  margin-right: 30px;
  vertical-align: middle;
  width: 37%;
}
.blog-modern .cs-media {
  display: inline-block;
  margin-right: -4px;
  vertical-align: middle;
  width: 48.6%;
}
.blog-medium .cs-media figure img,
.blog-modern .cs-media img {
  width: 100%;
}
.blog-medium .cs-media ~ .blog-text {
  display: inline-block;
  float: none;
  margin-right: 0;
  vertical-align: middle;
  width: 58%;
}
.blog-modern .blog-text {
  display: inline-block;
  margin-right: -4px;
  padding-left: 30px;
  vertical-align: middle;
  width: 51.4%;
}
.blog-modern .blog-text .cs-post-title {
  margin-bottom: 5px;
  padding-bottom: 1px;
  position: relative;
}
.blog-modern .blog-text .cs-post-title::after {
  bottom: 1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 27px;
}
.blog-modern .blog-text .blog-separator {
  margin: 0 0 10px;
}
.blog-modern .blog-text .blog-separator::before {
  display: none;
}
.blog-medium .blog-text {
  width: 99.1%;
}
.blog-medium .blog-text p {
  display: inline;
  margin: 0 0 15px;
}
.blog-medium .blog-separator {
  margin: 0 0 10px;
}
.cs-blog .cs-categories,
.cs-blog-detail .cs-categories {
  display: block;
  margin: 0 0 12px;
}
.cs-blog .cs-categories a,
.cs-blog-detail .cs-categories a {
  border-bottom: 2px solid #ededed;
  color: #55a747;
  display: inline-block;
  font-size: 10px;
  margin-right: 5px;
  padding-bottom: 2px;
  text-transform: uppercase;
}
.cs-blog-detail .post-option {
  float: right;
}
.cs-blog .post-option span a,
.cs-blog-detail .post-option span a {
  color: #000 !important;
  display: inline-block;
  font-size: 12px;
  margin-right: 18px;

  vertical-align: middle;
}
.cs-blog .post-option span i,
.cs-blog-detail .post-option span i {
  display: inline-block;
  font-size: 14px;
  margin-right: 10px;
  vertical-align: middle;
}
.cs-blog-detail .post-option span.post-category i {
  margin: 0;
}
.cs-blog-detail .post-option .post-category a {
  margin-left: 10px;
  margin-right: 0;
}
.cs-blog-detail .post-option .post-date {
  margin-left: 18px;
  background-color: #f1f1f1;
  border-radius: 25px;
  padding: 5px;
}
.cs-blog-detail .post-option .post-date img {
  /*fill: #999 !important;*/
  width: 18px;
  margin-right: 10px;
  margin-top: -6px;
  margin-left: 5px;
}
.cs-blog-detail .post-option .post-comment {
  margin-left: 18px;
  background-color: #f1f1f1;
  border-radius: 25px;
  padding: 5px;
}
.cs-blog-detail .post-option .post-comment img {
  /*fill: #999 !important;*/
  width: 18px;
  margin-right: 10px;
  margin-top: -6px;
  margin-left: 5px;
}
.cs-blog-detail .cs-text .post-option span i {
  float: left;
  margin: 3px 8px 0 0;
}
.cs-blog.blog-grid figure img {
  width: 100%;
}
.cs-blog.blog-grid .cs-media ~ .blog-text {
  margin: -30px 0 0;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.cs-blog.blog-grid .cs-inner-bolg {
  background-color: #fff;
  display: inline-block;
  padding: 20px 25px;
  width: 100%;
}
.cs-blog.blog-grid .blog-text p {
  margin: 0 0 5px;
}
.cs-blog.blog-grid .post-option {
  line-height: normal;
  margin: 0 0 10px;
}
.cs-blog.blog-grid .post-option span {
  color: #8b919e;
  font-size: 10px;
  margin: 0 15px 0 0;
  position: relative;
  text-transform: uppercase;
}
.cs-blog.blog-grid .post-option span::before {
  background-color: #8b919e;
  border-radius: 100%;
  content: "";
  height: 3px;
  left: -10px;
  position: absolute;
  top: 5px;
  width: 3px;
}
.cs-blog.blog-grid .post-option span:last-child {
  margin: 0;
}
.cs-blog.blog-grid .post-option span:first-child::before {
  display: none;
}
.cs-blog.blog-grid .read-more {
  display: inline-block;
  font-size: 12px;
  position: relative;
}
.cs-blog.blog-grid .read-more::before {
  content: "";
  font-family: "icomoon";
  font-size: 14px;
  position: absolute;
  right: -15px;
  top: 0;
}
.blog-large .cs-media img {
  width: 100%;
}
.blog-large .cs-text {
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.blog-large .cs-media ~ .cs-text {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 0 0;
  width: 100%;
}
.cs-blog .cs-author,
.cs-blog-detail .cs-author {
  float: left;
  margin: 0 0 10px;
}
.cs-blog .cs-author figure,
.cs-blog-detail .cs-author figure {
  display: inline-block;
  height: 32px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  width: 32px;
}
.cs-blog .cs-author figure img,
.cs-blog-detail .cs-author figure img {
  border-radius: 100%;
}
.cs-blog .cs-author .cs-text,
.cs-blog-detail .cs-author .cs-text {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.cs-blog .cs-author .cs-text a,
.cs-blog-detail .cs-author .cs-text a {
  color: #555;
  font-size: 13px;
  padding: 5px;
}
.blog-large .post-option,
.cs-blog.blog-medium .post-option {
  float: right;
}
.cs-blog.blog-large .post-option span i,
.cs-blog.blog-medium .post-option span i {
  color: #cfcfcf;
}
.post-option span i {
  margin-right: 5px;
  transition: all 0.3s ease-in-out 0s;
}
.blog-separator {
  border-bottom: 1px solid #f1f1f1;
  display: inline-block;
  margin: 20px 0 25px;
  position: relative;
  width: 100%;
}
.blog-large .cs-text p {
  margin: 0 0 25px;
}
.blog-large .read-more {
  border: 1px solid;
  border-radius: 20px;
  display: inline-block;
  font-size: 12px;
  padding: 4px 20px;
  text-transform: uppercase;
}
.blog-large .cs-post-title {
  margin: 0 0 15px;
}
.blog-large .cs-post-title h3 {
  margin: 0;
}

.cs-blog-detail .cs-post-title h1 {
  margin: 0 0 10px;
}
.cs-blog-detail .cs-post-title::after {
  clear: both;
  content: "";
  display: block;
}
.cs-blog-detail .cs-main-post img {
  width: 100%;
}
.cs-blog-detail .cs-main-post {
  margin-bottom: 5px;
}
.cs-blog-detail .cs-main-post h1 {
  font-size: 1.75rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
}
.cs-blog-detail .cs-admin-post .cs-media figure,
.cs-blog-detail .cs-admin-post .cs-media figure img {
  border-radius: 100%;
}
.cs-blog-detail .cs-admin-post .cs-text {
  overflow: hidden;
}
.cs-blog-detail .cs-admin-post {
  float: left;
  width: 40%;
}
.cs-blog-detail .cs-admin-post .cs-media {
  float: left;
  height: 46px;
  margin-right: 14px;
  width: 46px;
}
.cs-blog-detail .cs-author-name {
  color: #ccc;
  display: inline-block;
  font-size: 14px;
  margin-right: 20px;
  padding-top: 6px;
  vertical-align: middle;
}
.cs-blog-detail .cs-author-name strong {
  color: #55a747;
  display: block;
  line-height: 26px;
}
.cs-blog-detail .cs-more-post {
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #ccc;
  font-size: 11px;
  padding: 6px 8px;
}

.cs-blog-detail .cs-social-media li a.cs-more .at4-icon {
  border-radius: 10px;
  margin: 5px 0 0 -2px;
}
.cs-blog-detail .cs-share {
  float: none;
  left: 0;
  margin: 0 15px 0 0;
  position: absolute;
  top: 0;
}
.cs-blog-detail .cs-share a {
  color: #333;
  font-size: 18px;
  font-weight: 700;
}
.cs-blog-detail .cs-share-detail::after {
  clear: both;
  content: "";
  display: block;
}
.cs-blog-detail .cs-share-detail {
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  vertical-align: middle;
  width: 49%;
}
.cs-blog-detail .cs-post-option-panel {
  float: left;
  padding-top: 20px;
  width: 100%;
}
.cs-blog-detail .rich-editor-text p {
  margin-bottom: 8px;
}
.cs-blog-detail .rich-editor-text img {
  margin-bottom: 10px;
  width: 100%;
}
blockquote,
.rich-text-editor blockquote {
  border-left: 4px solid;
  margin: 0 0 40px;
  padding: 20px 0 0;
  position: relative;
  width: 95%;
}
blockquote {
  background-color: #fcfcfc;
  font-style: italic;
  padding: 15px 40px 20px 50px !important;
}
blockquote,
blockquote span,
blockquote p {
  color: #777;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}
blockquote .author-name a {
  color: #999;
  font-size: 11px;
}
blockquote.text-left-align {
  text-align: left;
}
blockquote.text-right-align {
  text-align: right;
}
blockquote.text-center-align {
  text-align: center;
}
blockquote::before,
.rich-text-editor blockquote::before {
  color: #eaeaea;
  content: "";
  font-family: "icomoon";
  font-size: 22px;
  font-style: normal;
  left: 24px;
  position: absolute;
  top: 15px;
  transform: scale(-1);
}
.rich-text-editor blockquote {
  background-color: #fcfcfc;
  font-style: italic;
  padding: 15px 40px 20px 50px;
}
.rich-text-editor blockquote p {
  margin: 0;
}
blockquote > span {
  margin: 0;
  position: relative;
}
blockquote > span.author-name::after {
  display: none;
}
blockquote > span::after {
  color: #eaeaea;
  content: "";
  display: inline-block;
  font-family: "icomoon";
  font-size: 22px;
  font-style: normal;
  margin: 0 0 0 8px;
  position: relative;
  top: 3px;
}

.comment-respond {
  margin-bottom: 30px;
}
.comment-form ul {
  list-style: outside none none;
}
.comment-form ul li {
  margin-bottom: 30px;
}
.comment-form .cs-element-title h3 {
  margin: 0;
}
.comment-form form .input-holder {
  position: relative;
}
.comment-form form .input-holder i {
  color: #cecece;
  font-size: 18px;
  position: absolute;
  right: 20px;
  top: 15px;
}
.comment-form form .input-holder input[type="text"],
.comment-form form .input-holder textarea {
  border: 1px solid #e4e4e4;
  color: #999;
  font-size: 14px;
  height: 50px;
  margin-bottom: -1px;
  padding: 10px 20px;
  width: 100%;
}
.comment-form form .input-holder textarea {
  height: 214px;
  margin: 0 0 20px;
}
.comment-form form input[type="submit"] {
  background-color: #55a747;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 10px 30px;
  text-transform: uppercase;
}
.blog-detail {
  box-shadow: none;
}
.blog-detail .blog-list {
  float: left;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.blog-slider-next {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 10px;
}
.blog-slider-prev {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 10px;
}
.blog-detail::after,
.author-detail::after,
#comment ul li::after,
.blog-detail .blog-list::after,
.cs-packeges::after {
  clear: both;
  content: "";
  display: block;
}
.blog-title {
  margin-bottom: 25px;
}
.blog-title h3 {
  color: #282828;
  letter-spacing: -1px;
  line-height: 34px;
  margin: 0 0 10px;
}
.blog-detail .main-post {
  margin: 0 0 25px;
}
.blog-detail .main-post img {
  width: 100%;
}
.author-detail {
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 10px;
  padding-bottom: 22px;
}
.cs-admin figure {
  float: left;
  margin-right: 15px;
}
.cs-admin .cs-text {
  display: inline-block;
  overflow: hidden;
  padding-top: 8px;
}
.cs-admin .cs-text span {
  color: #ccc;
  display: block;
  font-size: 13px;
  line-height: 16px;
}
.cs-admin .cs-text strong {
  color: #282828;
  font-size: 14px;
  line-height: 18px;
}
.blog-detail h2 {
  line-height: 29px;
  margin: 0 0 11px;
  position: relative;
  width: 91%;
}
.rich-editor-text p {
  clear: both;
  line-height: 24px;
  margin-bottom: 20px;
}
.rich-editor-text h4 {
  clear: both;
  font-size: 20px;
  color: #000000;
  line-height: 24px;
  margin-bottom: 10px;
}
.rich-editor-text ul {
  list-style: none; /* Remove default bullets */
}

.rich-editor-text ul li::before {
  content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: red; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  padding: 5px 0;
}

/*------- Comment Box Start ----------*/

.comments-details button.btn.dropdown-toggle,
.comments-details .total-comments {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}
.comments-details {
  padding: 15px 15px;
}
.comments .comments .dropdown,
.comments .dropup {
  position: relative;
}
.comments button {
  background-color: transparent;
  border: none;
}
.comments .comment-box {
  width: 100%;
  float: left;
  height: 100%;
  padding: 10px 14px 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.comments .add-comment {
  background-color: transparent;
  border: none;
  position: relative;
  margin-bottom: 50px;
}
.comments .commenter-pic {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 100%;
  border: 2px solid #fff;
  overflow: hidden;
  background-color: #fff;
}
.comments .add-comment .commenter-name {
  width: 100%;
  /*padding-left: 75px;
    position: absolute;
    top: 20px;
    left: 0px;*/
}
/*.comments .add-comment input {
    border-top: 0px;
    border-bottom: 1px solid #ccc;
    border-left: 0px;
    border-right: 0px;
    outline: 0px;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    padding: 0;
    font-weight: normal;
}*/
.comments .add-comment input:focus {
  border-color: #03a9f4;
  border-width: 2px;
}
.comments .add-comment button[type="submit"] {
  background-color: #e70006;
  color: #fff;
  margin-right: 0px;
  border-radius: 5px;
  width: auto;
  padding: 10px 10px;
}
.comments .add-comment button {
  background-color: #f5f5f5;
  margin: 10px 0px;
  font-size: 14px;
  text-transform: uppercase;
  /*float: right;*/
}
.comments .commenter-name .comment-time {
  font-weight: normal;
  margin-left: 8px;
  font-size: 15px;
}
.comments p.comment-txt {
  font-size: 15px;
  border-bottom: 1px solid #ddd;
  padding: 0px 0px 15px;
}
.comments .commenter-name {
  display: inline-block;
  position: relative;
  top: -20px;
  left: 10px;
  font-size: 14px;
  color: #000;
  font-weight: bold;
}
.comments .commenter-name a {
  font-size: 14px;
  color: #000;
}
.comments .comment-meta {
  font-size: 14px;
  color: #333;
  padding: 2px 5px 0px;
  line-height: 20px;
  float: left;
}
.comments .reply-box {
  display: none;
}
.comments .replied {
  background-color: #fff;
  width: 95%;
  float: right;
  margin-top: 15px;
}

/*======Responsive CSS=======*/
@media (max-width: 767px) {
  .comments .commenter-name {
    font-size: 13px;
    top: -5px;
  }
  .comments .commenter-pic {
    width: 40px;
    height: 40px;
  }
  .comments .commenter-name a {
    display: block;
  }
  .comments .commenter-name .comment-time {
    display: block;
    margin-left: 0px;
  }
}

.add-comment h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #000;
  font-weight: 700;
}
.add-comment .form-group .form-input {
  font-size: 15px;
  line-height: 50px;
  font-weight: 400;
  color: #000;
  width: 100%;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border: 2px solid #cfcfcf;
  border-radius: 3px;
  margin-bottom: 15px;
}

.form-group.fl_icon .form-input {
  padding-left: 70px;
}

.add-comment .form-group textarea.form-input {
  height: 150px;
}

.sidebar-nav {
  flex-grow: 1;
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}
.sidebar-header {
  border-bottom: 4px solid #b1b1b1;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem 1rem !important;
  letter-spacing: 2px;
}
.sidebar-link,
a.sidebar-link {
  border-left: 0px solid transparent;
  border-bottom: 2px solid #b1b1b1;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
  display: block;
  font-weight: 400;
  padding: 0.625rem 0.625rem;
  position: relative;
  text-decoration: none;
  transition: background 0.1s ease-in-out;
}
.sidebar-link:hover {
  color: #e70006;
  border-left-color: transparent;
  font-weight: bold;
}

.recent-viewed {
  width: 100%;
  display: block;
  border: 1px solid #b1b1b1;
  margin-bottom: 20px;
  padding: 10px;
}
.recent-viewed h4 {
  font-family: "Open Sans", sans-serif;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 0.5rem 0.5rem !important;
  letter-spacing: 2px;
}

.recent-viewed .side-inner {
  padding: 10px 0 0px 0;
}
.recent-viewed .side-inner .item {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.recent-viewed .side-inner .item .item-img img {
  width: 70px;
  border-radius: 4px;
}
.recent-viewed .side-inner .item .item-info {
  margin-left: 15px;
}
.recent-viewed .side-inner .item .item-info .title {
  color: #000000;
  font-size: 13px;
  font-weight: bold;
  clear: both;
  display: block;
}
.recent-viewed .side-inner .item .item-info .price {
  color: #000000;
  font-size: 12px;
  margin-bottom: 20px;
}
.recent-viewed .side-inner .item .item-info .remove {
  display: block;
  color: #999999;
  padding: 8px 0px;
  font-size: 11px;
}

/*------------ BLOG DETAIL PAGE END ------------*/

/*------------ EVENT DETAIL PAGE START ------------*/

.event-container {
  width: 100%;
  display: block;
  /*padding: 10px 0;*/
}

.eventbox {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.eventbox .eventbody {
  padding: 0px 10px;
  position: relative;
}
.eventbox .eventbody img {
  width: 100%;
  text-align: center;
  position: relative;
}
.eventbox .eventbody h2 {
  text-align: left;
  font-size: 1.125rem;
  line-height: normal;
  color: #000000;
  padding: 5px 5px;
  font-weight: 700;
}
.eventbox .eventbody h2 a {
  font-size: 1.125rem;
  line-height: normal;
  color: #000000;
  text-decoration: none;
}
.eventbox .eventbody h2 a:hover {
  color: #e70006;
  text-decoration: none;
}
.eventbox .eventbody p {
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  padding: 8px 5px;
  margin-bottom: 10px;
}
.additional-infobox {
  padding: 10px;
  background-color: #dedede;
  width: 100%;
}
.eventbox .eventbody h4 {
  font-family: "Open Sans", sans-serif;
  text-align: left;
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  padding: 5px 0px;
  font-weight: 700;
}

.eventbox .eventbody ul {
  list-style: none; /* Remove default bullets */
}
.eventbox .eventbody ul li {
  font-family: "Open Sans", sans-serif;
  text-align: left;
  font-size: 0.875rem;
  line-height: normal;
  color: #000000;
}

.eventbox .eventbody ul li::before {
  content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: red; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  padding: 5px 0;
}

.eventbox .eventsidebar {
  border: 1px solid #eeeeee;
  padding: 10px;
}

.eventbox .eventsidebar .btn-red-s {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 15px;
  border-radius: 0px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #e70006;
  width: 100%;
}
.eventbox .eventsidebar .btn-red-s:hover {
  background: #cd0207;
  color: #fff;
}
.eventbox .eventsidebar .eventtime ul {
  list-style: none !important;
}
.eventbox .eventsidebar .eventtime ul li {
  font-family: "Open Sans", sans-serif;
  text-align: left;
  font-size: 0.875rem;
  line-height: normal;
  color: #000000;
  list-style-type: none;
  list-style: none;
  margin-left: -25px;
  padding: 6px 0;
}
.eventbox .eventsidebar .eventtime ul li span {
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  font-weight: 800;
}

/*--------- Additional Info Tabs ---------*/

/*.additionalinfo{
    border-bottom: 1px solid #b5b5b5;
}*/
.additionalinfo .nav-tabs {
  border-bottom: 1px solid #b5b5b5;
}
.additionalinfo li.nav-item {
  width: auto;
  margin: 0 3px;
  border-color: #b5b5b5 #b5b5b5 #ffffff;
}
.additionalinfo li.nav-item .nav-link {
  position: relative;
  top: 13px;
  padding: 10px;
  left: -3px;
}
.additionalinfo ul.nav-tabs li.nav-item .nav-link {
  margin-bottom: -1px;
  background: #eaeaea;
  border-color: #b5b5b5 #b5b5b5 #ffffff;
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  margin: 0;
  /* padding: 0; */
  width: 100%;
  color: #000000;
  font-size: 13px !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.additionalinfo ul.nav-tabs .nav-item.show .nav-link,
.additionalinfo ul.nav-tabs .nav-link.active {
  color: #e70006;
  background-color: #ffffff;
  border-color: #b5b5b5 #b5b5b5 #ffffff;
  border-width: 1px;
  border-style: solid;
  border-radius: 0px;
  margin: 0;
  padding: 0 0 15px;
  width: 100%;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.additionalinfo li.nav-item .nav-link.active {
  position: relative;
  top: 5px;
  padding: 15px;
  left: -3px;
  font-size: 15px !important;
  color: #e70006 !important;
  background-color: #ffffff !important;
}

.additionalinfo .tab-content > .active {
  border: 1px solid #b5b5b5;
}
.additionalinfo .tab-pane {
  padding: 15px;
}

.additionalinfo .icon-small {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.additionalinfo .icon-small img {
  height: 45px;
  width: 45px;
  text-align: center;
}

.additionalinfo .icon-small i {
  height: 38px;
  width: 38px;
  color: #fff;
  background-color: #ffffff;
  border-radius: 10%;
  text-align: center;
  vertical-align: middle;
  padding-top: 12px;
}
.additionalinfo .icon-small + p {
  margin-top: 15px;
}

.additionalinfo .icon-small h4 {
  font-size: 16px;
  font-weight: bold;
  color: #e70006;
}

.additionalinfo .icon-small h5 {
  font-size: 14px;
  font-weight: normal;
  color: #00bdbd;
}

.additionalinfo .details {
  padding: 0 1em;
}

.additionalinfo .list-cont ul {
  list-style: none; /* remove the default */
}

.additionalinfo .list-cont li::before {
  /* add the new bullet point */
  display: inline-block;
  content: "";
  -webkit-border-radius: 0.375rem;
  border-radius: 0.375rem;
  height: 0.35rem;
  width: 0.35rem;
  margin-right: 0.7rem;
  background-color: #ff0000;
}
.additionalinfo .list-cont li {
  text-indent: -0.75em; /* this is only needed if you want to align wrapped text */
}
.additionalinfo .tab-content {
  overflow-y: auto;
  max-height: 350px;
  border-bottom: 1px solid #b5b5b5;
}
.additionalinfo #style-1::-webkit-scrollbar-track {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
  border-radius: 10px;
  background-color: #f0f0f0;
}

.additionalinfo #style-1::-webkit-scrollbar {
  width: 6px;
  background-color: #f0f0f0;
}

.additionalinfo #style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
  background-color: #9e9e9e;
}

.additionalinfo table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", sans-serif;
}
.additionalinfo table td {
  padding: 3px 3px;
  text-align: center;
}
.additionalinfo table thead td {
  background-color: #ffffff;
  color: #000000;
  font-weight: 300;
  font-size: 12px;
  border: none;
}
.additionalinfo table tbody td {
  font-size: 12px;
  color: #565656;
  border: none;
}
.additionalinfo table tbody tr {
  background-color: #ffffff;
}

/*--- Related Product ---*/

.relatedprodbox {
  padding: 10px 0;
}

.relatedprodbox h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #000000;
  padding: 10px 0;
  border-bottom: 2px solid #9e9e9e;
}

.relatedprodbox .proddiv {
  width: 100%;
  padding: 10px 0;
}

.withoutprice {
  padding: 10px 0;
}
.withoutprice ul li {
  font-family: "Open Sans", sans-serif;
  text-align: left;
  font-size: 0.813rem;
  line-height: 16px;
  color: #555555;
  margin-left: -25px;
  padding: 2px 0;
  list-style: none;
}

.withoutprice table {
  width: 100%;
  border-collapse: collapse;
  font-family: Tahoma, Geneva, sans-serif;
}
.withoutprice table td {
  padding: 6px 15px;
  text-align: center;
}
.withoutprice table thead td {
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
  font-size: 12px;
  border: 1px solid #dddfe1;
}
.withoutprice table tbody td {
  font-size: 12px;
  color: #565656;
  border: 1px solid #dddfe1;
}
.withoutprice table tbody tr {
  background-color: #ffffff;
}
/*.withoutprice table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}*/

.logoapproval {
  padding: 10px;
  background-color: #f6f7f9;
  display: inherit;
}
.logoapproval p {
  color: #000000;
  font-weight: 600;
  font-size: 12px;
}

/*------------ EVENT DETAIL PAGE END ------------*/

/*=======================MEDIA QUERIES START==========================*/

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .contact-info .row {
    display: inline-block;
  }
  /*.contact-info .row>*{width: auto;}*/
  .loginbtn {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    letter-spacing: 1px;
  }
  .flags-box input {
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: 80%;
  }
  .country-select {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 0;
  }
  #header {
    box-shadow: none;
  }
  .company-awards li.nav-item {
    width: 31%;
    margin: 0 3px;
  }
  .nav-tabs .nav-link,
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }
  .navbar-right {
    float: right;
    position: relative;
    right: 11px;
    /*top:0px;*/
  }
  .shopping-cart {
    /*top: 0px;
    left: 10px;*/
    opacity: 0;
    -webkit-transform-origin: right top 0;
    -webkit-transform: scale(0);
    transform-origin: right top 0;
    transform: scale(0);
  }
  .shopping-cart.active {
    opacity: 1;
    -webkit-transform-origin: right top 0;
    -webkit-transform: scale(1);
    transform-origin: right top 0;
    transform: scale(1);
    /*top: 0px;
    left: 10px;*/
  }
  #header.d-flex.fixed-top .cart {
    position: relative;
    right: -35px;
    top: 0px;
  }
  .country {
    width: 111px;
  }
  .logo.my-2 img {
    padding-top: 15px;
  }
  .featurelistbox .shortdes ul li {
    margin-left: -10px;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    align-items: center;
    border-bottom: 1px solid #c8c8c8;
  }

  .navbar a,
  .navbar a:focus {
    padding: 10px 25px 10px 25px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .cs-blog-detail .post-option {
    float: left;
  }
  .cs-blog-detail .post-option .post-date {
    margin-left: 0px;
  }
  .navbar-mobile ul {
    padding: 10px 10px;
  }
  .colorelasticbox label {
    display: block;
    float: none;
  }
  .colorelasticbox input,
  .colorelasticbox select {
    width: 100%;
  }
  .badge {
    font-size: 9px;
    line-height: 1;
    padding: 3px 3px;
    top: 4px;
    right: 10px;
  }
  .country .dropdown li {
    font-size: 12px;
    list-style-type: none;
    text-align: center;
  }
  .country {
    width: 83px;
  }
  .country .dropdown li span {
    display: none;
  }
  .product-price span.savetext {
    padding: 5px 1px 5px 1px;
  }
  /*.product-price span {
    padding: 0 2px;
  }*/
  .d-flex.bd-highlight.mb-3.mt-4 {
    padding-top: 10px;
  }
  button#userBtn {
    width: 38px;
    padding: 0 5px;
  }
  button#userBtn svg {
    width: 30px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .contact-info .row {
    display: inline-block;
  }
  /*.contact-info .row>*{width: auto;}*/
  .loginbtn {
    font-size: 12px;
    font-weight: 700;
    padding: 10px 14px;
    letter-spacing: 1px;
  }
  .flags-box input {
    padding: 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: 100%;
    right: 12px;
  }
  .country-select {
    position: relative;
    display: inline-block;
    position: absolute;
    right: 0;
  }
  .company-awards li.nav-item {
    width: 31%;
    margin: 0 3px;
  }
  .nav-tabs .nav-link,
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }
  .featured-product .btn-seeall {
    padding: 12px 11px;
    position: absolute;
    top: 0;
    right: 10px;
  }
  /*.cart {
    position: relative;
    right: 25px;
  }*/
  #header.d-flex.fixed-top .cart {
    position: relative;
    /*right: 15px;*/
    right: 0px;
    top: 0px;
  }
  /*.country {
    width: 111px;
  }*/

  .navbar-right {
    float: right;
    position: absolute;
    /*right: 68px;
    top: 20px;*/
    /*right: 20px;
    top: 20px;*/
  }
  .colorelasticbox label {
    display: block;
    float: none;
  }
  .colorelasticbox input,
  .colorelasticbox select {
    width: 100%;
  }
  .badge {
    font-size: 9px;
    line-height: 1;
    padding: 3px 3px;
    top: 4px;
    right: 10px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .featured-product h1 {
    font-size: 1.6rem;
  }
  .featured-product .btn-seeall {
    padding: 12px 10px;
    /* position: absolute;
    top: 0;
    right: 10px;*/
  }
  .company-awards li.nav-item {
    width: 31%;
    margin: 0 3px;
  }
  .nav-tabs .nav-link,
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active {
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }
  .featured-product .divder {
    display: none;
  }
  .background {
    padding-bottom: 100px;
  }
  .news-slider__ctr {
    position: relative;
    z-index: 12;
    width: 90%;
    margin: 0 auto;
    margin-top: 130px;
  }
  /*.cart {
    position: relative;
    top: -5px;
    right: 15px;
  }*/
  /*.country {
    width: 165px;
  }*/
  /*.navbar-right {
    right: 30px;
  }*/
  /*.logo.my-2 {
    padding-right: 90px;
  }*/
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  /*.navbar-right {
    right: 30px;
  }*/
  .sb-search.sb-search-open,
  .no-js .sb-search {
    width: 91%;
  }
}
@media only screen and (min-width: 667px) and (max-width: 767px) {
  .featured-product .btn-seeall {
    position: relative;
    /* top: 0; */
    right: 10px;
  }
  .featured-product h1 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .navbar-right {
    right: 35px;
  }
}
@media only screen and(max-width: 1024px) {
  .navbar-right {
    right: 35px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .featured-product h1 {
    font-size: 1.8rem;
  }
  .featured-product .btn-seeall {
    padding: 12px 25px;
    /*float: right;*/
  }
  /*.navbar-right {
    float: right;
    position: absolute;
    right: 43px;
    top:20px;
  }*/
  /*.navbar-right {
    float: right;
    position: absolute;
    right: 43px;
    top:20px;
  }*/
  #header.d-flex.fixed-top .logo-mobile {
    display: block;
    animation: opacity-in 1s forwards;
  }

  /*.cart {
    position: relative;
    top: -5px;
    right: 15px;
  }*/
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
  #header.d-flex.fixed-top .logo-mobile {
    display: block;
    animation: opacity-in 1s forwards;
  }
}

.username-header {
  display: flex;
  align-items: center;
}

.sticker {
  position: absolute;
  width: 40% !important;
  height: auto;
  z-index: 1;
}

.helmet-front {
  top: 35%;
  left: 32%;
}
.helmet-back {
  top: 30%;
  left: 30%;
}
.helmet-right {
  top: 35%;
  left: 25%;
  transform: rotate(-15deg);
}
.helmet-left {
  transform: rotate(15deg);
  top: 35%;
  right: 25%;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  float: left;
  box-sizing: border-box;
  border: 1px solid #cfc8d8;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: 0;
  width: 150px;
}
.helmet-label {
  padding: 20px 0px;
}

.error-page {
  text-align: center;
}

.wpcf7-submit {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 25px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #e70006;
}
.ctl-wrapper .ctl-horizontal-wrapper .ctl-title {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.history-overlay {
  width: 100%;
  padding: 10px 0px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.ctl-wrapper .ctl-horizontal-timeline .ctl-button-prev {
  font-size: 30px;
}
.ctl-wrapper .ctl-horizontal-timeline .ctl-button-next {
  font-size: 30px;
}
.ui-slider.ui-widget-content .ui-slider-handle {
  color: red;
  background: red;
  border: 1px solid #000 !important;
  border-radius: 10px;
}
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled {
  display: flex;
  align-items: center;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  padding: 10px 0px;
}
.product-details-box img {
  padding: 20px 0px;
}
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap textarea {
  width: calc(100% - 20px); /* Adjust width as needed */
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  box-sizing: border-box;
}
.wpcf7-form label {
  width: 100%;
}
.wpcf7-form p {
  align-items: center;
  justify-content: center;
}
.wpcf7-form-control-wrap textarea {
  height: 108px;
}

.desktop-only {
  display: block;
}

/* Media query to hide the div on screens smaller than 768px */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.error-page {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: white;
  height: 300px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.error-page h1 {
  font-size: 100px;
  margin: 0;
  color: #ff6f61;
}

.error-page h2 {
  font-size: 24px;
  margin: 10px 0;
  color: #333;
}

.error-page p {
  font-size: 16px;
  color: #666;
}

.error-page .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #ff6f61;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.error-page .btn:hover {
  background-color: #e55a4f;
}
.fullwidth-div {
  width: 100% !important;
}

.product-category-short-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-about {
  padding: 50px 0;
}
.index-about .section-title h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.index-about p {
  font-size: 1rem;
  line-height: 1.6;
}
.index-about .btn {
  margin-top: 20px;
}
.index-about .image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.index-about-border {
  width: 50px;
  height: 3px;
  background-color: red;
  margin: 20px 0;
}
.regular_price {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: 18px;
  color: #e70006;
  font-weight: 700;
}
.discarded-price {
  display: inline-block;
  font-family: "Montserrat", serif;
  margin: 0 0 0 0px;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-decoration: line-through;
}
/*========================MEDIA QUERIES END===========================*/
.custom-h1 {
  font-weight: bold !important;
  color: black;
}
.price del {
  display: inline-block;
  font-family: "Montserrat", serif;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-decoration: line-through;
}

.price del .woocommerce-Price-currencySymbol {
  margin-right: 2px;
}

.price ins {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: 24px;
  color: #e70006;
  font-weight: 700;
  padding: 0 22px;
}

.price ins .woocommerce-Price-currencySymbol {
  margin-right: 2px;
}

.link-container a {
  display: block;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-decoration: none;
  color: inherit;
}

.ctl-wrapper .ctl-horizontal-timeline .ctl-story.swiper-slide {
  margin-right: 0px !important;
}
.icon-feedback{
	display:none;
}
