/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

.fadein {
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.fadein.faded {
  opacity: 1;
}

.fadeup {
  opacity: 0;
  margin-top: 30px;
  transition: all 0.3s ease 0s;
}

.fadeup.faded {
  opacity: 1;
  margin-top: 0;
}

@keyframes linegrow {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes linegrowX {
  0% {
    transform: translateX(-50%) scaleX(0);
  }

  100% {
    transform: translateX(-50%) scaleX(1);
  }
}


/* ==========================================================================
     FONTS
     ========================================================================== */

@font-face {
  font-family: 'dinpro-regular';
  src: url("../fonts/dinpro/DINPro Regular.woff") format("woff");
  font-style: normal;
}

@font-face {
  font-family: 'dinpro-medium';
  src: url("../fonts/dinpro/DINPro Medium.woff") format("woff");
  font-style: normal;
}

@font-face {
  font-family: 'dinpro-bold';
  src: url("../fonts/dinpro/DINPro Bold.woff") format("woff");
  font-style: normal;
}

@font-face {
  font-family: 'dinpro-black';
  src: url("../fonts/dinpro/DINPro Black.woff") format("woff");
  font-style: normal;
}

@font-face {
  font-family: open_sansregular;
  src: url(../fonts/opensans/opensans-regular-webfont.eot);
  src: url(../fonts/opensans/opensans-regular-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/opensans/opensans-regular-webfont.woff2) format("woff2"),
    url(../fonts/opensans/opensans-regular-webfont.woff) format("woff"),
    url(../fonts/opensans/opensans-regular-webfont.ttf) format("truetype"),
    url(../fonts/opensans/opensans-regular-webfont.svg#open_sansregular) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: open_sansbold;
  src: url(../fonts/opensans/opensans-bold-webfont.eot);
  src: url(../fonts/opensans/opensans-bold-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/opensans/opensans-bold-webfont.woff2) format("woff2"),
    url(../fonts/opensans/opensans-bold-webfont.woff) format("woff"),
    url(../fonts/opensans/opensans-bold-webfont.ttf) format("truetype"),
    url(../fonts/opensans/opensans-bold-webfont.svg#open_sansbold) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: open_sansextrabold;
  src: url(../fonts/opensans/opensans-extrabold-webfont.eot);
  src: url(../fonts/opensans/opensans-extrabold-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/opensans/opensans-extrabold-webfont.woff2) format("woff2"),
    url(../fonts/opensans/opensans-extrabold-webfont.woff) format("woff"),
    url(../fonts/opensans/opensans-extrabold-webfont.ttf) format("truetype"),
    url(../fonts/opensans/opensans-extrabold-webfont.svg#open_sansextrabold) format("svg");
  font-weight: 400;
  font-style: normal;
}


/* ==========================================================================
     BASE / RESET
     ========================================================================== */

body {
  padding: 0;
  margin: 0;
  font-family: 'dinpro-medium';
  font-size: 1.8rem;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

h1 {
  font-family: 'dinpro-black';
  font-size: 5.0rem;
  text-transform: uppercase;
}

p {
  margin-bottom: 20px;
  line-height: 1.5;
}

a {
  transition: all 0.3s ease 0s;
  text-decoration: none !important;
}

a h3 {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

input[type="radio"],
input[type="checkbox"],
.radio,
.checkbox {
  display: inline-block;
  margin: 0 8px 0 0;
}

input,
select,
textarea {
  border-radius: 0 !important;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/* Firefox fieldset fix */
@-moz-document url-prefix() {
  sssfieldset {
    display: table-cell;
  }
}


/* ==========================================================================
     TYPOGRAPHY HELPERS
     ========================================================================== */

.bldcred {
  font-family: inherit;
}

.bldcred .bldtxt1 {
  font-family: open_sansextrabold, arial, sans-serif;
  font-weight: 800;
}

.bldcred .bldtxt2 {
  font-family: open_sansbold, arial, sans-serif;
  font-weight: 400;
}

.bldcred .bldtxt3 {
  font-family: open_sansregular, arial, sans-serif;
  font-weight: 100;
}


/* ==========================================================================
     UTILITY CLASSES
     ========================================================================== */

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

.alignleft {
  float: left;
  margin: 0 15px 15px 0;
}

.alignright {
  float: right;
  margin: 0 0 15px 15px;
}

.aligncenter {
  display: block;
  float: none;
  margin: 0 auto 15px auto;
}

.flex {
  display: flex !important;
  flex-wrap: wrap;
}

.flex-nw {
  display: flex;
  flex-wrap: nowrap;
}

.flex-center-h {
  justify-content: center;
}

.flex-center-v {
  align-items: center;
}

.sw-flex {
  display: flex;
}

.sw-flex-items-center {
  align-items: center;
}

.touch-hide {
  display: block;
}

.touch-show {
  display: none;
}

.touch-support .touch-hide {
  display: none;
}

.touch-support .touch-show {
  display: block;
}

.yellow-line-top {
  position: relative;
  padding-top: 20px;
}

.yellow-line-top::before {
  left: 50%;
  width: 200px;
  top: 0;
  content: "";
  position: absolute;
  height: 4px;
  background-color: #FECD0C;
  transform: scaleX(0) translateX(-50%);
}

.yellow-line-top.line-animation::before {
  animation: linegrowX 0.8s forwards;
}

.yellow-line-left {
  position: relative;
  padding-left: 40px;
}

.yellow-line-left::before {
  left: 0;
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #FECD0C;
  transform: scaleY(0);
}

.yellow-line-left.line-animation::before {
  animation: linegrow 0.8s forwards;
}


/* ==========================================================================
     BRAND / SOCIAL COLORS
     ========================================================================== */

.brand-facebook {
  color: #3b5998;
}

.brand-twitter {
  color: #55acee;
}

.brand-pinterest {
  color: #cb2027;
}

.brand-instagram {
  color: #125688;
}

.brand-linkedin {
  color: #007bb5;
}

.brand-google {
  color: #dd4b39;
}

.brand-youtube {
  color: #bb0000;
}

.brand-yelp {
  color: #c21613;
}

.brand-facebook:hover,
.brand-facebook:active,
.brand-facebook:focus {
  color: #2d4373;
}

.brand-twitter:hover,
.brand-twitter:active,
.brand-twitter:focus {
  color: #2795e9;
}

.brand-pinterest:hover,
.brand-pinterest:active,
.brand-pinterest:focus {
  color: #9f191f;
}

.brand-instagram:hover,
.brand-instagram:active,
.brand-instagram:focus {
  color: #0c3a5b;
}

.brand-linkedin:hover,
.brand-linkedin:active,
.brand-linkedin:focus {
  color: #005882;
}

.brand-google:hover,
.brand-google:active,
.brand-google:focus {
  color: #c23321;
}

.brand-youtube:hover,
.brand-youtube:active,
.brand-youtube:focus {
  color: #880000;
}

.brand-yelp:hover,
.brand-yelp:active,
.brand-yelp:focus {
  color: #94110e;
}


/* ==========================================================================
     BUTTONS
     ========================================================================== */

.btn {
  white-space: normal;
  text-transform: capitalize;
}

.sw-btn-yellow-empty,
.gform_wrapper .gform_footer input.submit-button {
  border: 2px solid #FECD0C;
  border-radius: 30px;
  color: #FECD0C;
  font-size: 2.6rem;
  font-family: 'dinpro-bold';
  padding: 2px 15px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.sw-btn-yellow-empty:hover,
.gform_wrapper .gform_footer input.submit-button:hover {
  background-color: #FECD0C;
  color: #000;
}

.sw-btn-yellow-empty-white {
  border: 2px solid #FECD0C;
  border-radius: 30px;
  color: #fff;
  font-size: 2.6rem;
  font-family: 'dinpro-bold';
  padding: 2px 15px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.sw-btn-yellow-empty-white:hover {
  background-color: #FECD0C;
  color: #000;
}

.sw-btn-black-empty {
  border: 2px solid #000;
  border-radius: 30px;
  color: #000;
  font-size: 2.6rem;
  font-family: 'dinpro-bold';
  padding: 2px 15px;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
}

.sw-btn-black-empty:hover {
  background-color: #000;
  color: #fff;
}


/* ==========================================================================
     CAROUSEL / SLICK
     ========================================================================== */

.carousel .carousel-control .icon-prev,
.carousel .carousel-control .icon-next {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  font-size: 30px;
  line-height: 0;
  margin: 0;
}

.carousel .carousel-inner .item {
  max-height: 900px;
}

.carousel .carousel-inner .item img {
  object-fit: cover;
  width: 100%;
}

.slick-slide:focus,
.slick-slide a {
  outline: none;
}


/* ==========================================================================
     PAGE HEADER
     ========================================================================== */

.page-header {
  margin-top: 0;
  margin-bottom: 0;
  padding: 15px 0;
  background-color: white;
  border-bottom: 1px solid white;
  color: #ffeca4;
}

.page-header .heading {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
}


/* ==========================================================================
     COMMENTS
     ========================================================================== */

#comments {
  margin: 50px 0;
}

#comments .heading {
  font-size: 18px;
  margin-bottom: 30px;
}

#comments .comment-list {
  list-style-type: none;
  padding-left: 0;
}

#comments .comment-list ol {
  list-style-type: none;
}

#comments .comment-list li {
  padding: 15px;
  margin: 20px 0;
}

#comments .comment-list li:nth-child(odd) {
  border-left: 5px solid #bbbbbb;
  background: #fbfbfb;
}

#comments .comment-list li:nth-child(even) {
  border-left: 5px solid #c8c8c8;
  background: #eeeeee;
}

#comments .comment-list li li:nth-child(odd) {
  border-left: 5px solid #c8c8c8;
  background: #eeeeee;
}

#comments .comment-list li li:nth-child(even) {
  border-left: 5px solid #bbbbbb;
  background: #fbfbfb;
}

#comments .comment-list .comment-meta {
  margin-bottom: 30px;
  font-size: 12px;
}

#comments .comment-list .reply {
  margin-top: 30px;
}

#comments .comment-author {
  margin-bottom: 8px;
}

#comments cite.fn {
  font-size: 24px;
  margin-top: 1px;
  margin-left: 15px;
  display: inline-block;
  font-style: normal;
}

#comments .says {
  font-size: 14px;
}

#comments .reply::before {
  content: "\f075";
  font-family: "FontAwesome";
  margin-right: 5px;
  color: #FECD0C;
}

#comments #respond {
  border-top: 1px solid #eeeeee;
  padding-top: 30px;
}

#comments #respond #reply-title {
  font-size: 18px;
}

#comments #respond label {
  display: block;
}

#comments #respond .comment-form-comment textarea {
  display: block;
  clear: both;
  width: 100%;
}


/* ==========================================================================
     FOOTER
     ========================================================================== */

#footer {
  padding-top: 50px;
  border-top: 5px solid #FECD0C;
  font-size: 1.3rem;
  font-family: 'dinpro-medium';
}

#footer a {
  color: #000;
}

#footer a:hover {
  color: #FECD0C;
}

#footer .footer-title {
  font-size: 2.2rem;
  font-family: 'dinpro-bold';
  margin-bottom: 30px;
}

#footer .footer-title::after {
  content: "";
  border-top: 6px solid #FECD0C;
  width: 95px;
  display: block;
  margin-top: 5px;
}

#footer .footer-deals .footer-deals-form .gform_wrapper form ul li {
  margin: 0 !important;
  padding: 0 !important;
}

#footer .footer-deals .footer-deals-form .gform_wrapper form ul li span.help-block {
  width: 100% !important;
}

#footer .footer-deals .footer-deals-form .gform_wrapper form ul li label {
  display: none;
}

#footer .footer-deals .footer-deals-form .gform_wrapper form ul li input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  border: 3px solid #FECD0C;
  border-radius: 30px !important;
  padding: 15px;
  margin-bottom: 10px !important;
}

#footer .footer-deals .footer-deals-form .gform_wrapper form .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}

#footer .footer-deals .footer-deals-form .gform_wrapper form .gform_footer input[type="submit"] {
  border-radius: 30px !important;
  background-color: #FECD0C;
  color: #000;
  padding: 15px;
  width: 100%;
  text-align: center;
  margin: 0 !important;
  float: none !important;
  font-family: 'dinpro-bold';
  font-size: 1.9rem;
}

#footer .footer-site-map {
  padding-left: 30px;
}

#footer .footer-site-map ul.sitemap-nav {
  list-style: none;
  padding: 0;
}

#footer .footer-site-map ul.sitemap-nav li a {
  color: #000;
  padding-bottom: 10px;
  display: inline-block;
  text-decoration: none;
}

#footer .footer-site-map ul.sitemap-nav li a:hover {
  color: #FECD0C;
}

#footer .footer-store-information .store-information-content {
  font-family: 'dinpro-regular';
}

#footer .footer-store-information .store-information-content strong {
  font-family: 'dinpro-medium';
}

#footer .footer-connect .connect-social a i {
  font-size: 3.0rem;
}

#footer .footer-bottom-bar {
  padding: 20px 0;
  background-color: #FECD0C;
  margin-top: 50px;
  font-family: 'dinpro-bold';
  font-size: 1.4rem;
}

#footer .footer-bottom-bar .footer-affiliates img {
  margin-right: 10px;
  vertical-align: middle;
}

#footer .footer-bottom-bar .footer-credits {
  padding-top: 15px;
  text-align: center;
}

#footer .footer-bottom-bar .footer-credits a:hover {
  color: #464E3F;
}

#footer .footer-bottom-bar .footer-copy {
  padding-top: 15px;
  text-align: right;
}

#footer .footer-bottom-bar .footer-terms {
  padding-top: 15px;
  text-align: right;
}

#footer .footer-bottom-bar .footer-terms a {
  color: #000 !important;
}


/* ==========================================================================
     GRAVITY FORMS
     ========================================================================== */

.gform_wrapper .gfield_error .ginput_complex .ginput_left input[type=email],
.gform_wrapper .gfield_error .ginput_complex .ginput_left input[type=number],
.gform_wrapper .gfield_error .ginput_complex .ginput_left input[type=password],
.gform_wrapper .gfield_error .ginput_complex .ginput_left input[type=tel],
.gform_wrapper .gfield_error .ginput_complex .ginput_left input[type=text],
.gform_wrapper .gfield_error .ginput_complex .ginput_left input[type=url],
.gform_wrapper .gfield_error .ginput_complex .ginput_right input[type=email],
.gform_wrapper .gfield_error .ginput_complex .ginput_right input[type=number],
.gform_wrapper .gfield_error .ginput_complex .ginput_right input[type=password],
.gform_wrapper .gfield_error .ginput_complex .ginput_right input[type=tel],
.gform_wrapper .gfield_error .ginput_complex .ginput_right input[type=text],
.gform_wrapper .gfield_error .ginput_complex .ginput_right input[type=url],
.gform_wrapper .ginput_complex input[type=email],
.gform_wrapper .ginput_complex input[type=number],
.gform_wrapper .ginput_complex input[type=password],
.gform_wrapper .ginput_complex input[type=tel],
.gform_wrapper .ginput_complex input[type=text],
.gform_wrapper .ginput_complex input[type=url],
.gform_wrapper .hidden_label input.large,
.gform_wrapper .hidden_label select.large,
.gform_wrapper .top_label input.large,
.gform_wrapper .top_label select.large,
.gform_wrapper textarea.large {
  width: 100% !important;
}

.gform_wrapper {
  max-width: 100% !important;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0 !important;
}

.ginput_complex>span>label {
  font-size: 11px !important;
}

.gform_wrapper div.validation_error {
  width: 100% !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  padding: 15px !important;
  font-size: 18px;
  text-align: center;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  padding: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  max-width: 100% !important;
  padding-right: 0 !important;
}

.gform_wrapper .gfield_description+.gform_wrapper .gfield_description.validation_message,
.gform_wrapper .ginput_container+.gfield_description.validation_message {
  margin-top: 0 !important;
}

.gform_wrapper .ginput_container+.gfield_description.validation_message::before {
  content: "\f071";
  font-family: 'FontAwesome';
  margin-right: 4px;
}

img.gform_ajax_spinner {
  position: absolute !important;
  z-index: 999999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("../img/ajax-spinner.gif");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center center;
}

.gfield {
  position: relative;
  margin: 0 0 22px !important;
}

.gfield .help-block {
  padding: 0;
  margin: 0;
}

.gfield label {
  position: absolute;
  top: -13px;
  left: 0;
  font-size: 11px;
  color: #aaa;
  transition: all 0.1s linear 0s;
  opacity: 0;
  font-weight: bold;
  display: none !important;
}

.gfield label.on {
  color: #FECD0C;
}

.gfield label.show {
  top: -17px;
  opacity: 1;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper textarea {
  outline: none !important;
  box-shadow: none !important;
  padding: 10px !important;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus,
.gform_wrapper textarea:focus {
  border: 2px solid #FECD0C;
}

.gform_wrapper .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper .gform_footer input.submit-button {
  color: #000;
  border-radius: 30px !important;
  padding: 10px 20px;
  font-size: 2.5rem;
  transition: all 0.2s ease-in-out;
}

.gform_wrapper .gform_footer input.submit-button:hover {
  background-color: #000;
  color: #fff;
}


/* ==========================================================================
     NAVIGATION / HEADER
     ========================================================================== */

.navbar-brand {
  padding: 15px;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
  color: #715a00;
  background-color: transparent;
  font-size: 14px;
}

.dropdown-menu>li>a {
  color: #bd9701;
  font-size: 14px;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li.active>a:hover,
.dropdown-menu>li.active>a:active,
.dropdown-menu>li.active>a:focus {
  color: #FECD0C;
  background-color: transparent;
}

.dropdown-menu>li.active a {
  color: #715a00;
  background-color: transparent;
  font-weight: bold;
}

header #sw-notification-bar {
  padding: 10px;
  background-color: #FECD0C;
}

header #sw-notification-bar .sw-notification {
  font-family: 'dinpro-bold';
  font-size: 2.2rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header #sw-notification-bar .sw-notification-meta {
  float: right;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

header #sw-notification-bar .sw-notification-meta .sw-notification-phone {
  float: right;
  margin-right: 20px;
}

header #sw-notification-bar .sw-notification-meta .sw-notification-phone a {
  font-family: 'dinpro-bold';
  font-size: 1.8rem;
  line-height: 1.6;
  color: #000;
  text-decoration: none;
}

header #sw-notification-bar .sw-notification-meta a.sw-btn-black-empty {
  font-size: 1.8rem;
}

.custom-header-sw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-header-sw::before,
.custom-header-sw::after {
  display: none;
}


/* ==========================================================================
     SIDEBAR & PANELS
     ========================================================================== */

.page-content,
.post-loop,
#sidebar {
  margin: 50px 0;
}

.post-loop .post {
  margin-bottom: 50px;
}

.entry-meta li {
  margin-bottom: 20px;
}

#sidebar-widgets {
  margin: 0;
  padding: 0;
}

#sidebar-widgets .widget {
  margin-bottom: 50px;
}

#sidebar-widgets .widget:last-child {
  margin-bottom: 0;
}

#sidebar-widgets .widget .heading {
  font-size: 18px;
}

.panel {
  box-shadow: none;
}

.panel .panel-heading {
  padding: 0;
}

.panel .panel-heading a[data-toggle="collapse"] {
  display: block;
  padding: 15px 3px;
  color: #d9534f;
  background-color: transparent;
  text-decoration: none;
}

.panel .panel-heading a[data-toggle="collapse"]::after {
  content: "\f13a";
  font-family: 'FontAwesome';
  color: #d9534f;
  float: right;
}

.panel .panel-heading a.collapsed {
  background-color: transparent;
  color: #FECD0C;
}

.panel .panel-heading a.collapsed::after {
  content: "\f139";
  font-family: 'FontAwesome';
  color: #FECD0C;
}

.panel .panel-body {
  border: 0 !important;
  padding: 15px 0;
  font-size: 14px;
}

.panel-default {
  border-color: transparent;
}

.panel-default>.panel-heading {
  background-color: transparent;
  border-color: transparent;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}


/* ==========================================================================
     SEARCH
     ========================================================================== */

#search-results {
  margin: 24px 0;
}

#search-results .search-result {
  margin-bottom: 24px;
}

#search-results .search-result .search-title {
  margin-bottom: 4px;
  font-weight: bold;
}

#search-results .search-result-none {
  margin-top: 14.25%;
  margin-bottom: 14.25%;
}

.searchform {
  margin-bottom: 30px;
}

.relevanssi-query-term {
  background: white;
  color: #a38201;
}


/* ==========================================================================
     WORDPRESS IMAGE CAPTIONS
     ========================================================================== */

.wp-caption {
  border-bottom: 1px solid #eeeeee;
}

.wp-caption .wp-caption-text {
  margin-top: 10px;
  font-style: italic;
  color: #777777;
}


/* ==========================================================================
     PAGE HERO SECTIONS
     ========================================================================== */

section#sw-page-hero {
  background-size: cover;
  background-position: top center;
  min-height: 900px;
  position: relative;
}

section#sw-page-hero::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

section#sw-page-hero .page-hero-content {
  position: relative;
  width: 100%;
  padding: 150px 0 100px;
}

section#sw-page-hero .page-hero-content .hero-title {
  color: #fff;
  margin-bottom: 40px;
}

section#sw-page-hero .page-hero-content .hero-title span {
  color: #FECD0C;
}

section#sw-page-hero .page-hero-content .hero-content {
  color: #fff;
  font-family: 'dinpro-bold';
  font-size: 2.0rem;
}

section#sw-page-footer-hero {
  background-color: #464E3F;
  background-image: url("../img/camo-bg.png");
  background-position: center center;
  min-height: 300px;
  position: relative;
}

section#sw-page-footer-hero::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

section#sw-page-footer-hero .page-hero-footer-content {
  position: relative;
  width: 100%;
  padding: 150px 0 100px;
}

section#sw-page-footer-hero .page-hero-footer-content .hero-footer-title {
  color: #fff;
  margin-bottom: 40px;
}

section#sw-page-footer-hero .page-hero-footer-content .hero-footer-title span {
  color: #FECD0C;
}

section#sw-page-footer-hero .page-hero-footer-content .hero-footer-content {
  color: #fff;
  font-family: 'dinpro-bold';
  font-size: 2.0rem;
}


/* ==========================================================================
     HOME PAGE
     ========================================================================== */

body.home section#sw-home-hero {
  background-size: cover;
  background-position: top center;
  min-height: 900px;
  position: relative;
}

body.home section#sw-home-hero::before {
  content: '';
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

body.home section#sw-home-hero .home-hero-content {
  position: relative;
  width: 100%;
  padding: 160px 0 100px;
}

body.home section#sw-home-hero .home-hero-content .hero-title {
  color: #fff;
  margin-bottom: 40px;
}

body.home section#sw-home-hero .home-hero-content .hero-title span {
  color: #FECD0C;
}

body.home section#sw-home-hero .home-hero-content .hero-content {
  color: #fff;
  font-family: 'dinpro-bold';
  font-size: 2rem;
}

body.home section#sw-home-shop-carousel {
  padding: 50px 0;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-image: url("../img/map-bg.png");
}

body.home section#sw-home-shop-carousel::before,
body.home section#sw-home-shop-carousel::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

body.home section#sw-home-shop-carousel .carousel-content {
  text-align: center;
}

body.home section#sw-home-shop-carousel .carousel-content .carousel-heading {
  font-family: 'dinpro-black';
  font-size: 6rem;
  color: #FECD0C;
}

body.home section#sw-home-shop-carousel .carousel-content .carousel-heading span {
  color: #000;
}

body.home section#sw-home-shop-carousel .carousel-content .carousel-title {
  font-family: 'dinpro-bold';
  font-size: 3rem;
}

body.home section#sw-home-shop-carousel .carousel-content .carousel-description {
  margin: 40px 0;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner {
  overflow: hidden;
  position: relative;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 99;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
  pointer-events: none;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide {
  padding: 15px 0;
  text-align: center;
  transition: all 0.2s ease-in-out;
  transform: scale(0.5);
  cursor: pointer;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide img {
  filter: sepia(100%) saturate(3) hue-rotate(10deg);
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide.slick-current {
  transform: scale(1);
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide.slick-current img {
  filter: none;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide .product-image {
  text-align: center;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide .product-image img {
  margin: 0 auto;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide .product-title {
  font-family: 'dinpro-black';
  font-size: 3rem;
  text-transform: uppercase;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide .product-price {
  font-family: 'dinpro-bold';
  font-size: 2.4rem;
  margin-bottom: 30px;
}

body.home section#sw-home-shop-carousel .shop-carousel-inner .featured-product-slide .product-price span {
  color: #FECD0C;
}

body.home section#sw-shop-location {
  padding: 50px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
  min-height: 700px;
}

body.home section#sw-shop-location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

body.home section#sw-shop-location .shop-location-content {
  position: relative;
  width: 100%;
}

body.home section#sw-shop-location .shop-location-content .shop-location-left {
  max-width: 720px;
  float: right;
  margin-bottom: 50px;
}

body.home section#sw-shop-location .shop-location-content .shop-location-left .location-title {
  color: #fff;
  font-size: 6rem;
  font-family: 'dinpro-black';
  margin-bottom: 20px;
}

body.home section#sw-shop-location .shop-location-content .shop-location-left .location-title span {
  color: #FECD0C;
}

body.home section#sw-shop-location .shop-location-content .shop-location-left .location-description {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

body.home section#sw-shop-location .shop-location-content .shop-location-right {
  margin-right: -15px;
}

body.home section#sw-shop-location .shop-location-content .shop-location-right .location-map iframe {
  width: 100%;
}

body.home section#sw-about-company {
  padding: 50px 0;
  background-position: top center;
  background-size: cover;
  min-height: 1100px;
  position: relative;
}

body.home section#sw-about-company .about-company-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

body.home section#sw-about-company .about-company-content .about-title {
  font-size: 6rem;
  font-family: 'dinpro-black';
  color: #000;
  margin-bottom: 20px;
}

body.home section#sw-about-company .about-company-content .about-title span {
  color: #FECD0C;
}

body.home section#sw-about-company .about-company-content .about-descrition {
  font-size: 2rem;
  font-family: 'dinpro-bold';
}


/* ==========================================================================
     CONTACT PAGE
     ========================================================================== */

main.page-contact-us section#sw-contact-hours-address {
  padding: 100px 0 50px;
  background-image: url("../img/map-bg.png");
  background-position: 150%;
  background-size: 50%;
  background-repeat: no-repeat;
}

main.page-contact-us section#sw-contact-hours-address .sw-contact-form h2,
main.page-contact-us section#sw-contact-hours-address .sw-contact-address h2,
main.page-contact-us section#sw-contact-hours-address .sw-contact-hours h2 {
  font-family: 'dinpro-black';
  font-size: 6.0rem;
  text-align: center;
}

main.page-contact-us section#sw-contact-hours-address .sw-contact-form h2 span,
main.page-contact-us section#sw-contact-hours-address .sw-contact-address h2 span,
main.page-contact-us section#sw-contact-hours-address .sw-contact-hours h2 span {
  color: #FECD0C;
}

main.page-contact-us section#sw-contact-hours-address .sw-contact-address {
  margin-bottom: 50px;
}

main.page-contact-us section#sw-contact-hours-address .sw-contact-address a,
main.page-contact-us section#sw-contact-hours-address .sw-contact-hours a {
  color: #000;
}

main.page-contact-us section#sw-contact-map iframe {
  width: 100%;
  min-height: 600px;
}

main.page-contact-us section#sw-contact-cta {
  padding: 50px 0;
  background-image: url("../img/map-bg.png");
  background-position: -50%;
  background-size: 50%;
  background-repeat: no-repeat;
}

main.page-contact-us section#sw-contact-cta .contact-cta-title {
  text-align: center;
  font-family: 'dinpro-black';
  font-size: 6.0rem;
}

main.page-contact-us section#sw-contact-cta .contact-cta-title span {
  color: #FECD0C;
}

main.page-contact-us section#sw-contact-cta .contact-cta-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'dinpro-medium';
  font-size: 2.0rem;
  text-align: center;
}


/* ==========================================================================
     ABOUT PAGE
     ========================================================================== */

main.page-about section#sw-about-airdrop {
  padding: 50px 0;
}

main.page-about section#sw-about-airdrop .about-airdrop-title {
  font-size: 6.0rem;
  font-family: 'dinpro-black';
  text-align: center;
}

main.page-about section#sw-about-airdrop .about-airdrop-title span {
  color: #FECD0C;
}

main.page-about section#sw-about-airdrop .about-airdrop-description {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 100px;
}

main.page-about section#sw-about-airdrop .airdrop-wrapper {
  background-image: url("../img/map-bg.png");
  background-size: cover;
  background-position: center center;
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop {
  display: inline-block;
  position: relative;
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 3px solid #FECD0C;
  height: 30px;
  width: 30px;
  cursor: pointer;
  color: #000;
  font-family: 'dinpro-bold';
  font-size: 1.8rem;
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point:hover {
  transition: 0.2s ease-in-out;
  transform: scale(1.2);
  background-color: #FECD0C;
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point::after {
  position: absolute;
  border-bottom: 3px solid #FECD0C;
  width: 150px;
  display: inline-block;
  content: attr(data-name);
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point[data-position="Left"]::after {
  text-align: left;
  transform: translate(calc(-100% - 15px), -50%);
}

main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point[data-position="Right"]::after {
  text-align: right;
  transform: translate(15px, -50%);
}

main.page-about section#sw-about-feedback {
  padding: 200px 0;
  position: relative;
  background-position: center center;
  background-size: cover;
}

main.page-about section#sw-about-feedback::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

main.page-about section#sw-about-feedback .about-feedback-wrapper {
  position: relative;
}

main.page-about section#sw-about-feedback .about-feedback-wrapper .feedback-title {
  font-size: 6.0rem;
  font-family: 'dinpro-black';
  color: #fff;
}

main.page-about section#sw-about-feedback .about-feedback-wrapper .feedback-title span {
  color: #FECD0C;
}

main.page-about section#sw-about-feedback .about-feedback-wrapper .feedback-description {
  color: #fff;
}


/* ==========================================================================
     PRODUCTS PAGE
     ========================================================================== */

main.template-products section#sw-product-list {
  padding: 100px 0;
  background-image: url("../img/map-bg-repeat.jpg");
  background-repeat: repeat-y;
}

main.template-products section#sw-product-list .product-list-title {
  font-size: 6.0rem;
  font-family: 'dinpro-black';
  text-align: center;
}

main.template-products section#sw-product-list .product-list-title span.fword {
  color: #FECD0C;
}

main.template-products section#sw-product-list .product-list-sub-title {
  text-align: center;
  font-size: 3.0rem;
  font-family: 'dinpro-bold';
  margin-bottom: 50px;
}

main.template-products section#sw-product-list .products {
  max-width: 1000px;
  margin: 0 auto;
}

main.template-products section#sw-product-list .products .product {
  padding: 50px 0;
}

main.template-products section#sw-product-list .products .product .product-right .product-title {
  font-size: 5.2rem;
  font-family: 'dinpro-black';
  margin-bottom: 0;
}

main.template-products section#sw-product-list .products .product .product-right .product-title a {
  color: #000;
}

main.template-products section#sw-product-list .products .product .product-right .product-price {
  font-family: 'dinpro-bold';
  font-size: 2.4rem;
  margin-bottom: 20px;
}

main.template-products section#sw-product-list .products .product .product-right .product-price span {
  color: #FECD0C;
}

main.template-products section#sw-product-list .products .product .product-right .product-description {
  font-size: 2.0rem;
}

main.template-products section#sw-product-list .products .product .product-right .product-button .button-left {
  float: left;
}

main.template-products section#sw-product-list .products .product .product-right .product-button .button-right {
  float: left;
  margin-left: 10px;
}


/* ==========================================================================
     LANDING PAGE TEMPLATE
     ========================================================================== */

.template-landing-page section#sw-page-hero::before {
  background-color: rgba(0, 0, 0, 0.8);
}

.template-landing-page section#sw-page-hero .page-hero-content .hero-title {
  margin-bottom: 15px;
  font-family: 'dinpro-bold';
}

.template-landing-page section#sw-page-hero .page-hero-content .tiny-text {
  margin-bottom: 45px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FECD0C;
}

.template-landing-page section#sw-home-shop-carousel {
  padding: 50px 0;
  position: relative;
}

.template-landing-page section#sw-home-shop-carousel .carousel-heading {
  padding-top: 30px;
  margin-bottom: 45px;
  font-family: 'dinpro-bold';
  font-size: 5rem;
  color: #FECD0C;
  text-align: center;
  text-transform: uppercase;
}

.template-landing-page section#sw-home-shop-carousel .carousel-heading span {
  color: black;
}

.template-landing-page section#sw-home-shop-carousel div[data-bld-carousel] .featured-product-slide img {
  height: 190px;
  width: auto;
}

.template-landing-page section#sw-shop-location {
  padding: 150px 0;
  background-position: center center;
  background-size: cover;
  position: relative;
  min-height: 700px;
}

.template-landing-page section#sw-shop-location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.template-landing-page section#sw-shop-location .shop-location-content {
  position: relative;
  width: 100%;
}

.template-landing-page section#sw-shop-location .shop-location-content .shop-location-left {
  max-width: 480px;
  padding: 30px 0 60px;
  margin-bottom: 50px;
  text-align: center;
}

.template-landing-page section#sw-shop-location .shop-location-content .shop-location-left::before {
  top: 0;
}

.template-landing-page section#sw-shop-location .shop-location-content .shop-location-left .location-title {
  color: #fff;
  font-size: 3.125rem;
  font-family: 'dinpro-bold';
  margin-bottom: 20px;
  text-transform: uppercase;
}

.template-landing-page section#sw-shop-location .shop-location-content .shop-location-left .location-title span {
  color: #FECD0C;
}

.template-landing-page section#sw-shop-location .shop-location-content .shop-location-left .location-description {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 20px;
}


/* ==========================================================================
     SINGLE PRODUCT & TAXONOMY
     ========================================================================== */

.single-product section#sw-page-hero,
.tax-product_cat section#sw-page-hero {
  min-height: 500px;
}

.single-product section#sw-page-hero .hero-title,
.tax-product_cat section#sw-page-hero .hero-title {
  margin-bottom: 0;
}

.single-product .main-section .hero-title {
  font-size: 4.2rem;
  padding-left: 10px;
  border-left: 5px solid #fecd0c;
  line-height: normal;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.single-product section.page-content {
  margin: 80px 0;
}

.tax-product_cat section#sw-page-hero .page-hero-content {
  padding: 190px 0 60px;
}

.container-size .main-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.container.container-size {
  max-width: 1200px;
  width: 100%;
}

body .main-section .pdt-ftd-img {
  border: 5px solid #464e3f;
  border-radius: 0;
  box-shadow: -6px 6px 10px -5px rgba(0, 0, 0, 0.37);
  overflow: hidden;
}

body .main-section .pdt-ftd-img img {
  transition: 0.5s;
  transform: scale(1);
}

body .main-section .pdt-ftd-img:hover img {
  transform: scale(1.5);
}


/* ==========================================================================
     CATEGORY TEMPLATE
     ========================================================================== */

.sw-cat-template-row {
  display: grid;
  padding: 80px 0;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.sw-cat-template-row .sw-cat-template-single {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sw-cat-template-row .sw-cat-template-single a.subcategory-card,
.sw-cat-template-row .sw-cat-template-single a.product-card {
  box-shadow: 4px 4px 15px -5px rgba(0, 0, 0, 0.68);
  padding: 20px;
  border-radius: 9px;
  border: 1px solid #d5d5d5;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  height: 100%;
}

.sw-cat-template-row .sw-cat-template-single a.subcategory-card:hover,
.sw-cat-template-row .sw-cat-template-single a.product-card:hover {
  box-shadow: 4px 4px 21px -10px rgba(0, 0, 0, 0.68);
  border: 1px solid #fecd0c;
  background-color: #faf9f6;
  transition: 0.5s;
}

.subcategory-title {
  margin-top: 20px;
}

.sw-cat-template-row .sw-cat-template-single a.subcategory-card .subcategory-image img,
.sw-cat-template-row .sw-cat-template-single a.product-card .product-image img {
  border: 1px solid #ccc;
  border-radius: 12px;
}

.sw-cat-template-row .sw-cat-template-single a.subcategory-card .subcategory-title h3,
.sw-cat-template-row .sw-cat-template-single a.product-card .product-title h3 {
  font-size: 24px;
  line-height: normal;
  color: #464e3f;
}

.products-notice-disclaimer .container .widget.widget_text {
  border-radius: 6px;
  max-width: 920px;
  width: 100%;
  background-color: #fff9df;
  padding: 16px 32px;
  border: 2px dashed #464e3f;
  text-align: center;
  box-shadow: 3px 3px 12px -3px #00000078;
  font-size: 20px;
  line-height: 1.4em;
}

.products-notice-disclaimer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-notice-disclaimer {
  padding: 0px 0px 80px 0px;
}


/* ==========================================================================
     PRODUCT DETAIL LAYOUT
     ========================================================================== */

.sw-row {
  gap: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.sw-row .sw-image-section,
.sw-row .sw-content-section {
  flex-basis: 50%;
  /* height: 100%; */
}

.sw-row .sw-image-section {
  background: #2e3328;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  position: sticky;
  top: 160px;
}

.sw-row .sw-image-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 4px);
}

.sw-row .sw-image-section img {
  border: 1px solid #fecd0c;
  padding: 10px;
}

.sw-content-section {
  border-left: 4px solid #F0C94A;
  padding: 30px 0 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.sw-row .sw-content-section .product-title {
  color: #464e3f;
  font-size: 4.5rem;
  margin-bottom: 0;
}

.product-details h4 {
  margin-bottom: 0;
  background: #464e3f;
  line-height: normal;
  color: #fff;
  font-size: 25px;
  padding: 8px 16px;
}

.product-details {
  border: 2px solid #fecd0c;
}

.product-details ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
}

.product-details ul li:nth-child(odd) {
  background: #fffbed;
}

.product-details ul li span {
  font-size: 16px;
  padding: 10px 16px;
}

.product-details ul li {
  display: flex;
  gap: 0px;
  justify-content: space-between;
  border-bottom: 1px solid #d7d7d7;
}

.product-details ul li span.detail-title {
  flex-basis: 35%;
  border-right: 1px solid #d7d7d7;
  font-weight: 400;
  font-size: 18px;
}

.product-details ul li span.detail-details {
  flex-basis: 65%;
}

.product-details ul li span.detail-details.details-no-title {
  flex-basis: 100%;
}

.product-details ul li:last-child {
  border: none;
}


/* ==========================================================================
     ADMIN BAR
     ========================================================================== */

body.admin-bar header.navbar {
  padding-top: 32px;
}

/* ---------------- Product ---------------- */
.product-content p {
  line-height: 1.6;
}

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

/* min-width: 768px — desktop nav base */
@media (min-width: 1201px) {

  body .navbar-togglem,
  span.sw-dropdown-toggle {
    display: none;
  }

  body header#header {
    background-color: transparent;
    border-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.2s ease-in-out;
  }

  body header#header .navbar-brand {
    height: 90px;
    margin-left: 0 !important;
  }

  body header#header .navbar-brand img.logo {
    margin-top: -32px;
  }

  body header#header .navbar-brand img.logo-mobile {
    display: none;
  }

  body header#header .navbar-inverse {
    background-color: transparent;
    float: right;
  }

  body header#header .navbar-inverse ul.dropdown-menu {
    background-color: #464E3F;
  }

  body header#header .navbar-inverse ul.dropdown-menu li a {
    color: #fff;
  }

  body header#header .navbar-inverse ul.dropdown-menu li a:hover {
    color: #FECD0C;
  }

  body header#header .navbar-inverse ul li a {
    font-family: 'dinpro-bold';
    font-size: 1.4rem;
    text-transform: uppercase;
    padding: 10px 10px;
    background-color: transparent;
  }

  body header#header .navbar-inverse ul li a:hover {
    color: #FECD0C !important;
  }

  body.sticky header#header {
    background-color: #464E3F;
    box-shadow: 0 3px 13px -3px rgba(0, 0, 0, 0.75);
  }

  body.sticky header#header #sw-notification-bar .sw-notification-meta,
  body.sticky header#header #sw-notification-bar .sw-notification {
    font-size: 1.5rem;
  }

  body.sticky header#header #sw-notification-bar .sw-notification-meta a,
  body.sticky header#header #sw-notification-bar .sw-notification a {
    font-size: 1.3rem;
  }

  body.sticky header#header .navbar-brand {
    height: auto;
    margin-top: 0;
    padding: 0px 0 0 10px;
    max-width: 300px;
  }

  body.sticky header#header .navbar-brand img.logo {
    display: none;
  }

  body.sticky header#header .navbar-brand img.logo-mobile {
    display: block;
  }

  body.sticky header#header .navbar-inverse {
    background-color: transparent;
    float: right;
  }

  body.sticky header#header .navbar-inverse ul {
    padding: 10px 0;
  }
}

/* min-width: 768px and max-width: 991px */
@media (min-width: 768px) and (max-width: 991px) {
  body header#header .container {
    width: 100%;
  }

  body header#header .navbar-brand {
    width: 250px;
    margin-top: 5px;
  }

  body header#header .navbar-brand img.logo-mobile {
    display: block !important;
  }

  body header#header .navbar-brand img.logo {
    display: none;
  }

  body header#header .navbar-inverse ul li a {
    padding: 10px;
    font-size: 1.2rem;
  }

  header #sw-notification-bar .sw-notification {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  header #sw-notification-bar .sw-notification-meta {
    float: none;
    text-align: center;
    justify-content: center;
    gap: 10px;
  }

  header #sw-notification-bar .sw-notification-meta .sw-notification-phone {
    float: none;
    display: inline-block;
    margin-left: 20px;
    margin-right: 0;
    font-size: 1.6rem;
  }

  header #sw-notification-bar .sw-notification-meta a.sw-btn-black-empty {
    float: none !important;
    display: inline-block;
    font-size: 1.6rem;
  }
}

/* min-width: 768px and max-width: 1200px */
@media (min-width: 768px) and (max-width: 1200px) {
  body header#header .navbar-brand {
    width: 345px;
  }

  body header#header .navbar-inverse ul li a {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}

/* min-width: 768px and max-width: 1680px */
@media (min-width: 1200px) and (max-width: 1680px) {
  .custom-header-sw {
    flex-direction: column;
  }

  .custom-header-sw .navbar-inverse.side-collapse,
  .custom-header-sw .navbar-inverse.side-collapse .navbar-nav {
    width: 100%;
  }

  .custom-header-sw .navbar-inverse.side-collapse .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  body .hiring-section {
    top: -30%;
  }
}

/* max-width: 1200px */
@media (max-width: 1200px) {
  .sw-content-section {
    padding-left: 10px;
  }

  #footer .footer-site-map {
    padding-left: 15px;
  }

  #footer .footer-bottom-bar {
    text-align: center !important;
  }

  #footer .footer-bottom-bar .footer-terms {
    text-align: center !important;
  }

  body .navbar-toggle {
    display: block;
  }
}

/* max-width: 1100px */
@media (max-width: 1100px) {
  header #sw-notification-bar .sw-notification {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .navbar-nav {
    float: inherit !important;
    margin: 0;
  }

  .navbar-nav>li {
    float: inherit !important;
    margin-bottom: 4px;
    margin-top: 4px;
  }

  .navbar-header {
    width: 100%;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  span.sw-dropdown-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e2616;
    position: absolute;
    top: 0;
    right: 0;
  }

  span.sw-dropdown-toggle b.caret {
    border-width: 9px;
  }

  body header#header .navbar-inverse.side-collapse ul li a b.caret {
    display: none;
  }

  .navbar-header::before,
  .navbar-header::after {
    display: none;
  }

  body header#header .navbar-inverse ul.dropdown-menu {
    position: inherit;
    float: inherit;
    max-width: inherit;
    margin-bottom: 10px;
  }

  body header#header {
    border-bottom: 0;
    background-color: #464E3F;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    box-shadow: 0 3px 13px -3px rgba(0, 0, 0, 0.75);
  }

  body header#header .navbar-toggle {
    background-color: transparent;
    margin: 0;
  }

  button.navbar-toggle.sw-close-menu {
    display: flex;
    margin-left: 10px !important;
    margin-top: 10px !important;
    float: none;
    margin-bottom: 10px !important;
  }

  body header#header .navbar-brand {
    float: left;
    max-width: 240px;
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0
  }

  body header#header .navbar-brand img.logo {
    display: none;
  }

  body header#header .navbar-inverse {
    background-color: transparent;
  }

  body header#header .navbar-inverse.side-collapse {
    background-color: #464E3F;
  }

  body header#header .navbar-inverse.side-collapse ul.dropdown-menu {
    background-color: #2D2D2D;
  }

  body header#header .navbar-inverse.side-collapse ul li a {
    font-size: 1.8rem;
    padding: 10px;
    white-space: normal;
  }

  body header#header .navbar-inverse.side-collapse ul li.open>a,
  body header#header .navbar-inverse.side-collapse ul li.active>a {
    color: #2D2D2D;
    background-color: #FECD0C;
  }

  .flex,
  .flex-nw {
    display: block;
  }

  .navbar-toggle {
    margin-left: 15px;
  }

  .side-collapse {
    top: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    background: #FECD0C;
    color: #fff;
    border-right: #bd9701;
    width: 100%;
    max-width: 300px;
    height: 100%;
    transition: all 250ms ease-out 0s;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.7);
  }

  .side-collapse.in {
    left: -100%;
    box-shadow: none;
  }

  .side-collapse .controls {
    width: 100%;
    display: block;
    clear: both;
  }

  .side-collapse .navbar-nav {
    clear: both;
  }

  .side-collapse .navbar-nav .open .dropdown-menu {
    background-color: #fff;
    border-radius: 0;
  }

  .side-collapse .navbar-nav .open .dropdown-menu>li>a {
    color: #bd9701;
    font-size: 14px;
  }

  .side-collapse .navbar-nav .open .dropdown-menu>li>a:hover,
  .side-collapse .navbar-nav .open .dropdown-menu>li.active>a:hover,
  .side-collapse .navbar-nav .open .dropdown-menu>li.active>a:active,
  .side-collapse .navbar-nav .open .dropdown-menu>li.active>a:focus {
    color: #FECD0C;
    background-color: transparent;
  }

  .side-collapse .navbar-nav .open .dropdown-menu>li.active a {
    color: #715a00;
    background-color: transparent;
    font-weight: bold;
  }

  .sw-cat-template-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* max-width: 1024px */
@media (max-width: 1024px) {
  .sw-cat-template-row .sw-cat-template-single {
    flex-basis: calc(50% - 30px);
  }
}

/* max-width: 991px */
@media (max-width: 991px) {
  body.home section#sw-about-company {
    min-height: auto;
    padding: 100px 0;
  }

  body.home section#sw-about-company::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
  }

  body.home section#sw-home-hero::before {
    background-color: rgba(0, 0, 0, 0.7);
  }

  body.home section#sw-shop-location .shop-location-content .shop-location-left {
    max-width: 100%;
  }

  body.home section#sw-shop-location .shop-location-content .shop-location-right {
    margin-right: 0;
  }

  section#sw-page-hero::before {
    background-color: rgba(0, 0, 0, 0.7);
  }

  section#sw-page-footer-hero::before {
    background-color: rgba(0, 0, 0, 0.8);
  }

  main.page-contact-us section#sw-contact-hours-address .sw-contact-form {
    margin-top: 50px;
  }

  .template-landing-page section#sw-shop-location .shop-location-content .shop-location-left {
    max-width: 100%;
  }

  .sw-flex-col-md {
    flex-direction: column;
  }

  .sw-cat-template-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* max-width: 767px */
@media (max-width: 767px) {
  body {
    margin-top: 100px;
  }

  /* product  */
  .sw-row .sw-image-section {
    top: 0px;
    position: unset !important;
  }

  .sw-content-section {
    border-left: none !important;

    border-top: 4px solid rgb(240, 201, 74) !important;
  }

  /*  */

  #footer {
    text-align: center;
  }

  #footer .footer-title::after {
    margin: 5px auto 0;
  }

  body.home section#sw-home-hero {
    min-height: auto;
    padding: 0;
  }

  body.home section#sw-home-hero .home-hero-content .hero-title {
    font-size: 3rem;
  }

  body.home section#sw-home-shop-carousel .carousel-content .carousel-heading {
    font-size: 3rem;
  }

  body.home section#sw-home-shop-carousel .carousel-content .carousel-title {
    font-size: 2.5rem;
  }

  body.home section#sw-shop-location .shop-location-content .shop-location-left .location-title {
    font-size: 3rem;
  }

  body.home section#sw-shop-location .shop-location-content .shop-location-left .location-description {
    font-size: 1.8rem;
  }

  body.home section#sw-about-company .about-company-content .about-title {
    font-size: 3rem;
  }

  section#sw-page-hero {
    min-height: auto;
    padding: 0;
  }

  section#sw-page-hero .page-hero-content .hero-title {
    font-size: 3.0rem;
  }

  section#sw-page-footer-hero {
    min-height: auto;
    padding: 0;
  }

  section#sw-page-footer-hero .page-hero-footer-content .hero-footer-title {
    font-size: 3.0rem;
  }

  main.page-about section#sw-about-feedback {
    padding: 100px 0;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper {
    background-image: none;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop {
    display: block;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop img {
    display: none;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points {
    position: relative;
    height: auto;
    padding: 15px;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point {
    position: relative;
    height: auto;
    width: auto;
    border: 0;
    left: 0 !important;
    top: 0 !important;
    display: block;
    transform: none !important;
    padding: 10px;
    text-align: center;
    background-color: #FECD0C;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point:hover {
    background-color: #000 !important;
    color: #FECD0C;
  }

  main.page-about section#sw-about-airdrop .airdrop-wrapper .airdrop .airdrop-points .airdrop-point::after {
    position: relative;
    display: block;
    width: 100%;
    transform: none !important;
    border-bottom: 0;
    text-align: center !important;
  }

  main.template-products section#sw-product-list {
    padding: 50px 0;
    background-image: none;
  }

  main.template-products section#sw-product-list .product-list-title {
    font-size: 4.0rem;
  }

  main.template-products section#sw-product-list .product-list-sub-title {
    font-size: 2.5rem;
  }

  main.template-products section#sw-product-list .products .product .product-left,
  main.template-products section#sw-product-list .products .product .product-right {
    text-align: center;
  }

  main.template-products section#sw-product-list .products .product .product-right .product-title {
    font-size: 4.0rem;
  }

  main.template-products section#sw-product-list .products .product .product-right .product-button .button-left {
    float: none;
  }

  main.template-products section#sw-product-list .products .product .product-right .product-button .button-right {
    float: none;
    margin-left: 0;
    margin-top: 10px;
  }

  .template-landing-page section#sw-shop-location {
    min-height: 500px;
  }

  .template-landing-page section#sw-shop-location .shop-location-content .shop-location-left .location-title {
    font-size: 3rem;
  }

  .template-landing-page section#sw-shop-location .shop-location-content .shop-location-left .location-description {
    font-size: 1.8rem;
  }

  .sw-row {
    grid-template-columns: auto;
  }

  .sw-row .sw-content-section .product-title {
    font-size: 3.5rem;
  }

  .sw-cat-template-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  header #sw-notification-bar .sw-notification-meta {
    flex-direction: column-reverse;
    gap: 5px;
  }

  .sw-row .sw-image-section {
    top: 0px;
    position: unset !important;
  }

  header #sw-notification-bar .sw-notification {
    display: none;
  }
}

/* max-width: 319px */
@media (max-width: 319px) {

  .flex,
  .flex-nw {
    display: block;
  }
}

@media print {
  body {
    background: transparent;
  }

  .container {
    width: auto;
  }

  .noprint {
    display: none;
  }
}

.sw-cat-template-row.no-posts {
  display: flex;
  align-items: center;
  justify-content: center;
}