/* Default Css */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #c1c1c1;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background: #FB6F13;
}

@font-face {
  font-family: 'trade-gothic-next';
  src: url(../fonts/TradeGothicLTStd.otf);
  font-weight: normal;
}

@font-face {
  font-family: 'trade-gothic-next';
  src: url(../fonts/TradeGothicLTStd-Bd2.otf);
  font-weight: bold;
}

body {
  color: #555555;
  font-size: 16px;
  font-family: "trade-gothic-next";
  font-weight: 400;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a:active,
a:hover {
  text-decoration: none;
}

button,
.btn,
.learn-more {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

button:active,
button:hover,
button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: #000;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

.container {
  max-width: 1600px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "trade-gothic-next";
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: #352323;
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: #000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: #FB6F13;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #FB6F13;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #FB6F13;
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 16px;
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: #FB6F13;
  background: #FB6F13;
}

.btn-theme:hover {
  background: #FB6F13;
  color: #fff;
  border-color: #FB6F13;
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: #ddd;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #000;
}

.bg-theme {
  background: #FB6F13;
}

.bg-dark {
  background-color: #101a23 !important;
}

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: #ddd;
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #FB6F13;
}

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1750px;
  }
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.header-fixed {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header-fixed.sticky-header {
  position: fixed;
  box-shadow: 0 4px 10px rgba(3, 4, 28, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  z-index: 99999;
}

.header-fixed.sticky-header .header-top {
  display: none !important;
}

.header-fixed.sticky-header .logo .large {
  display: none;
}

.header-fixed.sticky-header .logo .small {
  display: block;
}

.header-fixed.sticky-header .header-middle-right .cart-icon {
  display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-fixed.sticky-header .header-middle-right .cart-icon {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-fixed.sticky-header .header-middle-right .cart-icon {
    display: none;
  }

  .header-middle-right.d-lg-none .cart-icon {
    display: block !important;
  }

  .categoryTitle {
    font-size: 25px;
  }
}
span.categoryTitle {
    font-size: 1.5rem;
    line-height:1;
}

.header-top {
  background: #000;
  position: relative;
  z-index: 999;
}

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

.header-top-link a {
  font-size: 14px;
  color: #fff;
  margin-right: 20px;
  line-height: 1;
  padding: 10px 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-right div>a {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
}

.header-right span {
  color: #fff;
  line-height: 1;
}

.header-right img {
  width: 15px;
}

.header-right .dropdown-wrap {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.header-right .dropdown-wrap:hover>ul,
.filter-btns ul.collapse {
  visibility: visible;
  opacity: 1;
}

/* Handle the click state */
.header-right .dropdown-wrap.active>ul,
.filter-btns.active ul.collapse {
  visibility: visible;
  opacity: 1;
}

/* Ensure hidden when not hovered or clicked */
.header-right .dropdown-wrap>ul,
.filter-btns ul.collapse {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

/*Adding filter buttons to styling per Benjamin*/
.header-right .dropdown-wrap ul,
.filter-btns ul {
  position: absolute;
  right: 0;
  top: 100%;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  min-width: 150px;
  z-index: 9999;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
}

.header-right .dropdown-wrap ul li,
.filter-btns ul li {
  display: block;
}

.header-right .dropdown-wrap ul li a {
  display: block;
  padding: 8px 16px;
  color: rgb(55, 65, 81);
  font-size: 14px;
}

/*Styling for sory by dropdown*/
.filter-btns ul li input {
  display: block;
  padding: 8px 16px;
  color: rgb(55, 65, 81);
  font-size: 14px;
  background: #fff;
  border: none;
  width: 100%;
}

.header-right .dropdown-wrap ul li a:hover,
.filter-btns ul li input:hover {
  background: rgb(243, 244, 246);
}

.header-area {
  background: #F8F8F8;
  position: relative;
  z-index: 99;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .header-area {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

.logo img {
  height: 40px;
}

.logo .large {
  display: block;
}

.logo .small {
  display: none;
}

.main-menu {
  text-align: center;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  display: inline-block;
  margin-right: 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 15px;
  }
}

.main-menu ul li:last-child {
  margin-right: 0;
}

.main-menu ul li:hover>a {
  color: #FB6F13;
  border-color: #D9D9D9;
}

.main-menu ul li>a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #000 !important;
  border-bottom: 1px solid transparent;
  padding: 20px 0;
}

.main-menu ul .has-mega-menu:hover>.mega-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.main-menu ul .mega-menu {
  position: absolute;
  left: 0;
  top: 110%;
  z-index: 999;
  background: #F8F8F8;
  width: 100%;
  padding: 25px 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.1s linear 0s;
  -o-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
}

.main-menu ul .mega-menu .mega-grid-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.main-menu ul .mega-menu .mega-separator {
  width: 2px;
  height: 160px;
  background: #D9D9D9;
  margin: 0 15px;
}

.main-menu ul .mega-menu .mega-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  width: 80%;
}

.main-menu ul .mega-menu .mega-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.main-menu ul .mega-menu .mega-list-col {
  text-align: left;
}

.main-menu ul .mega-menu .mega-list-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu ul .mega-menu .mega-list-col ul li {
  display: block;
}

.main-menu ul .mega-menu .mega-list-col ul li:hover>a {
  color: #FB6F13;
}

.main-menu ul .mega-menu .mega-list-col ul li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  border: 0;
  padding: 0;
}

.main-menu ul .mega-menu .mega-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
}

.main-menu ul .mega-menu .mega-product-wrap a {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.main-menu ul .mega-menu .mega-product-wrap a img {
  width: 100%;
  height: 100%;
}

.main-menu ul .mega-menu .mega-product-wrap a:before {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 100%;
  z-index: 2;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.main-menu ul .mega-menu .mega-product-wrap a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #fff;
  width: 100%;
  padding: 20px;
  z-index: 12;
  opacity: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.main-menu ul .mega-menu .mega-product-wrap a span .nav-title {
  font-family: "Bogs Headline";
  text-transform: uppercase;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
}

.main-menu ul .mega-menu .mega-product-wrap a span .nav-caption {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
}

/*For Nav Click*/
/* Show mega menu when the 'show' class is added */
.main-menu ul .mega-menu.show {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.search-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.search-wrap .input-wrap {
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .search-wrap .input-wrap {
    max-width: 100%;
  }
}

.search-wrap .input-wrap input {
  width: 100%;
  height: 30px;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 0 15px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .search-wrap .input-wrap input {
    height: 40px;
  }
}

.search-wrap .input-wrap .search-button {
  position: absolute;
  right: 0;
  top: 6px;
  height: 100%;
  padding: 0 10px;
  color: #000;
  border: 0;
  background: none;
  line-height: 1;
}

@media (max-width: 767px) {
  .search-wrap .input-wrap .search-button {
    top: 12px;
    /*12px per David C*/
  }
}

.promo-top {
  background: #909090;
  padding-top: 10px;
  padding-bottom: 5px;
  text-align: center;

}

.promo-top.black {
  background-color: #000;
}

.promo-top.upper {
  background: #000 !important;
  color: #fff;
  font-size: 16px;
  letter-spacing: .5px;
  padding-bottom: 10px;
}

.promo-top .promo-title {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Bogs Headline";
  letter-spacing: .5px;
}

.promo-top.black .promo-title {
  color: #fff !important;
  font-size: 18px !important;
  font-family: "trade-gothic-next" !important;
}

.promo-top.black .promo-title2 {
  color: #fff !important;
  font-size: 16px !important;
  font-family: "trade-gothic-next" !important;
}

.promo-top.black .promo-subtitle {
  color: #fff !important;
  font-size: 13px !important;
  font-family: "trade-gothic-next" !important;
}

.promo-top .promo-code {
  color: #F07622;
  font-size: 18px;
}

@media (max-width: 767px) {
  .promo-top.upper {
    background: #000 !important;
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
  }

  .promo-top .promo-title {
    color: #ffffff;
    font-size: 26px;
    text-transform: uppercase;
    font-family: "Bogs Headline";
  }

  .promo-top .promo-code {
    font-size: 13px;
  }
}

.cat-menu-scroll {
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cat-menu-scroll {
    display: block;
  }
}

@media (max-width: 767px) {
  .cat-menu-scroll {
    display: block;
  }
}

.cat-menu-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-menu-top a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 5px 30px;
  height: 40px;
}

.cat-menu-top a:hover {
  color: #fff;
  border-color: #000;
  background: #000;
}

.header-middle-right {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 30px;
}

.header-middle-right .cart-icon {
  line-height: 1;
  position: relative;
  display: none;
}

/*Changing badge to be visible per David E*/
.cart-icon {
  position: relative;
}

.cart-badge {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  background: #F86F13;
  width: 9px;
  height: 9px;
  border-radius: 100%;
}

.header-middle-right .dropdown-wrap {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.header-middle-right .dropdown-wrap:hover>ul {
  visibility: visible;
  opacity: 1;
}

.header-middle-right .dropdown-wrap ul {
  position: absolute;
  right: 0;
  top: 100%;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  min-width: 150px;
  z-index: 109;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
}

.header-middle-right .dropdown-wrap ul li {
  display: block;
}

.header-middle-right .dropdown-wrap ul li a {
  display: block;
  padding: 8px 16px;
  color: rgb(55, 65, 81);
  font-size: 14px;
}

.header-middle-right .dropdown-wrap ul li a:hover {
  background: rgb(243, 244, 246);
}

.offset-sidebar {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
}

.offset-sidebar.active {
  visibility: visible;
  opacity: 1;
}

.offset-sidebar .offset-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.offset-sidebar .off-canvas-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.offset-sidebar .off-canvas-close:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.offset-sidebar .offset-wrap {
  width: 100%;
  max-width: 315px;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  overflow-y: auto;
  padding: 50px 20px;
}

.offset-sidebar .offset-wrap::-webkit-scrollbar {
  width: 10px;
}

.offset-sidebar .offset-wrap::-webkit-scrollbar-track {
  background: #c1c1c1;
}

.offset-sidebar .offset-wrap::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}

.offset-sidebar .offset-wrap::-webkit-scrollbar-thumb:active {
  background: #FB6F13;
}

.offset-sidebar .offset-wrap.active {
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}

.offset-sidebar .offset-menu>ul>li>a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 46px;
}

.offset-sidebar .offset-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offset-sidebar .offset-menu ul li {
  display: block;
  border-bottom: 1px solid transparent;
}

.offset-sidebar .offset-menu ul li:first-child a {
  border-top: 1px solid #707070;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .offset-sidebar .offset-menu ul li {
    margin-right: 15px;
  }
}

.offset-sidebar .offset-menu ul li:last-child {
  margin-right: 0;
}

.offset-sidebar .offset-menu ul li:hover>a {
  color: #FB6F13;
}

.offset-sidebar .offset-menu ul li a {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #707070;
}

.offset-sidebar .offset-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}

.offset-sidebar .offset-menu ul .has-dropdown .toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 46px;
  width: 20px;
  z-index: 10;
  cursor: pointer;
  color: #000;
}

.offset-sidebar .offset-menu ul .has-dropdown .toggle-btn .icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offset-sidebar .offset-menu ul .has-dropdown .toggle-btn .icon:before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  font-size: 20px;
}

.offset-sidebar .offset-menu ul .has-dropdown>a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 46px;
}

.offset-sidebar .offset-menu ul .has-dropdown.active>a,
.offset-sidebar .offset-menu ul .has-dropdown:hover>a {
  color: #FB6F13;
}

.offset-sidebar .offset-menu ul .has-dropdown.active>.toggle-btn .icon:before,
.offset-sidebar .offset-menu ul .has-dropdown:hover>.toggle-btn .icon:before {
  color: #FB6F13;
}

.offset-sidebar .offset-menu ul .has-dropdown.active {
  border-bottom-color: #707070;
}

.offset-sidebar .offset-menu ul .has-dropdown.active>.toggle-btn .icon:before {
  content: "-";
  color: #FB6F13;
}

.offset-sidebar .offset-menu ul .sub-menu {
  display: none;
  /*padding: 30px 0; Removing Per David C*/
}

.offset-sidebar .offset-menu ul .sub-menu .mega-grid-layout {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /*Decreasing gap to 15px on mobile per David E*/
}

.offset-sidebar .offset-menu ul .sub-menu .mega-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-list-col {
  text-align: left;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-list-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-list-col ul li {
  display: block;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-list-col ul li:hover>a {
  color: #FB6F13;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-list-col ul li a {
  display: block;
  font-size: 16px;
  padding-bottom: 5px;
  font-weight: 400;
  color: #000;
  border: 0;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-product-wrap a {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-product-wrap a img {
  width: 100%;
  height: 100%;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-product-wrap a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 2;
}

.filter-item .filter-heading.country .icon {
  margin-left: -16px;
}

.offset-sidebar .offset-menu ul .sub-menu .mega-product-wrap a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  width: 100%;
  padding: 10px;
  z-index: 5;
}

.modal {
  --bs-modal-zindex: 999999;
}

.modal-backdrop {
  --bs-backdrop-zindex: 99999;
}

.hero-area {
  position: relative;
  z-index: 0;
  background: #7b9084;
  padding-top: 180px;
  padding-bottom: 180px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-area {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-area {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-area {
    padding-top: 0;
    padding-bottom: 50px;
    margin: 10px auto;
    border-radius: 8px;
    overflow: hidden;
    max-width: 720px;
  }
}

@media (max-width: 767px) {
  .hero-area {
    padding-top: 0;
    padding-bottom: 30px;
    margin: 10px 15px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 720px;
  }
}

.hero-area .hero-thumb {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 50%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-area .hero-thumb {
    position: static;
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-thumb {
    position: static;
    width: 100%;
  }
}

.hero-area .hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 700px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content {
    padding: 30px 15px 0;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding: 20px 15px 0;
  }
}

.hero-content .sub-title p {
  font-size: 35px;
  line-height: 35px;
  font-weight: 700;
  color: #020202;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .sub-title p {
    font-size: 24px;
    padding-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .hero-content .sub-title p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .title {
    max-width: 530px;
  }
}

@media (max-width: 767px) {
  .hero-content .title {
    max-width: 280px;
  }
}

.hero-content .title h2 {
  font-size: 160px;
  line-height: 125px;
  font-weight: 400;
  color: #171717;
  margin-bottom: 20px;
  font-family: "Bogs Headline";
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content .title h2 {
    font-size: 125px;
    /*125px per David E*/
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content .title h2 {
    font-size: 110px;
    line-height: 100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content .title h2 {
    font-size: 100px;
    line-height: 90px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content .title h2 {
    font-size: 110px;
    line-height: 90px;
  }
}

@media (max-width: 767px) {
  .hero-content .title h2 {
    font-size: 50px;
    line-height: 40px;
  }
}

/*Removing a styling per David C*/
.hero-content .read-more {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #FFFFFF;
  padding: 10px 20px;
  background: #171717;
  border-radius: 100px;
  font-family: "Front Page Neue";
}

@media (max-width: 767px) {
  .hero-content .read-more {
    font-size: 20px;
    padding: 10px 25px;
  }
}

.hero-content .read-more:hover {
  background: #fff;
  color: #000;
}

/*Removing a styling per David C*/
.promo-top .read-more {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #000;
  padding: 10px 20px;
  background: #fff;
  border-radius: 100px;
  font-family: "Front Page Neue";
}

.nav_content_block .read-more {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #000;
  padding: 5px 10px;
  background: #fff;
  border-radius: 100px;
  font-family: "Front Page Neue";
  margin-top: 10px;
}

@media (max-width: 767px) {
  .promo-top .read-more {
    font-size: 4vw;
    padding: 2vw;
    width: 75px;
    border: 2px solid #fff;
  }
}

.promo-top .read-more:hover,
.nav_content_block .read-more:hover {
  background: #000;
  color: #fff;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (min-width: 768px) and (max-width: 991px) {
  .td-product-view {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .td-product-view {
    height: 400px;
  }
}

.s-small-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .s-small-title h3 {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-small-title h3 {
    font-size: 20px;
  }
}

.product-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  max-height: 585px;
}

.product-wrap:hover {
  border-radius: 8px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.feature_slider__image,
.detail-view__slide img {
  border-radius: 8px;
}

@media (max-width: 1600px) {
  .product-wrap:hover {
    box-shadow: none;
  }
}

.product-wrap:hover .hover-thumb {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .product-wrap:hover .hover-thumb {
    display: none;
  }
}

.product-wrap .thumb {
  width: 100%;
  background: #F8F8F8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px 0 30px 0;
  position: relative;
  z-index: 1;
}

.product-wrap .thumb .three-d-mobile {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  display: none;
}

@media (max-width: 767px) {
  .product-wrap .thumb .three-d-mobile {
    font-size: 16px;
    display: inline-block;
  }
}

.product-wrap .thumb .three-d-mobile:hover {
  color: #FB6F13;
}

.product-wrap .thumb img {
  max-width: 100%;
}

.product-wrap .hover-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F8F8F8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding-bottom: 80px;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
  -webkit-transition: all 0.1s linear 0s;
  -o-transition: all 0.1s linear 0s;
  transition: all 0.1s linear 0s;
}

.product-wrap .hover-thumb img {
  max-width: 100%;
}

.three-d {
  z-index: 10;
  font-size: 20px;
  font-weight: 700;
  color: #000;

}

/* Positioning For ALL 3D Links EXCEPT PDP*/
.product-wrap .three-d {
  position: absolute;
  right: 15px;
  top: 15px;
}

/*Positining for 3D Links ON PDP*/
@media (min-width:1750px) {
  .detail-view__gallery .three-d {
    position: absolute;
    left: 550px;
    top: 30px;
  }
}

@media (max-width:1750px) and (min-width:992px) {
  .detail-view__gallery .three-d {
    position: absolute;
    left: 26vw;
    top: 30px;
  }
}

@media (max-width:992px) {
  .detail-view__gallery .three-d {
    position: absolute;
    right: 10vw;
    top: 185px;
  }
}

@media (max-width: 767px) {
  .three-d {
    font-size: 16px;
  }
}

.three-d:hover {
  color: #FB6F13;
  cursor: pointer;
}

.product-wrap .hover-thumb .view {
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 10;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 3px 25px;
  border-radius: 100px;
  transform: translate(-50%, -50%);
  font-family: "Front Page Neue";
  border: 2px solid #000;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .product-wrap .hover-thumb .view {
    font-size: 20px;
  }
}

.product-wrap .hover-thumb .view:hover {
  color: #000;
  background: #fff;
}

.product-wrap .content .title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .product-wrap .content .title {
    font-size: 12px;
  }
}

.product-wrap .content .title a {
  color: #000;
}

.product-wrap .content .title a:hover {
  color: #FB6F13;
}

.product-wrap .content .text p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-wrap .content .text p {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .product-wrap .content .text p {
    font-size: 10px;
  }
}

.product-wrap .content .price {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-wrap .content .price span {
  font-size: 16px;
  /*Making 16px per David C*/
  font-weight: 700;
  color: #000;
}

@media (max-width: 767px) {
  .product-wrap .content .price span {
    font-size: 14px;
  }
}

.product-wrap .content .price .discount {
  color: #BBBBBB;
  font-size: 16px;
  /*Making 16px per David C*/
  text-decoration: line-through;
}

@media (max-width: 767px) {
  .product-wrap .content .price .discount {
    font-size: 14px;
  }
}

.product-wrap .content .price .sell {
  color: #FB6F13;
}

.product-wrap .content .view-mobile {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 3px 25px;
  border-radius: 100px;
  font-family: "Front Page Neue";
  border: 2px solid #000;
  text-transform: uppercase;
  margin-top: 10px;
  display: none;
}

@media (max-width: 767px) {
  .product-wrap .content .view-mobile {
    font-size: 20px;
    display: inline-block;
  }
}

.product-wrap .content .view-mobile:hover {
  color: #000;
  background: #fff;
}

@media (min-width: 1450px) {
  .c-product-row {
    --bs-gutter-x: 45px;
  }
}

.product-slider {
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 767px) {
  .product-slider {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.product-slider .single-slide {
  padding: 15px;
}

@media (max-width: 767px) {
  .product-slider .single-slide {
    padding: 10px;
  }
}

.product-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  gap: 8px;
}

.product-slider .slick-dots li {
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 100%;
  border: 1px solid #707070;
  opacity: 0.2;
  cursor: pointer;
}

.product-slider .slick-dots li.slick-active {
  opacity: 1;
}

.product-slider .slick-dots li button {
  display: none;
}

.section-separator {
  width: 100%;
  height: 1px;
  background: #EEEEEE;
}

@media (max-width: 767px) {
  .is-compact .fancybox__content>.f-button.is-close-btn {
    background: #dc3545;
    left: 10px;
    right: auto;
    top: 10px;
  }
}

.banner-slider {
  margin-left: -15px;
  margin-right: -15px;
}

.banner-slider .single-slide {
  padding: 15px;
}

.banner-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

@media (max-width: 767px) {
  .banner-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 10;
    width: 100%;
  }
}

.banner-slider .slick-dots li {
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 100%;
  border: 1px solid #707070;
  opacity: 0.2;
  cursor: pointer;
}

.banner-slider .slick-dots li.slick-active {
  opacity: 1;
}

.banner-slider .slick-dots li button {
  display: none;
}

.feature-product-area {
  overflow: clip;
}

.banner-thumb {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.banner-thumb img {
  width: 100%;
  object-fit: cover;
}

.banner-thumb .read-more {

  font-size: 24px;
  font-weight: 400;
  color: #000;
  background: #fff;
  padding: 5px 25px;
  border-radius: 100px;
  font-family: "Front Page Neue";
  letter-spacing: 1px;
}

.banner-thumb .banner-content {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 10;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-thumb .read-more {
    font-size: 20px;
  }

  .banner-thumb .banner-content {
    left: 30px;
    bottom: 35px;
  }
}

@media (max-width: 767px) {
  .banner-thumb .banner-content {
    left: 30px;
    bottom: 35px;
  }

  .banner-thumb .read-more {
    font-size: 20px;
  }
}

.banner-thumb .read-more:hover {
  color: #fff;
  background: #000;
}

.banner-2 {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.banner-2 .banner-content {
  position: absolute;
  left: 12%;
  bottom: 15%;
  z-index: 10;
  max-width: 600px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .banner-2 .banner-content {
    bottom: 8%;
  }
}

.banner-2 img {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-2 .banner-content {
    left: 6%;
    bottom: 10%;
    max-width: 490px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-2 .banner-content {
    left: 6%;
    bottom: 10%;
    max-width: 490px;
  }
}

@media (max-width: 767px) {
  .banner-2 .banner-content {
    position: absolute;
    left: 0;
    top: 10%;
    bottom: auto;
    padding: 25px;
  }
}

.banner-2 .banner-content h3 {
  font-size: 83px;
  font-weight: 400;
  font-family: "Front Page Neue";
  color: #fff;
  margin-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-2 .banner-content h3 {
    font-size: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-2 .banner-content h3 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .banner-2 .banner-content h3 {
    font-size: 40px;
  }
}

.banner-2 .banner-content p {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 32px;
  margin-bottom: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-2 .banner-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-2 .banner-content p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .banner-2 .banner-content p {
    font-size: 14px;
    line-height: 28px;
  }
}

.banner-2 .banner-content .read-more {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  background: #fff;
  padding: 3px 25px;
  border-radius: 100px;
  font-family: "Front Page Neue";
  border: 2px solid #fff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-2 .banner-content .read-more {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .banner-2 .banner-content .read-more {
    display: none;
    font-size: 20px;
  }
}

.banner-2 .banner-content .read-more:hover {
  color: #fff;
  background: transparent;
}

@media (min-width: 1450px) {
  .modal-xxxl {
    --bs-modal-width: 1600px;
  }
}

.seasonal-content-wrap {
  padding: 48px 50px 48px 94px;
  background-color: #efeff0;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  gap: 120px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap {
    padding: 48px;
    gap: 60px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap {
    padding: 48px;
    gap: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap {
    padding: 25px;
    gap: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap {
    padding: 25px;
    border-radius: 8px;
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap {
    padding: 25px 15px;
    border-radius: 8px;
    flex-direction: column;
    gap: 50px;
  }
}

.seasonal-content-wrap .seasonal-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  width: 40%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content {
    width: 100%;
  }
}

.seasonal-content-wrap .seasonal-content .shape-1 {
  position: absolute;
  z-index: -1;
  top: -50px;
  left: 0;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap .seasonal-content .shape-1 {
    top: -10px;
    width: 60px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .seasonal-content .shape-1 {
    top: -24px;
    width: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .shape-1 {
    top: -20px;
    width: 42px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content .shape-1 {
    top: -20px;
    width: 42px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .shape-1 {
    display: none;
  }
}

.seasonal-content-wrap .seasonal-content .shape-2 {
  position: absolute;
  z-index: -1;
  top: -40px;
  right: -80px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap .seasonal-content .shape-2 {
    width: 50px;
    top: 0;
    right: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .seasonal-content .shape-2 {
    width: 50px;
    top: 0;
    right: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .shape-2 {
    width: 40px;
    top: 0;
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content .shape-2 {
    width: 40px;
    top: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .shape-2 {
    width: 30px;
    top: 0;
    right: 0;
  }
}

.seasonal-content-wrap .seasonal-content .shape-3 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: -125px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap .seasonal-content .shape-3 {
    width: 150px;
    right: -50px;
    bottom: 60px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .seasonal-content .shape-3 {
    width: 150px;
    right: -50px;
    bottom: 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .shape-3 {
    bottom: 64px;
    right: -50px;
    width: 130px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content .shape-3 {
    bottom: 64px;
    right: 0;
    width: 130px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .shape-3 {
    bottom: -20px;
    right: 0;
    width: 80px;
  }
}

.seasonal-content-wrap .seasonal-content .shape-4 {
  position: absolute;
  z-index: -1;
  bottom: -150px;
  right: 140px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap .seasonal-content .shape-4 {
    width: 80px;
    bottom: -20px;
    right: 90px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .seasonal-content .shape-4 {
    width: 80px;
    bottom: -20px;
    right: 90px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .shape-4 {
    bottom: 5px;
    right: 65px;
    width: 65px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content .shape-4 {
    bottom: 5px;
    right: 120px;
    width: 70px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .shape-4 {
    bottom: -18px;
    right: 100px;
    width: 40px;
  }
}

.seasonal-content-wrap .seasonal-content .title-thumb img {
  max-width: 756px;
  margin-left: -34px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap .seasonal-content .title-thumb img {
    max-width: 708px;
    margin-left: -32px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .seasonal-content .title-thumb img {
    max-width: 540px;
    margin-left: -23px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .title-thumb img {
    max-width: 410px;
    margin-left: -23px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content .title-thumb img {
    max-width: 410px;
    margin-left: -23px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .title-thumb img {
    max-width: 100%;
    margin-left: -16px;
  }
}

.seasonal-content-wrap .seasonal-content .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #252525;
  margin-bottom: 28px;
  margin-top: -20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content .title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .title {
    display: none;
  }
}

.seasonal-content-wrap .seasonal-content p {
  max-width: 504px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #252525;
  margin-bottom: 25px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .seasonal-content p {
    max-width: 440px;
    font-size: 22px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content p {
    max-width: 360px;
    font-size: 18px;
    line-height: 25px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .seasonal-content p {
    max-width: 430px;
    font-size: 18px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content p {
    font-size: 14px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .seasonal-content .seasonal-btn {
    display: none;
  }
}

.seasonal-content-wrap .seasonal-content .seasonal-btn a {
  display: inline-block;
  font-family: "Front Page Neue";
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 3px 25px;
  border-radius: 100px;
  border: 2px solid #000;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .seasonal-content .seasonal-btn a {
    font-size: 20px;
  }
}

.seasonal-content-wrap .seasonal-content .seasonal-btn a:hover {
  background: transparent;
  color: #000;
}

.seasonal-content-wrap .s-video-section {
  position: relative;
  z-index: 1;
  max-width: 770px;
  width: 100%;
  flex: none;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .seasonal-content-wrap .s-video-section {
    width: 40%;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .seasonal-content-wrap .s-video-section {
    width: 40%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .s-video-section {
    width: 40%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .s-video-section {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .s-video-section {
    width: 100%;
  }
}

.seasonal-content-wrap .s-video-section:hover .play-btn {
  opacity: 0.5;
}

.seasonal-content-wrap .s-video-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal-content-wrap .s-video-section .play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.seasonal-content-wrap .s-video-section .play-btn img {
  width: 100px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .seasonal-content-wrap .s-video-section .play-btn img {
    width: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .seasonal-content-wrap .s-video-section .play-btn img {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .seasonal-content-wrap .s-video-section .play-btn img {
    width: 50px;
  }
}

.cart-popup-wrapper {
  padding: 20px 45px 45px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-popup-wrapper {
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper {
    padding: 0;
  }
}

.cart-popup-wrapper .popup-close {
  position: absolute;
  right: 50px;
  top: 50px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-popup-wrapper .popup-close {
    right: 16px;
    top: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .popup-close {
    right: 16px;
    top: 16px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .popup-close {
    right: 16px;
    top: 16px;
  }
}

.cart-popup-wrapper .popup-close:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.cart-popup-wrapper .cart-popup-head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid #D6D6D6;
  font-size: 34px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 35px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-popup-wrapper .cart-popup-head {
    font-size: 17px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-head {
    font-size: 17px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-head {
    font-size: 17px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

.cart-popup-wrapper .cart-popup-head img {
  height: 80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-popup-wrapper .cart-popup-head img {
    height: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-head img {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-head img {
    height: 40px;
  }
}

.cart-popup-wrapper .cart-popup-middle {
  display: grid;
  grid-template-columns: 1fr 30%;
  gap: 100px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-popup-wrapper .cart-popup-middle {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cart-popup-wrapper .cart-popup-middle .left {
  padding-bottom: 30px;
  border-bottom: 1px solid #D6D6D6;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .left {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .left {
    padding-bottom: 20px;
  }
}

.cart-popup-wrapper .cart-popup-middle .right {
  padding-bottom: 30px;
  border-bottom: 1px solid #D6D6D6;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .right {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .right {
    padding-bottom: 20px;
  }
}

.cart-popup-wrapper .cart-popup-middle .sub-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.cart-popup-wrapper .cart-popup-middle .sub-total span {
  font-size: 23px;
  font-weight: 400;
  color: #000;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .sub-total span {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .sub-total span {
    font-size: 20px;
  }
}

.cart-popup-wrapper .cart-popup-middle a.checkout {
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  border-radius: 100px;
  height: 48px;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle a.checkout {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle a.checkout {
    font-size: 20px;
  }
}

.cart-popup-wrapper .cart-popup-middle a.continue {
  display: flex;
  align-items: center;
  color: #000;
  border-radius: 100px;
  height: 30px;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle a.continue {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle a.continue {
    font-size: 16px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product {
  display: flex;
  align-items: center;
  position: relative;
  gap: 50px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product {
    gap: 10px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product a.remove {
  /*position: absolute; Removing per David E*/
  right: 0;
  top: 0;
  color: #ADADAD;
  font-size: 15px;
  font-weight: 400;
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product a.remove {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product a.remove {
    font-size: 12px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product a.remove:hover {
  color: #dc3545;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .thumb img {
  max-width: 300px;
  background: #F8F8F8;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .thumb {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .thumb {
    width: 130px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content h3 {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content h3 {
    font-size: 15px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content h3 a {
  color: #000;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content h3 a:hover {
  color: #FB6F13;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .meta p {
  color: #ADADAD;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content .meta p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content .meta p {
    font-size: 15px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price {
    flex-direction: column-reverse;
    margin-top: 10px;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price {
    flex-direction: column-reverse;
    margin-top: 10px;
    gap: 10px;
    align-items: flex-start;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .cart-plus-minus {
  width: 100px;
  position: relative;
  z-index: 1;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .cart-plus-minus input {
  width: 100%;
  height: 25px;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .cart-plus-minus .qtybutton {
  width: 25px;
  height: 25px;
  background: #EFEFEF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .cart-plus-minus .qtybutton:hover {
  background: #FB6F13;
  color: #fff;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .cart-plus-minus .qtybutton.minus {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .cart-plus-minus .qtybutton.plus {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .price {
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .price {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .price {
    font-size: 15px;
  }
}

.cart-popup-wrapper .cart-popup-middle .cart-product .content .quantity-price .price del {
  color: #ADADAD;
  margin-right: 14px;
}

@media (max-width: 767px) {
  .cart-popup-wrapper .cart-popup-bottom .row {
    --bs-gutter-x: 10px;
  }
}

.filter-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
}

.filter-btns .btn-1 {
  font-size: 20px;
  font-weight: 700;
  color: #666666;
  background: transparent;
  border: 1px solid #666666;
  border-radius: 100px;
  padding: 10px 30px;
}

.filter-btns .btn-1.active,
.filter-btns .btn-1:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.filter-btns .btn-2 {
  font-size: 20px;
  font-weight: 700;
  color: #666666;
  background: transparent;
  border: 1px solid #666666;
  border-radius: 100px;
  padding: 10px;
}

.filter-btns select.btn-2 option {
  display: block;
  padding: 8px 16px;
  color: rgb(55, 65, 81);
  font-size: 14px;
  text-align: left;
}

.filter-btns select.btn-2 option:hover {
  background: rgb(243, 244, 246);
}

.fancybox__container {
  z-index: 99999;
}

.product-area {
  overflow: clip;
  position: relative;
}

.products-layout {
  position: relative;
  z-index: 1;
}

.products-layout .product-filters {
  position: absolute;
  left: -999%;
  top: 0;
  width: 370px;
  height: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  z-index: 99;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .products-layout .product-filters {
    width: 270px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .products-layout .product-filters {
    width: 270px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-layout .product-filters {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-layout .product-filters {
    display: none;
  }
}

@media (max-width: 767px) {
  .products-layout .product-filters {
    display: none;
  }
}

.products-layout .product-filters:before {
  content: "";
  position: absolute;
  left: -999px;
  right: 0;
  top: 0;
  bottom: -999px;
  background: #F8F8F8;
  z-index: -1;
  border-radius: 0 8px 8px 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-layout .product-filters:before {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-layout .product-filters:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .products-layout .product-filters:before {
    display: none;
  }
}

.products-layout .product-filters .product-filters-close {
  position: absolute;
  right: 40px;
  top: 0px;
  /*Making 0px per David C*/
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.products-layout .product-filters .product-filters-heading h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding-bottom: 50px;
  border-bottom: 1px solid #707070;
}

.products-layout .product-filters .inner-filter {
  max-width: 100%;
  position: sticky;
  top: 10px;
  height: 100vh;
  overflow-y: auto;
  padding-right: 40px;
  padding-bottom: 40px;
}

.products-layout .product-filters .inner-filter::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.products-layout .product-filters .inner-filter::-webkit-scrollbar-track {
  background: #c1c1c1;
}

.products-layout .product-filters .inner-filter::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}

.products-layout .product-filters .inner-filter::-webkit-scrollbar-thumb:active {
  background: #FB6F13;
}

.products-layout.filter-active {
  padding-left: 420px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .products-layout.filter-active {
    padding-left: 300px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .products-layout.filter-active {
    padding-left: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-layout.filter-active {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-layout.filter-active {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .products-layout.filter-active {
    padding-left: 0;
  }
}

.products-layout.filter-active .products-grids {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-layout.filter-active .products-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*Min height per Benjamin*/
@media (min-width: 767px) {
  .products-layout.filter-active .products-grids {
    min-height: 1200px;
  }
}

@media (max-width: 767px) {
  .products-layout.filter-active .products-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

.products-layout.filter-active .product-filters {
  left: 0;
}

.products-layout .products-grids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .products-layout .products-grids {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .products-layout .products-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .products-layout .products-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-filter-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000;
  visibility: hidden;
  opacity: 0;
  display: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-filter-overlay {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-filter-overlay {
    display: block;
  }
}

@media (max-width: 767px) {
  .product-filter-overlay {
    display: block;
  }
}

.product-filter-overlay.active {
  visibility: visible;
  opacity: 0.5;
}

.filter-item {
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.filter-item .filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-item .filter-heading h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  cursor: pointer;
}

.filter-item .filter-heading .icon {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  font-style: normal;
}

.filter-item .filter-heading .icon:before {
  content: "\d7";
  font-weight: bold;
}

.filter-item .filter-heading.active .icon:before {
  content: "+";
  font-family: "Font Awesome 6 Pro";
}

.filter-item .filter-content {
  padding-top: 20px;
  padding-bottom: 15px;
}

.filter-item .size-check-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.filter-item .size-check-boxes .checkbox-wrap input {
  display: none;
}

.filter-item .size-check-boxes .checkbox-wrap input:checked+label {
  border-color: #000;
  background: #000;
  color: #fff;
}

.filter-item .size-check-boxes .checkbox-wrap label {
  border: 1px solid #B4B4B4;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.filter-item .color-check-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 50px;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .filter-item .color-check-boxes {
    gap: 15px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .filter-item .color-check-boxes {
    gap: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .filter-item .color-check-boxes {
    gap: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .filter-item .color-check-boxes {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .filter-item .color-check-boxes {
    gap: 15px;
  }
}

.filter-item .color-check-boxes .checkbox-wrap input {
  display: none;
}

.filter-item .color-check-boxes .checkbox-wrap label.selected .color-box:before {
  visibility: visible;
  opacity: 1;
}

.filter-item .color-check-boxes .checkbox-wrap label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box {
  width: 55px;
  height: 55px;
  background: #000;
  border-radius: 100%;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box:before {
  content: "\d7";
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  text-shadow: 1px 1px 1px #000;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.blue {
  background: #415263;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.green {
  background: #5F6037;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.gray {
  background: #444444;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.brown {
  background: #635341;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.red {
  background: #AF1E1E;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.pink {
  background: #ffb6c1;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.black {
  background: #000000;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.white {
  background: #FFFFFF;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.tan {
  background: #d2b48c;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.purple {
  background: #800080;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.yellow {
  background: #ffff00;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.camo {
  background: #808000;
}

.filter-item .color-check-boxes .checkbox-wrap label .color-box.orange {
  background: #ffa500;
}

.filter-item .check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-item .check-list .checkbox-wrap input {
  display: none;
}

.filter-item .check-list .checkbox-wrap input:checked+label:before {
  border-color: #000;
  background: #000;
}

.filter-item .check-list .checkbox-wrap label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  gap: 10px;
}

.filter-item .check-list .checkbox-wrap label:before {
  content: "";
  border: 1px solid #707070;
  border-radius: 8px;
  background: #fff;
  width: 28px;
  height: 28px;
  flex: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.filter-item .check-list .checkbox-wrap label span {
  flex: 1;
}

.product-filters-mobile {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-filters-mobile.active {
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-filters-mobile.active {
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .product-filters-mobile.active {
    visibility: visible;
    opacity: 1;
  }
}

.product-filters-mobile .product-filters-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.product-filters-mobile .product-filters-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.product-filters-mobile .product-filters-heading h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding-bottom: 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid #707070;
}

.product-filters-mobile .product-inner-filter {
  width: 100%;
  max-width: 315px;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  overflow-y: auto;
  padding: 50px 20px;
}

.product-filters-mobile .product-inner-filter::-webkit-scrollbar {
  width: 10px;
}

.product-filters-mobile .product-inner-filter::-webkit-scrollbar-track {
  background: #c1c1c1;
}

.product-filters-mobile .product-inner-filter::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}

.product-filters-mobile .product-inner-filter::-webkit-scrollbar-thumb:active {
  background: #FB6F13;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .product-filters-mobile .product-inner-filter.active {
    left: 0;
    z-index: 99999;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-filters-mobile .product-inner-filter.active {
    left: 0;
    z-index: 99999;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
  }
}

@media (max-width: 767px) {
  .product-filters-mobile .product-inner-filter.active {
    left: 0;
    z-index: 99999;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
  }
}

.p-category-slide:hover .thumb p {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 767px) {
  .p-category-slide:hover .thumb p {
    visibility: visible;
    opacity: 1;
  }
}

.p-category-slide:hover .thumb:before {
  visibility: visible;
  opacity: 0.2;
  top: 0;
}

@media (max-width: 767px) {
  .p-category-slide:hover .thumb:before {
    visibility: hidden;
    opacity: 0;
  }
}

.p-category-slide:hover .thumb .read-more {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  .p-category-slide:hover .thumb .read-more {
    visibility: hidden;
    opacity: 0;
  }
}

.p-category-slide .thumb {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.p-category-slide .thumb img {
  width: 100%;
}

.p-category-slide .thumb p {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-family: "Front Page Neue";
  text-shadow: rgba(0, 0, 0, 0.9) 0px 0px 8px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  .p-category-slide .thumb p {
    font-size: 20px;
  }
}

.p-category-slide .thumb .read-more {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  background: #fff;
  padding: 5px 25px;
  border-radius: 100px;
  font-family: "Front Page Neue";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  .p-category-slide .thumb .read-more {
    font-size: 20px;
  }
}

.p-category-slide .thumb:before {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.p-category-slide-2:hover .thumb p {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 767px) {
  .p-category-slide-2:hover .thumb p {
    visibility: visible;
    opacity: 1;
  }
}

.p-category-slide-2:hover .thumb:before {
  visibility: visible;
  opacity: 0.2;
  top: 0;
}

@media (max-width: 767px) {
  .p-category-slide-2:hover .thumb:before {
    visibility: hidden;
    opacity: 0;
  }
}

.p-category-slide-2:hover .thumb .read-more {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  .p-category-slide-2:hover .thumb .read-more {
    visibility: hidden;
    opacity: 0;
  }
}

.p-category-slide-2 .thumb {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.p-category-slide-2 .thumb img {
  width: 100%;
}

.p-category-slide-2 .thumb p {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-family: "Front Page Neue";
  text-shadow: rgba(0, 0, 0, 0.9) 0px 0px 8px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  .p-category-slide-2 .thumb p {
    font-size: 20px;
  }
}

.p-category-slide-2 .thumb .read-more {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  background: #fff;
  padding: 5px 25px;
  border-radius: 100px;
  font-family: "Front Page Neue";
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

@media (max-width: 767px) {
  .p-category-slide-2 .thumb .read-more {
    font-size: 20px;
  }
}

.p-category-slide-2 .thumb:before {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.product-category-slider {
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 767px) {
  .product-category-slider {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.product-category-slider .single-slide {
  padding: 15px;
}

@media (max-width: 767px) {
  .product-category-slider .single-slide {
    padding: 10px;
  }
}

.product-category-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.product-category-slider .slick-dots li {
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 100%;
  border: 1px solid #707070;
  opacity: 0.2;
  cursor: pointer;
}

.product-category-slider .slick-dots li.slick-active {
  opacity: 1;
}

.product-category-slider .slick-dots li button {
  display: none;
}

.product-category-slider-2 {
  margin-left: -15px;
  margin-right: -15px;
}

@media (max-width: 767px) {
  .product-category-slider-2 {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.product-category-slider-2 .single-slide {
  padding: 15px;
}

@media (max-width: 767px) {
  .product-category-slider-2 .single-slide {
    padding: 10px;
  }
}

.product-category-slider-2 .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.product-category-slider-2 .slick-dots li {
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 100%;
  border: 1px solid #707070;
  opacity: 0.2;
  cursor: pointer;
}

.product-category-slider-2 .slick-dots li.slick-active {
  opacity: 1;
}

.product-category-slider-2 .slick-dots li button {
  display: none;
}

.s-video-wrap {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.s-video-wrap video {
  border-radius: 8px;
}

.s-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-video-wrap .play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .5;
}

.s-video-wrap .play-btn img {
  width: 80px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-video-wrap .play-btn img {
    width: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-video-wrap .play-btn img {
    width: 50px;
  }
}

@media (max-width: 767px) {
  .s-video-wrap .play-btn img {
    width: 50px;
  }
}

.s-content-wrap h3 {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Front Page Neue";
  font-weight: 400;
  margin-bottom: 0;
  color: #000;
}

.s-content-wrap .small-text {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.s-content-wrap h4 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.s-content-wrap .text {
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-wrap .text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-content-wrap .text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .s-content-wrap .text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.s-content-wrap .read-more {
  display: inline-block;
  font-family: "Front Page Neue";
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 3px 25px;
  border-radius: 100px;
  border: 2px solid #000;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-wrap .read-more {
    font-size: 20px;
  }
}

.s-content-wrap .read-more:hover {
  background: #fff;
  color: #000;
}

.info-slider {
  background: #F8F8F8;
  border-radius: 8px;
  overflow: hidden;
}

.info-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 10;
  width: 100%;
}

@media (max-width: 767px) {
  .info-slider .slick-dots {
    bottom: 20px;
  }
}

.info-slider .slick-dots li {
  width: 9px;
  height: 9px;
  background: #000;
  border-radius: 100%;
  border: 1px solid #707070;
  opacity: 0.2;
  cursor: pointer;
}

.info-slider .slick-dots li.slick-active {
  opacity: 1;
}

.info-slider .slick-dots li button {
  display: none;
}

.info-slider .info-slide {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 50px;
}

@media (max-width: 767px) {
  .info-slider .info-slide {
    flex-direction: column;
    padding: 20px 20px 50px;
    gap: 30px;
  }
}

.info-slider .info-slide .thumb {
  max-width: 40%;
  width: 100%;
}

.info-slider .info-slide .content {
  flex: 1;
  text-align: center;
}

.info-slider .info-slide .content p {
  font-size: 30px;
  font-weight: 400;
  color: #000;
  margin-bottom: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .info-slider .info-slide .content p {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .info-slider .info-slide .content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .info-slider .info-slide .content p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.info-slider .info-slide .content h3 {
  font-size: 13px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}

.f-thumbs.fancybox__thumbs.is-modern.is-ltr.is-horizontal {
  display: none;
}

.card-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .card-box:hover .thumb:before {
    opacity: 0.3;
    top: 0;
  }
}

.card-box:hover .content {
  visibility: visible;
  opacity: 1;
}

/*Removing title on hover per David E*/
.card-box:hover .content.visible {
  visibility: hidden;
  opacity: 0;
}

.card-box .thumb {
  position: relative;
  z-index: 1;
}

.card-box .thumb img {
  width: 100%;
  object-fit: cover;
}

.card-box .thumb:before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0;
  visibility: visible;
  position: absolute;
  left: 0;
  top: -100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.card-box .content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px 50px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

/*Adding title visibility before load per David E*/
.card-box .content.visible {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 20px 50px;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  width: 100%;
  text-align: center;
  font-family: "Bogs Headline";
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-box .content {
    top: 80%;
  }
}

@media (max-width: 767px) {
  .card-box .content {
    top: 50%;
    /*Making visible on mobile per David E*/
    visibility: visible;
    opacity: 1;
  }
}

.card-box .content h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 400;
  /*Changing font weight to 400 per David E*/
  font-family: "Bogs Headline";
  /*Changing font family to Headline per David E*/
  text-shadow: 10px 10px 27px #000;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-box .content h3 {
    display: none;
  }
}

@media (max-width: 767px) {
  .card-box .content h3 {
    display: block;
  }
}

.card-box .content p {
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .card-box .content p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-box .content p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .card-box .content p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.card-box .content .read-more {
  display: inline-block;
  font-family: "Front Page Neue";
  font-size: 24px;
  font-weight: 400;
  color: #000;
  background: #fff;
  padding: 5px 25px;
  border-radius: 100px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-box .content .read-more {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .card-box .content .read-more {
    font-size: 20px;
  }
}

.card-box .content .read-more:hover {
  background: #000;
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .card-box .content .read-more {
    font-size: 20px;
  }
}

.card-slider {
  margin-left: -15px;
  margin-right: -15px;
}

.card-slider .single-slide {
  padding: 15px;
  padding-top: 0px;
}

.card-slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

@media (max-width: 767px) {
  .card-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: 30px;
    z-index: 10;
    width: 100%;
  }
}

.card-slider .slick-dots li {
  width: 9px;
  height: 9px;
  background: #fff;
  /*Changing to #fff per David E*/
  border-radius: 100%;
  border: 1px solid #fff;
  /*Changing to #fff per David E*/
  opacity: 0.2;
  cursor: pointer;
}

.card-slider .slick-dots li.slick-active {
  opacity: 1;
}

.card-slider .slick-dots li button {
  display: none;
}

.banner-3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-3 {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .banner-3 {
    height: 400px;
  }
}

.banner-3>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-3 .icon {
  text-align: center;
  margin-bottom: 10px;
}

.banner-3 .content {
  position: absolute;
  left: 140px;
  bottom: 240px;
  max-width: 540px;
  width: 100%;
  z-index: 2;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .banner-3 .content {
    left: 140px;
    bottom: 100px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .banner-3 .content {
    left: 140px;
    bottom: 100px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-3 .content {
    left: 70px;
    bottom: 70px;
    max-width: 510px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-3 .content {
    left: 40px;
    bottom: 40px;
    max-width: 330px;
  }
}

@media (max-width: 767px) {
  .banner-3 .content {
    left: 0;
    bottom: 0;
    max-width: 100%;
    padding: 30px;
  }
}

.banner-3 .content h3 {
  font-size: 83px;
  font-weight: 400;
  line-height: 1;
  font-family: "Front Page Neue";
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-3 .content h3 {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-3 .content h3 {
    display: none;
  }
}

@media (max-width: 767px) {
  .banner-3 .content h3 {
    display: none;
  }
}

.banner-3 .content .read-more {
  display: inline-block;
  font-family: "Front Page Neue";
  font-size: 24px;
  font-weight: 400;
  color: #000;
  background: #fff;
  padding: 5px 50px;
  border-radius: 100px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-3 .content .read-more {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .banner-3 .content .read-more {
    font-size: 20px;
  }
}

.banner-3 .content .read-more:hover {
  background: #000;
  color: #fff;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-3 .content .read-more {
    font-size: 20px;
  }
}

.s-content-layout {
  display: grid;
  grid-template-columns: 1fr 35%;
  overflow: hidden;
  border-radius: 8px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-layout {
    grid-template-columns: 1fr 40%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-content-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .s-content-layout {
    grid-template-columns: 1fr;
  }
}

.s-content-layout .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-content-layout .content {
  background: #F4F4F4;
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-layout .content {
    padding: 50px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-content-layout .content {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .s-content-layout .content {
    padding: 30px;
  }
}

.s-content-layout .content h3 {
  font-size: 50px;
  line-height: 1.2;
  font-family: "Front Page Neue";
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-layout .content h3 {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-content-layout .content h3 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .s-content-layout .content h3 {
    font-size: 35px;
  }
}

.s-content-layout .content .text {
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 20px;
  color: #000;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-layout .content .text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-content-layout .content .text {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .s-content-layout .content .text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.s-content-layout .content .read-more a {
  display: inline-block;
  font-family: "Front Page Neue";
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  background: #000;
  padding: 3px 25px;
  border-radius: 100px;
  border: 2px solid #000;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .s-content-layout .content .read-more a {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .s-content-layout .content .read-more a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .s-content-layout .content .read-more a {
    font-size: 20px;
  }
}

.s-content-layout .content .read-more a:hover {
  background: #fff;
  color: #000;
}

.promo-bottom {
  background: #E7E7E7;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.promo-bottom p {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

@media (min-width: 768px) and (max-width: 991px) {
  .promo-bottom p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .promo-bottom p {
    font-size: 13px;
  }
}

.footer-area {
  background: #000;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-widget {
  margin-bottom: 50px;
}

.footer-widget h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-widget ul li {
  display: block;
}

.footer-widget ul li a {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #fff;
}

.footer-widget ul li a:hover {
  color: #FB6F13;
}

.copy-right {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer-subscribe {
  margin-bottom: 50px;
}

.footer-subscribe h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-subscribe p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer-subscribe .input-wrap {
  font-family: "Bogs Headline";
}

.footer-subscribe .input-wrap input {
  width: 100%;
  height: 55px;
  background: #fff;
  border: 0;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 400;
  font-family: 'trade-gothic-next';
}

.overlay-dark {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  position: absolute;
  background-color: black;
  opacity: 15%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

div span.email-msg {
  font-size: 11px !important;
  font-weight: normal;
}

.icon-search {
  width: 15px;
  height: 15px;
}

.s-small-title h1 {
  line-height: 0;
}

.swiper.swiper-main {
  z-index: 0 !important;
}

/*Top Nav AB*/
@media (min-width:992px) {

  #category-columns,
  #about-columns,
  #sale-columns,
  #work-columns {
    .mega-list-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
      border-right: 1px solid #D9D9D9;
      height: 100%;
    }

    span.navbar__subnav__link.sub-cat2 {
      color: #000;
    }

    .mega-list-grid {
      grid-template-columns: 1fr 1fr 1fr 1.5fr;
    }
  }

  #about-columns {
    .mega-list-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  #sale-columns {
    .mega-list-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
  }

  #work-columns {
    .mega-list-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }

  #topNavAB {

    .mega-grid-layout {
      justify-content: space-around !important;
    }
  }
}

@media (max-width:992px) {

  #category-columns,
  #about-columns,
  #sale-columns,
  #work-columns {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #category-columns,
  #about-columns,
  #work-columns {
    .mega-list-grid {
      gap: 0px;
    }
  }

  #sale-columns {
    .mega-list-grid {
      gap: 0px;
      margin-bottom: 10px;
    }
  }

  #category-columns,
  #about-columns,
  #sale-columns,
  #work-columns {
    .mega-list-col .has-dropdown .mega-title {
      border-top: 1px solid #D9D9D9;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      height: 46px;
      margin-top: 5px;
    }

    .has-dropdown .mega-title {
      margin-bottom: 0px !important;
    }

    .mega-title.partners {
      border-top: none !important;
      margin-bottom: 0px !important;
    }

  }

  #topNavAB {
    .has-dropdown.active>a.top-category-url {
      border-bottom: 0 !important;
    }

    .mega-grid-layout {
      justify-content: space-around !important;
    }
  }
}
