/*!
Theme Name: lemcoe-precision
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lemcoe-precision
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

lemcoe-precision is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url("https://fonts.googleapis.com/css2?family=Beiruti:wght@200..900&display=swap");
/* font-family: 'Roboto', sans-serif; */

/* body,
 html {
	 overflow-x: hidden;
 } */
/* body,html{
	 width: 100%;
 } */

@font-face {
  font-family: "Bebas Kai";
  src: url("fonts/BebasKai.eot");
  src: url("fonts/BebasKai.eot?#iefix") format("embedded-opentype"),
    url("fonts/BebasKai.woff2") format("woff2"),
    url("fonts/BebasKai.woff") format("woff"),
    url("fonts/BebasKai.ttf") format("truetype"),
    url("fonts/BebasKai.svg#BebasKai") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Beiruti", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  font-size: 20px;
  line-height: 1.3;
  background-color: #fff;
}

:root {
  scroll-behavior: inherit;
  --white: #fff;
  --black: #000000;
  /* --primary-color: #da2027; */
  --primary-color: #D81F27;
  /* --secondarycolor: #242366; */
  --secondarycolor: #262262;
  --body-color: #70707a;
  --heading-font: "Bebas Kai";
  --body-font: "Beiruti", serif;
  --white-color-two: #f0eeee;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: #000;
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 400;
  font-size: 100px;
  line-height: 1;
  font-family: var(--heading-font);
  color: var(--secondarycolor);
  text-transform: uppercase;
}

h2,
.h2-title {
  font-weight: 400;
  font-size: 55px;
  line-height: 1.1;
  font-family: var(--heading-font);
  color: var(--secondarycolor);
}

h3,
.h3-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
}

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

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

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--secondarycolor);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: var(--white);
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #000;
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  height: 47px;
  padding: 0 18px;
  outline: none !important;
  font-size: 20px;
  border: none;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: var(--white);
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  padding: 15px 18px;
  width: 100%;
  color: #000;
  height: 145px;
  outline: none !important;
  border: none;
  resize: none;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--white);
  height: 50px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 20px;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px 0;
  min-width: 157px;
  font-family: var(--heading-font);
}

input[type="submit"]:hover {
  background-color: var(--secondarycolor);
}

::-webkit-input-placeholder {
  color: #70707a;
}

:-ms-input-placeholder {
  color: #70707a;
}

::-moz-placeholder {
  color: #70707a;
}

:-moz-placeholder {
  color: #70707a;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

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

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
	   
	 } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
	   
	 } */

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 210px;
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 15px;
  padding: 0 0;
  position: relative;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: var(--secondarycolor);
  font-size: 20px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: var(--heading-font);
}

/* .navbar-nav>li>a:after {
	 content: '';
	 display: block;
	 width: 0;
	 height: 2px;
	 background: #3B61DC;
	 opacity: 0;
	 position: absolute;
	 bottom: -10px;
	 left: 50%;
	 -webkit-transform: translateX(-50%);
	 transform: translateX(-50%);
	 -webkit-transition: all 0.3s ease-in-out;
	 transition: all 0.3s ease-in-out;
 } */

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: var(--primary-color);
}

.navbar-nav>li.current-menu-item>a:after,
.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu>li>a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/*cmncss*/
.cmn-gap {
  padding: 100px 0;
}

.cmnbutn {
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 20px;
  text-align: center;
  display: inline-block;
  padding: 19px 15px;
  min-width: 195px;
  line-height: 1;
  text-transform: uppercase;
}

.cmnbutn:hover {
  background-color: var(--secondarycolor);
  color: var(--white);
}

.cmnhead h2 {
  color: var(--secondarycolor);
}

/*cmncss*/
.main-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.top-infobar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  padding-left: 0;
}

.topheader {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.topheader-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-infobar ul li {
  list-style: none;
  padding: 0 12px;
}

.top-infobar ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--secondarycolor);
  font-size: 18px;
  font-weight: 600;
}

.top-infobar ul li a span {
  width: calc(100% - 38px);
  padding-left: 10px;
  display: inline-block;
}

.top-infobar ul li a:hover {
  color: var(--primary-color);
}

.topinfocion {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--secondarycolor);
  border-radius: 100%;
}

.hdsrch-wrp input[type="text"],
.hdsrch-wrp input[type="search"] {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #e5e5f6;
  border-radius: 10px 0px;
  font-size: 14px;
  font-family: "Beiruti", serif;
  height: 45px;
  padding: 8px 48px 8px 14px;
}

.hdsrch-wrp input[type="text"]::-webkit-input-placeholder {
  color: #a2a2a2;
}

.hdsrch-wrp input[type="text"]:-ms-input-placeholder {
  color: #a2a2a2;
}

.hdsrch-wrp input[type="text"]::-moz-placeholder {
  color: #a2a2a2;
}

.hdsrch-wrp input[type="text"]:-moz-placeholder {
  color: #a2a2a2;
}

.hdsrch-wrp {
  position: relative;
}

.hdsrchbx {
  max-width: 292px;
  width: 100%;
  margin-right: 13px;
}

.top-rgt-wrpr {
  max-width: 481px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hdsrch-wrp input[type="submit"] {
  background-color: var(--secondarycolor);
  background-image: url(images/serchiconpng.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  text-align: center;
  border-radius: 100%;
  height: 27px;
  width: 27px;
  min-width: 27px;
  font-size: 0;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hdsrch-wrp button[type="submit"] img {
  max-width: 13px;
}

.hdsrch-wrp button[type="submit"]:hover {
  background-color: var(--primary-color);
}

.hdrbutn {
  min-width: 121px;
  padding: 12px 15px;
}

.cartbutn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--secondarycolor);
  position: relative;
  margin-left: 13px;
}

.cartbutn:hover {
  background-color: var(--primary-color);
}

.cartnotify {
  font-size: 14px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  position: absolute;
  right: -2px;
  top: -3px;
}

.botmheadr {
  padding: 14px 0;
}

.bnr-title-design {
  color: var(--primary-color);
}

.banner {
  padding: 200px 0 84px 0;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.bnmr-contbx {
  color: var(--secondarycolor);
  position: relative;
  max-width: 473px;
}

.bnrtitle {
  margin-bottom: 20px;
}

.bnrbtnbx {
  margin-top: 30px;
}

.bnrrgt-imgbx {
  margin-bottom: 0;
  margin-right: -70px;
  position: relative;
}

.bnr-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bnrarwimg {
  position: absolute;
  right: -162px;
  top: 30%;
  max-width: 193px;
}

.bnrrgt-outrimgbx {
  position: relative;
}

.bnrlogoimg {
  position: absolute;
  top: -60px;
  max-width: 680px;
  right: 0;
  margin-right: -34%;
}

.bnrrgtblur {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.bnrimgblur {
  position: absolute;
  background: -o-radial-gradient(52.66% 0%,
      67.51% 67.51%,
      #dcdcff 0%,
      rgba(254, 254, 255, 0) 100%);
  background: radial-gradient(67.51% 67.51% at 52.66% 0%,
      #dcdcff 0%,
      rgba(254, 254, 255, 0) 100%);
  right: 0;
  bottom: 0;
  width: 100%;
  height: 214px;
  max-width: 1053px;
}

.bnrlftblur {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
}

.bnrbotmblur {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.bnrbotmblurone {
  position: absolute;
  bottom: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bnrbotmblurtwo {
  position: absolute;
  bottom: -87px;
  left: 0;
  z-index: -1;
}

.bnrbotmblurthree {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.dealweeksec {
  position: relative;
  padding: 45px 0 60px 0;
  background-color: var(--black);
}

.dealweekimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.4;
}

.dealweek-contenterpr {
  position: relative;
}

.cmnhead h2.wht-txt {
  color: var(--white);
}

.cmnheadicon {
  max-width: 56px;
  margin-bottom: 20px;
  display: inline-block;
}

.cmnhed-desgn {
  color: var(--primary-color);
}

.dealweek-slidr-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
  height: 100%;
}

.dlweek-slidr-lftcol {
  width: 43%;
  padding: 0 12px;
}

.dlweek-slidr-rgtcol {
  width: 57%;
  padding: 0 12px;
}

.dlweek-slidr-imgoutr {
  position: relative;
  padding-bottom: 90px;
}

.dlweek-slidr-imgbx {
  text-align: center;
  z-index: 1;
  position: relative;
  max-width: 351px;
  width: 100%;
  margin: 0 auto;
}

.dlweek-slidr-sunhd {
  font-family: var(--body-font);
  color: var(--white);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.delprdut-burshp {
  position: absolute;
  bottom: 15px;
  left: 0;
}

.dlweek-slidr-imgbx img {
  margin: auto;
}

.cmnhead {
  margin-bottom: 30px;
}

.dealweek-slidr .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  font-size: 0;
  background-color: transparent;
  border: 0;
  width: 36px;
  height: 60px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.dealweek-slidr .slick-arrow:hover {
  opacity: 0.5;
}

.dealweek-slidr .slick-arrow.slick-prev {
  left: -100px;
  background-image: url(images/whtleftarw.svg);
}

.dealweek-slidr .slick-arrow.slick-next {
  right: -100px;
  background-image: url(images/whtrgtarrow.svg);
}

.chkout-prd-card {
  border-radius: 30px 0;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.chkout-prd-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.chkout-prd-card:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.chkout-prd-contbx {
  position: absolute;
  bottom: 40px;
  padding: 0 17px;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.chkout-prd-contbx .cmnbutn {
  min-width: 136px;
  padding: 15px 15px;
}

.chkout-prd-sunhd {
  width: calc(100% - 136px);
  padding-right: 5px;
  font-weight: 400;
  color: var(--white);
  font-family: var(--heading-font);
  text-transform: uppercase;
  margin-bottom: 0;
}

.chkout-prd-card-two {
  height: 307px;
}

.chkout-prd-card-two:last-child {
  margin-top: 30px;
}

.chkout-prd-wrpr {
  margin-top: 60px;
}

.advantgrow {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.advantg-card {
  padding: 38px 18px;
  background-color: transparent;
  border-radius: 30px 0;
  text-align: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.advantg-card:hover {
  -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  background-color: var(--white);
}

.advantg-card:hover .advantgimgbx img {
  -webkit-filter: brightness(0) saturate(100%) invert(19%) sepia(52%) saturate(2659%) hue-rotate(334deg) brightness(125%) contrast(120%);
  filter: brightness(0) saturate(100%) invert(19%) sepia(52%) saturate(2659%) hue-rotate(334deg) brightness(125%) contrast(120%);
}

.advantgimgbx {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px auto;
}

.advantgimgbx img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.advantg-subhd {
  text-transform: uppercase;
  color: var(--secondarycolor);
  margin-bottom: 20px;
}

.fotersec {
  background-color: #070627;
  position: relative;
  z-index: 1;
}

.ftrimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.ftrtop {
  padding: 66px 0;
  border-bottom: 1px solid rgba(255, 255, 2585, 0.3);
}

.ftrtop-signuphd {
  color: var(--white);
  font-size: 55px;
}

.fttopcontbx {
  color: var(--white);
}

/* start css */
.ftrtoplftcol {
  width: calc(100% - 615px);
}

.ftrtoprgtcol {
  width: 615px;
}

.fotersec input[type="text"],
.fotersec input[type="tel"],
.fotersec input[type="password"],
.fotersec input[type="email"] {
  color: var(--white);
  height: 59px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px 0px;
  font-size: 16px;
  font-weight: 400;
  padding-right: 190px;
  background-color: transparent;
}

.fotersec input[type="email"]::-webkit-input-placeholder {
  color: var(--white);
}

.fotersec input[type="email"]:-ms-input-placeholder {
  color: var(--white);
}

.fotersec input[type="email"]::-moz-placeholder {
  color: var(--white);
}

.fotersec input[type="email"]:-moz-placeholder {
  color: var(--white);
}

.ftrtp-signup-wrp {
  position: relative;
  z-index: 1;
}

.fotersec input[type="submit"] {
  padding: 10px 50px;
  background: #d81f27;
  border-radius: 10px 0px;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  font-family: var(--heading-font);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  min-width: auto;
}

.fotersec input[type="submit"]:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.ftr-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 21px;
}

.ftr-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ftr-list li:last-child {
  margin-bottom: 0;
}

.ftr-list li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.ftr-list li i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  margin-right: 12px;
  margin-top: 2px;
}

.ftr-list li i img {
  max-width: 21px;
}

.ftr-list li span,
.ftr-list li a {
  color: var(--white);
}

.ftr-list li a:hover {
  color: var(--primary-color);
}

.copy-text a:hover {
  color: var(--primary-color);
}

.footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0px -12px;
}

.footer-col {
  position: relative;
  z-index: 1;
  padding: 0px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-col:last-child {
  border-right: none;
}

.ftr-one {
  width: 25%;
}

.ftr-two {
  width: 45%;
}

.ftr-three {
  width: 30%;
}

.lower-ftr {
  padding-top: 56px;
  padding-bottom: 66px;
}

.ftr-logo {
  max-width: 109px;
  width: 100%;
  display: inline-block;
  margin-bottom: 15px;
}

.ftr-logo img {
  width: 100%;
}

.copy-text {
  color: #dddddd;
}

.copy-text a {
  color: #dddddd;
}

.cetr {
  text-align: center;
}

.advantagesec {
  position: relative;
  z-index: 1;
}

.advantagesec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: -o-linear-gradient(right,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
  background: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(117, 138, 153, 0.3)),
      color-stop(52%, rgba(255, 255, 255, 0.05)),
      to(rgba(117, 138, 153, 0.3)));
  background: linear-gradient(270deg,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
  opacity: 0.4;
}

.btn-arw-wrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.slike-arw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.slike-arw:hover {
  background-color: #e2e2e2;
}

.slide-btn-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.test-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.slider-img-wrapper {
  max-width: 299px;
  position: relative;
  z-index: 1;
  padding: 25px 0;
}

.coma {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  background: #d81f27;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

.coma img {
  max-width: 26px;
}

.red-circle {
  height: 322px;
  width: 322px;
  border: 1px solid #d81f27;
  border-radius: 100%;
  position: absolute;
  top: -22px;
  bottom: -22px;
  right: -56px;
  z-index: -1;
}

.slider-cir {
  position: relative;
  z-index: 1;
  height: 277px;
  width: 277px;
  padding-right: 21px;
}

.slider-img-1 {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}

.test-name {
  font-weight: 600;
  font-size: 30px;
  color: #262262;
  margin-bottom: 0px;
}

.feild-name {
  color: #d81f27;
}

.star img {
  max-width: 139px;
  margin-right: 10px;
}

.star sup {
  display: inline-block;
  color: #d81f27;
  font-weight: 600;
  font-size: 20px;
  top: 4px;
}

.star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 15px;
}

.con-wrap {
  max-width: 757px;
  padding-right: 15px;
}

.lft-slider-content {
  width: 75%;
}

.rgt-slider-img {
  width: 25%;
}

.test-sec {
  position: relative;
  z-index: 1;
}

.dot-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.devils-sec .cmnbutn.villet {
  min-width: 172px;
  margin-top: 15px;
}

.cmnbutn.villet {
  background-color: #262262;
}

.cmnbutn.villet:hover {
  background-color: var(--primary-color);
}

.devil-contant {
  max-width: 498px;
  margin-left: auto;
  color: var(--white);
}

.lft-play {
  position: relative;
  z-index: 1;
}

.playpause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 74px;
  width: 74px;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: 76px;
  left: 24px;
  z-index: 2;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.playpause:hover {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.play-wrap img {
  max-width: 22px;
}

.main_content_video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.main_content_video>* {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
  overflow: hidden;
}

.vdeo_ovrly {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.vdeo_ovrly>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100%;
}

.main_content_video {
  z-index: -1;
}

.row-devil {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col-devil-lft {
  width: 50%;
  padding: 0 12px;
}

.col-devil-rgt {
  width: 50%;
  padding: 0 12px;
}

.wrapper-py {
  /* max-width: 400px; */
  /* padding-top: 56.25%; */
  /* display: table; */
  /* width: auto; */
  position: relative;
  /* width: 50%; */

  height: 532px;
  width: 532px;
  /* overflow: hidden; */
  border-radius: 100%;
  margin-left: -100px;
}

.main_content_video.playing {
  z-index: 1;
}

.devils-sec {
  position: relative;
  z-index: 1;
  background-color: #000;
}

.devils-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: url(images/devils-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  -webkit-filter: blur(14px);
  filter: blur(14px);
}

.circle-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  bottom: 0;
  right: 0;
}

.wrap {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 48px 20px;
}

.circle-ul li {
  -webkit-animation: zoom-in-zoom-out 4s ease-out infinite;
  animation: zoom-in-zoom-out 4s ease-out infinite;
}

@-webkit-keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes zoom-in-zoom-out {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.circle-ul li {
  margin-bottom: 20px;
}

.circle-ul span {
  display: block;
}

.circle-ul li:nth-child(1) .wrap {
  -webkit-transform: rotate(339deg);
  -ms-transform: rotate(339deg);
  transform: rotate(339deg);
  right: 22px;
  bottom: -4px;
}

.circle-ul li:nth-child(2) .wrap {
  -webkit-transform: rotate(7deg);
  -ms-transform: rotate(7deg);
  transform: rotate(7deg);
  bottom: 5px;
  right: 0;
}

.circle-ul li:nth-child(3) .wrap {
  -webkit-transform: rotate(41deg);
  -ms-transform: rotate(41deg);
  transform: rotate(41deg);
  bottom: 29px;
  right: 70px;
}

.circle-ul li .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;

  z-index: -1;
}

.circle-ul li:last-child {
  margin-bottom: 0;
}

.circle-ul li .shape-icon {
  max-width: 38px;
  margin-bottom: 10px;
}

.circle-ul li span {
  font-weight: 600;
  color: var(--white);
}

.wrapper-play-wrap {
  position: relative;
  z-index: 1;
  padding-right: 120px;
  padding-bottom: 60px;
}

.video_cntnt {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.playpause.play {
  display: none;
}

.mb-srchbutn {
  display: none;
}

.ftr-toprw {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.inr-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.inr-footer.cetr {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ftr-three .inr-footer {
  padding-left: 28px;
}

/*iner page*/
.inrbnr {
  min-height: 566px;
  padding: 145px 0 15px 0;
}

.inrbnr .bnrlogoimg {
  max-width: 512px;
  top: -20px;
  right: 0;
  margin-right: -38px;
}

.ftrlogo-col {
  display: none;
}

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

.firearms-pkg-crd {
  background-color: var(--secondarycolor);
  border-radius: 30px 0;
  padding: 53px 22px;
  text-align: center;
  color: var(--white);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}

.firearms-pkg-crd:hover {
  background-color: var(--primary-color);
}

.firearms-pkg-crd:hover .firearms-pkgprs {
  color: var(--white);
}

.firearms-pkgprs {
  color: var(--primary-color);
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.firearms-pkg-nm {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.contctmapimg {
  width: 100%;
  height: 537px;
  overflow: hidden;
  position: relative;
  z-index: 12;
}

.contctmapimg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.contactyclndy-wrpr {
  max-width: 869px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  border-radius: 30px 0px;
  overflow: hidden;
  margin: auto;
}

.contactyclndy-wrpr img {
  width: 100%;
}

.cntctpgcmnhd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 38px;
}

.cntctpg-hdicon {
  max-width: 59px;
  margin-right: 15px;
}

.cntctpg-hdicon img {
  max-width: 59px;
}

.cntctpg-hd {
  width: calc(100% - 74px);
}

.contctinfolist-wrp ul {
  padding-left: 0;
  margin-bottom: 0;
}

.contctinfolist-wrp ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contctinfolist-card {
  padding-top: 44px;
  max-width: 336px;
}

.contctinfolist-wrp ul li:not(:last-child) {
  margin-bottom: 47px;
}

.continfoicon {
  width: 58px;
  height: 58px;
  padding-left: 20px;
  padding-bottom: 20px;
  position: relative;
}

.continfoicon::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 40px;
  background-color: rgba(216, 31, 39, 0.08);
  left: 0;
  bottom: 0;
}

.continfo-contbx {
  width: calc(100% - 58px);
  padding-left: 27px;
}

.continfosubhd {
  color: var(--secondarycolor);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.continfo-contbx p,
.continfo-contbx a {
  font-family: var(--body-font);
  color: #70707a;
}

.continfo-contbx a:hover {
  color: var(--primary-color);
}

.gtintouch-wrpr {
  background-color: #f9f8f8;
  padding: 44px 36px 60px 36px;
}

.gtintouch-frmrow {
  --bs-gutter-x: 16px;
  --bs-gutter-y: 17px;
}

.gtintouch-frm-submit {
  margin-top: 20px;
}

.cntct-infolftcol {
  width: 37.7%;
}

.cntct-inforgtcol {
  width: 62.3%;
}

.dealweek-slidr .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dealweek-slidr .dealweek-slidr-itm {
  height: auto;
}

.inrbnr .bnmr-contbx {
  max-width: 100%;
}

.imprtsrvbnr .bnrrgt-imgbx {
  margin-right: 0;
  margin-left: -130px;
}

.imprtserv-wpr {
  border-radius: 30px 0;
  border: 1px solid var(--white-color-two);
  background-color: var(--white);
  overflow: hidden;
}

.imprtserv-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.imprtserv-imgbx {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}

.imprtserv-imgbx img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.imprtserv-lftcol {
  width: 44%;
}

.imprtserv-rgtcol {
  width: 53%;
}

.imprtserv-contbx {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 64px 63px 64px 0;
}

.imprtserv-logoicon {
  width: 56px;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.imprtserv-contbx h2 {
  margin-bottom: 18px;
}

.imprtserv-contbx .cmnbutn {
  min-width: 136px;
  margin-top: 9px;
  padding: 15px 25px;
}

.imprtserv-wpr:not(:last-child) {
  margin-bottom: 100px;
}

.imprtserv-wpr:nth-child(even) .imprtserv-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.imprtserv-wpr:nth-child(even) .imprtserv-contbx {
  padding-right: 0;
  padding-left: 63px;
}

.servpg-imgbx {
  border-radius: 30px 0;
  margin-bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.servpg-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.servpg-imgbx img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.servpg-lftcol {
  width: 44%;
}

.servpg-rgtcol {
  width: 53%;
}

.servpg-contntbx {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.servpg-contntbx h2 {
  margin-bottom: 16px;
}

.servpg-contntbx .cmnbutn {
  min-width: 136px;
  padding: 15px 25px;
}

.servpg-ourrwrpr:nth-child(even) {
  position: relative;
  z-index: 1;
}

.servpg-ourrwrpr:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: -o-linear-gradient(right,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
  background: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(117, 138, 153, 0.3)),
      color-stop(52%, rgba(255, 255, 255, 0.05)),
      to(rgba(117, 138, 153, 0.3)));
  background: linear-gradient(270deg,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
  opacity: 0.4;
  pointer-events: none;
}

.servpg-ourrwrpr:nth-child(even) .servpg-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.servpg-listing ul {
  padding-left: 0;
  margin-bottom: 20px;
}

.srvleonlysec {
  position: relative;
  z-index: 1;
}

.srvleonlysec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: -o-linear-gradient(right,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
  background: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(117, 138, 153, 0.3)),
      color-stop(52%, rgba(255, 255, 255, 0.05)),
      to(rgba(117, 138, 153, 0.3)));
  background: linear-gradient(270deg,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
  opacity: 0.4;
}

.servpg-listing li {
  position: relative;
  list-style: none;
  color: var(--secondarycolor);
  padding-left: 30px;
}

.servpg-contntbx p {
  margin-bottom: 18px;
}

.servpg-listing li:not(:last-child) {
  margin-bottom: 6px;
}

.servpg-listing li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 19px;
  background-image: url(images/logoicon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px;
}

.srvleonly-icon {
  width: 78px;
  height: 78px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.srvleonlycard {
  text-align: center;
}

.srvleonly-hd {
  color: var(--secondarycolor);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 13px;
}

.srvleonly-outrwrpr {
  margin-top: 60px;
}

.srvleonly-row {
  --bs-gutter-x: 75px;
  --bs-gutter-y: 25px;
}

.nfaservpgsec .servpg-ourrwrpr:first-child .servpg-imgbx img {
  -o-object-fit: contain;
  object-fit: contain;
}

.sale-prodt-shwrslttxt {
  color: var(--secondarycolor);
}

.sale-prodt-toppnl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sale-prodt-slctbx select {
  border: 1px solid var(--secondarycolor);
  border-radius: 10px 0px;
  font-size: 20px;
  color: var(--secondarycolor);
  background: url(images/slecticon.svg) no-repeat calc(100% - 11px) center transparent;
  line-height: 1;
  padding: 8px 22px 8px 13px;
  height: auto;
}

.sale-prodt-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sale-prodt-card {
  background-color: var(--white);
  border: 1px solid #ebeaea;
  border-radius: 30px 0px;
  overflow: hidden;
}

.sale-prodt-imgbx {
  height: 251px;
}

.sale-prodt-imgbx img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sale-prodt-contbx {
  padding: 30px 30px;
  text-align: center;
}

.sale-prodtnme {
  font-size: 30px;
  text-transform: uppercase;
  font-family: var(--body-font);
  font-weight: 600;
  color: var(--secondarycolor);
  margin-bottom: 13px;
  line-height: 1.1;
}

.sale-prodtnme a {
  color: var(--secondarycolor);
}

.sale-prodtnme a:hover {
  color: var(--primary-color);
}

.sale-prodtprice {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-color);
}

.sale-prodt-card .cmnbutn {
  min-width: 136px;
  padding: 15px 25px;
  min-width: 157px;
  margin-top: 22px;
}

.sale-prodt-toppnl {
  margin-bottom: 30px;
}

/*pagination*/
.paginationlst {
  margin-top: 67px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -7px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination li {
  padding: 0 7px;
}

.pagination .page-link {
  width: 42px;
  height: 42px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #fafdff;
  border: 1px solid #f2f5f8;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondarycolor);
  position: relative;
}

.pagination .page-link:hover {
  background-color: var(--secondarycolor);
  color: var(--white);
  border-color: var(--secondarycolor);
}

.pagination li.prev .page-link,
.pagination li.next .page-link {
  border: none;
  width: 15px;
}

.pagination li.prev .page-link:hover,
.pagination li.next .page-link:hover {
  background-color: transparent;
  color: var(--secondarycolor);
}

.pagination li.prev .page-link::before {
  content: "<";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pagination li.next .page-link::before {
  content: ">";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pagination li.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.pagination .page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*pagination*/
.inrbnr .bnrbotmblurone {
  display: none;
}

/* pro 5/3/25 start */
.woocommerce .sale-prodcutsec ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woocommerce .sale-prodcutsec ul.products::before,
.woocommerce .sale-prodcutsec ul.products::after {
  display: none;
}

.woocommerce .sale-prodcutsec ul.products.columns-3 li {
  width: calc(33.33% - 15px);
  float: none;
  margin: 0 0 30px;
  padding: 0 0 30px;
  display: flex;
  flex-direction: column;
}

.woocommerce-page ul.products li {
  border: 1px solid #ebeaea;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
}

.imprtserv-wpr-logo .servpg-imgbx img {
  object-fit: contain;
}

/* pro 5/3/25 end */

/* support starts 06.03.2025  */
.contct-infosec .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

.contct-infosec .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: none;
}

.contct-infosec .gform_wrapper.gravity-theme .gfield_validation_message,
.contct-infosec .gform_wrapper.gravity-theme .validation_message {
  background: transparent;
  padding: 0;
  border: none;
}

.contct-infosec .gform_wrapper.gravity-theme input[type="text"],
.contct-infosec .gform_wrapper.gravity-theme input[type="tel"],
.contct-infosec .gform_wrapper.gravity-theme input[type="password"],
.contct-infosec .gform_wrapper.gravity-theme input[type="email"],
.contct-infosec .gform_wrapper.gravity-theme select,
.contct-infosec .gform_wrapper.gravity-theme textarea {
  background-color: var(--white);
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #000;
  /* border: 1px solid rgba(255, 255, 255, 0.7); */
  height: 47px;
  padding: 0 18px;
  outline: none !important;
  font-size: 20px;
  border: none;
}

.contct-infosec .gform_wrapper.gravity-theme textarea {
  height: 145px !important;
  padding: 15px 18px;
}

.woocommerce-shop .sale-prodcutsec .woocommerce-result-count {
  color: var(--secondarycolor);
}

.woocommerce-shop .sale-prodcutsec .woocommerce-ordering select {
  border: 1px solid var(--secondarycolor);
  border-radius: 10px 0;
  background: url(images/drop-arw-btn.svg) no-repeat calc(100% - 16px) center transparent;
}

.woocommerce .sale-prodcutsec ul.products.columns-3 li {
  text-align: center;
}

.woocommerce ul.products li.product .button {
  display: inline-block;
  margin: auto auto 0;
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 20px;
  text-align: center;
  display: inline-block;
  padding: 19px 15px;
  min-width: 157px;
  max-width: 157px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.woocommerce ul.products li.product .button:hover {
  background-color: var(--secondarycolor);
}

.price .custom-price-text {
  color: var(--body-color);
}

.price .woocommerce-Price-amount {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 600;
}

.price {
  line-height: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  padding: 10px 20px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
  padding: 0 20px;
}

.woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin-right: 15px;
  background: #fafdff;
  border: 1px solid #f2f5f8;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  color: var(--secondarycolor);
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li:last-child {
  margin-right: 0;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.woocommerce ul.products li.product a img {
  border-radius: 30px 0;
}

.firearms-pkg-crd ul {
  text-align: left;
}

.firearms-pkgprs,
.firearms-pkg-nm {
  margin-bottom: 10px;
}

.single-product .type-product .product_title {
  font-size: 55px;
}

/* support ends 06.03.2025  */

/* 07-03-25 Strat SM */
.ftrimg {
  height: 100% !important;
  object-fit: cover;
}

body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account {
  padding-top: 100px;
}

body.woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button,
body.woocommerce-checkout .wc-block-components-button,
body.woocommerce-account .woocommerce-form-login__submit {
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 20px;
  text-align: center;
  display: inline-block;
  padding: 19px 15px;
  min-width: 195px;
  line-height: 1;
  text-transform: uppercase;
  border: 0;
  justify-content: center;
  display: inline-flex;
}

body.woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button:hover,
body.woocommerce-checkout .wc-block-components-button:hover,
body.woocommerce-account .woocommerce-form-login__submit:hover {
  background-color: var(--secondarycolor);
  color: var(--white);
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  padding: 10px 30px 10px 45px;
  border-radius: 10px 0 10px 0;
  font-family: var(--heading-font);
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row {
  align-items: stretch;
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button svg {
  left: 15px;
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.woocommerce-shop .woof_container_product_cat {
  background: var(--white);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 21px 13px 36px;
}

.woocommerce-shop .woof_container_inner h4 {
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dcdce1;
  padding-left: 60px;
  position: relative;
}

.woocommerce-shop .woof_container_inner h4:after {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 40px;
  height: 36px;
  background: url(images/category-title-icon.png) no-repeat center center / 40px;
}

.woocommerce-shop .woof_price3_search_container {
  margin-top: 50px;
  background: var(--white);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 17px 14px 10px;
}

.woocommerce-shop .woof_shortcode_output .woof_reset_button_2,
.woocommerce-shop .woof_submit_search_form_container .woof_reset_search_form {
  display: inline-block;
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 16px;
  text-align: center;
  display: inline-block;
  padding: 15px;
  min-width: 125px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  border: 0;
}

.woocommerce-shop .woof_shortcode_output .woof_reset_button_2:hover,
.woocommerce-shop .woof_submit_search_form_container .woof_reset_search_form:hover {
  background-color: var(--secondarycolor);
  color: var(--white);
}

.woocommerce-shop .irs-from,
.woocommerce-shop .irs-to,
.woocommerce-shop .irs-bar,
.woocommerce-shop .irs-single {
  background-color: var(--primary-color) !important;
}

.woocommerce-shop .irs-from::before,
.woocommerce-shop .irs-to:before,
.irs-single:before {
  border-top-color: var(--primary-color) !important;
}

.woocommerce-shop .irs-handle {
  border-color: var(--primary-color) !important;
}

.woocommerce-shop .irs-grid {
  display: none !important;
}

.single-product {
  padding-top: 90px;
}

.single-product .product_title {
  font-weight: 400;
  font-size: 55px;
  text-transform: uppercase;
  color: #262262;
  margin-bottom: 15px;
}

.single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 16px !important;
}

.single-product .woocommerce-product-rating .star-rating {
  margin-top: 0;
}

.single-product .woocommerce-product-rating .woocommerce-review-link {
  line-height: 1;
  font-weight: 400;
  font-size: 20px;
  color: #70707a;
  text-transform: capitalize;
}

.single-product .star-rating span::before {
  color: var(--primary-color);
}

.single-product .woocommerce-Price-amount.amount {
  font-size: 30px;
  font-weight: 600;
}

.single-product .single_add_to_cart_button {
  border-radius: 10px 0 !important;
  background-color: var(--primary-color) !important;
  font-family: var(--heading-font);
  color: var(--white) !important;
  font-size: 20px !important;
  text-align: center;
  display: inline-block !important;
  padding: 17px 36px !important;
  line-height: 1 !important;
  text-transform: uppercase;
  font-weight: 400;
}

.single-product .single_add_to_cart_button:hover {
  background-color: var(--secondarycolor) !important;
}

/* 07-03-25 End SM */

/*suuport css update 10/3/2025*/
.archive .woof_container_product_cat .icheckbox_square-blue {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: none;
  border-radius: 3px;
  background-image: none;
  border: 1px solid #dcdce1;
}

/* .archive .woof_container_product_cat .icheckbox_square-blue::before{
	content: "";
    position: absolute;
    right: 4px;
    top: 1px;
    width: 3px;
    height: 8px;
    transform: rotate(45deg);
	border: solid #ffffff;
    border-width: 0 1px 1px 0;
    border-radius: 5px;
	display: none;
} */
.archive .woof_container_product_cat .woof_list_checkbox li {
  position: relative;
  padding-left: 20px;
}

.archive .woof_container_product_cat .icheckbox_square-blue.checked::before {
  display: block;
}

.archive .woof_container_product_cat .icheckbox_square-blue.checked {
  background-color: var(--primary-color);
}

.archive .woof_container_product_cat .icheckbox_square-blue.checked label {
  font-weight: 400;
}

.archive .products .star-rating {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}

.archive .woof_price_filter .irs-handle {
  background-color: var(--secondarycolor);
  border: none;
  top: 31px;
  width: 12px;
  height: 12px;
}

.irs--round .irs-line {
  background-color: #dad6d6;
}

.single-product .wcgs-slider-image {
  border-radius: 20px;
  border: 1px solid var(--secondarycolor);
  width: 100%;
  padding: 50px 14px;
}

.single-product #wpgs-gallery.wcgs-woocommerce-product-gallery .wcgs-carousel .wcgs-slider-image {
  border-radius: 20px;
}

.single-product .gallery-navigation-carousel-wrapper .wcgs-thumb {
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  overflow: hidden;
  margin-right: 15px;
}

.single-product #wpgs-gallery .gallery-navigation-carousel-wrapper {
  margin-top: 15px;
}

.single-product .gallery-navigation-carousel-wrapper .wcgs-thumb.spswiper-slide img {
  border: none !important;
}

.single-product .gallery-navigation-carousel-wrapper .wcgs-thumb.spswiper-slide-thumb-active {
  border-color: var(--secondarycolor);
}

.single-product .related.products ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.single-product .related.products ul li.product {
  width: calc(calc(100% / 3) - 20px);
  float: none;
  margin: 0 30px 30px 0;
  padding: 0;
  text-align: center;
}

.single-product .related.products ul li.product:nth-child(3n) {
  margin-right: 0;
}

.single-product div.product .woocommerce-tabs ul.tabs li::before,
.single-product div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.single-product .related.products h2 {
  text-align: center;
}

.single-product .related.products li.product .button {
  padding: 15px 15px;
}

.single-product .woocommerce-tabs {
  border: 1px solid #d1d1d1;
  border-radius: 20px;
}

.single-product div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid #d1d1d1;
  margin-bottom: 0;
  padding: 30px 25px 0 25px;
  display: flex;
}

.single-product div.product .woocommerce-tabs ul.tabs li {
  border: none;
  border-radius: 0;
  margin: 0;
  background-color: transparent;
}

.single-product div.product .woocommerce-tabs ul.tabs li.active a {
  border-bottom: 3px solid #d81f27;
  color: #d81f27;
}

.single-product div.product .woocommerce-tabs ul.tabs li a {
  color: var(--secondarycolor);
  font-size: 30px;
  padding: 0 0 16px 0;
  line-height: 1;
}

.single-product div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #d81f27;
}

.single-product div.product .woocommerce-tabs ul.tabs::before {
  border: none;
}

.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 30px 25px;
}

.single-product .woocommerce-tabs .panel h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.single-product .woocommerce-tabs .panel .woocommerce-Reviews #respond form input[type="submit"]#submit {
  background-color: var(--primary-color);
  color: var(--white);
  height: 50px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 20px;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px 0;
  min-width: 157px;
  font-family: var(--heading-font);
}

.single-product .woocommerce-tabs .panel .woocommerce-Reviews #respond form input[type="submit"]#submit:hover {
  background-color: var(--secondarycolor);
}

.single-product .woocommerce-tabs .woocommerce-Reviews form {
  background-color: #f9f8f8;
  padding: 20px;
  margin-top: 20px;
}

.single-product .woocommerce-tabs .woocommerce-Reviews form label {
  font-weight: 600;
}

.single-product .woocommerce-tabs .woocommerce-Reviews form input[type="text"],
.single-product .woocommerce-tabs .woocommerce-Reviews form input[type="tel"],
.single-product .woocommerce-tabs .woocommerce-Reviews form input[type="email"],
.single-product .woocommerce-tabs .woocommerce-Reviews form input[type="password"],
.single-product .woocommerce-tabs .woocommerce-Reviews form textarea {
  border: 1px solid #ebeaea;
}

.single-product .related.products {
  padding-top: 100px;
}

.single-product .summary form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 38px;
  margin-bottom: 0;
}

.single-product .summary form.cart .quantity {
  border: 1px solid var(--secondarycolor);
  border-radius: 10px 0px;
  max-width: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  float: none;
  margin-right: 0 !important;
}

.single-product .summary form.cart .quantity button {
  width: 50px;
  font-size: 12px;
  border: none;
  height: 50px;
  font-size: 34px;
  color: var(--secondarycolor);
  background-color: transparent;
}

.single-product .summary form.cart .quantity .qty {
  width: calc(100% - 100px);
  border: 1px solid var(--secondarycolor);
  border-top: 0;
  border-bottom: 0;
  color: var(--secondarycolor);
  text-align: center;
  outline: 0;
}

.single-product .summary form.cart .single_add_to_cart_button {
  font-weight: 400;
  float: none;
  margin-left: 18px;
}

.single-product .summary form.cart .custom-wishlist-btn {
  float: none;
  margin-left: 22px;
}

.single-product .summary form.cart .custom-wishlist-btn .yith-wcwl-icon-svg__wrapper {
  display: none;
}

.single-product .summary form.cart .yith-wcwl-add-to-wishlist-button {
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 20px;
  text-align: center;
  display: inline-block;
  padding: 17px 36px;
  line-height: 1;
  text-transform: uppercase;
  border: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.single-product .summary form.cart .yith-wcwl-add-to-wishlist-button :hover {
  background-color: var(--secondarycolor);
}

.single-product .summary .product_meta span.sku_wrapper,
.single-product .summary .product_meta span.posted_in {
  display: block;
  margin-bottom: 8px;
}

.single-product .summary .product_meta span.sku_wrapper .sku {
  color: var(--secondarycolor);
}

/*suuport css update 10/3/2025*/

/* 12-03-2025 M.M Css Start */
.woocommerce-order-received .entry-header .entry-title,
.woocommerce-account .entry-header .entry-title,
.woocommerce-cart .entry-header .entry-title {
  margin-bottom: 25px;
}

.woocommerce-cart .coupon input[type="text"] {
  outline: none;
  width: 200px !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 0 16px !important;
  margin-right: 0 !important;
}

.woocommerce .button,
.woocommerce-button,
.woocommerce-Button,
.checkout-button,
.woocommerce .cart .button,
.woocommerce-cart .coupon .button {
  outline: none !important;
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 16px;
  min-height: 47px;
  text-align: center;
  display: inline-block;
  padding: 15.5px 12px;
  min-width: 125px;
  line-height: 1;
  text-transform: uppercase;
  border: 0;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}

.woocommerce .button,
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce-Button,
.checkout-button {
  border-radius: 10px 0 !important;
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 15.5px 12px !important;
  -webkit-border-radius: 10px 0 !important;
  -moz-border-radius: 10px 0 !important;
  -ms-border-radius: 10px 0 !important;
  -o-border-radius: 10px 0 !important;
  margin-bottom: 0 !important;
}

.woocommerce-cart .coupon .button {
  margin-left: 12px;
}

.woocommerce .woocommerce-error .button:hover,
.woocommerce .woocommerce-info .button:hover,
.woocommerce .woocommerce-message .button:hover,
.woocommerce-page .woocommerce-error .button:hover,
.woocommerce-page .woocommerce-info .button:hover,
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce-Button:hover,
.post-edit-link:hover,
.woocommerce .cart .button:hover,
.woocommerce-cart .coupon .button:hover {
  background-color: var(--secondarycolor);
  color: var(--white);
}

.woocommerce .button:hover,
.checkout-button:hover {
  background-color: var(--secondarycolor) !important;
  color: var(--white) !important;
}

.woocommerce-cart .quantity .qty {
  outline: none;
}

input:focus-visible+label {
  outline: 0 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}

.woocommerce-account form .form-row .input-text,
.woocommerce-account form .form-row select,
.woocommerce-checkout .wp-block-woocommerce-checkout input[type="text"],
.woocommerce-checkout .wp-block-woocommerce-checkout input[type="email"],
.woocommerce-checkout .wp-block-woocommerce-checkout input[type="tel"],
.woocommerce-checkout .wp-block-woocommerce-checkout input[type="password"],
.woocommerce-checkout .wp-block-woocommerce-checkout select {
  border: 1px solid #e5e5f6 !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px 0 !important;
  -webkit-border-radius: 10px 0 !important;
  -moz-border-radius: 10px 0 !important;
  -ms-border-radius: 10px 0 !important;
  -o-border-radius: 10px 0 !important;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--secondarycolor);
  border-radius: 10px 0;
  -webkit-border-radius: 10px 0;
  -moz-border-radius: 10px 0;
  -ms-border-radius: 10px 0;
  -o-border-radius: 10px 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  line-height: 1.2;
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1px solid var(--secondarycolor);
  letter-spacing: 0.03em;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation ul li:last-child a {
  border-bottom: 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--secondarycolor) !important;
}

.woocommerce-info::before {
  color: var(--secondarycolor);
}

.woocommerce-orders-table__cell-order-number a,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--primary-color);
}

.woocommerce-error:focus-visible,
.woocommerce-info:focus-visible,
.woocommerce-message:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid var(--secondarycolor);
  padding: 30px 15px;
  border-radius: 10px 0;
  -webkit-border-radius: 10px 0;
  -moz-border-radius: 10px 0;
  -ms-border-radius: 10px 0;
  -o-border-radius: 10px 0;
}

.woocommerce-account .woocommerce-button {
  min-width: 80px;
}

.woocommerce-account .woocommerce-EditAccountForm p:last-child {
  margin-top: 15px;
}

.woocommerce-thankyou-order-received {
  font-weight: 500;
  color: var(--secondarycolor);
}

.woocommerce-order-received .woocommerce-customer-details address {
  padding: 20px 15px !important;
  color: var(--secondarycolor);
  font-weight: 500;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title,
.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .entry-header h1.entry-title {
  font-size: 42px;
}

.woocommerce ul.order_details {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -0.5% -0.5%;
}

.woocommerce ul.order_details li {
  width: 24%;
  border: 1px solid var(--secondarycolor);
  padding-right: 0;
  margin-right: 0;
  padding: 30px 12px;
  text-align: center;
  color: var(--secondarycolor);
  font-weight: 700;
  font-size: 20px;
  margin: 0.5% 0.5%;
}

.woocommerce-order-received.logged-in .woocommerce ul.order_details li {
  width: 19%;
}

.woocommerce ul.order_details li strong {
  color: var(--primary-color);
  font-size: 16px;
  display: block;
  margin-top: 6px;
}

.woocommerce ul.order_details li:last-of-type {
  border: 1px solid var(--secondarycolor);
}

.woocommerce ul.order_details+p {
  margin-top: 15px;
  color: var(--secondarycolor);
  font-weight: 500;
}

.edit-link {
  display: none;
}

.woocommerce ul.products li.product .price {
  margin-bottom: 20px;
}

.search-no-results .blog-page-sec {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 150px;
}

.search-no-results .no-result {
  font-weight: 500;
  font-size: 24px;
  color: var(--primary-color);
  letter-spacing: 0.03em;
}

.search-results .blog-page-sec {
  padding-top: 180px;
}

.search-results .we-do-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.search-results .we-do-col-a {
  border: 1px solid #e5e5f6;
  border-radius: 30px 0 30px 0;
  -webkit-border-radius: 30px 0 30px 0;
  -moz-border-radius: 30px 0 30px 0;
  -ms-border-radius: 30px 0 30px 0;
  -o-border-radius: 30px 0 30px 0;
  overflow: hidden;
  display: block;
  width: 100%;
}

.search-results .heading-btn {
  padding: 15px 20px;
  text-align: center;
}

.search-results .we-help-dwn {
  padding: 0 20px;
}

.search-results .we-help-dwn p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce-message::before {
  color: var(--secondarycolor);
}

.single-product .summary form.cart .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product .summary form.cart .quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
  margin: 0;
  outline: 0;
  opacity: 0;
  visibility: hidden;
  outline: 0;
}

.single-product .summary form.cart .quantity input[type="number"]::-webkit-inner-spin-button,
.single-product .summary form.cart .quantity input[type="number"]::-webkit-outer-spin-button {
  visibility: hidden;
  opacity: 0 !important;
}

input[type="number"] {
  -moz-appearance: textfield !important;
}

.woocommerce-checkout .wc-block-components-radio-control__label .wc-block-components-payment-method-label:hover {
  color: var(--primary-color);
}

.search-results .we-do-col-a>img {
  width: 100%;
}

.woocommerce-shop .woof_container_product_cat .woof_container_inner h4 {
  cursor: pointer;
}

.woof_products_top_panel .woof_products_top_panel_ul li button {
  border: 0;
  border-radius: 10px 0;
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 20px;
  text-align: center;
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.woof_products_top_panel .woof_products_top_panel_ul li button:hover {
  background-color: var(--secondarycolor);
  color: var(--white);
}

.page-template-default .custom-shop.cmn-gap,
.error_page_sec.cmn-gap,
.single-services.cmn-gap {
  padding-top: 200px;
}

.single-services .entry-header {
  margin-bottom: 25px;
  text-align: center;
}

.single-services .entry-header .entry-title {
  font-size: 55px
}

.single-services .post-thumbnail {
  margin-bottom: 25px;
  float: left;
  width: 42%;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  margin-right: 25px;
  padding-top: 42%;
  position: relative;
}

.single-services .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-navigation .nav-links {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-navigation .nav-links .nav-subtitle {
  display: none;
}

.services-details-wrape {
  display: table;
}

.error-btn-wrrp {
  text-align: center;
  margin-top: 15px;
}

.page-template-default .entry-header,
.error_page {
  text-align: center;
}

.page-template-default .entry-header {
  margin-bottom: 20px;
}

/* 12-03-2025 M.M Css End */


/* sm Css Strat */
.woocommerce .sale-prodcutsec ul.products.columns-3 li {
  align-items: center;
}

body.post-type-archive-product .woof_childs_list {
  padding: 0 !important;
}

.woof_childs_list_opener span.woof_is_opened,
.woof_childs_list_opener span.woof_is_closed {
  filter: brightness(0) saturate(100%) invert(27%) sepia(100%) saturate(5809%) hue-rotate(348deg) brightness(88%) contrast(94%);
}

.clend-ppup-outer {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.clend-ppup-outer .gform_wrapper.gravity-theme .gfield_label {
  font-size: 20px;
}

.clend-ppup-outer textarea {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding-left: 20px;
  padding-top: 20px;
}

.clend-ppup-outer input[type="text"],
.clend-ppup-outer input[type="tel"],
.clend-ppup-outer input[type="password"],
.clend-ppup-outer input[type="email"] {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding-left: 20px;
}

.clend-ppup-outer .carousel__button.is-close:hover {
  background-color: var(--secondarycolor);
}

.clend-ppup-outer .carousel__button.is-close {
  height: 40px;
  width: 40px;
  background-color: red;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.summary.entry-summary .custom-wishlist-btn {
  margin-top: 13px;
}

.woof_container {
  margin-bottom: 30px;
}

.servpg-contntbx .cmnbutn {
  margin-top: 12px;
}

.single-product .related.products ul li.product {
  padding: 0 10px 40px 10px;
}

.single-product .wcgs-slider-image {
  padding: 45px 14px;
}

/* sm Css End */

/* 18.03.25 sm Css Start */
.botmheadr .navbar {
  max-width: 1274px;
  margin-left: auto;
}

.navbar-brand {
  width: 300px;
}

/* 18.03.25 sm Css End */

/* support starts 27.03.2025  */

.hdsrch-wrp input[type="text"]::-webkit-input-placeholder {
  color: #A2A2A2;
}

.hdsrch-wrp input[type="text"]:-ms-input-placeholder {
  color: #A2A2A2;
}

.hdsrch-wrp input[type="text"]::-moz-placeholder {
  color: #A2A2A2;
}

.hdsrch-wrp input[type="text"]:-moz-placeholder {
  color: #A2A2A2;
}

.cmnbutn {
  letter-spacing: 0.03em;
}

.devils-sec .devil-contant .h2-title {
  line-height: 1;
}

.devils-sec .devil-contant .h2-title span {
  display: inline-block;
}

.devils-sec .devil-contant .cmnhead {
  margin-bottom: 20px;
}

.contct-infosec .cntctpg-hd {
  color: #0C0C0C;
}

.contct-infosec {
  padding-bottom: 30px;
}

.contactyclndysec {
  padding-bottom: 10px;
}

.circle-ul li:nth-child(2) .wrap {
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
}

/* support ends 27.03.2025  */
.image-content-section .servpg-ourrwrpr, .firearms-pkgsec{
  position: relative;
  z-index: 1;
}
.image-content-section .servpg-ourrwrpr::before{
  content: none !important;
}
.firearms-pkgsec::before{
    content: "" !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: -o-linear-gradient(right,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
    background: -webkit-gradient(linear,
      right top,
      left top,
      from(rgba(117, 138, 153, 0.3)),
      color-stop(52%, rgba(255, 255, 255, 0.05)),
      to(rgba(117, 138, 153, 0.3)));
    background: linear-gradient(270deg,
      rgba(117, 138, 153, 0.3) 0%,
      rgba(255, 255, 255, 0.05) 52%,
      rgba(117, 138, 153, 0.3) 100%);
    opacity: 0.4;
    pointer-events: none; 
}

/* ========== responsive css =========== */

@media (min-width: 1025px) {

  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
  }

  .big-container {
    max-width: 1424px;
  }
}

@media (max-width: 1280px) {
  .bnrrgt-imgbx {
    margin-right: auto;
  }

  .red-circle {
    width: 280px;
    height: 280px;
    top: -6px;
    bottom: -6px;
    right: -9px;
  }

  .slide-btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .btn-arw-wrapper {
    position: static;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .slike-arw.next {
    margin-left: 8px;
  }

  .playpause {
    left: 10px;
  }

  /*support css upadte 11/3/2025*/
  .single-product .summary form.cart .single_add_to_cart_button {
    margin-left: 10px;
  }

  .single-product .summary form.cart .custom-wishlist-btn {
    margin-left: 10px;
  }

  .single-product .summary form.cart .yith-wcwl-add-to-wishlist-button {
    padding: 17px 20px;
  }

  .single-product .summary form.cart {
    margin-top: 25px;
  }

  .single-product .single_add_to_cart_button {
    padding: 17px 20px !important;
  }

  .single-product .summary form.cart .quantity {
    max-width: 131px;
  }

  .single-product .summary form.cart .quantity button {
    width: 40px;
    height: 50px;
  }

  .single-product .summary form.cart .quantity .qty {
    width: calc(100% - 80px);
  }

  /*support css upadte 11/3/2025*/
}

@media (max-width: 1499px) {
  .bnrlogoimg {
    top: -60px;
    max-width: 621px;
    margin-right: -22%;
  }
}

@media (max-width: 1399px) {
  .bnrlogoimg {
    top: -60px;
    max-width: 542px;
    margin-right: -24px;
  }

  .dealweek-slidr .slick-arrow.slick-prev {
    left: -25px;
  }

  .dealweek-slidr .slick-arrow.slick-next {
    right: -25px;
  }

  .wrapper-py {
    height: 473px;
    width: 473px;
    margin-left: -15px;
  }

  .circle-ul li:nth-child(1) .wrap {
    right: 31px;
    bottom: -28px;
  }

  .circle-ul li:nth-child(2) .wrap {
    bottom: -19px;
    right: 8px;
  }

  .circle-ul li:nth-child(3) .wrap {
    bottom: 12px;
    right: 83px;
  }

  .col-devil-lft {
    width: 53%;
  }

  .col-devil-rgt {
    width: 47%;
  }

  .navbar-nav>li>a {
    font-size: 18px;
  }

  /* 18.03.25 sm Css Start */
  .navbar-brand {
    width: 250px;
  }

  /* 18.03.25 sm Css End */
}

@media (max-width: 1199px) {
  .navbar-nav>li>a {
    font-size: 15px;
  }

  .navbar-nav>li {
    margin: 0 8px;
  }

  .navbar-brand {
    width: 142px;
  }

  h1,
  .h1-title {
    font-size: 60px;
  }

  h2,
  .h2-title {
    font-size: 40px;
  }

  h3,
  .h3-title {
    font-size: 28px;
  }

  h4,
  .h4-title {
    font-size: 22px;
  }

  h5,
  .h5-title {
    font-size: 18px;
  }

  .bnrlogoimg {
    max-width: 462px;
  }

  .bnrarwimg {
    max-width: 132px;
  }

  .dlweek-slidr-imgoutr {
    padding-bottom: 60px;
  }

  .dealweek-slidr .slick-arrow {
    top: auto;
    bottom: 0;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }

  .dealweek-slidr .slick-arrow.slick-prev {
    left: calc(50% - 40px);
  }

  .dealweek-slidr .slick-arrow.slick-next {
    right: calc(50% - 40px);
  }

  .dealweek-slidr {
    padding-bottom: 50px;
  }

  .chkout-prd-row {
    --bs-gutter-x: 24px;
  }

  .chkout-prd-card-two:last-child {
    margin-top: 24px;
  }

  .chkout-prd-contbx .cmnbutn {
    min-width: 100px;
    padding: 11px 15px;
  }

  .chkout-prd-sunhd {
    width: calc(100% - 100px);
  }

  .chkout-prd-contbx {
    padding: 0 15px;
    bottom: 16px;
  }

  .cmn-gap {
    padding: 80px 0;
  }

  .dealweeksec {
    padding: 45px 0 45px 0;
  }

  .advantgrow {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .advantgimgbx {
    margin: 0 auto 30px auto;
  }

  .advantg-subhd {
    margin-bottom: 12px;
  }

  .rgt-slider-img {
    width: 35%;
  }

  .lft-slider-content {
    width: 65%;
  }

  .wrapper-py {
    height: 400px;
    width: 400px;
    margin-left: -15px;
  }

  .wrap {
    padding: 34px 17px;
  }

  .circle-ul li:nth-child(1) .wrap {
    right: 15px;
    bottom: -28px;
  }

  .circle-ul li:nth-child(2) .wrap {
    bottom: -15px;
    right: -4px;
  }

  .circle-ul li:nth-child(3) .wrap {
    bottom: 11px;
    right: 54px;
  }

  .playpause {
    -webkit-box-shadow: 0 0 0 19px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 19px rgba(255, 255, 255, 0.3);
  }

  .lower-ftr {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ftrtop {
    padding: 50px 0;
  }

  .chkout-prd-wrpr {
    margin-top: 30px;
  }

  .ftr-three .inr-footer {
    padding-left: 0;
  }

  .firearms-pkg-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .firearms-pkg-crd {
    padding: 30px 16px;
  }

  .contctinfolist-card {
    max-width: 100%;
  }

  .continfo-contbx {
    padding-left: 16px;
  }

  .imprtserv-wpr:not(:last-child) {
    margin-bottom: 70px;
  }

  .imprtserv-lftcol {
    width: 50%;
  }

  .imprtserv-rgtcol {
    width: 50%;
  }

  .imprtserv-contbx {
    padding: 40px 20px 40px 0;
  }

  .imprtserv-wpr:nth-child(even) .imprtserv-contbx {
    padding-right: 0;
    padding-left: 20px;
  }

  .servpg-lftcol {
    width: 50%;
  }

  .servpg-rgtcol {
    width: 50%;
  }

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

  .sale-prodtnme {
    font-size: 26px;
  }

  .sale-prodt-row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
  }

  .paginationlst {
    margin-top: 30px;
  }

  .sale-prodt-contbx {
    padding: 30px 20px;
  }

  /*support css update 10/3/2025*/
  .single-product .wcgs-slider-image {
    padding: 20px;
  }

  /*support css update 11/3/2025*/
  .single-product .related.products {
    padding-top: 80px;
  }

  /*support css update 11/3/2025*/
  /* 12-03-2025 M.M Css Start */
  .single-services.cmn-gap {
    padding-top: 180px;
  }

  .single-services .entry-header .entry-title {
    font-size: 46px;
  }

  /* 12-03-2025 M.M Css End */

  /* support starts 27.03.2025  */
  .contct-infosec {
    padding-bottom: 20px;
  }

  .contactyclndysec {
    padding-bottom: 10px;
  }

  /* support ends 27.03.2025  */
}

@media (max-width: 1024px) {

  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav>li {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
  .cmnhead {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: auto;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 12px 14px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */

  .navbar-nav>li:last-child a {
    border-bottom: none;
  }

  .tophd-lftcol {
    width: 45%;
  }

  .tophd-rgtcol {
    width: 55%;
  }

  .top-infobar ul li a {
    font-size: 15px;
  }

  .topinfocion {
    width: 30px;
    height: 30px;
  }

  .topinfocion img {
    max-width: 15px;
  }

  .top-infobar ul li a span {
    width: calc(100% - 30px);
    padding-left: 6px;
  }

  .cartbutn {
    margin-left: 8px;
  }

  .hdsrchbx {
    margin-right: 8px;
  }

  .hdsrch-wrp input[type="text"],
  .hdsrch-wrp input[type="search"] {
    height: 40px;
    padding: 8px 42px 8px 8px;
  }

  .hdsrch-wrp button[type="submit"] {
    right: 8px;
  }

  .cmnbutn.hdrbutn {
    min-width: 100px;
    padding: 10px 15px;
  }

  .top-infobar ul li {
    padding: 0 6px;
  }

  .topheader-row {
    margin: 0 -6px;
  }

  .cartbutn {
    width: 30px;
    height: 30px;
  }

  .cartbutn img {
    max-width: 15px;
  }

  .botmheadr {
    padding: 8px 0;
  }

  .topheader {
    padding: 8px 0;
  }

  h1,
  .h1-title {
    font-size: 45px;
  }

  h2,
  .h2-title {
    font-size: 33px;
  }

  h3,
  .h3-title {
    font-size: 26px;
  }

  body {
    font-size: 16px;
  }

  p {
    margin-bottom: 15px;
  }

  .cmnbutn {
    font-size: 16px;
  }

  .banner {
    padding: 140px 0 45px 0;
  }

  .bnrlogoimg {
    max-width: 322px;
    top: -50px;
  }

  .bnrtitle {
    margin-bottom: 15px;
  }

  .bnrbtnbx {
    margin-top: 15px;
  }

  .chkout-prd-card-two {
    height: 260px;
  }

  .cmn-gap {
    padding: 60px 0;
  }

  .advantgcol {
    width: 50%;
  }

  .advantg-card {
    padding: 20px 15px;
  }

  .red-circle {
    width: 225px;
    height: 225px;
    top: -2px;
    bottom: -1px;
    right: -10px;
  }

  .slider-cir {
    width: 220px;
    height: 220px;
  }

  .bnrbotmblur {
    left: 0;
  }

  .wrapper-py {
    height: 280px;
    width: 280px;
    margin-left: -10px;
  }

  .playpause {
    width: 60px;
    height: 60px;
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
  }

  .circle-ul li .shape-icon {
    max-width: 24px;
  }

  .wrap {
    padding: 25px 11px;
  }

  .circle-ul li:nth-child(1) .wrap {
    right: 24px;
    bottom: -21px;
    -webkit-transform: rotate(335deg);
    -ms-transform: rotate(335deg);
    transform: rotate(335deg);
  }

  .circle-ul li:nth-child(2) .wrap {
    bottom: -3px;
    right: 5px;
  }

  .circle-ul li:nth-child(3) .wrap {
    bottom: 24px;
    right: 49px;
  }

  .ftrtop {
    padding: 30px 0;
  }

  .ftrtoprgtcol {
    width: 500px;
  }

  .ftrtoplftcol {
    width: calc(100% - 500px);
  }

  .fotersec input[type="submit"] {
    padding: 10px 29px;
  }

  .fotersec input[type="email"],
  .fotersec input[type="text"] {
    padding: 0 16px;
    padding-right: 130px;
  }

  .ftr-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .fotersec input[type="submit"] {
    font-size: 16px;
  }

  .firearms-pkgprs {
    margin-bottom: 20px;
  }

  .firearms-pkg-nm {
    margin-bottom: 18px;
  }

  .inrbnr {
    min-height: 350px;
  }

  .inrbnr .bnrlogoimg {
    max-width: 402px;
  }

  .gtintouch-wrpr {
    padding: 30px 20px;
  }

  .cntctpgcmnhd {
    margin-bottom: 20px;
  }

  .gtintouchfrm-col {
    width: 100%;
  }

  .contctinfolist-wrp ul li:not(:last-child) {
    margin-bottom: 30px;
  }

  .contctinfolist-card {
    padding-top: 30px;
  }

  .contctmapimg {
    height: 400px;
  }

  .imprtserv-wpr:not(:last-child) {
    margin-bottom: 50px;
  }

  .imprtserv-logoicon {
    margin-bottom: 15px;
  }

  .imprtserv-contbx h2 {
    margin-bottom: 13px;
  }

  .imprtserv-contbx {
    padding: 30px 20px 30px 0;
  }

  .imprtserv-wpr:nth-child(even) .imprtserv-contbx {
    padding-right: 0;
    padding-left: 20px;
  }

  .srvleonly-row {
    --bs-gutter-x: 24px;
  }

  .sale-prodtcol {
    width: 50%;
  }

  .sale-prodtprice {
    font-size: 24px;
  }

  /* support starts 06.03.2025  */
  .woocommerce .sale-prodcutsec ul.products.columns-3 li {
    width: calc(33.33% - 10px);
    margin: 0 0 20px;
  }

  .price .woocommerce-Price-amount {
    font-size: 25px;
  }

  .woocommerce ul.products li.product .button {
    font-size: 16px;
    padding: 14px 13px;
    min-width: 130px;
  }

  /* support ends 06.03.2025  */

  /* 07-03-25 Start SM */

  body.woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button,
  body.woocommerce-checkout .wc-block-components-button {
    font-size: 16px;
  }

  body.woocommerce-checkout .wp-block-woocommerce-checkout {
    padding-top: 4px;
  }

  /* 07-03-25 End SM */
  /*support css update 10/3/2025*/
  .single-product .type-product .product_title {
    font-size: 45px;
  }

  .single-product .related.products ul li.product {
    margin-bottom: 20px;
  }

  .single-product .related.products li.product .button {
    padding: 14px 13px;
  }

  /*support css update 10/3/2025*/
  /*support css update 11/3/2025*/
  .single-product .summary {
    margin-bottom: 0;
  }

  .single-product .woocommerce-tabs .panel h2 {
    font-size: 30px;
  }

  .single-product .related.products {
    padding-top: 60px;
  }

  .single-product .related.products ul li.product {
    width: calc(calc(100% / 3) - 14px);
    margin: 0 20px 20px 0;
  }

  .single-product .summary form.cart {
    flex-wrap: wrap;
  }

  .single-product .summary form.cart .single_add_to_cart_button {
    margin-left: 0;
    min-width: 150px;
  }

  .single-product div.product .woocommerce-tabs ul.tabs {
    padding: 20px 15px 0 15px;
    overflow-x: auto;
  }

  .single-product div.product .woocommerce-tabs ul.tabs li {
    white-space: nowrap;
  }

  .single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 20px 15px;
  }

  .single-product div.product .woocommerce-tabs ul.tabs li a {
    font-size: 23px;
    padding: 0 0 14px 0;
  }

  .single-product div.product .woocommerce-tabs ul.tabs li {
    padding: 0 9px;
  }

  /*support css update 11/3/2025*/
  /* 12-03-2025 M.M Css Start */
  .woocommerce ul.order_details li {
    font-size: 16px;
  }

  .search-results .blog-page-sec {
    padding-top: 160px;
  }

  .woocommerce-shop .woof_container_inner_categories .woof_block_html_items {
    display: none;
    padding-top: 18px;
  }

  .woocommerce-shop .woof_container_inner h4 {
    margin-bottom: 0;
    padding-right: 30px;
  }

  .woocommerce-shop .woof_container_product_cat {
    padding-bottom: 21px;
  }

  .woocommerce-shop .woof_container_product_cat .woof_container_inner h4::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
  }

  .woocommerce-shop .woof_container_product_cat .woof_container_inner h4.active::before {
    top: 8px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
  }

  .woof_products_top_panel .woof_products_top_panel_ul li button {
    font-size: 16px;
  }

  .page-template-default .custom-shop.cmn-gap,
  .error_page_sec.cmn-gap,
  .single-services.cmn-gap {
    padding-top: 140px;
  }

  /* 12-03-2025 M.M Css End */
  .firearms-pkg-row .firearms-pkgcol {
    width: 50%;
  }

  .single-product .related.products ul li.product {
    padding-bottom: 25px;
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .top-infobar ul li a span {
    display: none;
  }

  .tophd-lftcol {
    width: 22%;
  }

  .tophd-rgtcol {
    width: 78%;
  }

  h1,
  .h1-title {
    font-size: 35px;
  }

  h2,
  .h2-title {
    font-size: 30px;
  }

  h3,
  .h3-title {
    font-size: 23px;
  }

  h4,
  .h4-title {
    font-size: 20px;
  }

  h5,
  .h5-title {
    font-size: 18px;
  }

  .bnr-rgtcol {
    margin-top: 30px;
  }

  .bnrlogoimg {
    max-width: 432px;
    top: 0;
    left: 45px;
    margin-right: 0;
  }

  .bnrarwimg {
    left: 16px;
    right: 0;
    bottom: -50px;
    top: auto;
    margin: auto;
    -webkit-transform: rotate(62deg);
    -ms-transform: rotate(62deg);
    transform: rotate(62deg);
    max-width: 90px;
  }

  .banner {
    padding: 150px 0 45px 0;
  }

  .cmnbutn {
    min-width: 170px;
    padding: 17px 15px;
  }

  .dlweek-slidr-lftcol,
  .dlweek-slidr-rgtcol {
    width: 100%;
  }

  .dealweek-slidr .slick-arrow {
    bottom: -15px;
  }

  .dlweek-slidr-sunhd {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .cmn-gap {
    padding: 45px 0;
  }

  .chkout-prd-lftcol {
    margin-bottom: 24px;
  }

  .chkout-prd-card {
    height: 400px;
  }

  .chkout-prd-card-two {
    height: 400px;
  }

  .advantgimgbx {
    width: 60px;
    height: 60px;
  }

  .advantgrow {
    --bs-gutter-y: 20px;
  }

  .rgt-slider-img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .lft-slider-content {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .slider-img-wrapper {
    margin: auto;
  }

  .slider-cir {
    margin: auto;
  }

  .col-devil-rgt,
  .col-devil-lft {
    width: 100%;
  }

  .wrapper-py {
    margin-left: auto;
    width: 300px;
    height: 300px;
  }

  .circle-ul li:nth-child(1) .wrap {
    right: 48px;
    bottom: -21px;
  }

  .circle-ul li:nth-child(2) .wrap {
    bottom: -9px;
    right: 28px;
  }

  .circle-ul li:nth-child(3) .wrap {
    bottom: 13px;
    right: 74px;
  }

  .wrapper-play-wrap {
    padding-bottom: 42px;
  }

  .ftrtoplftcol,
  .ftrtoprgtcol {
    width: 100%;
  }

  .ftrtoplftcol {
    margin-bottom: 15px;
  }

  .ftr-one {
    width: 48%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .ftr-three {
    width: 52%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .ftr-two {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    border-right: 0;
    margin-top: 25px;
  }

  .ftr-logo {
    max-width: 70px;
  }

  .ftrlogo-col {
    display: block;
    width: 100%;
    padding: 0 12px;
    margin-bottom: 20px;
  }

  .ftr-two .ftr-logo {
    display: none;
  }

  .cetr {
    text-align: center;
  }

  .ftr-logo {
    margin-bottom: 0;
  }

  .inrbnr {
    min-height: 480px;
    padding: 150px 0 15px 0;
  }

  .inrbnr .bnrlogoimg {
    max-width: 423px;
    right: 0;
    left: 0;
    top: -10px;
    margin: auto;
  }

  .cntct-infolftcol {
    width: 100%;
    margin-bottom: 30px;
  }

  .cntct-inforgtcol {
    width: 100%;
  }

  .continfoicon {
    width: 48px;
    height: 48px;
  }

  .contctinfolist-card {
    padding-top: 0;
  }

  .continfoicon::before {
    width: 42px;
    height: 35px;
  }

  .contctmapimg {
    height: 280px;
  }

  .cntctpg-hdicon {
    max-width: 52px;
  }

  .cntctpg-hdicon img {
    max-width: 52px;
  }

  .cntctpg-hd {
    width: calc(100% - 67px);
  }

  .delprdut-burshp {
    bottom: 0;
  }

  .imprtserv-lftcol,
  .imprtserv-rgtcol {
    width: 100%;
  }

  .imprtserv-contbx {
    padding: 30px 20px 30px 20px;
  }

  .imprtserv-wpr:nth-child(even) .imprtserv-contbx {
    padding-right: 20px;
    padding-left: 20px;
  }

  .imprtserv-imgbx {
    height: 300px;
  }

  .imprtserv-wpr {
    border-radius: 20px 0;
  }

  .imprtserv-wpr:not(:last-child) {
    margin-bottom: 35px;
  }

  .imprtsrvbnr .bnrrgt-imgbx {
    margin-left: 0;
  }

  .imprtsrvbnr .bnrtitle br {
    display: none;
  }

  .chkout-prd-card {
    border-radius: 20px 0;
  }

  .firearms-pkg-crd {
    border-radius: 20px 0;
  }

  .servpg-imgbx {
    border-radius: 20px 0;
  }

  .servpg-lftcol {
    width: 100%;
  }

  .servpg-rgtcol {
    width: 100%;
  }

  .srvleonlycard {
    max-width: 300px;
    margin: auto;
  }

  .servpg-contntbx {
    padding-top: 20px;
  }

  .inrbnr .bnmr-contbx h1 br {
    display: none;
  }

  .servpg-contntbx h2 br {
    display: none;
  }

  .sale-prodtnme {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .sale-prodt-card {
    border-radius: 20px 0;
  }

  .sale-prodt-card .cmnbutn {
    margin-top: 15px;
  }

  .sale-prodt-contbx {
    padding: 20px 15px;
  }

  .pagination .page-link {
    width: 35px;
    height: 35px;
  }

  .pagination li {
    padding: 0 5px;
  }

  .pagination {
    margin: 0 -5px;
  }

  .inrbnr .bnmr-contbx {
    text-align: center;
  }

  .nfaservpgsec .servpg-ourrwrpr:first-child .servpg-imgbx {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* support starts 06.03.2025  */
  .woocommerce .sale-prodcutsec ul.products.columns-3 li {
    width: calc(50% - 10px);
  }

  /* support ends 06.03.2025  */
  /*support css update 10/3/2025*/
  .single-product .type-product .product_title {
    font-size: 35px;
  }

  .single-product .related.products ul {
    margin-right: -15px;
  }

  .single-product .related.products ul li.product {
    width: calc(50% - 15px);
    margin: 0px 15px 15px 0px;
  }

  /*support css update 10/3/2025*/
  /*support css update 11/3/2025*/
  .single-product .related.products {
    padding-top: 45px;
  }

  .single-product .summary form.cart .single_add_to_cart_button {
    font-size: 16px !important;
    margin-left: 10px;
    padding: 17px 15px !important;
  }

  .single-product .summary form.cart .yith-wcwl-add-to-wishlist-button {
    padding: 17px 15px;
    font-size: 16px;
    min-width: 155px;
  }

  /*support css update 11/3/2025*/

  /* 12-03-2025 M.M Css Start */
  .woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title,
  .woocommerce-order-received .woocommerce-order-details__title,
  .woocommerce-order-received .entry-header h1.entry-title {
    font-size: 32px;
  }

  .woocommerce ul.order_details li {
    width: 49%;
  }

  .woocommerce-order-received.logged-in .woocommerce ul.order_details li {
    width: 32.33%;
  }

  .search-no-results .blog-page-sec {
    padding-top: 100px;
    min-height: 300px;
  }

  .search-results .we-do-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 24px;
  }

  .search-results .we-do-col-a {
    border-radius: 15px 0 15px 0;
    -webkit-border-radius: 15px 0 15px 0;
    -moz-border-radius: 15px 0 15px 0;
    -ms-border-radius: 15px 0 15px 0;
    -o-border-radius: 15px 0 15px 0;
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: 15px;
  }

  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    width: 100%;
  }

  .single-services .post-thumbnail {
    width: 100%;
    margin-right: 0;
  }

  .single-services .entry-header .entry-title {
    font-size: 36px;
  }

  /* 12-03-2025 M.M Css End */
  .clend-ppup-outer {
    max-width: 530px;
  }

  .clend-ppup-outer input[type="submit"] {
    line-height: 1.2 !important;
  }

  .firearms-pkg-row .firearms-pkgcol {
    width: 100%;
  }
}

@media (max-width: 575px) {

  .fotersec input[type="email"],
  .fotersec input[type="text"] {
    padding-right: 105px;
    height: 45px;
  }

  .fotersec input[type="submit"] {
    padding: 10px 19px;
  }

  .circle-ul {
    display: none;
  }

  .wrapper-play-wrap {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .wrapper-py {
    margin: auto;
  }

  .dlweek-slidr-imgbx {
    max-width: 250px;
  }

  .sale-prodtcol {
    width: 100%;
  }

  .clend-ppup-outer {
    max-width: 430px;
    padding: 40px 20px;
  }
}

@media (max-width: 479px) {
  .mb-srchbutn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: var(--secondarycolor);
    width: 30px;
    height: 30px;
    border-radius: 100%;
  }

  .mb-srchbutn img {
    max-width: 15px;
  }

  .topheader {
    position: relative;
  }

  .hdsrchbx {
    position: absolute;
    top: 100%;
    margin: auto;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 90%;
    z-index: 3;
    display: none;
  }

  .mb-srchbutn {
    margin-right: 8px;
  }

  .top-rgt-wrpr {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .hdsrch-wrp input[type="text"],
  .hdsrch-wrp input[type="search"] {
    background-color: var(--white);
  }

  .bnrlogoimg {
    max-width: 320px;
    left: 15px;
  }

  .chkout-prd-card-two {
    height: 280px;
  }

  .chkout-prd-card {
    height: 280px;
  }

  .advantgcol {
    width: 100%;
  }

  .wrapper-py {
    width: 260px;
    height: 260px;
  }

  .wrap {
    padding: 20px 11px;
  }

  .circle-ul li:nth-child(1) .wrap {
    right: 37px;
  }

  .circle-ul li:nth-child(2) .wrap {
    bottom: -9px;
    right: 20px;
  }

  .circle-ul li:nth-child(3) .wrap {
    right: 57px;
  }

  .playpause {
    bottom: 15px;
  }

  .fotersec input[type="submit"] {
    padding: 10px 19px;
  }

  .dlweek-slidr-sunhd {
    font-size: 25px;
  }

  .inrbnr .bnrlogoimg {
    max-width: 350px;
    top: 0;
  }

  .gtintouch-wrpr {
    padding: 25px 17px;
  }

  .imprtserv-contbx {
    padding: 20px 15px 20px 15px;
  }

  .imprtserv-wpr:nth-child(even) .imprtserv-contbx {
    padding-right: 15px;
    padding-left: 15px;
  }

  .sale-prodt-toppnl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .sale-prodt-shwrslttxt {
    width: 100%;
  }

  .sale-prodt-slctbx {
    margin-top: 13px;
  }

  /* support starts 06.03.2025  */
  .woocommerce .sale-prodcutsec ul.products.columns-3 li {
    width: 100%;
  }

  /* support ends 06.03.2025  */

  /* 07-03-25 Start SM */
  body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  body.woocommerce-checkout .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row>* {
    width: 100%;
    text-align: center;
  }

  body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
    margin-top: 10px;
    justify-content: center;
  }

  body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button svg {
    left: 32%;
    transform: translate(-50%, -50%);
  }

  /* 07-03-25 End SM */
  /*support css update 10/3/2025*/
  .single-product .related.products ul li.product {
    width: 100%;
  }

  /*support css update 10/3/2025*/
  /*support css update 11/3/2025*/
  .single-product .summary form.cart .single_add_to_cart_button {
    margin-left: 0;
    min-width: 160px;
    margin-top: 5px;
  }

  .single-product .related.products ul {
    margin-right: 0px;
  }

  .single-product .related.products ul li.product {
    margin-right: 0;
  }

  /*support css update 11/3/2025*/
  /* 12-03-2025 M.M Css Start */
  .woocommerce .cart .button,
  .woocommerce-cart .coupon .button,
  .woocommerce-cart .coupon input[type="text"] {
    width: 100% !important;
  }

  .woocommerce-cart .coupon .button {
    margin-left: 0;
    margin-top: 12px;
  }

  .woocommerce ul.order_details {
    margin-bottom: -10px;
  }

  .woocommerce ul.order_details li {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 10px;
  }

  .woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title,
  .woocommerce-order-received .woocommerce-order-details__title,
  .woocommerce-order-received .entry-header h1.entry-title {
    font-size: 24px;
  }

  .woocommerce-order-received.logged-in .woocommerce ul.order_details li {
    width: 100%;
  }

  .error_page_sec.cmn-gap,
  .single-services.cmn-gap {
    padding-top: 140px;
  }

  .single-services .entry-header .entry-title {
    font-size: 24px;
  }

  .single-services .post-thumbnail {
    border-radius: 15px 0 15px 0;
  }

  .post-navigation .nav-links {
    flex-direction: column;
  }

  .post-navigation .nav-links .nav-previous {
    margin-bottom: 10px;
  }


  /* 12-03-2025 M.M Css End */
  .clend-ppup-outer .gform_wrapper.gravity-theme .gfield_label {
    font-size: 16px;
  }

  .clend-ppup-outer {
    max-width: 300px;
  }

  .woocommerce-shop .sale-prodcutsec .woocommerce-result-count {
    width: 100%;
  }
}

@media (max-width: 374px) {
  .bnrlogoimg {
    max-width: 275px;
  }

  .circle-ul li:nth-child(1) .wrap {
    right: 17px;
    bottom: -21px;
  }

  .circle-ul li:nth-child(2) .wrap {
    bottom: -9px;
    right: 0;
  }

  .ftr-one {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border-right: 0;
    margin-bottom: 25px;
  }

  .ftr-three {
    width: 100%;
  }

  .ftr-logo {
    max-width: 62px;
  }

  .inrbnr .bnrlogoimg {
    max-width: 310px;
  }
}




.employee-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25) !important;
}

/* Icon pulse animation on hover */
.employee-card:hover > div:first-child {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

