:root {
  --primary: #1d392f;
  --secondary: #dcfff2;
  --teretory: #d6d39c;
  --accent: #1d392f;
  --accentLight: #9c9c9c;
  --light: #fff;
  --dark: #000;
  --mark: #ff0000;
  --border: #1d392f;
  --bg-light: #f5f5f5;
  --font-base: "Ekster Regular";
  --font-base-bold: "Ekster Bold";
  --font-heading: "Begum Medium";
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  font-family: var(--font-base);
  color: var(--accent);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  position: relative;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*global style*/
.container {
  max-width: 1140px;
  position: relative;
}
.flow > * + * {
  margin-top: var(--flow-spacer, 0.5em);
}
h2 {
  font-size: clamp(1.688rem, 6vw, 4.375rem);
  font-family: var(--font-heading);
}
h3 {
  font-size: clamp(1.688rem, 4vw, 3rem);
  font-family: var(--font-heading);
}
h4 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-family: var(--font-base-bold);
}
h5 {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-family: var(--font-base-bold);
}
h6 {
  font-size: clamp(1rem, 4vw, 1.125rem);
  font-family: var(--font-base-bold);
}
p {
  font-size: 1rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}
a,
a:hover {
  color: var(--primary);
}
.fw-medium {
  font-weight: 600;
}
.btn {
  background: var(--secondary);
  color: var(--accent);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.75rem 0.5rem;
  border-radius: 0;
  border: 1px solid var(--primary);
  font-family: var(--font-base-bold);
  max-width: 100%;
  width: 90px;
}
.btn:hover{
   background: var(--secondary);  
}
.btn a {
    text-decoration: none;
}
.btn-sm {
  width: 160px;
  padding: 12px 10px;
}
.btn-auto {
  width: auto !important;
}
.btn-primary {
  background: var(--secondary);
  color: var(--accent);
  border: 1px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary);
  color: var(--light);
  border: 1px solid var(--primary);
}
.btn-primary:hover a {
  color: var(--light);
}
.btn-primaryDark {
  background: var(--primary);
  color: var(--light);
  border: 1px solid var(--primary);
}
.btn-primaryDark:hover {
  color: var(--light);
}
.btn-primaryDark:hover a {
  color: var(--light);
}
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-accent {
  color: var(--accent) !important;
}
.text-light {
  color: var(--light) !important;
}
.text-dark {
  color: var(--dark) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-light {
  background-color: var(--bg-light) !important;
}
.mark,
mark {
  padding: 0;
  background-color: transparent;
  color: var(--mark);
}
.unorderList {
  list-style-type: disc;
  padding-left: 1rem;
  font-size: 1rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}
.unorderList > li + li {
  padding-top: 0.5rem;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--primary);
}

/*.... section top
...........................*/
.section_top {
  padding: 0.5rem 0;
}
.section_top p {
  font-size: clamp(0.675rem, 2vw, 1rem);
  letter-spacing: 6px;
}
/*.... section header
...........................*/
.section_header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: var(--light);
}
.section_header #header {
  padding: 0.625rem 0;
  transition: ease 0.5s;
}
.header_wrap {
padding: 0.675rem 0;
}
.cart {
  margin-right: 1.5rem;
  font-size: 1rem;
}
.nav_menu_top {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 1.25rem;
}
.innerpage_border {
  border-bottom: 1px solid var(--border);
}

/*.... section navbar
...........................*/
.nav-menu .menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  border-bottom: 1px solid var(--secondary);
  margin-bottom: 0.75rem;
}
.nav-menu .menu .menu-item {
  display: block;
  margin: 0;
  width: 100%;
  font-size: 1rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
  padding: 0.375rem 0;
  font-family: var(--font-base-bold);
}
.nav-menu .menu .menu-item:hover a {
  color: var(--secondary);
}
.nav-menu .menu .menu-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--light);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-base);
}
.nav-menu .menu .menu-item a i {
  padding-left: 0.5em;
}
.nav-menu .menu .menu-item.contact a {
  border: 2px var(--dark) solid;
  border-radius: 2rem;
  padding: 0.625rem 1.25rem;
}
.nav-menu .menu .menu-item.contact a:hover {
  background-color: #000;
  color: #f8f9fa;
}
.nav-menu .menu .menu-item .sub-menu {
  width: 100%;
  position: relative;
  opacity: 1;
  visibility: visible;
  border: none;
  color: var(--light);
  box-shadow: none;
  transform: translateY(0px);
  padding: 0;
  margin: 0;
  left: auto;
  top: auto;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-left: 0.75rem;
  padding-top: 0.5rem;
}
.nav-menu .menu .menu-item .sub-menu .menu-item:hover a {
  color: var(--secondary);
}
.nav-menu .menu .menu-item .sub-menu .menu-item a {
  color: var(--light);
}
.main_menu > li {
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgb(54 54 54 / 30%);
  border: 1px solid rgb(255 255 255 / 30%);
  padding: 0.5rem;
  border-radius: 4px;
}
.main_menu > li + li {
  margin-left: 1.5rem;
}
.main_menu > li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
}
.main_menu > li a img {
  height: 1.5rem;
  margin-bottom: 0.25rem;
}
.close-nav-menu {
  /* width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  background-color: #212529;
  color: #f8f9fa;
  margin: 0 0 1rem 1rem; */
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
}
.menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.close-nav-menu,
.open-nav-menu {
  display: flex;
  cursor: pointer;
}
.open-nav-menu img {
  width: 2rem;
}
.open-nav-menu span {
  display: block;
  height: 0.188rem;
  width: 2rem;
  height: 2px;
  background-color: var(--accentLight);
  position: relative;
}
.open-nav-menu span:before,
.open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accentLight);
  box-sizing: border-box;
}
.open-nav-menu span:before {
  top: -0.5rem;
}
.open-nav-menu span:after {
  top: 0.5rem;
}
.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-menu {
  position: fixed;
  right: -640px;
  visibility: hidden;
  width: 640px;
  max-width: 90%;
  height: 100%;
  top: 0;
  overflow-y: auto;
  background-color: var(--primary);
  color: var(--light);
  z-index: 1000;
  padding: 2rem 1.25rem;
  transition: all 0.5s ease;
}
.nav-menu.open {
  visibility: visible;
  right: 0px;
}
.menu-item:first-child > a {
  text-align: left;
}

/*......... sticky header ..........*/
/* .sticky {
  position: relative;
  top: 0;
  width: 100%;
  background-color: var(--light);
  transition: ease 0.5s;
  z-index: 9;
  padding: 0.625rem 0 !important;
} */

/*.... section banner
...........................*/
.section_banner {
  background-image: url(../images/bannerBg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  
}
.new-top-bg{
  background-image: url(../images/revive-products-bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  height: 660px;
}
.section_hero {
  padding: 1rem 0;
}
.section_hero .hero-prod {
  margin: 1rem 0;
}
.section_hero p {
  font-size: clamp(0.75rem, 2vw, 1.5rem);
  font-family: var(--font-base-bold);
}
.banner_bottom {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: "Ekster Bold";
  position: relative;
}
.banner_bottom::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--secondary);
  width: 30%;
  height: 100%;
  z-index: 0;
}
.banner_bottomBox {
  display: flex;
  align-items: center;
}
.banner_bottomBox > * {
  padding: 1rem 0;
}
.banner_bottomBox .left_box {
  flex-basis: 70%;
  border-right: 1px solid var(--border);
  padding-right: 0.75rem;
}
.banner_bottomBox .right_box {
  padding-left: 0.75rem;
  background-color: var(--secondary);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner_bottomBox .right_box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--secondary);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner_bottomBox p {
  font-size: clamp(0.75rem, 2vw, 1.5rem);
  text-transform: uppercase;
}
.banner_bottomBox a {
  font-size: clamp(0.75rem, 2vw, 1.5rem);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.banner_bottomBox img {
  z-index: 1;
  position: relative;
  padding-left: 0.75rem;
}
.offer_wrap {
  background-color: var(--light);
  padding: 1rem;
  margin: 0.675rem 0;
  border: 1px solid var(--border);
}
.offer_wrap h5 span {
  font-family: var(--font-base);
}
.offer_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.offer_price .price span {
  color: var(--accentLight);
  text-decoration: line-through;
  font-size: clamp(0.625rem, 2vw, 1rem);
}
.offer_title h5 span {
  font-size: clamp(0.625rem, 2vw, 1rem);
}
.price_box > * + * {
  padding-left: 0.5rem;
}
.offer_prod {
  margin: 1rem 0;
}
.icon_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 0 0;
}
.icon_box {
  padding: 0 1rem 1rem;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}
.icon_box.icon_border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background-color: var(--light);
}
.icon_wrap > * + * {
  border-left: 1px solid var(--light);
}
.icon_box img {
  height: 60px;
  margin-bottom: 0.75rem;
}
.icon_box p {
  font-size: 1rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin-top: 0.5rem;
}
.icon_box a {
  color: var(--light);  
  text-decoration: none;
}
.prod_wrap {
  margin-top: 0.625rem;
}
.prod_box {
  margin-bottom: 0.625rem;
}
.prod_box.order1 .prod_img {
  order: 1;
}
.prod_content {
  background-color: var(--secondary);
  padding: 0.75rem;
  text-align: center;
}
.prod_content > * + * {
  margin-top: 0.5rem;
}

/*.... section seller
...........................*/
.section_seller {
  margin: 1.5rem 0 0.75rem;
}
.seller_wrap {
  margin: 1.125rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.75rem;
}
.seller_box {
  background-color: var(--bg-light);
  padding: 1.25rem 0.75rem;
  margin: 0 0.25rem;
  text-align: center;
  display: flex !important;
  flex-direction: column;
}
.seller_box p {
  color: var(--accentLight);
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin-top: 0.5rem;
}
.seller_bottm {
  margin-top: auto;
}
.seller_bottm ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.seller_bottm ul li.off {
  background: var(--primary);
  padding: 6px;
  color: var(--light);
  font-size: 0.75rem;
}
.price_tow {
  font-size: 1rem;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-family: var(--font-base-bold);
}
.cat_price {
  display: block;
  color: var(--accentLight);
  font-size: 1rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
  text-decoration: line-through;
}
.seller_bottm .se_icon {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
}
.se_icon {
  border: 1px solid var(--border);
  background-color: var(--secondary);
  padding: 2px;
  display: inline-block;
}
.se_icon > * + * {
  border-left: 1px solid var(--border);
  padding-left: 0.375rem;
}
.seller_slider {
  text-align: center;
  margin: 1.125rem 0 0;
}

/*.... section deal
...........................*/
.section_deal .container {
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
  border-bottom: 1px solid var(--border);
}
.deal_wrap {
  background-color: var(--bg-light);
  padding: 1.25rem 0.75rem;
  text-align: center;
}
.deal_heading ul {
 margin-bottom: 1rem;
}
.details_box {
  text-align: center;
}
.details p {
  color: var(--accentLight);
  font-size: clamp(0.625rem, 2vw, 1rem);
  margin-top: 0.5rem;
}
.details ul {
  margin: 0.5rem 0;
}
.tag {
  background: var(--primary);
  padding: 0.75rem 0.75rem 0;
  width: 70px;
  text-align: center;
  font-size: 1.375rem;
  color: var(--light);
  position: relative;
  font-family: var(--font-base-bold);
  margin: 0 auto 2.5rem;
  display: block;
}
.tag:after {
  position: absolute;
  content: "";
  height: 40px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 61%);
  bottom: -39px;
  width: 70px;
  left: 0;
}

/*.... section find
...........................*/
.section_find .container {
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
  border-bottom: 1px solid var(--border);
}
.find_wrap {
  display: grid;
  grid-gap: 0.75rem;
}
.find_box {
  text-align: center;
}
.find_box h6 {
  color: var(--light);
  text-transform: uppercase;
}
.find_box a {
  text-transform: uppercase;
  font-family: var(--font-base-bold);
}
.find_prod {
  background-image: url(../images/find.jpg);
  background-size: cover;
  background-repeat: center top;
  padding: 1.25rem;
}
.find_box img {
  margin: 1.25rem 0;
}
.find_box img.plus {
  margin: 0;
  padding-left: 0.5rem;
  width: 2.5rem;
}
.find_box p {
  font-size: clamp(0.75rem, 2vw, 1.125rem);
}
.find_box button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: auto;
  margin: 1rem auto 0;
}

/*.... section strongest
...........................*/
.strongest_wrap {
  background-color: var(--primary);
  color: var(--light);
  padding: 1.875rem 1.25rem;
}
.strongest_top {
  text-align: center;
  margin-bottom: 1.25rem;
}
.strongest_top h2 {
  margin-bottom: 1rem;
}
.strongest_bottom {
  border-top: 1px solid var(--secondary);
  padding: 0.75rem 0;
}
.call_box {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-base-bold);
  border-bottom: 1px solid var(--secondary);
  padding: 0 0 0.75rem;
  margin-bottom: 0.75rem;
}
.call_box .phone {
  display: flex;
  align-items: center;
}
.call_box .phone span {
  font-size: 1rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
  padding-left: 0.5rem;
}
.call_box .phone span .telephone-wh {
  width: 80px;
}
.call_box .call {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  border-left: 1px solid var(--secondary);
  padding-left: 0.75rem;
}
.call_img {
  text-align: center;
}

/*.... section story
...........................*/
.story_wrap {
  background-image: url(../images/story.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2rem;
  
}
.story_content {
  padding: 2rem;
  background-color: var(--primary);
  color: var(--light);
  text-align: center;
}
.story_content .btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
    border: 1px solid var(--secondary);
}

/*.... section customer
...........................*/
.customer_wrap {
  background-color: var(--secondary);
  padding: 2rem 1.5rem;
  margin-bottom: 0.75rem;
}
.customer_wrap ul {
  border-top: 1px solid var(--border);
  position: relative;
}
.customer_wrap li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.customer_wrap .icons {
  flex-basis: 64px;
}
.customer_wrap .content {
  padding-left: 2.5rem;
}
.customer_wrap li p {
  font-size: 1rem;
  font-size: clamp(0.75rem, 2vw, 1.125rem);
}

/*.... section footer
...........................*/
.section_footer {
  background-color: var(--primary);
  color: var(--light);
  padding: 1.5rem;
}
.section_footer p {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
}
.footer_top {
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.inline_form {
  display: flex;
  background: var(--light);
  padding: 0.5rem;
}
.form-control {
  border: 0;
}
.footer_bottom p {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
}
.footer_bottom .links {
  margin: 0.5rem 0 1rem;
}
.borderBottom {
  border-bottom: 1px solid var(--secondary);
}
.footer_bottom .links li {
  padding-bottom: 0.375rem;
  color: var(--light);
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
}
.footer_bottom .links a {
  color: var(--light);
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-decoration: none;
}
.section_footer .note {
  background-color: var(--light);
  color: var(--primary);
  padding: 1rem;
  font-family: var(--font-base-bold);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  text-align: center;
}
.copyright {
  border-top: 1px solid var(--secondary);
  padding-top: 1rem;
  margin-top: 1rem;
}

/*.... section content
...........................*/
.content_area {
  --flow-spacer: 1em;
  position: relative;
}

/*.... prod details page
...........................*/
.section_prodDetails {
  padding: 0 0 1.5rem;
}
.prodDetails_content {
  --flow-spacer: 1em;
  position: relative;
}
.prodDetails_content .pr {
  padding-right: 2.5rem;
}
.share_box {
  position: absolute;
  right: 0;
  top: 0;
}
.share_box li {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 0.5;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.share_box li:nth-child(3) {
    display: none;
}
.checkBox {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 0.5rem;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.checkBox .check {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkBox .check img {
  width: 1.875rem;
}
.checkBox p {
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 2vw, 1rem);
}

/*section accordian*/
.accordian_box ul {
  border-top: 1px solid var(--border);
}
.accordion_box h6 {
  font-size: 1rem;
  font-size: clamp(0.75rem, 2vw, 1.125rem);
  text-transform: uppercase;
}
.accordian_box ul li {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  text-align: center;
}
li.slide_box h3, li.slide_box1 h3 {
  background: #7e7c8a;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  padding: 12px;
  cursor: pointer;
  position: relative;
}
.slide_box1 {
    position: relative;
    cursor: pointer;
}
li.slide_box h6:after, .slide_box1:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 0;
  width: 20px;
  height: 14px;
  background: url(../images/down-arrow.svg) no-repeat;
  background-size: 100%;
  /* content: "\f107";
  color: var(--primary);
  font-weight: 600;
  float: right;
  font-size: 30px;
  line-height: 22px;
  font-family: "Font Awesome 5 Free"; */
}
li.active h6:after {
  /* content: "\f106";
  font-family: "Font Awesome 5 Free"; */
  transform: rotate(180deg);
}
.slide_box1.active:after {
  /* content: "\f106";
  font-family: "Font Awesome 5 Free"; */
  transform: rotate(180deg);
}
.hide_box, .hide_box1 {
  padding: 1rem 0;
  max-width: 707px;
  margin: 0 auto;
  width: 100%;
}
.hide_box .btn, .hide_box1 .btn {
  width: auto;
}
/*24_02_22*/
li.slide_box1
{
    position: relative;
}
li.slide_box1 h3 {
  background: #7e7c8a;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  padding: 12px;
  cursor: pointer;
  position: relative;
}
li.slide_box1:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 0;
  width: 20px;
  height: 14px;
  background: url(../images/down-arrow.svg) no-repeat;
  background-size: 100%;

}

h6.headerclass:after {

    transform: rotate(-180deg);
   
}
/*24_02_22*/
.review_box {
  border-top: 0 !important;
}
.review_box li {
  border-top: 1px solid var(--border);
  border-bottom: 0 !important;
  padding: 1rem 1rem 1rem 3rem !important;
  text-align: left !important;
  position: relative;
}
.review_box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  background: url(../images/user.svg) no-repeat;
  width: 32px;
  height: 32px;
  background-size: 32px;
}
.review_box li > * + * {
  margin-top: 0.75rem;
}
.review_box li .star {
  padding-left: 0.75rem;
}
.section_cart {
  border-top: 1px solid var(--border);
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
}
.cart_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}
.cart_wrap .seller_bottm {
  margin-top: 0;
}
.cart_wrap .seller_bottm ul {
  margin-top: 0;
}
.cart_wrap .btn {
  width: auto;
}
.cart_wrap .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.cart_wrap .list li {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
}
.cart_wrap .list li.active,
.cart_wrap .list li:hover {
  background-color: var(--secondary);
}

/*....shoppingCart page
...........................*/
.section_shoppingCart {
  padding: 1rem 0;
}
.shoppingCart_box {
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border);
  padding: 0.675rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.shoppingCart_box > * {
  flex-basis: 50%;
}
.shoppingCart_box .close2 {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
}
.shoppingCart_content {
  padding-left: 1.25rem;
}
.input_box {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input_box .input-number-decrement,
.input_box .input-number-increment {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}
.input_box .input-number {
  width: 42px;
  border: 0;
  height: 32px;
  text-align: center;
}
.section_shoppingCart .btn {
  margin: 0 auto;
  display: block;
}

/*section promise*/
.section_promise .line {
  margin: 0.75rem 0;
  background-color: var(--border);
}
.promise_wrap {
  --flow-spacer: 1.125rem;
  padding: 1.125rem 2.5rem;
}
.promise_wrap .guarantee {
  max-width: 180px;
  margin-inline: auto;
}

/*summary section*/
.summary_box {
  border: 1px solid var(--border);
  background-color: var(--secondary);
  padding: 1rem 1rem 1.5rem;
  margin-bottom: 1.5rem;
  --flow-spacer: 1rem;
}
.freeShipping {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.subscribe .btn {
  padding: 0.75rem 2.5rem;
  width: auto;
}
.subscribe .btn:hover {
  background: var(--primary);
    color: var(--light);
    border: 1px solid var(--primary);
}
.section_proceed {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.proceed_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proceed_box .btn {
  padding: 0.75rem 2.5rem;
  width: auto;
}

.subscribe.btn:hover {
  background: var(--primary);
    color: var(--light);
    border: 1px solid var(--primary);
}
.hide_box .inline_form, .hide_box1 .inline_form {
  border: 1px solid var(--border);
}

/*.... tab page
...........................*/
.tab_area {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section_tabHeader {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.section_tabHeader > * {
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section_tabHeader p {
  font-size: 0.75rem;
}
.section_tabHeader > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: var(--border);
}
.section_tabHeader .logo {
  justify-self: flex-start;
}
.section_tabHeader .tele {
  flex-direction: column;
}
.section_tabHeader .tele img {
  width: 24px;
  margin: 0 auto 0.5rem;
}
.section_tabHeader .tele a {
  color: #3ba9dd;
  font-family: var(--font-base-bold);
  font-size: 0.75rem;
}
.section_tabHeader .back {
  justify-content: space-evenly;
  text-transform: uppercase;
  font-size: 1rem;
  font-size: clamp(0.75rem, 4vw, 1.5rem);
  letter-spacing: 2px;
}
.section_tabHeader .back span.icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--light);
  display: inline-block;
  text-align: center;
  line-height: 2;
  font-size: 1rem;
}
.section_tabbar {
  display: grid;
  grid-template-columns: 75% 25%;
  border-bottom: 1px solid var(--border);
}
.section_tabbar.section_tabbar_one {
  grid-template-columns: 1fr;
}
.section_tabbar_one p {
  font-family: var(--font-base-bold);
}
.section_tabbar > * {
  padding: 0.75rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_tabbar > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: var(--border);
}
.section_tabbar .left_box {
  justify-self: flex-start;
}
.section_tabbar .right_box p {
  font-family: var(--font-base-bold);
}
.section_tabcontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 0;
}
.tabcontent p {
  font-size: 1rem;
  font-size: clamp(0.75rem, 4vw, 1.5rem);
}
.tabcontent .radio_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.tabcontent .btn-tab {
  width: 140px;
  height: 38px;
  border: 0;
  font-size: 0.75rem;
}
.tabcontent .btn-tabCheck {
  width: 210px;
  height: 38px;
  border: 0;
  font-size: 0.75rem;
}
.tabcontent .btn-tab.btnskip {
  background-color: #f3f9f9;
}
.btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.875rem;
}
.section_tabFooter {
  margin-top: auto;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
}
.section_tabFooter .container {
  max-width: 900px;
}
.tabcontent_checkbox > * {
  width: 220px;
  margin: 0 auto;
}
.tabcontent_checkbox > * + * {
  margin-top: 1rem;
}
.check_bar {
  width: 250px;
  margin: 3rem auto 0;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-base-bold);
}
.bar {
  width: 100%;
  height: 24px;
  border: 1px solid var(--border);
  position: relative;
}
.bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 100%;
  background-color: var(--secondary);
}

/*check box and radio box*/

.checkbox-custom,
.radio-custom {
  opacity: 0;
  position: absolute;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
  position: relative;
}
.checkbox-custom + .checkbox-custom-label:before,
.radio-custom + .radio-custom-label:before {
  content: "";
  background: var(--light);
  border: 1px solid var(--border);
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
}

.radio-custom + .radio-custom-label:before {
  border-radius: 50%;
}
.checkbox-custom:checked + .checkbox-custom-label:before,
.radio-custom:checked + .radio-custom-label:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  color: var(--primary);
  font-weight: 600;
  background: var(--secondary);
}
.checkbox-custom:focus + .checkbox-custom-label,
.radio-custom:focus + .radio-custom-label {
  outline: 1px solid #ddd;
}

/*------------------------------------------*/
/*.... BIG check box
...........................*/
.label-cbx {
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: left;
}
.label-cbx input:checked + .checkbox {
  border-color: #20c2e0;
}
.label-cbx input:checked + .checkbox svg path {
  fill: #20c2e0;
}
.label-cbx input:checked + .checkbox svg polyline {
  stroke-dashoffset: 0;
}
.label-cbx:hover .checkbox svg path {
  stroke-dashoffset: 0;
}
.label-cbx .checkbox {
  position: relative;
  float: left;
  width: 30px;
  height: 30px;
  border: 2px solid var(--border);
  border-radius: 3px;
  box-sizing: border-box;
}
.label-cbx .checkbox svg {
  position: absolute;
  top: -2px;
  left: -2px;
}
.label-cbx .checkbox svg path {
  fill: none;
  stroke: #20c2e0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 71px;
  stroke-dashoffset: 71px;
  transition: all 0.6s ease;
}
.label-cbx .checkbox svg polyline {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18px;
  stroke-dashoffset: 18px;
  transition: all 0.3s ease;
}
.label-cbx > span {
  pointer-events: none;
  vertical-align: middle;
  font-size: 1rem;
  font-family: var(--font-base-bold);
}
.checkicon {
  width: 30px;
  height: 30px;
}

.cntr {
  position: relative;
  max-width: 260px;
  margin: 0 auto 0.75rem;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 0.75rem;
}

.invisible {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}

.coupondiv > * + * {
    margin-top: 1rem;
}
.coupon-applied .coupon-code {
    background: var(--primary);
    color: var(--light);
    padding: 6px;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    margin-left: 1rem;
}
.save-div span {
    margin-left: 1rem;
}

/*....preloader section
...........................*/
#preloader {
  position: fixed;
  z-index: 1800;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
#preloader #loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}
#preloader #loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}
#preloader #loader:before,
#preloader #loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}
#preloader #loader:before {
  animation: before 2s infinite;
}
#preloader #loader:after {
  animation: after 2s infinite;
}

@keyframes before {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75),
      0 0.5em rgba(111, 202, 220, 0.75);
  }
  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75),
      1em 0.5em rgba(111, 202, 220, 0.75);
  }
  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}
@keyframes after {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75),
      -0.5em 0 rgba(233, 169, 32, 0.75);
  }
  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75),
      -0.5em 1em rgba(233, 169, 32, 0.75);
  }
  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

/*.....scroll to top
......................*/
.scrollup {
  background-color: #f8f9fa;
  color: #212529;
  padding: 0;
  width: 3rem;
  height: 3rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.7;
  cursor: pointer;
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  padding: 0.25rem;
  display: none;
}
.scrollup i {
  padding: 0;
}

/* retina screen */
@media only screen and (-webkit-min-device-pixel-ratio: 1.25),
  only screen and (min--moz-device-pixel-ratio: 1.25),
  only screen and (-o-min-device-pixel-ratio: 1.25/1),
  only screen and (min-device-pixel-ratio: 1.25),
  only screen and (min-resolution: 200dpi),
  only screen and (min-resolution: 1.25dppx) {
  .section_banner {
    background-image: url(../images/bannerBg@2x.jpg);
    background-size: cover;
  }
  .new-top-bg{
    background-image: url(../images/revive-products-bg2@2x.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;    
  }
  .story_wrap {
    background-image: url(../images/story@2x.jpg);
    background-size: cover;
  }
}
.inline_form input[type="text"], input[type="email"]{
    /* border: 0!important; */
    height: auto!important;
    outline: none!important;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #FFF !important;
    opacity: 1;
}
.btn-primary.disabled, .btn-primary:disabled {
    background: var(--secondary) !important;
    color: var(--accent) !important;
    border: 1px solid var(--primary) !important;
}
.call a{
    text-decoration: none; color: #fff;
}

/* --- Edit 02-02-2022 --- */
.thum-nail-box {
    width: 20%;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0 0 15px -20px;
}
.product-big-new1{
    width: 80%;
    float: right; 
}
.prodDetails_content h2{
    font-size: 3rem;
}
.reviews-new {
    width: 100%;
    text-align: center;
    float: left;
    margin-top: 80px;
    border: 2px solid #f2effa;
    padding: 25px 25px;
    border-radius: 6px;
    box-shadow: 1px 1px 2px #e6e6e6;
    position: relative;
}
.reviews-new p{
    font-size: 16px;
    color: #121212;
}
.reviews-new p img{
    vertical-align: middle;
    padding-left: 10px;
}
.down-arrw-new1{
    position: absolute;
    bottom: -46px;
    left: 50%;
    margin-left: -32.5px;
    width: 19%;
}
@media screen and (max-width: 844px){
  .prodDetails_content h2{
    font-size: 1.5rem;
} 
.product-big-new1{
    width: 100%;
    float: none;
    margin-bottom: 40px;
} 
.thum-nail-box{
    width: 20%;
    margin: 0 0 0 15px;
    min-height: 100px;
    float: left;
}
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background: #00000063;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  margin-top: 20%;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem 1rem; 
  margin: -1rem -1rem -1rem auto;
  /* background: #000;
  color: #fff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  line-height: 1.6rem;
  font-size: 1.4rem; */
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    background: #fff;
    border: none;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  /* justify-content: center; */
  text-align: center;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.new-bullets1 li{
    list-style: disc;
    list-style-position: inside;
}
.fade:not(.show) {
    opacity: 1; 
}
.prodDetails_content p b {
    font-weight: 700;
    font-family: "Ekster Bold";
}
.review_box p{
    font-size: 16px;
}
.prodDetails_content h5{
    color: #1b392e;
    font-size: 1.125rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.prodDetails_content em{
    width: 159px;
    float: left;
    font-style: inherit;
}
.prodDetails_content h5 i{
        color: #f35119;
}
.prodDetails_content h5 span{
    color: #00274C;
    font-size: 0.875rem;
    font-family: 'Roboto Condensed', sans-serif;
    margin-left: 10px;
    font-weight: 400;
}
/* @media only screen and (min-device-width: 320px) and (max-device-width: 768px){
    .prodDetails_content p{
        margin-right: 57px;
    }
} */


.color-new{
    color: #1d392f;
}
.form-control{
    color: #a29f9f;
}

.video_wrap {
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  .video_wrap::before {
    content: "";
    padding-top: 56.25%;
    display: block;
  }
  .video_wrap iframe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

  .section_video {
    margin-bottom: 0.75rem;
}

/*popup area*/
.popup_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
.popup_box {
    width: 540px;
    padding: 3rem 1rem;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    position: relative;
}
.btn-popup {
    background: var(--primary);
    color: var(--light);
    padding: 10px;
    font-size: 1.125rem;
}
.btn-popup:hover {
    background: var(--secondary);
    color: var(--accent);
    border: 1px solid var(--secondary);
}
.btn-popup-outline {
    background: var(--clr-white);
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 10px;
    font-size: 1.125rem;
}
.btn-popup-outline:hover {
    background: var(--secondary);
    color: var(--accent);
    border: 1px solid var(--secondary);
}
.btn-popup-close {
    border: 1px solid var(--border);
    border-radius: 50%;
    padding: 0;
    position: absolute;
    right: -12px;
    top: -12px;
    background: #fff;
    opacity: 1;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.popup_box p {
    font-size: 1rem;
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.popup_box .btnpopup {
    padding: 0.675rem;
    width: 100%;
    max-width: 320px;
    height: 44px;
    font-size: .875rem;
    text-align: center;
    text-decoration: none;
    line-height: 1.6;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


.add-logo-sec {
    background: #1d392f;
    padding: 1rem 0;
}

.add-logo-sec h5{
    color: #fff; margin-bottom: 16px;}
.add-logo-sec ul{text-align: center;display: flex;
    justify-content: center;
    align-items: center;}
    .add-logo-sec ul li{padding: 0 8px;}
      .add-logo-sec ul li img{    max-height: 66px; }


@media only screen and (min-width: 768px) {
 .add-logo-sec ul li{padding: 0 20px;}
 .add-logo-sec h5 {
    color: #fff;
    margin-bottom: 20px;
}
}

@media only screen and (min-width: 1700px)  {
.new-top-bg{height: 900px;
    background-size: cover;
    background-position: bottom;}
}

@media only screen and (min-width: 2600px)  {
.new-top-bg{height: 1100px;
    background-size: cover;
    background-position: bottom;}
}

.topbar_head {
    width: 100%;
    padding: 5px 0;
}
.topbar_head p {
    font-size: .75rem;
}
.topbar_head a {
    color: var(--accentDark);
    text-decoration: none;
}
@media (min-width: 576px) {
.topbar_head p {
    font-size: 1rem;
}
}