@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* 

font-family: "Oswald", sans-serif;
font-family: "Poppins", sans-serif;

 */

body,
html {
  overflow-x: hidden;
}

/* body,html{
    width: 100%;
} */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  scroll-behavior: smooth;
  --bodyFont: "Poppins", sans-serif;
  --btnFont: "Oswald", sans-serif;
  --themeColor: #1779b2;
  --themeColor2: #254dae;
  --themeColor3: #0454ba;
  --grayTxt: #9b9b9b;
  --white: #ffffff;
  --black: #000;
  --fttrBg: #07232e;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyFont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--grayTxt);
  font-size: 15px;
  line-height: 1.8;
  background-color: #fff;
}

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: var(--black);
  font-family: var(--btnFont);
  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: 700;
  line-height: 1;
  font-size: 126px;
  letter-spacing: 0.04em;
}

h2,
.h2-title {
  font-weight: 700;
  line-height: 1.3;
  font-size: 53px;
  text-transform: uppercase;
}

h3,
.h3-title {
  font-weight: 700;
  font-size: 45px;
  line-height: 1;
}

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

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

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-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: red;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  color: var(--black);
  border: none;
  height: 62px;
  padding: 0 200px 0 36px;
  outline: none !important;
  background-color: var(--white);
  width: 100%;
  letter-spacing: 0.04em;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  width: 100%;
  color: #000;
  height: 158px;
  outline: none !important;
}

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: var(--themeColor);
  color: var(--white);
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  height: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

::placeholder {
  color: #8f8f8f;
}

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

/* 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;
  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);
  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);
  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;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-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);
  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;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  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);
  -moz-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;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

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

/* navbar*/

.main-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 37px 0;
  z-index: 999;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 148px;
  display: inline-block;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav {
  position: relative;
  z-index: 1;
}

.navbar-nav::before,
.othr-nav-wrappr ul::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.othr-nav-wrappr ul::before {
  width: 98%;
}

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

.navbar-nav>li {
  margin: 0 25px;
  padding: 12px 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(--white);
  line-height: 1.2;
  position: relative;
  font-weight: normal;
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.navbar-nav>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--white);
  /* opacity: 0; */
  position: absolute;
  bottom: -17px;
  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(--white);
}

.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: 110%;
}

/* navbar submenu*/

.sub-menu {
  position: absolute;
  top: 100%;
  left: -4px;
  z-index: 1000;
  display: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  width: 190px;
  padding: 0;
  border:1px solid gray;
  overflow: visible;
}

.sub-menu::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #004bbd 0%, #21dae8 100%);
  top: 0;
  left: 0;
  filter: blur(15px);
  z-index: -2;
}

.sub-menu>li>a {
  color: var(--white);
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 15px;
  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;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

.main-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 37px 0;
  z-index: 999;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 148px;
  display: inline-block;
}

.navbar-brand img {
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.bnnr-sec {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.video_wrapppr {
  width: 100%;
  height: 100%;
}

.video_wrapppr video {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bnnr-innr-content {
  position: absolute;
  max-width: 510px;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 40px 0 160px;
}

.bnnr-innr-content form {
  position: relative;
  width: 100%;
}

/* AD 10/05/2024 */
.coming_soon_form .gform_wrapper.gravity-theme input[type="text"],
.coming_soon_form .gform_wrapper.gravity-theme input[type="tel"],
.coming_soon_form .gform_wrapper.gravity-theme input[type="email"],
.coming_soon_form .gform_wrapper.gravity-theme input[type="password"],
.coming_soon_form .gform_wrapper.gravity-theme input[type="number"],
.coming_soon_form .gform_wrapper.gravity-theme select {
  padding: 0 200px 0 36px;
}

.coming_soon_form .gform_wrapper.gravity-theme input[type="submit"] {
  height: 62px;
  margin: 0;
}

.coming_soon_form .gform_wrapper.gravity-theme .gform_validation_errors {
  background: #ffcaca;
  border: 0;
  font-size: 14px;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 50px;
}

.coming_soon_form .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
  color: #fc2929;
  font-weight: 400;
  font-size: 14px;
  max-width: 470px;
  line-height: 1.3;
}

.coming_soon_form .gform_wrapper.gravity-theme .gfield_validation_message,
.coming_soon_form .gform_wrapper.gravity-theme .validation_message {
  background: #ffcaca;
  border: 0;
  font-size: 14px;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  color: #fc2929;
}

.coming_soon_form .gform_confirmation_message {
  background-color: #0a0a0a;
  padding: 35px 30px;
  font-weight: 500;
  color: #5ad5e8;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 0px 5px rgb(8 8 8 / 41%), 0 0px 35px rgb(36 36 36 / 38%);
  font-size: 18px;
}

.coming_soon_form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  min-width: 195px;
  text-align: center;
}

/* AD 10/05/2024 END */

/* NEW CSS ADDED start  */

.main-head.main {
  padding: 23px 0;
}

.navbar-brand-outtr {
  max-width: 395px;
  width: 100%;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar-brand-innr {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding-bottom: 7px;
  margin-left: -1px;
  margin-right: -1px;
}

.nav-logo-shpe {
  display: block;
  flex: 0 0 auto;
}

.nav-logo-shpe img {
  height: calc(100% + 1px);
  object-fit: cover;
  object-position: bottom right;
}

.nav-logo-shpe.secnd img {
  object-position: bottom left;
}

.navbar-brand-outtr::before {
  position: absolute;
  content: "";
  background: url(images/logo-before.svg) center no-repeat;
  background-size: 100%;
  width: 108px;
  height: 6px;
  top: 16px;
  left: 50%;
  transform: translateX(-140%);
  pointer-events: none;
}

.navbar-brand-outtr::after {
  position: absolute;
  content: "";
  background: url(images/logo-after.svg) center no-repeat;
  background-size: 100%;
  width: 108px;
  height: 6px;
  top: 16px;
  left: 50%;
  transform: translateX(42%);
  pointer-events: none;
}

.navbar-brand-outtr .navbar-brand {
  max-width: 90px;
  width: 100%;
  margin-top: -10px;
}

.navbar-nav .mobile-only {
  display: none;
}

.navbar-nav>li:nth-last-child(2) {
  margin-right: 0;
}

.othr-nav-wrappr ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.othr-nav-wrappr ul li .nav-link {
  color: var(--white);
  line-height: 1.2;
  position: relative;
  font-weight: normal;
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 30px;
}

.othr-nav-wrappr ul li .nav-link:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--white);
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.othr-nav-wrappr ul li.current-menu-item>.nav-link,
.othr-nav-wrappr ul li>.nav-link:hover {
  color: var(--white);
}

.othr-nav-wrappr ul li.current-menu-item>.nav-link:after,
.othr-nav-wrappr ul li>.nav-link:hover:after {
  width: 110%;
}

.nav_user_btn {
  width: 38px;
  height: 38px;
  background-color: var(--white);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.nav_user_btn>span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  transition: 0.5s all;
}

.nav_user_btn>span img {
  transition: 0.5s all;
}

.nav_user_btn:hover>span {
  border-color: var(--themeColor3);
  background-color: var(--themeColor3);
}

.nav_user_btn:hover>span img {
  filter: brightness(0) invert(1);
}

.nav_cart_btn {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 101px;
  background-color: var(--white);
  border-radius: 50px;
  padding: 3px;
  font-family: var(--btnFont);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-left: -9px;
}

.nav_cart_btn>span {
  flex: 1;
  text-align: center;
  display: inline-block;
  padding: 0 5px;
}

.nav_cart_btn i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--themeColor3);
  border-radius: 50%;
  padding: 5px;
  flex: 0 0 auto;
  transition: 0.5s all;
}

.nav_cart_btn:hover {
  color: var(--themeColor3);
}

.nav_cart_btn:hover i {
  transform: scale(1.05);
  background-color: #49d3e5;
}

.new-bnnr-sec {
  padding: 23px 24px 0;
  position: relative;
}

.new-bnnr-sec figure {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.new-bnnr-sec figure::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg,
      #000000 -22.07%,
      rgba(0, 0, 0, 0.11) 26.66%);
}

.new-bnnr-sec figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 730px;
}

.new-bnnr-content-main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
}

.new-bnnr-content {
  width: 100%;
  height: 100%;
  padding: 135px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.new-bnnr-content h1 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.new-bnnr-content h1>.smll-txt {
  font-size: 82px;
  display: block;
  font-weight: 400;
}

.new-bnnr-content h1>.big-txt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-bnnr-content .scroll_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 26px;
  width: 180px;
  height: 105px;
  border-radius: 50px;
  font-family: var(--btnFont);
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--white);
  border: 5px solid var(--white);
  position: relative;
  margin: 0 10px -8px;
}

.new-bnnr-content .scroll_btn>span {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: 100%;
}

.new-bnnr-content .scroll_btn>span>span:first-child {
  width: 100%;
  text-align: left;
  transition: 0.5s all;
}

.new-bnnr-content .scroll_btn>span>span:last-child {
  margin-bottom: auto;
  text-align: right;
  transition: 0.5s all;
}

.new-bnnr-content .scroll_btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45.87deg);
  transition: 0.5s all;
  height: 80px;
}

.new-bnnr-content .scroll_btn i img {
  height: 100%;
  object-fit: contain;
}

.new-bnnr-content .scroll_btn:hover i {
  transform: translate(-30%, -50%) rotate(0deg);
  height: 65px;
}

.new-bnnr-content .scroll_btn:hover i img {
  animation: jump 1.5s infinite linear;
  transition: 0.5s all;
}

.new-bnnr-content .scroll_btn:hover>span>span:first-child {
  transform: translateY(-20px);
}

.new-bnnr-content .scroll_btn:hover>span>span:last-child {
  transform: translateY(18px);
}

@keyframes jump {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.product-sec {
  padding: 70px 0;
  overflow: hidden;
}

.prduct-head-outtr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
}

.cmn-slider-arrw ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cmn-slider-arrw ul li {
  padding: 7px 18px;
}

.cmn-slider-arrw ul li:first-child {
  padding-left: 0;
  border-right: 1px solid #d6d6d6;
}

.cmn-slider-arrw ul li:last-child {
  padding-right: 0;
}

.cmn-arrw-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--black);
}

.cmn-arrw-btn i {
  display: inline-block;
  line-height: 0;
  width: 30px;
  margin-left: 18px;
  position: relative;
  transition: 0.5s all;
}

.cmn-arrw-btn i::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border: 1px solid var(--black);
  border-radius: 50%;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s all;
}

.cmn-arrw-btn:hover {
  color: var(--themeColor);
}

.cmn-arrw-btn:hover i::before {
  transform: translateY(-50%) scale(1.1);
}

.cmn-arrw-btn i img {
  transition: 0.5s all;
}

.cmn-arrw-btn:hover i img {
  animation: leftRightMove 1s infinite linear;
}

@keyframes leftRightMove {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-5px);
  }

  100% {
    transform: translateX(0px);
  }
}

.prduct-prev {
  text-align: right;
}

.cmn-arrw-btn.prduct-next i {
  margin-right: 18px;
  margin-left: 0;
}

.cmn-arrw-btn.prduct-next i::before {
  left: auto;
  right: -10px;
}

.prduct-slider-outtr,
.related-product-outer-wpr {
  margin-right: calc(((100vw - 1140px) / 2) * -1);
}

.prduct-slider .slick-list {
  margin: 0 -15px;
  padding-left: 0 !important;
}

.prduct-slide {
  padding: 0 15px;
}

.prduct-wrappr {
  width: 100%;
}

.prduct-wrappr figure {
  width: 100%;
  height: 553px;
  margin-bottom: 25px;
}

.prduct-wrappr figure a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.prduct-wrappr figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}

.prduct-wrappr figure a:hover img {
  transform: scale(1.1);
}

.prduct-info h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prduct-info h3 a {
  color: var(--black);
}

.prduct-info h3 a:hover {
  color: var(--themeColor3);
  text-underline-offset: 5px;
  text-decoration: underline !important;
}

.prduct-info p {
  margin-bottom: 10px;
}

.prduct-info .prduct-price {
  font-family: var(--btnFont);
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--black);
}

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

.welcome-rw {
  --bs-gutter-x: 43px;
  align-items: center;
}

.welcome-img-wrappr {
  margin-left: calc(((100vw - 1140px) / 2) * -1);
}

.welcome-img-wrappr img {
  width: 100%;
}

.welcome-rw .welcome-img-col {
  width: 53%;
}

.welcome-rw .welcome-txt-col {
  width: 47%;
}

.welcme-txt-wrapr .sec-head h2 {
  letter-spacing: 0.02em;
}

.welcme-txt-wrapr .sec-head p {
  margin-bottom: 32px;
}

.cmn-btn {
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--white);
  padding: 22px;
  min-width: 240px;
  text-align: center;
  background-color: var(--black);
  border-radius: 50px;
  position: relative;
}

.cmn-btn::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 75%;
  background: #070707;
  filter: blur(17px);
  border-radius: 13px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.3s all;
}

.cmn-btn:hover {
  color: var(--white);
  background-color: var(--themeColor3);
}

.cmn-btn:hover::after {
  width: 90%;
  height: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-outtr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 68px;
}

.feedback-slider-outtr {
  max-width: 900px;
  margin: 0 auto;
}

.feedback-slide {
  text-align: center;
}

.feedback-comment p {
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 59px;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 25px;
}

.feedback-slide .feed-user {
  letter-spacing: 0.04em;
}

.testimonial-sec {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.large-txt {
  position: absolute;
  font-family: var(--btnFont);
  font-weight: 700;
  font-size: 15.625vw;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f5f5f5 14.19%, #ffffff 105.68%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  white-space: nowrap;
}

.continue-slider-sec {
  background-color: #6d8b96;
  position: relative;
}

.continue-slider-sec::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-top: 1px solid #79acbf;
  border-bottom: 1px solid #79acbf;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  z-index: -1;
}

.continue-slide {
  padding: 7px 18px;
}

.continue-slide-wrppr {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  pointer-events: none;
}

.continue-slide-wrppr>span {
  margin-right: 10px;
  display: inline-block;
  line-height: 0;
}

.continue-slide-wrppr>p {
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.37em;
  color: var(--white);
}

.feature-prduct-sec .sec-head {
  margin-bottom: 54px;
}

.feature-prduct-rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 33px;
}

.footer {
  background-color: var(--fttrBg);
}

.fttr-nav {
  padding-top: 43px;
  padding-bottom: 50px;
}

.fttr-nav ul {
  padding: 0 0 28px;
  /* max-width: 968px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  list-style: none;
  border-bottom: 1px solid #214351;
}

.fttr-nav ul li {
  padding: 8px 50px;
  border-right: 1px solid #214351;
}

.fttr-nav ul li:first-child {
  padding-left: 0;
}

.fttr-nav ul li:last-child {
  padding-right: 0;
  border-right: none;
}

.fttr-nav ul li a {
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.fttr-nav ul li a:hover,
.fttr-nav ul li.active a {
  color: #3fd1e3;
}

.fttr-bttm {
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #214351;
}

.fttr-bttm2 {
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
}

.fttr-logo-wrap {
  width: 12%;
  flex: 0 0 auto;
  padding-right: 25px;
}

.fttr-logo-wrap a {
  display: block;
  width: 100%;
}

.fttr-logo-wrap a img {
  width: 100%;
}

.fttr-social-list {
  padding: 0 35px 0 25px;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  flex: 0 0 auto;
}

.fttr-social-list li {
  padding: 0 8px;
}

.fttr-social-list li:first-child {
  padding-left: 0;
}

.fttr-social-list li:last-child {
  padding-right: 0;
}

.fttr-social-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #1d3d4a;
  border-radius: 12px;
}

.fttr-social-list li a:hover {
  background-color: var(--themeColor3);
  border-color: var(--themeColor3);
}

.fttr-frm-main {
  flex: 0 0 auto;
  padding-left: 35px;
  width: 31%;
}

.fttr-frm-wrppr {
  width: 100%;
}

.fttr-frm-wrppr form {
  position: relative;
}

.fttr-frm-wrppr form input[type="text"],
.fttr-frm-wrppr form input[type="email"] {
  width: 100%;
  border: 1px solid #264f5f;
  border-radius: 50px;
  background-color: transparent;
  letter-spacing: 0.04em;
  color: var(--white);
  padding-left: 22px;
  padding-right: 67px;
  height: 62px;
  transition: 0.5s all;
}

.fttr-frm-wrppr form input[type="text"]::placeholder,
.fttr-frm-wrppr form input[type="email"]::placeholder {
  color: var(--grayTxt);
}

.fttr-frm-wrppr form input[type="text"]:focus,
.fttr-frm-wrppr form input[type="email"]:focus {
  border-color: var(--white);
}

.fttr-frm-wrppr form input[type="submit"] {
  width: 52px;
  height: 52px;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border-radius: 50%;
  background: url(images/submit-arrw.svg) center no-repeat var(--themeColor);
  background-size: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.fttr-frm-wrppr form input[type="submit"]:hover {
  background-color: #3fd1e3;
}

.fttr-bttm .copy-txt {
  flex: 1;
  padding-left: 30px;
  text-align: right;
  font-size: 17px;
  letter-spacing: 0.015em;
  color: var(--white);
}

.fttr-bttm .copy-txt a {
  color: var(--white);
}

.fttr-bttm .copy-txt a:hover {
  color: var(--themeColor);
}

.new-bnnr-sec.innr-bnnr figure::before {
  background: linear-gradient(180deg,
      #000000 -22.07%,
      rgba(0, 0, 0, 0.11) 68.29%);
}

.new-bnnr-sec.innr-bnnr figure img {
  /* min-height: 392px; */
  min-height: 280px;
  max-height: 300px;
}

.new-bnnr-sec.innr-bnnr .new-bnnr-content {
  padding: 100px 0;
}

.new-bnnr-sec.innr-bnnr .new-bnnr-content h1 {
  font-family: var(--bodyFont);
  font-size: 70px;
  text-align: center;
  color: var(--white);
}

.abut-rw {
  align-items: center;
  --bs-gutter-x: 40px;
}

.abut-img-wrappr {
  margin-right: calc(((100vw - 1140px) / 2) * -1);
}

.abut-img-wrappr img {
  width: 100%;
}

.abut-rw .abut-img-col {
  width: 53%;
}

.abut-rw .abut-txt-col {
  width: 47%;
}

.abut-feed-sec .large-txt {
  top: 100px;
}

.extra-gap {
  padding-top: 145px;
}

.prduct-listing-sec .sec-head {
  margin-bottom: 38px;
}

.prduct-listing-sec {
  position: relative;
}

.extra-gap .large-txt {
  top: 20px;
}

.pagination-wrppr {
  padding-top: 85px;
}

.pagination-wrppr ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.pagination-wrppr ul li {
  padding: 0 6px;
}

.pagination-wrppr ul li:first-child {
  padding-left: 0;
  padding-right: 48px;
}

.pagination-wrppr ul li:last-child {
  padding-right: 0;
  padding-left: 48px;
}

.pagination-wrppr .pagi-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  font-size: 14px;
  line-height: 1;
  color: #9f9f9f;
  background-color: #f4f6f9;
  border-radius: 50%;
}

.pagination-wrppr .pagi-link:hover,
.pagination-wrppr .pagi-link.current {
  background-color: #004bbd;
  color: var(--white);
}

.pagination-wrppr .pagi-link.prev,
.pagination-wrppr .pagi-link.next {
  background-color: transparent;
  width: auto;
  height: inherit;
  border-radius: 0;
}

.pagination-wrppr .pagi-link.prev:hover,
.pagination-wrppr .pagi-link.next:hover {
  transform: scale(1.5);
}

.blog-sec {
  position: relative;
}

.blog-sec .sec-head {
  margin-bottom: 52px;
}

.blog-rw {
  --bs-gutter-x: 30px;
}

.blog-innr-rw {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 33px;
}

.blog-wrappr figure {
  width: 100%;
  height: 286px;
  margin-bottom: 0;
}

.blog-wrappr figure a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-wrappr figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  padding-top: 24px;
}

.blog-info h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.blog-info h3 a {
  color: var(--black);
}

.blog-info h3 a:hover {
  color: var(--themeColor3);
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.blog-info p {
  margin-bottom: 30px;
}

.blog-btn {
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: #004bbd;
  display: inline-flex;
  align-items: center;
}

.blog-btn i {
  margin-left: 15px;
  display: inline-block;
  line-height: 0;
  width: 14px;
  transition: 0.5s all;
}

.blog-btn i img {
  width: 100%;
}

.blog-btn:hover {
  color: var(--black);
}

.blog-btn:hover i {
  transform: rotate(45deg);
}

.blog-search-main {
  margin-bottom: 60px;
}

.blog-search-main h3,
.cetagories-main h3 {
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 18px;
}

.blog-search-wrap form {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.blg-field-wrp {
  flex: 1;
}

.blog-search-wrap form input[type="text"],
.blog-search-wrap form input[type="search"] {
  height: 54px;
  padding: 10px 20px 20px 0;
  border: none;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.5s all;
}

.blog-search-wrap form input[type="text"]::placeholder,
.blog-search-wrap form input[type="search"]::placeholder {
  color: var(--black);
}

.blog-search-wrap form input[type="text"]:focus,
.blog-search-wrap form input[type="search"]:focus {
  border-color: var(--themeColor3);
}

.blog-search-wrap form input[type="submit"] {
  width: 54px;
  height: 54px;
  background-color: #2389f0;
  background-image: url(images/search-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.blog-search-wrap form input[type="submit"]:hover {
  background-color: var(--black);
}

.cetagories-main h3 {
  margin-bottom: 35px;
}

.cetagories-main ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.cetagories-main li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.cetagories-main li a {
  width: 100%;
  display: block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--black);
  padding: 10px 0;
}

.cetagories-main li a:hover {
  background-color: var(--black);
  padding: 10px 15px;
  color: var(--white);
}

.contact-sec {
  padding-top: 283px;
}

.contact-main-wrap .sec-head {
  max-width: 325px;
  margin-bottom: 21px;
  width: 100%;
}

.contact-frm-wrp {
  padding: 34px 33px 40px;
  background-color: #f9fbff;
  border-radius: 20px;
}

.frm-field input[type="text"],
.frm-field input[type="email"],
.frm-field input[type="password"],
.frm-field input[type="number"],
.frm-field input[type="tel"],
.frm-field select {
  font-size: 16px;
  line-height: 1.3;
  color: #757575;
  color: var(--black);
  padding: 0 0 16px;
  border: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
  border-radius: 0;
  background-color: transparent;
  height: inherit;
}

.frm-field input[type="text"]::placeholder,
.frm-field input[type="email"]::placeholder,
.frm-field input[type="password"]::placeholder,
.frm-field input[type="number"]::placeholder,
.frm-field input[type="tel"]::placeholder,
.frm-field select::placeholder,
.frm-field textarea::placeholder {
  color: #757575;
}

.frm-field textarea {
  height: 97px;
  padding: 0 15px 15px 0;
  border: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
  resize: none;
}

.frm-field {
  margin-bottom: 30px;
}

.contact-frm-wrp {
  /* padding-top: 20px; */
  position: relative;
  z-index: 1;
}

.contact-frm-wrp .cmn-btn {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #004bbd;
  min-width: 201px;
  transition: 0.5s all;
}

.contact-frm-wrp .cmn-btn:hover {
  background-color: var(--black);
}

.contact-img-wrap {
  margin-right: -72px;
  height: 100%;
}

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

.contact-rw {
  --bs-gutter-x: 30px;
}

.contact-sec {
  position: relative;
}

.contact-sec .large-txt {
  top: 20px;
}

.scroll-btn-mobile {
  display: none;
}

/* SS Css Begin 22-05-2024 */

.btn-sdw {
  min-width: 201px;
  position: relative;
  display: inline-block;
}

.btn-sdw::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -0%);
  width: 100%;
  height: 100%;
  background: url(./images/btn-sdw.png) no-repeat bottom center;
  background-size: cover;
  z-index: -1;
}

.frm-field {
  position: relative;
}

.current-menu-item .nav_user_btn>span {
  background: var(--themeColor3);
  border-color: var(--themeColor3);
}

.current-menu-item .nav_user_btn>span img {
  filter: brightness(0) invert(1);
}

.login-frm {
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 23px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  width: 16px;
}

.input-icon.eye {
  left: unset;
  right: 23px;
  cursor: pointer;
}

.sub-menu {
  transform: translateY(20px);
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

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

.navbar-nav li.menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.navbar-nav li.menu-item-has-children:hover>a img {
  transform: rotate(180deg);
}

.sub-menu ul {
  padding: 10px 0;
}

.sub-menu ul li a {
  display: block;
  color: var(--white);
  padding: 5px 10px;
  font-family: var(--btnFont);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
}

.sub-menu ul li a:hover {
  color: var(--themeColor3);
  background: var(--white);
}

.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;
  filter: brightness(0) invert(1);
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

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

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

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

.new-bnnr-sec.innr-bnnr.login-pg {
  height: 100px;
}

.new-bnnr-sec.innr-bnnr.login-pg figure img {
  min-height: 73px;
}

.contact-infon {
  display: flex;
  align-items: center;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-wrap: wrap;
}

/* .contact-infon:not(:last-child) {
  margin: 0 40px 0 0;
} */

.contact-infon {
  margin-bottom: 20px !important;
}

.dtl-icon {
  border: 1px solid #1d3d4a;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

/* .dtl-icon:hover{
    background: var(--themeColor3);
} */
/* .dtl-icon:hover i{
    color: var(--white);
} */
.dtl-icon i {
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  color: var(--themeColor3);
  font-size: 21px;
}

.cnt-dtl {
  padding-left: 10px;
  color: var(--black);
  font-size: 21px;
  max-width: calc(100% - 54px);
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.cnt-dtl:hover {
  color: var(--themeColor3);
}

.contact-dtls {
  padding-top: 0;
}

.contact-dtls .contact-rw {
  align-items: center;
}

.contact-dtls .contact-frm-col {
  width: 100%;
  margin-bottom: 40px;
}

.contact-dtls .contact-img-wrap iframe {
  width: 100%;
  height: 300px;
}

.contact-dtls .contact-img-wrap {
  margin: 0;
}

/* End Of SS Css 22-05-2024 */

/* Support 28-05-2024 start */
#productfetch {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
  max-height: 400px;
  overflow: auto;
  min-height: 50px;
}

#productfetch div {
  display: flex;
  padding: 10px;
}

#productfetch div a span {
  color: var(--grayTxt);
  font-size: 14px;
}

#productfetch div:not(:last-child) {
  border-bottom: 1px solid var(--grayTxt);
}

#productfetch p {
  padding: 20px 10px;
}

.pagination-wrppr .pagination-wrppr-inner {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.pagination-wrppr .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  font-size: 14px;
  line-height: 1;
  color: #9f9f9f;
  background-color: #f4f6f9;
  border-radius: 50%;
  margin: 0 6px;
}

.pagination-wrppr .page-numbers.current {
  background-color: #004bbd;
  color: var(--white);
}

.pagination-wrppr .next.page-numbers,
.pagination-wrppr .prev.page-numbers {
  background-color: transparent;
  width: auto;
  height: inherit;
  border-radius: 0;
}

.pagination-wrppr .next.page-numbers {
  margin-left: 48px;
}

.pagination-wrppr .prev.page-numbers {
  margin-right: 48px;
}

.blog-details-hero.cmn-gap {
  padding-bottom: 0;
}

.blog-details-image-wpr {
  margin-bottom: 40px;
}

.blog-details-image-wpr img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
}

.blog-date-out {
  display: flex;
  padding-inline-start: 0;
  list-style: none;
  flex-wrap: wrap;
}

.blog-date-out li:first-child {
  margin-right: 20px;
}

.slider-blog .slick-list {
  margin: 0 -12px;
}

.slider-blog .blog-col {
  padding: 0 12px;
}

.gap-blog {
  position: relative;
  margin-top: 40px;
}

.gap-blog .slick-arrow {
  position: absolute;
  top: -80px;
  right: 0;
  width: 100px;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  background-image: url(images/next-page.svg);
  font-size: 0;
  border: none;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gap-blog .slick-arrow:hover {
  /* background-color: var(--themeColor); */
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.15);
}

.gap-blog .slick-prev.slick-arrow {
  right: 55px;
  background-image: url(images/prev-page.svg);
}

.page-template-default a {
  color: var(--black);
}

.page-template-default .entry-content a:hover {
  color: var(--themeColor3);
  text-underline-offset: 5px;
  text-decoration: underline !important;
}

.contact-frm-wrp .gform_confirmation_message_2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--themeColor);
  line-height: 1.5;
}

.contact-frm-wrp .gform_wrapper input[type="text"],
.contact-frm-wrp .gform_wrapper input[type="email"],
.contact-frm-wrp .gform_wrapper input[type="password"],
.contact-frm-wrp .gform_wrapper input[type="number"],
.contact-frm-wrp .gform_wrapper input[type="tel"],
.contact-frm-wrp .gform_wrapper select {
  font-size: 16px;
  line-height: 1.3;
  color: #757575;
  color: var(--black);
  padding: 0 0 16px !important;
  border: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
  border-radius: 0;
  background-color: transparent;
  height: inherit !important;
}

.contact-frm-wrp .gform_wrapper.gravity-theme .gfield textarea.small {
  height: 97px !important;
  padding: 0 15px 15px 0 !important;
  border: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
  resize: none;
}

/* .contact-frm-wrp .gform_wrapper{
  padding-top: 30px;
} */

.contact-frm-wrp .gform_wrapper .frm-field {
  margin-bottom: 15px;
}

.contact-frm-wrp .gform_wrapper input[type="submit"] {
  background: var(--themeColor);
  color: var(--white);
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 22px !important;
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #004bbd;
  min-width: 201px;
  line-height: 1 !important;
}

.contact-frm-wrp .gform_wrapper input[type="submit"]:hover {
  background-color: var(--black);
}

.contact-frm-wrp .gform_wrapper .gform_footer.before {
  position: relative;
  display: inline-block !important;
}

.contact-frm-wrp .gform_wrapper .gform_footer.before::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translate(-50%, -0%);
  width: 100%;
  height: 100%;
  background: url(./images/btn-sdw.png) no-repeat bottom center;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}

.contact-frm-wrp .gform_wrapper.gravity-theme .gfield_validation_message,
.contact-frm-wrp .gform_wrapper.gravity-theme .validation_message {
  background: none;
  border: none;
  font-size: 14.992px;
  margin-block-start: 0;
  padding: 0;
}

.contact-frm-wrp #gform_2_validation_container {
  display: none;
}

.contact-frm-wrp .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: none;
  border-bottom: 1px solid #c02b0a;
}

.back-to-home-btn-wpr {
  padding: 20px 0;
}

.new-bnnr-content-error {
  padding-top: 150px;
}

.new-bnnr-content-error h1,
.new-bnnr-content-error h2 {
  color: #fff;
}

.new-bnnr-content-error .error-btn {
  max-width: 260px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

/* Support 28-05-2024 end */

/* support 29-05-2024 start */
.new-bnnr-sec.innr-bnnr.baner-404-error {
  min-height: 75vh;
  margin-bottom: 25px;
}

.new-bnnr-sec.innr-bnnr.baner-404-error figure {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 23px 24px 0;
}

.new-bnnr-sec.innr-bnnr.baner-404-error figure::before {
  width: calc(100% - 50px);
  height: calc(100% - 25px);
  top: 25px;
  left: 25px;
}

.span-search {
  width: 54px;
  height: 54px;
  background-color: #2389f0;
  /* background-image: url(https://dev.wordpress-developer.us/u-supply/wp-content/themes/u-supply/images/search-icon.svg); */
  background-image: url(images/search-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-date-out li img {
  width: 16px;
  margin-right: 8px;
}

.blog-date-out li {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.sub-menu {
  padding: 12px 0;
}

.sub-menu>li>a {
  display: block;
  color: var(--white);
  padding: 5px 10px;
  font-family: var(--btnFont);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.8;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  color: var(--themeColor3);
  background: var(--white);
}

/* Product cart page */
.woocommerce-cart .abut-txt-wrappr {
  padding: 30px 25px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-components-quantity-selector {
  width: 110px;
  align-items: center;
  border-radius: 60px;
  border: 1px solid #e9e9e9;
  padding: 1px 3px;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-components-quantity-selector::after {
  display: none;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-components-quantity-selector__button {
  background-color: #2e2e2e !important;
  border-radius: 50% !important;
  width: 30px;
  height: 30px;
  opacity: 1 !important;
  color: #fff !important;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-components-quantity-selector__button:hover {
  background-color: var(--themeColor3) !important;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart-item__remove-link {
  /* background-color: #2E2E2E !important; */
  color: #2e2e2e !important;
  /* padding: 5px 12px !important; */
  text-decoration: none !important;
  /* border-radius: 60px !important; */
  transition: 0.3s all;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart-item__remove-link:hover {
  color: var(--themeColor3) !important;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.woocommerce-checkout .abut-txt-wrappr .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: #000;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-totals-footer-item-tax-value,
.woocommerce-checkout .abut-txt-wrappr .wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-totals-footer-item-tax-value {
  color: #000;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart__submit-container {
  margin-top: 20px;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart__submit-container .components-button,
.woocommerce-checkout .abut-txt-wrappr .wc-block-components-checkout-place-order-button {
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--white);
  padding: 22px;
  min-width: 200px;
  text-align: center;
  background-color: var(--black);
  border-radius: 50px;
  position: relative;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart__submit-container .components-button:hover,
.woocommerce-checkout .abut-txt-wrappr .wc-block-components-checkout-place-order-button:hover {
  color: var(--white);
  background-color: var(--themeColor3);
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart__submit-container .components-button:hover::after,
.woocommerce-checkout .abut-txt-wrappr .wc-block-components-checkout-place-order-button:hover::after {
  width: 90% !important;
  height: 70% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.woocommerce-cart .abut-txt-wrappr .wc-block-cart__submit-container .components-button::after,
.woocommerce-checkout .abut-txt-wrappr .wc-block-components-checkout-place-order-button::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 75%;
  background: #070707;
  filter: blur(17px);
  border-radius: 13px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.3s all !important;
}

.woocommerce-cart .abut-txt-wrappr .is-large.wc-block-cart {
  margin-bottom: 0;
}

/* support 29-05-2024 start */
.new-bnnr-content-error h1 {
  margin-bottom: 15px;
}

.new-bnnr-content-error h2 {
  font-size: 20px;
}

/* product details page  */
.single-product .product {
  padding-top: 64px;
}

.single-product .custom-fluid-container {
  display: flex;
  padding: 0 70px;
  margin-bottom: 70px;
  align-items: center;
}

.single-product .custom-product-gallery {
  display: flex;
  flex-direction: row-reverse;
  width: 50%;
  align-items: center;
}

.single-product .custom-product-gallery .slider-nav {
  width: 135px;
  position: relative;
  margin-right: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-product .custom-product-gallery .slider-for {
  width: calc(100% - 157px);
}

.single-product .custom-product-gallery .slider-nav .slider-cart {
  width: 135px;
}

.single-product .custom-product-gallery .slider-nav .slider-cart img {
  width: 100%;
  height: 135px;
  object-fit: cover;
}

.single-product .custom-product-gallery .slider-for .slider-cart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 550px;
  min-height: 550px;
}

.single-product .custom-product-gallery .slider-nav .slick-list {
  margin: -14px 0;
}

.single-product .custom-product-gallery .slider-nav .slick-slide {
  padding: 14px 0;
}

.single-product .custom-product-gallery .slider-nav .slick-arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  flex-shrink: 0;
}

.single-product .custom-product-gallery .slider-nav .slick-arrow:hover {
  background-color: #000;
}

.single-product .custom-product-gallery .slider-nav .slick-next.slick-arrow:hover {
  background-image: url(images/slider-for-next-arr-white.svg);
}

.single-product .custom-product-gallery .slider-nav .slick-prev.slick-arrow:hover {
  background-image: url(images/slider-for-prev-arr-white.svg);
}

.single-product .custom-product-gallery .slider-nav .slick-next.slick-arrow {
  margin-top: 20px;
  background-image: url(images/slider-for-next-arr.svg);
}

.single-product .custom-product-gallery .slider-nav .slick-prev.slick-arrow {
  margin-bottom: 20px;
  background-image: url(images/slider-for-prev-arr.svg);
}

.single-product .summary {
  padding-left: 100px;
  margin-bottom: 0 !important;
}

.single-product .summary .product_title {
  font-size: 40px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-product .summary .price {
  margin: 25px 0 47px 0;
}

.single-product .summary .woocommerce-Price-amount {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.04em;
  color: var(--black);
  font-family: var(--btnFont);
}

.single-product .summary .cart h3 {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.single-product .summary .single_add_to_cart_button {
  float: none !important;
  display: block !important;
  margin-top: 57px !important;
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--white);
  padding: 22px !important;
  max-width: 487px;
  width: 100% !important;
  text-align: center;
  background-color: var(--themeColor3) !important;
  border-radius: 50px !important;
  position: relative;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

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

.single-product .summary .single_add_to_cart_button::after {
  position: absolute;
  content: "";
  width: 88%;
  height: 70%;
  background: #070707;
  filter: blur(17px);
  border-radius: 13px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  transition: 0.3s all !important;
  opacity: 0.7;
}

.single-product .summary .single_add_to_cart_button:hover::after {
  width: 90% !important;
  height: 65% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.prod-quantity-wrpr {
  display: inline-flex;
  border: 1px solid #e9e9e9;
  padding: 6px 5px;
  border-radius: 50px;
  align-items: center;
  min-width: 165px;
  justify-content: space-between;
}

.prod-quantity-wrpr button {
  background-color: #2e2e2e !important;
  border-radius: 50% !important;
  width: 39px;
  height: 39px;
  opacity: 1 !important;
  color: #fff !important;
  border: none !important;
}

/* .prod-quantity-wrpr button.plus {
  margin-right: 15px;
} */

.prod-quantity-wrpr input {
  border: none;
  text-align: center;
  padding: 0 12px;
  order: 2;
}

.prod-quantity-wrpr input::-webkit-inner-spin-button,
.prod-quantity-wrpr input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.prod-quantity-wrpr input[type="number"] {
  -moz-appearance: textfield;
}

.single-product .wc-tabs-wrapper {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 94px;
}

.single-product .woocommerce-tabs ul.tabs li a {
  font-size: 25px !important;
  font-weight: 500 !important;
  font-family: var(--btnFont) !important;
  text-transform: uppercase !important;
  padding: 6px 12px !important;
}

.single-product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
}

.single-product .woocommerce-Tabs-panel h2 {
  display: none;
}

.single-product .woocommerce-Tabs-panel p strong {
  font-weight: 400;
  color: #181818;
}

.single-product .woocommerce-tabs ul.tabs li {
  background-color: #fff !important;
  border-radius: 0 !important;
  margin: 0 5px !important;
  position: relative;
  border: none !important;
}

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

/* .single-product .woocommerce-tabs ul.tabs li::after {
  content: '' !important;
  background-color: black !important;
  width: 1px !important;
  height: 20px !important;
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none !important;
  box-shadow: none !important;
} */

/* .single-product .woocommerce-tabs ul.tabs li.active::after,
.single-product .woocommerce-tabs ul.tabs li:last-child::after {
  display: none !important;
} */

.single-product .woocommerce-tabs ul.tabs li.active {
  background-color: var(--themeColor3) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
  color: #fff !important;
}

.single-product .woocommerce-tabs ul.tabs li:first-child {
  margin-left: 0 !important;
}

/* support 29-05-2024 end */

/* support 30-05-2024 start */

.single-product .woocommerce-message {
  border-top-color: var(--themeColor3);
  margin: 0 24px;
}

.single-product .woocommerce-message::before {
  color: var(--themeColor3);
}

.single-product .woocommerce-message .button {
  background-color: var(--themeColor3);
  color: #fff;
}

.single-product .woocommerce-message .button:hover {
  background-color: var(--black);
  color: #fff;
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul {
  padding-inline-start: 0;
  list-style: none;
  box-shadow: 0 0 12px 1px rgba(0, 0, 0, 0.1);
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li {
  padding: 8px 0 8px 12px;
  background-color: var(--white);
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li:hover {
  background-color: var(--themeColor3);
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li.is-active {
  background-color: var(--themeColor3);
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li.is-active::before {
  content: "";
  width: 4px;
  position: absolute;
  background-color: var(--themeColor);
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: rgba(23, 121, 178, 0.5);
  left: 0;
  bottom: 0;
  z-index: 1;
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li a {
  color: var(--bodyColor);
  text-decoration: none !important;
  display: block;
}

.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul li:hover a {
  color: #fff;
}

.woocommerce-account .custom-account-section .woocommerce-orders-table .woocommerce-button,
.woocommerce-account .custom-account-section .woocommerce-EditAccountForm .woocommerce-Button,
.woocommerce-account .custom-account-section .woocommerce-info .button {
  background-color: var(--themeColor3);
  color: var(--white);
  text-decoration: none !important;
  text-transform: capitalize;
}

.woocommerce-account .custom-account-section .woocommerce-orders-table .woocommerce-button:hover,
.woocommerce-account .custom-account-section .woocommerce-EditAccountForm .woocommerce-Button:hover,
.woocommerce-account .custom-account-section .woocommerce-info .button:hover {
  background-color: var(--black);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce-account .custom-account-section .woocommerce-Address-title h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-family: var(--bodyFont);
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.woocommerce-account .custom-account-section .woocommerce-Address-title .edit {
  background-color: var(--themeColor3);
  padding: 2px 10px;
  color: #fff;
  font-size: 14px;
  text-decoration: none !important;
  border-radius: 4px;
}

.woocommerce-account .custom-account-section .woocommerce-Address-title .edit:hover {
  background-color: #000;
}

.woocommerce-account .woocommerce form .form-row input.input-text,
.woocommerce-account .woocommerce form .form-row textarea {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: normal;
  border: 1px solid #9b9b9b;
  border-radius: 0;
  height: 40px;
  padding: 8px 12px;
  font-size: 14px;
}

.woocommerce-account .custom-account-section .woocommerce-EditAccountForm .woocommerce-Button {
  margin-top: 20px !important;
}

/* .woocommerce-account .content-area.cmn-gap {
  padding-top: 0;
} */

.woocommerce-account .custom-account-section fieldset legend {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 20px;
  color: #000;
  font-weight: 500;
}

span.hdr-cart-count {
  padding: 0px;
  width: 22px;
  height: 22px;
  background-color: rgb(163 204 228);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: -2px;
  right: -6px;
  color: white;
  line-height: 1;
}

.woocommerce-lost-password .woocommerce-ResetPassword {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgb(68 68 68 / 50%);
  padding: 30px;
}

.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Input {
  max-width: 400px;
}

.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button,
.woocommerce-order-received .woocommerce-form .woocommerce-Button {
  font-family: var(--btnFont);
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--white) !important;
  padding: 22px !important;
  min-width: 240px;
  text-align: center;
  background-color: var(--themeColor3) !important;
  border-radius: 50px !important;
  position: relative !important;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button:hover {
  background-color: var(--black) !important;
}

.woocommerce-lost-password .woocommerce-ResetPassword input[type="text"],
.page-template-login .woocommerce-form .woocommerce-form-row input[type="text"],
.page-template-login .woocommerce-form .woocommerce-form-row input[type="password"],
.custom-signup-form-wrap .woocommerce-form .woocommerce-form-row input[type="text"],
.custom-signup-form-wrap .woocommerce-form .woocommerce-form-row input[type="email"] {
  font-size: 16px;
  line-height: 1.3;
  color: #757575;
  color: var(--black);
  padding: 0 0 16px !important;
  border: none !important;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5) !important;
  border-radius: 0;
  background-color: transparent;
  height: inherit !important;
}

.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button {
  margin-bottom: 0 !important;
}

.page-template-login .form-row button[type="submit"] {
  margin-top: 20px;
}

.custom-signup-form-wrap .form-row button[type="submit"] {
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-template-login .login_footer_wrap {
  display: flex;
  flex-wrap: wrap;
}

.page-template-login .login_footer_wrap p:last-child {
  margin-left: auto;
}

.page-template-login .login_footer_wrap p a {
  color: var(--themeColor);
}

.page-template-login .login_footer_wrap p a:hover {
  color: var(--black);
  text-underline-offset: 5px;
  text-decoration: underline !important;
}

.page-template-login .woocommerce-form-login__rememberme {
  display: flex;
}

.page-template-login .woocommerce-form-login__rememberme .woocommerce-form__input-checkbox {
  margin-right: 8px;
}

.custom-signup-form-wrap .woocommerce-form a {
  color: var(--themeColor);
}

.custom-signup-form-wrap .woocommerce-form a:hover {
  color: var(--black);
  text-underline-offset: 5px;
  text-decoration: underline !important;
}

.woocommerce-order-received .woocommerce form .form-row input.input-text,
.woocommerce-order-received .woocommerce form .form-row textarea {
  border: 1px solid var(--grayTxt);
}

.woocommerce-order-received .woocommerce form .form-row input.input-text,
.woocommerce-order-received .woocommerce form .form-row textarea {
  border: 1px solid var(--grayTxt);
  border-radius: 0;
  height: 50px;
}

.woocommerce-lost-password .woocommerce-form-row .woocommerce-Button,
.woocommerce-order-received .woocommerce-form .woocommerce-button {
  margin-bottom: 20px;
  font-family: var(--btnFont);
  letter-spacing: 0.21em;
  text-transform: uppercase;
  min-width: 240px;
  text-align: center;
  margin-top: 20px;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: var(--white) !important;
  background-color: var(--themeColor3) !important;
  position: relative !important;
  transition: all 0.3s ease-in-out 0s;
  padding: 22px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease-in-out;
}

.woocommerce-lost-password .woocommerce-form-row .woocommerce-Button:hover,
.woocommerce-order-received .woocommerce-form .woocommerce-button:hover {
  background-color: var(--black) !important;
}

.woocommerce-order-received .woocommerce-form .woocommerce-form__label-for-checkbox {
  display: block;
}

.woocommerce-order-received .woocommerce-form .lost_password a {
  color: var(--themeColor);
}

.related-product-slider {
  padding-bottom: 60px;
  justify-content: center;
}

.related-product-slider .slick-list {
  margin: 0 -12px;
}

.related-product-slider .feature-prduct-col {
  padding: 0 12px;
}

.related-product-slider .slick-arrow {
  position: absolute;
  bottom: 0;
  width: 100px;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  background-image: url(images/next-page.svg);
  font-size: 0;
  border: none;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.related-product-slider .slick-prev.slick-arrow {
  left: calc(50% - 50px);
  background-image: url(images/prev-page.svg);
}

.related-product-slider .slick-next.slick-arrow {
  right: calc(50% - 50px);
  background-image: url(images/next-page.svg);
}

.related-product-slider .slick-arrow:hover {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.15);
}

.woocommerce-order-received .woocommerce-order-details__title,
.woocommerce-order-received .woocommerce-column__title {
  font-size: 25px;
}

.woocommerce-order-received .woocommerce-order .woocommerce ul.order_details li {
  margin: 5px;
}

/* support 30-05-2024 end */

/* support start 31-5-2034 */
.contact-frm-wrp select,
.contact-frm-wrp input[type="number"],
.contact-frm-wrp input[type="url"] {
  font-size: 16px;
  line-height: 1.3;
  color: #757575;
  padding: 0 0 16px !important;
  padding-right: 40px !important;
  border: none !important;
  border-bottom: 1px solid rgba(102, 102, 102, 0.5) !important;
  border-radius: 0;
  background-color: transparent;
  height: inherit !important;
  width: 100%;
  -webkit-appearance: none !important;
}

/* .contact-frm-wrp select:not(option) {
  padding-bottom: 16px !important;
  padding-left: 0;
} */
.contact-frm-wrp input[type="number"]::-webkit-outer-spin-button,
.contact-frm-wrp input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.contact-frm-wrp select {
  background-size: 10px;
}

.contact-frm-wrp input::-webkit-input-placeholder {
  color: #757575;
}

.contact-frm-wrp input:-ms-input-placeholder {
  color: #757575;
}

.contact-frm-wrp input::-moz-placeholder {
  color: #757575;
}

.contact-frm-wrp input:-moz-placeholder {
  color: #757575;
}

.contact-frm-wrp input[type="number"]:focus,
.contact-frm-wrp input[type="url"]:focus {
  border: 0;
  outline: 0;
}

.contact-frm-wrp .user_email_address {
  margin-bottom: 6px;
}

.contact-frm-wrp select option {
  padding-left: 20px;
}

/* support start 31-5-2034 */

/* support start 4-6-24 */
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  background-color: #2e2e2e !important;
  border-radius: 50% !important;
  width: 30px;
  height: 30px;
  opacity: 1 !important;
  color: #fff !important;
  border: none !important;
}

.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  border: 1px solid #e9e9e9;
  padding: 2px 5px;
  border-radius: 50px;
  align-items: center;
  min-width: 130px;
  justify-content: space-between;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  margin: 0 4px 0 0;
  width: 3.631em;
  text-align: center;
}

.wc-block-components-quantity-selector:after {
  display: none;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus {
  box-shadow: none !important;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  float: none !important;
  display: block !important;
  /* margin-top: 57px !important; */
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--white);
  padding: 22px !important;
  max-width: 487px;
  width: 100% !important;
  text-align: center;
  background-color: var(--themeColor3) !important;
  border-radius: 50px !important;
  position: relative;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
  background-color: var(--black) !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: var(--themeColor3) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  text-decoration: underline !important;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
  background-color: var(--themeColor3);
  color: var(--white);
  text-decoration: none !important;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover {
  background-color: var(--black);
  color: var(--white);
}

.woocommerce-Address {
  border: 1px solid rgb(128 128 128 / 50%);
  padding: 20px 15px;
  border-radius: 4px;
}

.woocommerce-order-details__title,
.woocommerce-column__title,
.woocommerce-MyAccount-content h3 {
  font-size: 35px;
}

.wc-block-cart-items .wc-block-cart-items__header th,
.is-large.wc-block-cart .wc-block-cart__totals-title {
  color: var(--black) !important;
}

.wc-block-components-formatted-money-amount {
  color: var(--themeColor3);
}

.wc-block-components-product-metadata__description p,
.wc-block-components-totals-item__label {
  color: var(--black);
}

/* support end 4-6-24 */

/* 04.06.24 start */

.woocommerce-payment-methods .woocommerce-MyAccount-content {
  position: relative;
}

.woocommerce-payment-methods .woocommerce-MyAccount-content .woocommerce-info {
  padding-right: 225px;
}

.woocommerce-payment-methods .woocommerce-MyAccount-content>a.button {
  position: absolute;
  top: 13px;
  right: 20px;
  z-index: 1;
}

.custom-signup-form-wrap form input[type="text"],
.custom-signup-form-wrap form input[type="email"],
.custom-signup-form-wrap form input[type="password"],
.custom-signup-form-wrap form input[type="tel"],
.custom-signup-form-wrap form input[type="number"],
.custom-signup-form-wrap form select {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 0 25px !important;
  height: 50px !important;
  background-color: transparent !important;
}

.custom-signup-form-wrap .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.custom-signup-form-wrap .gfield_checkbox>.gchoice {
  padding: 0 15px;
  width: 50%;
  flex: 0 0 auto;
}

.custom-signup-form-wrap .gfield_checkbox>.gchoice label {
  color: var(--black);
}

.custom-signup-form-wrap form .gfield_label {
  color: rgba(0, 0, 0, 0.75);
  font-weight: 600 !important;
}

.custom-signup-form-wrap .gform_footer {
  padding-bottom: 0 !important;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.custom-signup-form-wrap .gform_footer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -0%);
  width: 200px;
  height: 62px;
  background: url(./images/btn-sdw.png) no-repeat bottom center;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}

.custom-signup-form-wrap .gform_footer .gform_button {
  height: 50px;
  background: var(--themeColor);
  color: var(--white);
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  padding: 22px !important;
  cursor: pointer;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #004bbd;
  min-width: 201px;
  line-height: 1 !important;
}

.custom-signup-form-wrap .gform_footer .gform_button:hover {
  background-color: var(--black);
}

.custom-signup-form-wrap .entry-content .gform_wrapper {
  padding: 35px 25px;
  background-color: #f9fbff;
  border-radius: 20px;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2);
}

.custom-signup-form-wrap .gfield_validation_message {
  padding: 15px 0px !important;
  font-size: 14px !important;
}

.custom-signup-form-wrap .gform_confirmation_wrapper {
  padding: 34px 33px 40px;
  background-color: #f9fbff;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--themeColor);
  line-height: 1.5;
  text-align: center;
}

.custom-signup-form-wrap .entry-content .gform_wrapper>.gform_heading {
  display: none !important;
}

.custom-signup-form-wrap .form-primary-heading-section h3 {
  text-align: center;
  margin-bottom: 25px;
}

.custom-signup-form-wrap .form-secondary-heading-section h4 {
  font-size: 24px;
  font-weight: 400;
}

.radio-wrapper-class .gfield_radio {
  display: flex;
  flex-wrap: wrap;
}

.radio-wrapper-class .gfield_radio>* {
  padding: 0 15px;
  flex: 0 0 auto;
}

.radio-wrapper-class .gfield_radio>*:first-child {
  padding-left: 0;
}

.radio-wrapper-class .gfield_radio>*:last-child {
  padding-right: 0;
}

/* 04.06.24 end */

.gform_fileupload_rules {
  display: none !important;
}

/* support 05.06.24 start */
.age-row-wrap {
  display: flex;
  flex-wrap: wrap;
}

.age-col {
  width: 100%;
}

.age-text-cont {
  padding: 25px;
}

.age-text-cont figure img {
  width: 80px;
}

#age-verification-popup .age-verification-content {
  background-color: #f9fbff;
  max-width: 447px;
  /* min-width: 850px; */
  padding: 0;
  overflow: hidden;
}

#age-verification-popup .age-verification-content a {
  color: var(--black);
}

#age-verification-popup .age-verification-content a:hover {
  color: var(--themeColor);
}

#age-verification-popup .age-verification-content h3 {
  font-size: 18px;
  font-family: var(--bodyFont);
  font-weight: 500;
  color: var(--themeColor3);
  margin-bottom: 16px;
}

#age-verification-popup .age-verification-content .age-para {
  margin-bottom: 20px;
}

#age-verification-popup .age-verification-content .custom-form-field-wrpr {
  margin-bottom: 15px;
}

#age-verification-popup .age-verification-content .custom-form-field-wrpr input[type="date"] {
  padding: 6px 12px;
  border: none;
  border-bottom: 1px solid #9b9b9b;
  background-color: transparent;
  width: 100%;
}

#age-verification-popup .age-verification-content .custom-form-field-wrpr input[type="checkbox"] {
  margin-right: 10px;
}

#age-verification-popup .age-verification-content .custom-form-footer {
  padding: 10px 0;
}

#age-verification-popup .age-verification-content input[type="checkbox"] {
  margin-right: 8px;
}

#age-verification-popup .age-verification-content .custom-form-footer button {
  border: none;
}

#age-verification-popup .age-verification-content .age-img-cont {
  height: 100%;
}

#age-verification-popup .age-verification-content .age-img-cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#age-verification-popup .age-verification-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  text-transform: capitalize;
}

#age-verification-popup .age-verification-content .custom-form-footer .cmn-btn {
  padding: 16px 20px;
  width: 100%;
}

#age-verification-popup .age-verification-content .custom-form-footer .cmn-btn::after {
  height: 60%;
  opacity: 0.5;
}

#age-verification-popup .age-verification-content .custom-form-footer .cmn-btn:hover::after {
  height: 50%;
}

/* support 05.06.24 end */

/* 24.06.24 css */
.custom-signup-form-wrap .ginput_container_consent .gfield_consent_label a {
  color: var(--grayTxt);
}

.custom-signup-form-wrap .ginput_container_consent .gfield_consent_label a:hover {
  color: var(--themeColor3);
}

.custom-signup-form-wrap .gform_wrapper.gravity-theme .gfield_header_item,
.custom-signup-form-wrap .gform_wrapper.gravity-theme .gform_fileupload_rules,
.custom-signup-form-wrap .gform_wrapper.gravity-theme .ginput_complex label {
  padding-top: 15px;
  font-size: 16px;
}

.abt-col-12 {
  width: 100% !important;
}

.reduce-gap {
  padding-top: 100px !important;
}

/* 24.06.24 css */

/* AD 09/07/2024 */
.contact-sec .contact-img-col .contact-img-wrap.outer {
  padding: 30px 20px;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: 1px solid #eee;
}

.contact-sec .contact-img-col .contact-img-wrap.inner {
  margin: 0;
}

.contact-sec .contact-img-col .contact-img-wrap.inner iframe {
  width: 100%;
}

.contact-info-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-info-list .contact-infon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.contact-info-list .contact-infon .cnt-dtl {
  font-size: 16px;
}

.contact-info-list .contact-infon .cnt-dtl:not(a):hover {
  color: var(--black);
}

.contact-info-list .contact-infon .dtl-icon {
  width: 42px;
  height: 42px;
}

.contact-main-wrap .contact-frm-wrp {
  -webkit-box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
}

/* AD 09/07/2024 END */
.custom-form-field-wrpr label:first-child {
  margin-right: 12px;
}

.cont-details-wrp {
  display: flex;
  width: 35%;
}

/* support starts 24.07.2024  */
.bnr-top-txt {
  text-align: center;
  padding: 0px 24px 5px;
  width: 100%;
}

.free-ship-txt-innr {
  color: var(--white);
  padding: 10px 0;
  position: relative;
}

.free-ship-txt-innr::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #004bbd 0%, #21dae8 100%);
  top: 0;
  left: 0;
  filter: blur(0);
  z-index: -2;
}

.free-ship-txt-innr p {
  color: var(--white);
  line-height: 1;
  position: relative;
  font-weight: normal;
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-template-login .new-bnnr-sec.innr-bnnr.login-pg {
  height: 200px;
}

.nav-logo-shpe img {
  object-position: bottom left;
}

.nav-logo-shpe.secnd img {
  object-position: bottom right;
}

.navbar-brand-innr {
  padding-top: 17px;
}

.navbar-brand-outtr {
  top: -6px;
}

#cookeModal .modal-dialog-centered .modal-body h2 {
  font-size: 45px;
  margin-bottom: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

#cookeModal .modal-dialog-centered .modal-body h2 span.off-txt {
  font-size: 65px;
  color: var(--themeColor);
}

#cookeModal .modal-dialog-centered .modal-body h2 span.first-order {
  font-size: 30px;
}

#cookeModal .modal-dialog-centered .modal-body h2 span sub {
  font-size: 40px;
  bottom: -0.05em;
}

#cookeModal .modal-dialog-centered .modal-body figure img {
  width: 80px;
}

#cookeModal .modal-dialog-centered .modal-body {
  text-align: center;
  padding: 25px;
}

#cookeModal .modal-content .btn-close {
  font-size: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border: 3px solid var(--grayTxt);
  border-radius: 100%;
  padding: 7px;
}

#cookeModal .modal-content .btn-close:focus {
  box-shadow: none;
}

#cookeModal {
  background-color: rgba(0, 0, 0, 0.6);
}

body.modal-open {
  padding-right: 0 !important;
}

/* support end 24.07.2024  */

/* support start 26-7-24 */
.widecolumn a,
.widecolumn .h4-title {
  color: #004bbd;
}

.widecolumn a:hover {
  color: var(--black);
}

.reg-login-gap {
  padding: 100px 0;
}

.error-msg-txt {
  color: #ff0000;
}

/* support end 26-7-24 */
.page-template-default .content-area h3 {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
}

.page-template-default .content-area h2 {
  color: #214351;
  margin-bottom: 40px;
}

.page-template-default .content-area p {
  color: #000000;
}

.fttr-bttm2 a,
.page-template-default .content-area a {
  color: #1779b2;
}

.fttr-bttm2 a:hover,
.page-template-default .content-area a:hover {
  color: #214351;
  text-decoration: none !important;
}

.welcme-txt-wrapr .sec-head h2 {
  letter-spacing: 0.02em;
  font-size: 52px;
}

.page-template-blog .new-bnnr-content-main,
.single-post .new-bnnr-content-main {
  align-items: center;
}

/* support starts 30.07.2024  */
.welcome-rw .welcome-txt-col {
  width: 100%;
}

.welcme-txt-wrapr {
  text-align: center;
}

.page-template-home .main-head.main {
  padding: 40px 0 23px;
}

.page-template-home .bnr-top-txt {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.page-template-home .welcome-sec {
  background: linear-gradient(to right, #004bbd 0%, #21dae8 100%);
}

.page-template-home .welcme-txt-wrapr .sec-head h2,
.page-template-home .welcme-txt-wrapr .sec-head p {
  color: var(--white);
}

.welcme-txt-wrapr .cmn-btn {
  color: var(--black);
  background-color: var(--white);
}

.welcme-txt-wrapr .cmn-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.othr-nav-wrappr {
  padding-right: 25px;
}

.othr-nav-wrappr ul li {
  position: relative;
}

.othr-page-bnr-wrp {
  max-height: 415px;
  height: 100%;
}

.login-bnr-wrp {
  min-height: 200px;
}

.othr-nav-wrappr ul li .nav-link {
  margin-right: 45px;
}

.reg-login-bnr {
  background: var(--fttrBg);
  width: 100%;
  height: 100%;
}

.signup-login-link-wrpr {
  display: flex;
  align-items: center;
  margin-right: 45px;
}

.signup-login-link-wrpr a.nav-link {
  margin-right: 0 !important;
}

.blog-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog_link_wrap {
  margin-top: auto;
}

.blog-wrappr {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prduct-wrappr figure img {
  object-fit: contain;
}

.othr-page-bnr-wrp figure img {
  max-height: 450px;
}

.page-template-blog .new-bnnr-content-main,
.single-post .new-bnnr-content-main {
  align-items: stretch;
}

/* support ends 30.07.2024  */

/* support start 31-7-24 */
.new-bnnr-sec .home-video {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  /*position: relative;
  z-index: 1;
  padding-top: 56.25%;*/
}

.new-bnnr-sec .home-video video {
  width: 100%;
  height: 620px;
  display: block;
  /*position: absolute;
  top: 0;
  left: 0;*/
  object-fit: cover;
}

.new-bnnr-sec.home-bnr-wrp {
  padding: 23px 0 0;
}

.new-bnnr-sec.othr-page-bnr-wrp figure:before {
  background: rgb(0 0 0 / 35%);
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button {
  color: var(--white);
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover {
  color: var(--white);
}

.page-template-default .content-area .wp-block-button__link.add_to_cart_button {
  background: var(--themeColor);
  color: var(--white);
}

.page-template-default .content-area .wp-block-button__link.add_to_cart_button:hover {
  background: var(--black);
  color: var(--white);
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):hover {
  color: var(--white) !important;
}

.wp-block-woocommerce-checkout-fields-block .wc-block-components-spinner:after,
.wc-block-cart__sidebar .wc-block-components-spinner:after {
  border: 0.2em solid #000;
  border-radius: 100%;
  box-sizing: border-box;
  content: " ";
  left: 53%;
  top: 19%;
}

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

/* support end 31-7-24 */

.reg_footer_wrp {
  padding-top: 30px;
}

.reg_footer_wrp a {
  color: #1779b2;
}

.reg_footer_wrp a:hover {
  color: var(--black);
  text-underline-offset: 5px;
  text-decoration: underline !important;
}

/* support start 2-8-24 */
.new-bnnr-content h1>.smll-txt {
  font-size: 80px;
}

.home-bnr-wrp h1 {
  font-size: 114px;
}

.home-video {
  position: relative;
}

.home-video:before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 20%);
  position: absolute;
}

.reset-frm-wrppr {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgb(68 68 68 / 50%);
  padding: 34px 65px 40px;
}

.cont-center-cls {
  margin: 0 auto 21px;
  text-align: center;
}

.reset-frm-wrppr .woocommerce-form-row:last-child {
  text-align: center;
}

.reset-frm-wrppr .woocommerce-form-row .woocommerce-Button {
  font-family: var(--btnFont);
  letter-spacing: 0.21em;
  text-transform: uppercase;
  min-width: 240px;
  text-align: center;
  margin-top: 20px;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: var(--white) !important;
  background-color: var(--themeColor3) !important;
  position: relative !important;
  transition: all 0.3s ease-in-out 0s;
  padding: 22px !important;
  border-radius: 50px !important;
  transition: all 0.3s ease-in-out;
}

.reset-frm-wrppr .woocommerce-form-row .woocommerce-Button:hover {
  background-color: var(--black) !important;
}

.reset-frm-wrppr .woocommerce-form-row input[type="password"] {
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgb(0 0 0 / 50%);
  padding: 0;
}

/* support end 2-8-24 */
/* CSS Modification 08.08.24 */
.main-head .bnr-top-txt {
  position: fixed;
  padding: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

.new-bnnr-sec,
.new-bnnr-sec.innr-bnnr {
  padding: 0;
}

header.main-head.main {
  padding: 40px 0;
}

.product .summary .price {
  position: relative;
}

.product .summary .price .amount {
  display: inline-block;
}

.product .summary .price del .amount {
  text-decoration: line-through;
  text-decoration-color: #d0b465;
}

.custm-onsale {
  font-family: var(--btnFont);
  width: 42px;
  height: 42px;
  background: #004bbd;
  position: absolute;
  right: -50%;
  top: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  color: var(--white);
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
}

.custm-onsale::before,
.custm-onsale::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #004bbd;
  z-index: -1;
}

.custm-onsale::before {
  -webkit-transform: rotatez(60deg);
  -ms-transform: rotate(60deg);
  transform: rotatez(60deg);
}

.custm-onsale::after {
  -webkit-transform: rotatez(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotatez(-60deg);
}

.product .summary .custom-price-wrapper .price {
  padding: 10px 70px 10px 0;
  display: inline-block;
}

.woocommerce .product span.onsale {
  display: none;
}

.single-product .comment-respond .stars a:hover {
  color: #ecb61e;
}

.single-product .comment-respond .comment-form-comment textarea {
  border: 1px solid #cfc8d8;
  resize: none;
  font-size: 14px;
}

.single-product .comment-respond .comment-form-email input[type="email"],
.single-product .comment-respond .comment-form-author input[type="text"] {
  border: 1px solid #cfc8d8;
  height: 44px;
  border-radius: 0;
  padding-right: 16px;
  padding-left: 16px;
  font-size: 14px;
}

.single-product .comment-respond .form-submit input[type="submit"] {
  font-family: var(--btnFont);
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  text-align: center;
  background-color: var(--themeColor3) !important;
  border-radius: 50px !important;
  -webkit-box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.25) !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 44px;
  padding: 0 25px !important;
  min-width: auto;
}

.single-product .comment-respond .form-submit input[type="submit"]:hover {
  background: var(--black) !important;
}

/* CSS Modification 08.08.24 */

.footer ul#menu-footer-menu li.current-menu-item a {
  color: #3fd1e3;
}

.signup-login-link-wrpr a.current-menu-item:after {
  content: "";
  display: block;
  width: 100% !important;
  height: 3px;
  background: var(--white);
  /* opacity: 0; */
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* 13-08-2024 start KM */
.cfvsw-label-option,
.cfvsw-image-option {
  border-color: var(--themeColor3);
  color: var(--themeColor3);
}

.cfvsw-label-option:hover,
.cfvsw-image-option:hover,
.cfvsw-label-option.cfvsw-selected-swatch,
.cfvsw-image-option.cfvsw-selected-swatch {
  border-color: var(--themeColor3) !important;
  color: var(--white) !important;
  background: var(--themeColor3) !important;
}

.single-product .variations td.value {
  display: flex;
  padding: 0 0 12px;
}

.single-product .variations td.value .reset_variations {
  color: var(--themeColor3);
  font-weight: 600;
  margin-left: 10px;
}

.single-product .variations td.value .reset_variations:hover {
  color: var(--black);
}

.single-product .summary .price {
  margin: 0px 0px 12px 0;
}

.product .summary .custom-price-wrapper .price {
  padding-right: 0 !important;
}

/* 13-08-2024 end KM */

/* SS Css Begin 20-08-2024 */

.login-right-sec .contact-img-wrap {
  background: linear-gradient(to right,
      rgba(0, 75, 189, 0.03) 0%,
      rgba(33, 218, 232, 0.06) 100%);
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
}

.login-right-sec .contact-img-wrap a {
  width: 220px;
  height: auto;
}

.login-frm.login-right-sec {
  align-items: stretch;
  --bs-gutter-y: 30px;
}

/* End Of SS Css 20-08-2024 */
/*support pp.c 21/8/2024*/
.sale-product-price {
  position: relative;
  display: inline-block;
  padding-right: 58px;
}

.sale-product-price .reg_price_cls {
  color: #818181;
  text-decoration: line-through;
  -webkit-text-decoration-color: #d0b465;
  text-decoration-color: #d0b465;
}

.sale-product-price .custm-onsale-cls {
  width: 42px;
  height: 42px;
  font-family: var(--btnFont);
  font-size: 15px;
  color: var(--white);
  background-color: #004bbd;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.sale-product-price .custm-onsale-cls::before,
.sale-product-price .custm-onsale-cls::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #004bbd;
  z-index: -1;
}

.sale-product-price .custm-onsale-cls::before {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sale-product-price .custm-onsale-cls::after {
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.prduct-info .prduct-price {
  margin-bottom: 20px;
  margin-top: 15px;
}

.footer .fttr-frm-wrppr .gform_wrapper.gravity-theme input[type="email"] {
  padding-left: 25px;
  padding-right: 60px;
}

.footer .fttr-frm-wrppr .gform_wrapper.gravity-theme.gform_validation_error .gfield_validation_message {
  padding: 0 0 0 12px;
  background: transparent;
  font-size: 13px;
  border: none;
}

.footer .fttr-frm-wrppr .gform_wrapper.gravity-theme.gform_validation_error .gform_validation_errors {
  display: none;
}

.footer .fttr-frm-wrppr .gform_wrapper.gravity-theme.gform_validation_error .gform_validation_errors .gform_submission_error {
  font-size: 13px;
}

.footer .fttr-frm-wrppr .gform_wrapper.gravity-theme.gform_validation_error .gform_validation_errors .gform-icon--circle-error {
  font-size: 18px;
}

.footer .fttr-frm-wrppr .gform_confirmation_wrapper .gform_confirmation_message {
  color: #3fd1e3;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.woocommerce .footer .fttr-frm-wrppr form input[type="submit"]:hover {
  background: url(images/submit-arrw.svg) center no-repeat #3fd1e3;
}

.footer .fttr-frm-wrppr .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin: 0;
}

.single-product .custom-product-gallery .slider-for .slider-cart img {
  object-fit: contain;
}

.single-product .entry-summary .custom-price-wrapper .price {
  padding-right: 58px !important;
}

.single-product .entry-summary .custom-price-wrapper .custm-onsale {
  right: 0;
}

.single-product .hide-custom-product-gallery .slider-for {
  width: 100%;
}

/*support pp.c 21/8/2024*/
/* satwik 16_9_24 */

.time-info {
  padding-bottom: 15px;
}

.time-info h4 {
  font-size: 25px;
  margin: 0 0 15px 0;
}

.time-info-wrap ul,
.time-info-wrap ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.time-info-wrap ul {
  margin-left: 5px;
  display: flex;
  flex-wrap: wrap;
}

.time-info-wrap ul li {
  padding-left: 18px;
  position: relative;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  width: 50%;
  padding-right: 5px;
}

.time-info-wrap ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--themeColor);
  position: absolute;
  top: 0;
  left: 0;
  top: 11px;
  transform: rotate(45deg);
}

.time-info-wrap ul li:last-child {
  margin-bottom: 0;
}

.time-info-wrap ul li span {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
}

/* AD 15/10/2024 */
.search_news_bar {
  position: relative;
  padding-right: 24px;
  margin-left: -32px;
}

.search_news_bar .headerProductfetchresult_wrp {
  position: absolute;
  width: 370px;
  top: calc(100% + 20px);
  right: -80px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.search_news_bar .headerProductfetchresult_wrp.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  -webkit-box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

.search_news_bar .headerProductfetchresult_wrp input[type="text"] {
  -webkit-box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search_news_bar .headerProductfetchresult_wrp.show input[type="text"] {
  border-radius: 10px 10px 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #eee;
}

.search_news_bar .prod-src-icon-wrpr {
  width: 32px;
  height: 32px;
  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(--themeColor3);
  border-radius: 50%;
  padding: 7px;
  cursor: pointer;
}

#headerProductfetch {
  background-color: #fff;
  width: 100%;
  border: 0;
  padding: 0 10px;
  max-height: 370px;
  overflow: auto;
}

#headerProductfetch>p:only-child {
  padding: 18px 25px;
}

#headerProductfetch .header-product-srch-result {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 15px;
  border-bottom: 1px solid rgba(234, 234, 234, 0.52);
}

#headerProductfetch .header-product-srch-result a:hover {
  opacity: 0.6;
}

#headerProductfetch .header-product-srch-result .header-product-img-wrp {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 15px;
  border: 1px solid #eee;
  padding: 10px;
  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;
}

#headerProductfetch .header-product-srch-result .header-product-img-wrp img {
  max-height: 55px;
}

#headerProductfetch .header-product-text-wrp a {
  color: var(--fttrBg);
}

/* AD 15/10/2024 END */

/* support start 22-10-24 */
.search_news_bar {
  z-index: 999;
}

/* support end 22-10-24 */

/* 23/10/24 work start */
.auth-wrapper ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.auth-wrapper ul li .nav-link {
  color: var(--white);
  line-height: 1.2;
  position: relative;
  font-weight: normal;
  font-family: var(--btnFont);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 30px;
}

.auth-wrapper ul li .nav-link:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--white);
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.auth-wrapper ul li.current-menu-item>.nav-link,
.auth-wrapper ul li>.nav-link:hover {
  color: var(--white);
}

.auth-wrapper ul li.current-menu-item>.nav-link:after,
.auth-wrapper ul li>.nav-link:hover:after {
  width: 110%;
}

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

.auth-wrapper {
  margin-left: 30px;
}

.auth-wrapper .signup-login-link-wrpr {
  margin-right: 0px;
  margin-top: -4px;
}

.auth-wrapper-desktop {
  display: none;
}

.prd-srch-desktop form input[type="submit"] {
  width: 32px;
  height: 32px;
  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-image: url('https://usupply.ca/wp-content/themes/u-supply/images/magnifier-icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  background-color: var(--themeColor3);
  border-radius: 50%;
  padding: 7px;
  cursor: pointer;
}

.search_news_bar {
  display: none;
}

.prd-srch-desktop input[type="text"] {
  width: 200px;
  padding: 0px 42px 0px 15px;
  height: 38px;
}

.prd-srch-desktop form input[type="submit"] {
  position: absolute;
  top: 3px;
  right: 6px;
}

.prd-srch-desktop {
  margin-right: 15px;
}

#headerProductDeskfetch {
  background: #fff;
  padding: 15px;
  position: absolute;
  top: 51px;
  right: 86px;
  border-radius: 10px;
  max-height: 240px;
  overflow: auto;
  width: 100%;
  max-width: 245px;
}

.header-product-img-wrp {
  width: 50px;
  height: 50px;
  border: 1px solid #eee;
  flex-shrink: 0;
  margin-right: 10px;
}

.header-product-img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-product-img-wrp a {
  height: 100%;
  display: block;
}

.header-product-srch-result {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.header-product-text-wrp {
  font-size: 12px;
  line-height: 1.2;
}

.header-product-text-wrp a {
  color: #000;
}

.header-product-text-wrp a:hover {
  color: var(--themeColor3);
}

.prd-srch-desktop form {
  position: relative;
}

.prd-srch-desktop form:after {
  content: '';
  width: 32px;
  height: 32px;
  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-image: url('https://usupply.ca/wp-content/themes/u-supply/images/magnifier-icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  background-color: var(--themeColor3);
  border-radius: 50%;
  padding: 7px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 6px;
  pointer-events: none;
}

/* 23/10/24 work end */

/* SS311024 Begin */

.home-prod-slider .prduct-wrappr figure {
  height: auto;
  margin-bottom: 10px;
}

.home-prod-slider .prduct-wrappr figure a {
  position: relative;
  padding-top: 100%;
}

.home-prod-slider .prduct-wrappr figure a img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.home-prod-slider .prduct-info h3 {
  line-height: 1.3;
}

.home-prod-slider .prduct-info p {
  line-height: 1.3;
}

.home-prod-slider .prduct-info .prduct-price {
  margin-bottom: 15px;
  margin-top: 10px;
}

/* End of SS311024 */

/* 04.11.24 css start */
.related-product-outer-wpr .related-product-slider .slick-list {
  padding-left: 0 !important;
}

.related-product-outer-wpr .prduct-wrappr figure {
  height: auto;
}

.related-product-outer-wpr .prduct-info h3 {
  /* font-size: 20px; */
  line-height: 1.2;
}

/* 04.11.24 css end */


/* ========== 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: 1170px;
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 991px) {
  .navbar-nav li.menu-item-has-children:hover .clickD {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media (max-width: 1439px) {
  /* support 29-05-2024 start */

  .single-product .custom-product-gallery {
    width: 60%;
  }

  .single-product .summary {
    padding-left: 75px;
  }
}

/* support 29-05-2024 end */

@media (max-width: 1199px) {
  .main-head {
    padding: 25px 0;
  }

  .bnnr-innr-content {
    padding: 40px 0 100px;
  }

  /* AD 10/05/2024 */
  .coming_soon_form .gform_wrapper.gravity-theme input[type="submit"] {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 160px;
  }

  /* AD 10/05/2024 END */

  /* NEW STYLE CSS start */

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

  h2,
  .h2-title,
  .welcme-txt-wrapr .sec-head h2 {
    font-size: 40px;
  }

  .new-bnnr-sec {
    padding: 18px 15px 0;
  }

  .main-head.main {
    padding: 18px 0;
  }

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

  .othr-nav-wrappr ul li .nav-link {
    margin-right: 24px;
  }

  .new-bnnr-content .scroll_btn {
    padding: 12px 18px;
    width: 150px;
    height: 75px;
    font-size: 16px;
    border: 3px solid var(--white);
  }

  .new-bnnr-content .scroll_btn i {
    height: 60px;
  }

  .new-bnnr-content .scroll_btn:hover>span>span:first-child {
    transform: translateY(-16px);
  }

  .new-bnnr-content .scroll_btn:hover>span>span:last-child {
    transform: translateY(13px);
  }

  .new-bnnr-content .scroll_btn:hover i {
    height: 45px;
  }

  .new-bnnr-content {
    padding: 80px 0;
  }

  .new-bnnr-sec figure img {
    min-height: 550px;
  }

  .prduct-slider-outtr,
  .related-product-outer-wpr {
    margin-right: calc(((100vw - 930px) / 2) * -1);
  }

  .prduct-head-outtr {
    margin-bottom: 30px;
  }

  .prduct-wrappr figure {
    height: 400px;
  }

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

  .testimonial-outtr {
    margin-bottom: 40px;
  }

  .feedback-comment p {
    font-size: 44px;
  }

  .continue-slide-wrppr>p {
    font-size: 20px;
  }

  .fttr-bttm .copy-txt {
    padding-left: 20px;
    font-size: 15px;
  }

  .fttr-frm-main {
    padding-left: 25px;
    width: 30%;
  }

  .fttr-social-list {
    padding: 0 20px 0 15px;
  }

  .fttr-nav {
    padding-top: 35px;
    padding-bottom: 40px;
  }

  .new-bnnr-content h1>.smll-txt {
    font-size: 64px;
  }

  .welcome-img-wrappr {
    margin-left: calc(((100vw - 930px) / 2) * -1);
  }

  .abut-img-wrappr {
    margin-right: calc(((100vw - 930px) / 2) * -1);
    height: 100%;
  }

  .abut-img-wrappr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .abut-rw {
    align-items: inherit;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content {
    padding: 80px 0;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content h1 {
    font-size: 56px;
  }

  .new-bnnr-sec.innr-bnnr figure img {
    /* min-height: 340px; */
    min-height: 280px;
  }

  .extra-gap {
    padding-top: 100px;
  }

  .pagination-wrppr {
    padding-top: 55px;
  }

  .blog-info h3 {
    line-height: 1.2;
  }

  .blog-search-main h3,
  .cetagories-main h3 {
    font-size: 32px;
  }

  .blog-search-main {
    margin-bottom: 40px;
  }

  .cetagories-main h3 {
    margin-bottom: 15px;
  }

  .contact-sec {
    padding-top: 160px;
  }

  /* .contact-frm-wrp {
    padding-top: 0;
  } */

  .contact-main-wrap .sec-head {
    max-width: 245px;
  }

  .contact-dtls {
    padding-top: 0;
  }

  .dtl-icon {
    width: 40px;
    height: 40px;
  }

  .dtl-icon i {
    font-size: 18px;
  }

  .cnt-dtl {
    font-size: 18px;
    max-width: calc(100% - 40px);
  }

  .navbar-brand-outtr {
    max-width: 365px;
  }

  /* support start 29.05.2024 start */
  .new-bnnr-sec.innr-bnnr.baner-404-error figure {
    padding: 18px 15px 0;
  }

  .new-bnnr-sec.innr-bnnr.baner-404-error figure::before {
    width: calc(100% - 32px);
    height: calc(100% - 20px);
    top: 20px;
    left: 16px;
  }

  .single-product .summary {
    padding-left: 40px;
  }

  .single-product .custom-fluid-container {
    padding: 0 30px !important;
  }

  .single-product .woocommerce-message {
    margin: 0 15px;
  }

  /* support start 29.05.2024 end */

  /* support start 31-5-24 */
  .contact-img-wrap {
    margin-right: 0;
  }

  /* support end 31-5-24 */

  .cont-details-wrp {
    width: 45%;
  }

  /* support starts 24.07.2024  */
  .bnr-top-txt {
    padding: 0px 15px 5px;
  }

  /* support ends 24.07.2024  */

  /* support start 26-7-24 */
  .reg-login-gap {
    padding: 70px 0;
  }

  /* support end 26-7-24 */
  /* support starts 30.07.2024  */
  .othr-nav-wrappr {
    padding-right: 0;
  }

  .signup-login-link-wrpr {
    margin-right: 20px;
  }

  /* support ends 30.07.2024  */

  /* support start 31-7-24 */
  .fttr-nav ul li {
    padding: 8px 33px;
  }

  /* support end 31-7-24 */

  /* support start 2-8-24 */
  .new-bnnr-sec .home-video video {
    height: 550px;
  }

  .home-bnr-wrp h1 {
    font-size: 90px;
  }

  /* support end 2-8-24 */
  /*support pp.c 20/8/2024*/
  .footer .fttr-frm-wrppr .gform_wrapper.gravity-theme input[type="email"] {
    padding-left: 18px;
  }

  /*support pp.c 20/8/2024*/

  /* AD 15/10/2024 */
  .othr-nav-wrappr .nav_cart_btn {
    min-width: 1px;
    font-size: 0;
  }

  .othr-nav-wrappr .nav_cart_btn span.txt {
    padding: 0;
  }

  .search_news_bar {
    margin-left: -6px;
  }

  .search_news_bar .headerProductfetchresult_wrp {
    right: -30px;
  }

  /* AD 15/10/2024 END */
  /* 23/10/24 work start */
  .signup-login-link-wrpr .slash_cls {
    display: none;
  }

  .signup-login-link-wrpr .slash_cls+.nav-link {
    display: none;
  }

  #headerProductDeskfetch {
    right: 0px;
  }

  /* 23/10/24 work end */
}

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

  .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.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*/
}

@media (max-width: 991px) {

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

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

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

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

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

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

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

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

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

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-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;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .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: var(--themeColor3);
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    left: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: transform 0.3s ease-in-out !important;
    transition: transform 0.3s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: 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;
    transition: background-color 0.5s linear;
  }

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

  /* push nav end */

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

  h2,
  .h2-title,
  .welcme-txt-wrapr .sec-head h2 {
    font-size: 36px;
  }

  .new-bnnr-content h1>.smll-txt {
    font-size: 46px;
  }

  .navbar-brand-outtr {
    max-width: 320px;
  }

  .navbar-brand-outtr::before {
    background-size: cover;
    background-position: center right;
    width: 80px;
    top: 11px;
    transform: translateX(-150%);
  }

  .navbar-brand-outtr::after {
    background-size: cover;
    background-position: center left;
    width: 80px;
    top: 10px;
    transform: translateX(50%);
  }

  .othr-nav-wrappr ul li:first-child {
    display: none;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-nav .mobile-only {
    display: block;
  }

  .navbar-nav::before {
    display: none;
  }

  .new-bnnr-content .scroll_btn {
    padding: 12px 15px;
    width: 130px;
    height: 56px;
    font-size: 14px;
    border: 2px solid var(--white);
  }

  .new-bnnr-content .scroll_btn i {
    height: 45px;
  }

  .new-bnnr-content .scroll_btn:hover>span>span:first-child {
    transform: translateY(-8px);
  }

  .new-bnnr-content .scroll_btn:hover>span>span:last-child {
    transform: translateY(6px);
  }

  .new-bnnr-content .scroll_btn:hover i {
    height: 35px;
  }

  .new-bnnr-sec figure img {
    min-height: 400px;
  }

  .new-bnnr-content {
    padding: 60px 0;
  }

  .product-sec {
    padding: 60px 0;
  }

  .prduct-slider-outtr,
  .related-product-outer-wpr {
    margin-right: calc(((100vw - 690px) / 2) * -1);
  }

  .prduct-wrappr figure {
    height: 300px;
  }

  .prduct-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .prduct-info .prduct-price {
    font-size: 22px;
  }

  .welcome-img-wrappr {
    margin-left: calc(((100vw - 690px) / 2) * -1);
  }

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

  .welcome-rw {
    --bs-gutter-x: 30px;
  }

  .welcme-txt-wrapr .sec-head p {
    margin-bottom: 20px;
  }

  .cmn-btn,
  .btn-sdw {
    font-size: 15px;
    padding: 15px;
    min-width: 170px;
  }

  .feedback-comment p {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .continue-slide-wrppr>p {
    font-size: 17px;
  }

  .continue-slide-wrppr>span {
    width: 35px;
  }

  .continue-slide-wrppr>span img {
    width: 100%;
  }

  .continue-slide {
    padding: 5px 14px;
  }

  .feature-prduct-sec .sec-head {
    margin-bottom: 35px;
  }

  .fttr-bttm .copy-txt {
    width: 100%;
    flex: 0 0 auto;
    padding: 15px 0 0;
    text-align: center;
  }

  .fttr-logo-wrap {
    width: 130px;
  }

  .fttr-frm-main {
    padding-left: 25px;
    width: auto;
    flex: 1;
  }

  .fttr-nav {
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .new-bnnr-sec.innr-bnnr figure img {
    /* min-height: 280px; */
    min-height: 240px;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content {
    padding: 60px 0;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content h1 {
    font-size: 44px;
  }

  .abut-rw .abut-txt-col,
  .abut-rw .abut-img-col {
    width: 100%;
  }

  .abut-txt-wrappr {
    margin-bottom: 30px;
  }

  .abut-img-wrappr {
    width: 100%;
    margin-right: 0;
    height: inherit;
  }

  .extra-gap {
    padding-top: 80px;
  }

  .blog-rw {
    --bs-gutter-y: 35px;
  }

  .blog-sec .sec-head {
    margin-bottom: 30px;
  }

  .contact-main-wrap .sec-head {
    max-width: 100%;
    text-align: center;
  }

  .contact-frm-wrp .cmn-btn,
  .btn-sdw {
    min-width: 150px;
  }

  .contact-img-wrap {
    margin-right: 0;
  }

  .contact-rw {
    --bs-gutter-x: 0;
    --bs-gutter-y: 35px;
  }

  .contact-sec {
    padding-top: 100px;
  }

  .cont-details-wrp {
    width: 35%;
  }

  /* SS CSS Begin 22-05-2024 */

  .testimonial-outtr {
    margin-bottom: 45px;
  }

  .large-txt {
    top: 10px;
  }

  .contact-infon {
    width: 100%;
    /* justify-content: center; */
  }

  .contact-infon:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .btn-sdw::after {
    width: 90%;
    transform: translate(-50%, -30%);
  }

  .contact-dtls .contact-frm-col {
    margin-bottom: 0;
  }

  /* End Of SS CSS 22-05-2024 */

  .sub-menu::before {
    display: none;
  }

  .sub-menu ul {
    padding: 0;
  }

  .sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sub-menu ul li a {
    padding: 8px 20px;
  }

  /* support 28-05-2024 start */
  .contact-frm-wrp .gform_wrapper input[type="submit"] {
    font-size: 16px;
    padding: 16px !important;
    min-width: 150px;
  }

  /* support 28-05-2024 end */
  /* support 29.05.2024 start */
  .single-product .custom-product-gallery {
    width: 100%;
  }

  .single-product .custom-fluid-container {
    flex-direction: column;
    padding: 0 30px;
  }

  .single-product .summary {
    padding-left: 0;
    width: 100% !important;
    text-align: center;
    margin-top: 30px;
  }

  .single-product .summary .single_add_to_cart_button {
    margin-left: auto;
    margin-right: auto;
  }

  .single-product .woocommerce-tabs ul.tabs li a {
    font-size: 16px !important;
  }

  .new-bnnr-content-error {
    padding-top: 80px !important;
    justify-content: center;
  }

  /* support 29.05.2024 end */
  /* support 30.05.2024 start */
  .woocommerce-account .custom-account-section .woocommerce-MyAccount-navigation ul {
    margin-bottom: 30px;
  }

  .woocommerce-account .custom-account-section .woocommerce-Address-title h3 {
    font-size: 17px;
  }

  /* support 30.05.2024 end */

  /* support start 4-6-24 */
  .woocommerce-account .custom-account-section .woocommerce-Address-title h3 {
    font-size: 16px;
  }

  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    width: 49%;
  }

  .woocommerce-Address {
    padding: 16px 10px;
  }

  .woocommerce-order-details__title,
  .woocommerce-column__title,
  .woocommerce-MyAccount-content h3 {
    font-size: 28px;
  }

  /* support end 4-6-24 */

  /* 04.06.24 start */

  /* .woocommerce-cart .wc-block-cart__submit {
    padding-top: 25px;
  } */
  .woocommerce-cart .wc-block-cart__submit .wc-block-cart__submit-button {
    margin: 0 auto;
  }

  .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    flex: 0 0 auto;
    margin-right: 15px;
  }

  .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    max-width: 415px !important;
  }

  .custom-signup-form-wrap .form-primary-heading-section h3 {
    font-size: 34px;
    margin-bottom: 0;
  }

  .custom-signup-form-wrap .form-secondary-heading-section h4 {
    font-size: 24px;
  }

  /* 04.06.24 end */

  /* support 05.06.24 start */
  /* #age-verification-popup .age-verification-content {
    min-width: 700px;
  } */

  /* support 05.06.24 end */

  /* AD 09/07/2024 */
  .contact-sec .contact-img-col .contact-img-wrap.outer {
    padding-bottom: 20px;
    height: auto;
  }

  .contact-sec .contact-img-col .contact-img-wrap.outer .contact-rw {
    --bs-gutter-y: 5px;
  }

  .contact-sec .contact-img-col .contact-img-wrap.inner iframe {
    height: 430px;
  }

  /* AD 09/07/2024 END */

  /* support start 26-7-24 */
  .reg-login-gap {
    padding: 60px 0;
  }

  /* support end 26-7-24 */

  .fttr-nav ul li {
    padding: 8px 38px;
  }

  .fttr-nav ul li a {
    font-size: 11px;
  }

  /* .fttr-nav ul {
    flex-wrap: wrap;
  } */

  /* support starts 30.07.2024  */
  .signup-login-link-wrpr {
    margin-right: 15px;
  }

  /* support ends 30.07.2024  */

  /* support start 31-7-24 */
  .fttr-nav ul li {
    padding: 8px 26px;
  }

  /* support end 31-7-24 */

  /* support start 2-8-24 */
  .home-bnr-wrp h1 {
    font-size: 66px;
  }

  .new-bnnr-sec .home-video video {
    height: 400px;
  }

  /* support end 2-8-23 */

  /* support 13-08-2024 start KM */
  .single-product .variations td.value {
    display: unset;
    padding: 0;
  }

  .cfvsw-swatches-container {
    width: 100%;
    justify-content: center;
  }

  .single-product .variations td.value .reset_variations {
    margin-left: 0;
  }

  /* support 13-08-2024 end KM */

  /* SS Css Begin 20-08-2024 */

  .login-right-sec .contact-img-wrap a {
    width: 200px;
  }

  /* End Of SS Css 20-08-2024 */

  /* 23/10/24 work start */
  .prd-srch-desktop {
    display: none;
  }

  .search_news_bar {
    display: block;
  }

  .othr-nav-wrappr ul li:first-child {
    display: block;
  }

  .auth-wrapper {
    display: none;
  }

  .search_news_bar {
    z-index: 9;
  }

  #headerProductfetch {
    max-height: 260px;
  }

  /* 23/10/24 work end */

  /* SS311024 Begin */

  .home-prod-slider .prduct-info h3 {
    font-size: 18px;
  }

  /* End Of SS311024 */
}

@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;
  }

  .navbar-brand {
    width: 120px;
  }

  .bnnr-innr-content {
    padding: 40px 15px 80px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    height: 50px;
    padding: 0 170px 0 25px;
  }

  input[type="submit"] {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 160px;
  }

  /* AD 10/05/2024 */
  .coming_soon_form .gform_wrapper.gravity-theme input[type="text"],
  .coming_soon_form .gform_wrapper.gravity-theme input[type="tel"],
  .coming_soon_form .gform_wrapper.gravity-theme input[type="email"],
  .coming_soon_form .gform_wrapper.gravity-theme input[type="password"],
  .coming_soon_form .gform_wrapper.gravity-theme input[type="number"],
  .coming_soon_form .gform_wrapper.gravity-theme select {
    height: 50px;
    padding: 0 170px 0 25px;
  }

  .coming_soon_form .gform_wrapper.gravity-theme input[type="submit"] {
    font-size: 15px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 140px;
    height: 50px;
  }

  /* AD 10/05/2024 END */

  /* NEW CSS start  */

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

  h2,
  .h2-title,
  .welcme-txt-wrapr .sec-head h2 {
    font-size: 28px;
  }

  .new-bnnr-content h1>.smll-txt {
    font-size: 34px;
  }

  .navbar-brand-outtr {
    max-width: 250px;
  }

  .navbar-brand-outtr .navbar-brand {
    max-width: 60px;
  }

  .navbar-brand-outtr::before {
    width: 55px;
    transform: translateX(-170%);
  }

  .navbar-brand-outtr::after {
    width: 55px;
    transform: translateX(70%);
  }

  .nav_cart_btn i {
    width: 28px;
    height: 28px;
  }

  .nav_user_btn {
    width: 34px;
    height: 34px;
  }

  .new-bnnr-content .scroll_btn i {
    height: 25px;
    transform: translate(-50%, -50%) rotate(-38deg);
  }

  .new-bnnr-content .scroll_btn {
    padding: 12px 10px;
    width: 110px;
    height: 40px;
    font-size: 12px;
  }

  .new-bnnr-content .scroll_btn>span {
    flex-direction: row;
  }

  .new-bnnr-content .scroll_btn:hover>span>span:first-child,
  .new-bnnr-content .scroll_btn:hover>span>span:last-child {
    transform: inherit;
  }

  .new-bnnr-content .scroll_btn:hover i {
    height: 25px;
  }

  .new-bnnr-content {
    padding: 40px 0;
  }

  .new-bnnr-sec figure img {
    min-height: 320px;
  }

  .product-sec {
    padding: 40px 0;
  }

  .cmn-slider-arrw ul li {
    padding: 3px 10px;
  }

  .cmn-arrw-btn {
    font-size: 12px;
  }

  .prduct-slider-outtr,
  .related-product-outer-wpr {
    margin-right: calc(((100vw - 500px) / 2) * -1);
  }

  .prduct-slide {
    padding: 0 10px;
  }

  .prduct-slider .slick-list {
    margin: 0 -10px;
  }

  .prduct-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .prduct-info .prduct-price {
    font-size: 20px;
  }

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

  .welcome-rw .welcome-txt-col,
  .welcome-rw .welcome-img-col {
    width: 100%;
  }

  .welcome-img-wrappr {
    margin-left: 0;
    margin-bottom: 25px;
  }

  .large-txt {
    font-size: 80px;
  }

  .feedback-comment p {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .fttr-nav ul li {
    padding: 2px 20px;
  }

  .fttr-nav ul {
    padding: 0 0 15px;
  }

  .fttr-nav {
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .fttr-logo-wrap {
    width: 100%;
    padding: 0 0 15px;
    display: flex;
    justify-content: center;
  }

  .fttr-logo-wrap a {
    width: 100px;
  }

  .fttr-social-list li a {
    width: 45px;
    height: 45px;
  }

  .fttr-frm-wrppr form input[type="text"],
  .fttr-frm-wrppr form input[type="email"] {
    height: 45px;
    padding-left: 15px;
    padding-right: 50px;
  }

  .fttr-frm-wrppr form input[type="submit"] {
    min-width: inherit;
    width: 37px;
    height: 37px;
    background-size: 15px;
    top: 4px;
    right: 4px;
  }

  .fttr-bttm {
    flex-direction: column;
  }

  .fttr-social-list {
    padding: 0 0 15px;
  }

  .fttr-frm-main {
    padding-left: 0;
    width: 100%;
    flex: 0 0 auto;
    max-width: 320px;
  }

  .prduct-wrappr figure {
    height: 240px;
  }

  .feature-prduct-col {
    width: 50%;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content h1 {
    font-size: 36px;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content {
    padding: 40px 0;
  }

  .new-bnnr-sec.innr-bnnr figure img {
    /* min-height: 250px; */
    min-height: 144px;
  }

  .prduct-listing-sec .sec-head {
    margin-bottom: 20px;
  }

  .pagination-wrppr {
    padding-top: 30px;
  }

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

  .pagination-wrppr ul li:first-child {
    padding-right: 20px;
  }

  .pagination-wrppr ul li:last-child {
    padding-left: 20px;
  }

  .blog-info h3 {
    margin-bottom: 10px;
  }

  .blog-search-main h3,
  .cetagories-main h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .blog-search-wrap form input[type="submit"] {
    min-width: inherit;
  }

  .cetagories-main li a {
    font-size: 15px;
    padding: 7px 0;
  }

  .blog-info h3 {
    font-size: 20px;
  }

  .blog-btn {
    font-size: 16px;
  }

  .blog-btn i {
    margin-left: 10px;
    width: 12px;
  }

  .blog-info p {
    margin-bottom: 15px;
  }

  .contact-sec {
    padding-top: 50px;
  }

  .contact-frm-wrp {
    padding: 25px 15px;
  }

  .frm-field input[type="text"],
  .frm-field input[type="email"],
  .frm-field input[type="password"],
  .frm-field input[type="number"],
  .frm-field input[type="tel"],
  .frm-field select {
    font-size: 14px;
    padding: 0 0 12px;
  }

  .frm-field {
    margin-bottom: 15px;
  }

  .frm-field textarea {
    height: 75px;
    font-size: 14px;
  }

  /* SS Css Begin 22-05-2024 */

  .cmn-btn::after {
    top: 30%;
    height: 65%;
  }

  .nav-logo-shpe {
    width: 45px;
  }

  .contact-dtls {
    padding-top: 0;
  }

  .contact-dtls .contact-rw {
    --bs-gutter-y: 24px;
  }

  /* End Of SS Css 22-05-2024 */

  /* support 28-05-2024 start */
  .pagination-wrppr .next.page-numbers {
    margin-left: 20px;
  }

  .pagination-wrppr .prev.page-numbers {
    margin-right: 20px;
  }

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

  /* support 28-05-2024 end */

  /* support 29.05.2024 start */
  .single-product .custom-fluid-container {
    padding: 0 15px;
  }

  .single-product .custom-fluid-container {
    margin-bottom: 30px;
  }

  .single-product .summary .price {
    margin: 10px 0 17px 0;
  }

  /* support 29.05.2024 end */
  /* support 30.05.2024 start */
  .woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Button,
  .woocommerce-lost-password .woocommerce-form-row .woocommerce-Button,
  .woocommerce-order-received .woocommerce-form .woocommerce-button {
    padding: 16px !important;
    min-width: 200px;
    font-size: 15px !important;
  }

  .woocommerce-order-received .woocommerce ul {
    padding-inline-start: 0;
  }

  .woocommerce-order-received .woocommerce ul.order_details li {
    width: 100%;
    border: none;
    margin-bottom: 10px;
  }

  /* support 30.05.2024 end */
  /* support start 4-6-24 */
  .woocommerce .col2-set .col-1 {
    margin-bottom: 15px;
  }

  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    width: 100%;
  }

  .woocommerce-order-details__title,
  .woocommerce-column__title,
  .woocommerce-MyAccount-content h3 {
    font-size: 25px;
  }

  /* support end 4-6-24 */

  /* 04.06.24 start */

  .woocommerce-checkout .wc-block-checkout__actions_row {
    flex-direction: column;
  }

  .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    margin-right: 0;
    margin-bottom: 15px;
  }

  body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    padding: 15px !important;
  }

  .custom-signup-form-wrap .form-primary-heading-section h3 {
    font-size: 30px;
  }

  .custom-signup-form-wrap .form-secondary-heading-section h4 {
    font-size: 22px;
  }

  .custom-signup-form-wrap .entry-content .gform_wrapper {
    padding: 25px 15px;
  }

  .custom-signup-form-wrap .gform_confirmation_wrapper {
    padding: 20px 15px;
    font-size: 18px;
    line-height: 1.5;
  }

  /* 04.06.24 end */

  /* support 05.06.24 start */
  #age-verification-popup .age-verification-content h3 {
    font-size: 16px;
  }

  .age-col {
    width: 100%;
  }

  #age-verification-popup .age-verification-content .age-img-cont {
    display: none;
  }

  #age-verification-popup .age-verification-content {
    min-width: 450px;
  }

  .age-text-cont {
    padding: 19px;
  }

  /* support 05.06.24 end */
  /* 24.06.24 css */
  .custom-signup-form-wrap .gform_wrapper.gravity-theme .gfield_header_item,
  .custom-signup-form-wrap .gform_wrapper.gravity-theme .gform_fileupload_rules,
  .custom-signup-form-wrap .gform_wrapper.gravity-theme .ginput_complex label {
    padding-top: 8px;
  }

  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="color"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="date"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="datetime-local"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="datetime"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="email"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="month"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="number"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="password"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="search"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="tel"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="text"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="time"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="url"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme input[type="week"],
  .custom-signup-form-wrap .gform_wrapper.gravity-theme select,
  .custom-signup-form-wrap .gform_wrapper.gravity-theme textarea {
    font-size: 16px;
  }

  /* 24.06.24 css */

  /* AD 09/07/2024 */
  .navbar-brand-outtr::before,
  .navbar-brand-outtr::after {
    display: none;
  }

  .navbar-brand-innr {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .contact-sec .contact-img-col .contact-img-wrap.inner iframe {
    height: 380px;
  }

  /* AD 09/07/2024 END */

  .cont-details-wrp {
    width: 40%;
  }

  /* support starts 24.07.2024  */
  #cookeModal .modal-dialog-centered .modal-body h2 {
    font-size: 35px;
  }

  #cookeModal .modal-dialog-centered .modal-body h2 span.off-txt {
    font-size: 50px;
  }

  #cookeModal .modal-dialog-centered .modal-body h2 span.first-order {
    font-size: 25px;
  }

  #cookeModal .modal-content .btn-close {
    font-size: 12px;
  }

  #cookeModal .modal-dialog-centered .modal-body {
    padding: 20px;
  }

  #cookeModal .modal-dialog-centered .modal-body h2 span sub {
    font-size: 30px;
  }

  /* support ends 24.07.2024  */

  /* support start 26-7-24 */
  .reg-login-gap {
    padding: 40px 0;
  }

  /* support end 26-7-24 */

  /* support starts 30.07.2024  */
  .othr-nav-wrappr ul li .nav-link {
    font-size: 14px;
  }

  /* .new-bnnr-sec {
    min-height: 200px;
  } */
  /* support ends 30.07.2024  */

  /* support start 31-7-24 */
  .fttr-nav ul li {
    padding: 8px 10px;
  }

  /* support end 31-7-24 */
  /* support start 2-8-24 */
  .home-bnr-wrp h1 {
    font-size: 46px;
  }

  .new-bnnr-content h1>.smll-txt {
    font-size: 31px;
  }

  .new-bnnr-sec .home-video video {
    height: 300px;
  }

  .reset-frm-wrppr .woocommerce-form-row .woocommerce-Button {
    padding: 16px !important;
    min-width: 200px;
    font-size: 15px !important;
  }

  .reset-frm-wrppr {
    padding: 25px 35px;
  }

  /* support end 2-8-23 */

  /* SS Css Begin 20-08-2024 */

  .login-right-sec .contact-img-wrap a {
    width: 180px;
  }

  /* End Of SS Css 20-08-2024 */

  /* SS311024 Begin */

  .home-prod-slider .prduct-info h3,
  .prduct-info .prduct-price {
    font-size: 16px;
  }

  .sale-product-price .custm-onsale-cls {
    width: 32px;
    height: 32px;
  }

  /* End Of SS311024 */
}

@media (max-width: 575px) {
  body.archive .prduct-info {
    text-align: center;
  }

  .prduct-wrappr figure {
    height: inherit;
  }

  .feature-prduct-col {
    width: 100%;
  }

  .large-txt {
    font-size: 60px;
  }

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

  .new-bnnr-sec {
    padding: 10px 7px 0;
  }

  .navbar-brand-outtr {
    top: -13px;
  }

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

  .navbar-brand-innr {
    flex: 0 0 auto;
  }

  .navbar-brand-outtr .navbar-brand {
    margin: 0;
  }

  .navbar-brand-innr {
    padding: 5px 0;
  }

  .navbar {
    padding: 5px 0px;
  }

  /* SS CSS Begin 22-05-2024 */

  .testimonial-outtr {
    margin-bottom: 35px;
  }

  .large-txt {
    top: 20px;
  }

  .nav-logo-shpe {
    width: 50px;
  }

  .btn-sdw {
    padding: 0;
  }

  .navbar-brand-outtr .navbar-brand {
    max-width: 55px;
  }

  .cnt-dtl,
  .dtl-icon i {
    font-size: 16px;
  }

  /* End Of SS CSS 22-05-2024 */

  /* support 29.05.2024 start */
  .new-bnnr-sec.innr-bnnr.baner-404-error figure {
    padding: 10px 7px 0;
  }

  .new-bnnr-sec.innr-bnnr.baner-404-error figure::before {
    width: calc(100% - 14px);
    height: calc(100% - 10px);
    top: 10px;
    left: 7px;
  }

  .custom-product-gallery {
    flex-direction: column !important;
  }

  .single-product .custom-product-gallery .slider-nav {
    flex-direction: row;
    margin-right: 0;
  }

  .single-product .custom-product-gallery .slider-for {
    width: 100%;
  }

  .single-product .custom-product-gallery .slider-nav {
    width: 100%;
    margin-top: 20px;
  }

  .single-product .custom-product-gallery .slider-nav .slick-prev.slick-arrow {
    margin-bottom: 0;
    margin-right: 10px;
    transform: rotate(-90deg);
  }

  .single-product .custom-product-gallery .slider-nav .slick-next.slick-arrow {
    margin-top: 0;
    margin-left: 10px;
    transform: rotate(-90deg);
  }

  .single-product .custom-product-gallery .slider-nav .slick-list {
    margin: -10px;
  }

  .single-product .custom-product-gallery .slider-nav .slick-slide {
    padding: 10px;
  }

  .single-product .custom-product-gallery .slider-nav .slider-cart {
    width: 100%;
  }

  .single-product .custom-product-gallery .slider-nav .slider-cart img {
    height: 100px;
  }

  .single-product .custom-product-gallery .slider-for .slider-cart img {
    max-height: 400px;
    min-height: 400px;
  }

  .single-product .summary .product_title {
    font-size: 30px;
  }

  .single-product .summary .woocommerce-Price-amount {
    font-size: 18px;
  }

  .single-product .summary .cart h3 {
    font-size: 18px;
  }

  .prod-quantity-wrpr button {
    width: 30px;
    height: 30px;
  }

  .single-product .summary .single_add_to_cart_button {
    padding: 16px !important;
    font-size: 15px;
    margin-top: 30px !important;
  }

  .single-product .woocommerce-tabs ul.tabs li {
    margin: 5px !important;
  }

  .single-product .woocommerce-tabs ul.tabs::before {
    display: none !important;
  }

  .single-product .woocommerce-tabs ul.tabs {
    flex-wrap: wrap !important;
    display: flex !important;
    justify-content: center !important;
  }

  .single-product .woocommerce-message {
    margin: 0 7px;
  }

  /* support 29.05.2024 end */

  /* support 30.05.2024 start */
  .single-product .woocommerce-tabs ul.tabs li {
    border: 1px solid var(--grayTxt) !important;
  }

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

  /* support 30.05.2024 end */

  /* support start 4-6-24 */
  body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    padding: 16px !important;
    font-size: 15px;
    margin-top: 20px !important;
  }

  /* support end 4-6-24 */

  /* support start 4-6-24 */
  .woocommerce-error,
  .woocommerce-info,
  .woocommerce-message {
    padding: 1em 2em 1em 2.5em;
  }

  .woocommerce-info::before {
    left: 1em;
  }

  /* support end 4-6-24 */

  .cont-details-wrp {
    display: block;
    width: 100%;
  }

  /* support starts 24.7.2024  */
  .bnr-top-txt {
    padding: 0px 7px 5px;
  }

  .main-head.main {
    padding: 10px 0;
  }

  .free-ship-txt-innr {
    padding: 8px 0;
  }

  .navbar-brand-outtr {
    top: -6px;
  }

  .page-template-home .navbar-brand-outtr {
    top: -13px;
  }

  .free-ship-txt-innr p {
    font-size: 13px;
  }

  /* support ends 24.7.2024  */
  /* support starts 30.07.2024  */
  .signup-login-link-wrpr a.nav-link:last-child,
  .signup-login-link-wrpr span.slash_cls {
    display: none;
  }

  /* support ends 30.07.2024  */

  /* support start 31-7-24 */
  .fttr-nav ul {
    flex-wrap: wrap;
  }

  /* support end 31-7-24 */
  /* support start 2-8-24 */
  .home-bnr-wrp h1 {
    font-size: 40px;
  }

  .reset-frm-wrppr {
    padding: 25px 20px;
  }

  /* support end 2-8-23 */
  /* CSS Modification 08.08.24 */
  header.main-head.main {
    padding: 34px 0;
  }

  .custm-onsale {
    width: 28px;
    height: 28px;
    font-size: 13px;
    top: 7px;
    /* right: 7px; */
  }

  .custm-onsale::before {
    -webkit-transform: rotatez(60deg);
    -ms-transform: rotate(60deg);
    transform: rotatez(60deg);
  }

  .product .summary .custom-price-wrapper .price {
    padding: 7px 60px 7px 0;
  }

  /* CSS Modification 08.08.24 */

  /* SS Css Begin 20-08-2024 */

  .login-right-sec .contact-img-wrap a {
    width: 150px;
  }

  /* End Of SS Css 20-08-2024 */
  /*support pp.c 21/8/2024*/
  .sale-product-price .custm-onsale-cls {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .sale-product-price {
    padding-right: 40px;
  }

  .page-template-home .prduct-slider .prduct-wrappr figure,
  .page-template-home .related-product-slider .prduct-wrappr figure {
    height: 280px;
  }

  .single-product .related-product-slider .prduct-wrappr figure {
    height: 280px;
  }

  .prduct-info .prduct-price {
    margin-bottom: 18px;
  }

  .single-product .entry-summary .custom-price-wrapper .price {
    padding-right: 40px !important;
  }

  /*support pp.c 21/8/2024*/

  /* AD 15/10/2024 */
  #headerProductfetch .header-product-srch-result .header-product-img-wrp {
    width: 55px;
    height: 55px;
    padding: 6px;
  }

  #headerProductfetch .header-product-srch-result .header-product-img-wrp img {
    max-height: 43px;
  }

  /* AD 15/10/2024 END */

  /* support start 22-10-24 */
  .logged-in header.main-head.main {
    padding: 45px 0 34px;
  }

  /* support end 22-10-24 */

  /* 04.11.24 css start */
  .related-product-outer-wpr .prduct-wrappr figure,
  .home-prod-slider .prduct-wrappr figure {
    height: auto !important;
  }

  /* 04.11.24 css end */

}

@media (max-width: 479px) {
  .bnnr-innr-content {
    padding: 40px 15px 60px;
  }

  .cnt-dtl,
  .dtl-icon i {
    font-size: 14px;
  }

  /* AD 10/05/2024 END */
  .coming_soon_form .gform_confirmation_message {
    font-size: 16px;
  }

  /* AD 10/05/2024 END */

  /* NEW CSS start */

  body {
    font-size: 14px;
  }

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

  h2,
  .h2-title,
  .welcme-txt-wrapr .sec-head h2 {
    font-size: 26px;
  }

  .prduct-slider-outtr,
  .related-product-outer-wpr {
    margin-right: 0;
  }

  .nav_cart_btn {
    min-width: inherit;
    margin-left: 0;
  }

  .nav_cart_btn>span {
    display: none;
  }

  .nav_user_btn {
    margin-right: 10px;
  }

  .new-bnnr-content .scroll_btn {
    display: none;
  }

  .scroll-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 20px;
    margin: 0 auto;
  }

  .scroll-btn-mobile img {
    width: 100%;
    height: 80%;
    object-fit: contain;
    margin-top: 40px;
    animation: jump2 1.5s infinite linear;
    user-select: none;
  }

  @keyframes jump2 {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-5px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  .new-bnnr-content h1 {
    margin-bottom: 15px;
  }

  .new-bnnr-content h1>.smll-txt {
    font-size: 30px;
  }

  .prduct-head-outtr {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .sec-head {
    margin-bottom: 20px;
  }

  .large-txt {
    font-size: 48px;
  }

  .testimonial-outtr {
    justify-content: center;
    margin-bottom: 25px;
  }

  .feedback-comment p {
    font-size: 18px;
  }

  .feature-prduct-sec .sec-head {
    margin-bottom: 25px;
  }

  .prduct-wrappr figure {
    margin-bottom: 15px;
  }

  .fttr-nav ul li {
    padding: 2px 10px;
  }

  .fttr-nav ul {
    flex-wrap: wrap;
    padding: 0 0 10px;
  }

  .fttr-logo-wrap a {
    width: 80px;
  }

  .fttr-bttm .copy-txt {
    padding: 10px 0 0;
    font-size: 14px;
  }

  .fttr-bttm {
    padding-bottom: 15px;
  }

  .new-bnnr-sec.innr-bnnr .new-bnnr-content h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .blog-search-wrap form input[type="text"],
  .blog-search-wrap form input[type="search"] {
    height: 45px;
    padding: 10px 15px 10px 0;
  }

  .blog-search-wrap form input[type="submit"] {
    width: 45px;
    height: 45px;
    background-size: 17px;
  }

  .blog-search-main h3,
  .cetagories-main h3 {
    font-size: 20px;
  }

  .blog-search-main {
    margin-bottom: 30px;
  }

  .cetagories-main li a {
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .contact-frm-wrp .cmn-btn,
  .btn-sdw {
    min-width: 130px;
  }

  /* support 28-05-2024 start */
  .contact-frm-wrp .gform_wrapper input[type="submit"] {
    min-width: 130px;
  }

  .contact-frm-wrp .gform_wrapper .gform_footer {
    padding: 0 !important;
  }

  /* support 28-05-2024 end */

  /* support 29-05-2024 start */
  .woocommerce-cart .abut-txt-wrappr {
    padding: 20px 10px;
  }

  .woocommerce-cart .abut-txt-wrappr .wc-block-cart__submit-container .components-button {
    font-size: 15px;
    padding: 18px;
  }

  .single-product .custom-product-gallery .slider-for .slider-cart img {
    max-height: 360px;
    min-height: 360px;
  }

  /* support 29-05-2024 end */

  /* support start 4-6-24 */
  .woocommerce-info {
    padding: 1em 2em 4em 2.5em;
  }

  .woocommerce-account .custom-account-section .woocommerce-info .button {
    position: absolute;
    bottom: 19px;
    left: 36px;
  }

  /* support end 4-6-24 */

  /* 04.06.24 start */

  .woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-return-to-cart-button {
    margin-bottom: 0;
  }

  .is-mobile .wc-block-checkout__actions .wc-block-components-checkout-return-to-cart-button {
    display: inline-block !important;
  }

  .woocommerce-payment-methods .woocommerce-MyAccount-content .woocommerce-info {
    padding-right: 2em;
  }

  .woocommerce-payment-methods .woocommerce-MyAccount-content>a.button {
    top: inherit;
    right: inherit;
    bottom: 15px;
    left: 15px;
  }

  .custom-signup-form-wrap form input[type="text"],
  .custom-signup-form-wrap form input[type="email"],
  .custom-signup-form-wrap form input[type="password"],
  .custom-signup-form-wrap form input[type="tel"],
  .custom-signup-form-wrap form input[type="number"],
  .custom-signup-form-wrap form select {
    padding: 0 15px !important;
    height: 40px !important;
  }

  .custom-signup-form-wrap .form-primary-heading-section h3 {
    font-size: 26px;
  }

  .custom-signup-form-wrap .form-secondary-heading-section h4 {
    font-size: 20px;
  }

  .custom-signup-form-wrap .gform_wrapper.gravity-theme .gfield_label {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .custom-signup-form-wrap .gform_footer .gform_button {
    height: 40px;
    padding: 0 20px !important;
    min-width: 140px;
    font-size: 16px;
  }

  .custom-signup-form-wrap .ginput_container_consent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .custom-signup-form-wrap .ginput_container_consent input[type="checkbox"] {
    flex: 0 0 auto;
  }

  .custom-signup-form-wrap .ginput_container_consent label {
    flex: 1;
  }

  .custom-signup-form-wrap .gfield_checkbox>.gchoice {
    width: 100%;
  }

  .custom-signup-form-wrap .gform_confirmation_wrapper {
    font-size: 16px;
  }

  .custom-signup-form-wrap .gfield_description {
    font-size: 14px !important;
  }

  .custom-signup-form-wrap .gform_footer::after {
    width: 140px;
    height: 45px;
  }

  /* 04.06.24 end */

  /* support 05.06.24 start */
  #age-verification-popup .age-verification-content h2 {
    font-size: 24px;
  }

  #age-verification-popup .age-verification-content {
    min-width: 350px;
  }

  .age-verification-content {
    line-height: 1.5;
    font-size: 14px;
  }

  #age-verification-form {
    font-size: 12px;
  }

  .age-text-cont figure img {
    width: 70px;
  }

  /* support 05.06.24 end */

  /* 24.06.24 css */
  .custom-signup-form-wrap .gform_wrapper.gravity-theme .gform_footer,
  .custom-signup-form-wrap .gform_wrapper.gravity-theme .gform_page_footer {
    margin: 15px 0 0;
  }

  .custom-signup-form-wrap .ginput_container_consent {
    align-items: flex-start;
  }

  .custom-signup-form-wrap .ginput_container_consent label {
    padding-left: 8px;
  }

  .custom-signup-form-wrap .ginput_container_consent input[type="checkbox"] {
    margin-top: 5px;
  }

  /* AD 09/07/2024 END */
  .othr-nav-wrappr ul li .nav-link {
    margin-right: 14px;
  }

  .contact-sec .contact-img-col .contact-img-wrap.inner iframe {
    height: 350px;
  }

  /* AD 09/07/2024 END */

  /* support starts 24.07.2024  */
  #cookeModal .modal-dialog-centered .modal-body h2 {
    font-size: 30px;
  }

  #cookeModal .modal-dialog-centered .modal-body h2 span.off-txt {
    font-size: 40px;
  }

  #cookeModal .modal-dialog-centered .modal-body h2 span sub {
    font-size: 22px;
  }

  #cookeModal .modal-dialog-centered .modal-body h2 span.first-order {
    font-size: 20px;
  }

  #cookeModal .modal-content .btn-close {
    font-size: 10px;
    padding: 5px;
  }

  /* support ends 24.07.2024  */

  /* support end 31-7-24 */
  .new-bnnr-sec .home-video video {
    height: 250px;
  }

  .new-bnnr-sec.home-bnr-wrp {
    min-height: 274px;
  }

  /* support end 31-7-24 */
  /* support start 2-8-24 */
  .home-bnr-wrp h1 {
    font-size: 30px;
  }

  /* support end 2-8-23 */
  /*support pp.c 21.8.2023*/
  .single-product .summary .product_title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .single-product .custom-product-gallery .slider-for .slider-cart img {
    max-height: 280px;
    min-height: 280px;
  }

  /*support pp.c 21.8.2023*/
  /* satwik 16_09_24 */
  .time-info-wrap ul li {
    width: 100%;
    padding-right: 0;
  }

  /* AD 15/10/2024 END */
  .search_news_bar .headerProductfetchresult_wrp {
    right: -35px;
    width: 300px;
  }

  #headerProductfetch .header-product-srch-result {
    padding: 12px 5px;
  }

  .search_news_bar .prod-src-icon-wrpr {
    width: 18px;
    height: 18px;
    background-color: transparent;
    padding: 0;
  }

  .search_news_bar {
    margin-left: -6px;
    padding-right: 6px;
  }

  /* AD 15/10/2024 END */

  /* support start 22-10-24 */
  .navbar-brand-outtr .navbar-brand {
    max-width: 40px;
  }

  .othr-nav-wrappr ul li .nav-link {
    font-size: 13px;
  }

  .nav-logo-shpe {
    width: 35px;
  }

  .nav_cart_btn i {
    width: 22px;
    height: 22px;
  }

  .nav_cart_btn i img {
    width: 10px;
  }

  /* support end 22-10-24 */
  /* 04.11.24 css start */
  .related-product-outer-wpr .prduct-wrappr figure,
  .home-prod-slider .prduct-wrappr figure {
    max-width: 250px;
    margin: 0 auto 15px;
  }

  .home-prod-slider .prduct-info,
  .related-product-outer-wpr .prduct-info {
    text-align: center;
  }

  .home .feature-prduct-sec .sec-head {
    text-align: center;
  }

  /* 04.11.24 css end */
}

@media (max-width: 359px) {
  #age-verification-popup .age-verification-content {
    min-width: 290px;
  }

  /* support starts 30.07.2024  */
  .signup-login-link-wrpr {
    margin-right: 10px;
  }

  /* support ends 30.07.2024  */

  /* support start 22-10-24 */
  .search_news_bar {
    padding-right: 4px;
  }

  /* support end 22-10-24 */
}

@media (max-width: 320px) {

  /* AD 09/07/2024 END */
  /* .navbar-brand-outtr .navbar-brand {
    max-width: 45px;
  } */
  /* .nav-logo-shpe {
    width: 45px;
  } */
  .othr-nav-wrappr ul li .nav-link {
    margin-right: 7px;
  }

  /* .nav_cart_btn i {
    width: 24px;
    height: 24px;
    padding: 7px;
  } */
  /* AD 09/07/2024 END */

  /* support start 22-10-24 */
  .search_news_bar {
    margin-left: -3px;
  }

  /* support end 22-10-24 */
}

/* Age Verification Popup Styles */
.age-verification-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.age-verification-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.age-verification-content h2 {
  margin-top: 0;
}

.error-msg {
  color: red;
  margin-top: 10px;
}