/* Font */

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Light.woff2') format('woff2'),
      url('../fonts/Barlow-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.woff2') format('woff2'),
      url('../fonts/Barlow-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Bold.woff2') format('woff2'),
      url('../fonts/Barlow-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-SemiBold.woff2') format('woff2'),
      url('../fonts/Barlow-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.woff2') format('woff2'),
      url('../fonts/Barlow-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-ExtraBold.woff2') format('woff2'),
      url('../fonts/Barlow-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Thin.woff2') format('woff2'),
      url('../fonts/Barlow-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

body{
  font-family: 'Barlow';
}

::-webkit-scrollbar {
  width:15px;
  -webkit-appearance: none;
}

::-webkit-scrollbar-thumb {
  background-color:#000000;
  border-radius: 10px;
  border:2px solid #ffffff;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

html,body{
  overflow-x: hidden;
}
body.active{
  overflow: hidden;
}

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

}
a {
  color: inherit;
  text-decoration: none;
}
a {
  color:#272525;
}
h1,
h2,
h3,
h4 {
  color: #000;
}
*:focus {
  outline: none;
}
button:focus {
  outline: none;
}
button {
  border: 0;
}
ul li {
  list-style: none;
  color: inherit;
}
img {
  max-width: 100%;
}
a:hover {
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
}

.container {
  width:100%;
  padding:0 95px;
  margin: auto;
}


/* Navigation Css Start */

header{
  float:left;
  width:100%;
  position: relative;
  z-index: 99;
  transition: background .3s;
  background:transparent;
}

header.fixed{
  background:rgba(255, 255, 255, 0.9);
  position: fixed;
  top:0;
  left:0;
  z-index:9999;
}

header.fixed .logo a img{
  will-change: transform;
  max-width:64px;
}

.navigation{
  width: 100%;
  padding:45px 95px 0px 95px;
}

.header_inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.header_rgt{
  display:flex;
  align-items:center;
  column-gap:30px;
  position:relative;
}

.logo a img{
  transition:all 0.5s;
  display:block;
}

.navbar .nav-list{
  display:flex;
  justify-content: flex-end;
  column-gap:80px;
  margin-bottom: -15px;
}

.navbar .nav-list li{
  padding-bottom:15px;
  position:relative;
}

.navbar .nav-list li:before{
  content:'|';
  position:absolute;
  right:-40px;
  font-size: 32px;
  line-height: 22px;
  font-weight: 300;
  letter-spacing: 1.13px;
  color: #6A6561;
}

.navbar .nav-list li:last-child:before{
  content:none;
}

.navbar .nav-list li a{
  font-family: 'Barlow';
  font-size: 28px;
  line-height: 22px;
  font-weight:300;
  letter-spacing: 1.13px;
  color:#6A6561;
  text-transform:uppercase;
  transition:all 0.5s;
  position:relative;
}

.navbar .nav-list li a span{
  font-weight:800;
  font-size: 13px;
  line-height:18px;
  margin-left: 5px;
}

.navbar .nav-list li a.active{
  color:#272525;
}

.navbar .nav-list li.active > a{
  color:#272525;
}


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

.submenu{
  display:none;
  position: absolute;
  width: auto;
  top: 100%;
  left: -1px;
  z-index: 1;
  text-align: left;
  background: #fff;
  padding: 10px;
}

ul.nav-list li.dropdwon:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.navbar .nav-list li.dropdown:hover .menu_dropdown{
  opacity:1;
}

.sub-menu{
  opacity:0;
  visibility:hidden;
  position:absolute;
  background: #ffffff;
  z-index:9999;
  padding:30px;
  min-width:230px;
  margin-top: 14px;
  border-radius: 10px;
}

.navbar .nav-list li.hover_dropdown.active .sub-menu{
  opacity:1;
  visibility:visible;
}

.navbar .nav-list .sub-menu li{
  margin-bottom:20px;
  padding-bottom:0;
}

.navbar .nav-list .sub-menu li:last-child{
  margin-bottom:0;
}

.navbar .sub-menu li a{
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.36px;
  color: #36333D;
  font-family: 'Barlow';
  text-transform:initial;
}

.navbar .nav-list .sub-menu li a:hover{
  color:#10552b;
}

.navbar{
  display: flex;
  align-items: center;
  justify-content:center;
  column-gap: 45px;
}

/* Mobile navigation */

.mobile_btm{
    padding:30px 20px 0;
}

.web_header_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mo_menu {
  position: fixed;
  right:-100%;
  background:#D3CDC6;
  width:100%;
  height: 100vh;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index:9999;  
  visibility: visible;
}

.mo_menu.active {
  right:0;
  transition:all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  padding:30px 30px;
  position: fixed;
  overflow-y: scroll;
  opacity:1;
  display:block;
  z-index:99999;
}

.main.active{
  transform: translate(-30%, 0);
  opacity: 0.5;
}

.main{
/*  transform: translate(0%, 0);*/
  transition: all 0.6s ease 0s;
}

.mo_menu .sidemenu_close{
  display:none;
}

.mo_menu.active .sidemenu_close{
  display:block;
}

.mo_menu.active .sidemenu_close span{
  background-color:transparent;
}

.mo_menu.active .sidemenu_close span:before, .mo_menu.active .sidemenu_close span:after{
  background-color:#928A85;
}

.mo_menu.active .sidemenu_close span:before{
  transform: rotate(45deg);
  top: 10px;
}

.mo_menu.active .sidemenu_close span:after{
  transform: rotate(-45deg);
  top:10px;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown {
  float: right;
  position: absolute;
  top:23px;
  right:30px;
  color: #000000;
  cursor: pointer;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown i{
  font-size:20px;
  line-height:26px;
  font-weight:600;
  color: #000000;
}

.sideMenu ul li.dropdown_main span.mobile_dropdown.active{
  color: #00A091;
}

.sideMenu ul li .navbar-dropdown {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  background-color:#fff;
  box-shadow:none;
  margin-top: 10px;
}

.sideMenu .nav-list .navbar-dropdown li{
  text-transform:initial;
}

.sideMenu .nav-list .navbar-dropdown li a{
  background-color:transparent;
  display:flex;
  border-bottom:0;
  font-family: 'Barlow';
  font-weight: 500;
  color: #36333D;
  font-size:18px;
  line-height:24px;
  letter-spacing: 0.6px;
  text-transform:initial;
}

.sideMenu .navbar-dropdown .dropdown_icon{
  width:38px;
  height:38px;
}

.sideMenu  .dropwon_nav h6, .sideMenu  .dropwon_nav p{
  color:#fff;
}

.sideMenu  .dropwon_nav h6{
  font-size:18px;
  margin-bottom:5px;
}

.sideMenu  .dropwon_nav p{
  font-size:14px;
}

.sideMenu .mob_dropdown:after{
  content: '\f054';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right:20px;
  top:24px;
  color:#fff;
  cursor: pointer;
}

.mob_dropdown.active:after{
  transform: rotate(90deg);
}

.sideMenu .nav-list{
  padding-top:40px;
}

.sideMenu .nav-list li {
  display: block;
  position: relative;
  padding:15px 0px;
}

.sideMenu ul li .navbar-dropdown li:first-child{
  border:0;
}

.sideMenu ul li .navbar-dropdown li{
  padding:15px 30px;
  border-top: 1px solid #707070;
}

.sideMenu .nav-list li a {
  display: block;
  text-decoration: none;
  font-family: 'Barlow';
  font-weight:600;
  font-size: 26px;
  line-height: 36px;
  color:#928A85;
}

.sideMenu .nav-list li a.active{
  color: #00A091;
}

.sideMenu ul li a span{
  cursor:pointer;
}

.menuIcon {
  display: inline-block;
  padding: 3px 12px;
  cursor: pointer;
}
.menuIcon span {
  display: block;
  width: 28px;
  height:3px;
  background:#0073FF;
  position: relative;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  width: 28px;
  height:3px;
  background:#0073FF;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 28px;
  height:3px;
  background:#0073FF;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span {
  background:transparent;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:before {
  transform: rotate(45deg);
  top: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}
.menuIcon.active span:after {
  transform: rotate(-45deg);
  bottom: 0px;
  transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.mo_menu.active .menuIcon.sidemenu_close{
  position: absolute;
  top: 30px;
  right: 15px;
  height: 28px;
  cursor: pointer;
}

.mo_menu.active .menuIcon.sidemenu_close{
  background-color:transparent;
}

.mo_menu.active .menuIcon.sidemenu_close i{
  font-size:32px;
  color:#Fff;
}

/* Banner Css Start */
.banner_main{
  float:left;
  width:100%;
  margin-top: -115px;
  padding: 150px 0 0;
  background-color:#E4DDD7;
}

.banner_inr{
  display:flex;
  column-gap:70px;
  align-items: flex-end;
  margin-left:auto;
  padding:0 80px;
}

.banner_inr_lft_img{
  margin-bottom:-20px;
  position: relative;
}

.banner_inr_lft_img img{
  display:block;
  mix-blend-mode:multiply;
}

.banner_inr_lft{
  width:46.8%;
}

.banner_inr_rgt{
  width:49%;
  padding-bottom:85px;
}

.banner_inr_rgt img{
  display:block;
  margin:0 auto 10px;
}

.banner_inr_rgt img:first-child{
  mix-blend-mode:multiply;
}

.banner_cnt{
  margin-top:35px;
}

.banner_cnt h1{
  font-family: 'Barlow';
  font-size:48px;
  font-weight:300;
  line-height:58px;
  color:#928A85;
  margin-bottom:50px;
}

.banner_cnt p{
  font-family: 'Barlow';
  font-size:33px;
  font-weight:300;
  line-height:40px;
  color:#928A85;
  margin-bottom:40px;
}

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

.mobile_bnr_cnt{
  float:left;
  width:100%;
}

.mobile_bnr_title h1{
  font-family: 'Barlow';
  font-size:44px;
  font-weight:300;
  line-height:54px;
  color:#928A85; 
  text-align:center;
}
/* Banner Css End */

/* Distributors Section Css Start */
.distribution_main{
  float:left;
  width:100%;
  padding:86px 0 73px;
}

.distribution_main h2{
  font-family: 'Barlow';
  font-size:48px;
  font-weight:300;
  line-height:40px;
  color:#928A85;
  text-align:center;
}

.distribution_inr{
  padding:0 85px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  column-gap:70px;  
}

.distribution_cnt{
  display:flex;
  justify-content:space-between;
  padding:0 85px;
  margin-top:15px;
}

.distribution_cnt_lft{
  width:55%;
}

.distribution_cnt_rgt{
  width:40.5%;
}

.distribution_cnt_lft p{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:300;
  line-height:43px;
  color:#928A85;
  margin-bottom:56px;
}

.distribution_cnt_lft ul{
  padding-left:35px;
}

.distribution_cnt_lft ul li{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:300;
  line-height:43px;
  color:#928A85;
  list-style:disc;
}

.distribution_cnt_btn a{
  display:block;
  width:100%;
  padding:21px 80px;
  font-family: 'Barlow';
  font-size:44px;
  font-weight:300;
  line-height:53px;
  color:#928A85;
  border:2px solid #EBDDDC;
  border-radius: 50px;
  text-align:center;
  margin-bottom:42px;
  transition:all 0.5s;
}

.distribution_cnt_btn a:hover{
  background:#928A85;
  color:#ffffff;
  border:2px solid transparent;
}

.distribution_cnt_btn a:last-child{
  margin-bottom:0;
}
/* Distributors Section Css End */

/* Footer Css Start */
footer{
  float:left;
  width:100%;
  padding:54px 0 64px;
  background:#9A9088;
}

.footer_inr{
  padding:0 105px;
}

.footer_inr ul{
  display:flex;
  align-items:center;
  justify-content:space-between;
  column-gap:40px;
}

.footer_inr ul li a{
  display:flex;
  align-items:center;
  column-gap:21px;
  font-family: 'Barlow';
  font-size:35px;
  font-weight:300;
  line-height:42px;
  color:#272525;
}

.ftr_txt{
  text-align:center;
  margin-bottom:30px;
  text-align:center;
  font-family: 'Barlow';
  font-size: 32px;
  font-weight:300;
  line-height:42px;
  color: #272525;
  display: flex;
  justify-content: space-between;
  padding: 0 105px;
}

.ftr_txt a{
  text-align:center;
  font-family: 'Barlow';
  font-size: 32px;
  font-weight:300;
  line-height:42px;
  color: #272525;
  text-decoration:underline;
}

.ftr_txt ul{
  display:flex;
  gap:20px;
}
/* Footer Css End */

/* Inner Banner Css Start */
.inner_banner{
  float:left;
  width:100%;  
  background:#D3CDC6;
  margin-top:-114px;
  position:relative;
  z-index:-1;
}

.inner_bnr_row{
  position: relative;
  padding: 378px 0 63px;
}

.inner_bnr_row:before{
  content:'';
  position:absolute;
  top: -3px;
  left: 331px;
  width: 444px;
  height: 537px;
  background-image: url(../img/inr_bnr_shape.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.inner_bnr_cnt h1{
  font-family: 'Barlow';
  font-size:80px;
  font-weight:300;
  line-height:96px;
  text-align:center;
  color:#928A85;
  position: relative;
  z-index: 9999;
}
/* Inner Banner Css End */

/* Product Page Css Start */
.product_lnd_main{
  float:left;
  width:100%;
  padding:94px 0 108px;
}

.prdt_row_cnt{
  display:flex;
  align-items: center;
  column-gap:130px;
  justify-content:space-between;
  padding:0 85px;
}

.prdt_row_cnt_img{
  width:28.3%;
}

.prdt_row_cnt_txt{
  width:63.2%;
}

.prdt_row_cnt_txt p{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:300;
  line-height:43px;
  text-align:left;
  color:#9B9089;
}

.product_lnd_row{
  margin-bottom:42px;
}

.product_lnd_row:last-child{
  margin-bottom:0;
}

.prdt_row_list{
  margin-top:43px;
}

.prdt_rw_itm{
  display:flex;
  border: 1px solid #D6D2CC;
  margin-bottom:36px;
}

.prdt_rw_itm:last-child{
  margin-bottom:0;
}

.prdt_rw_itm_lft{
  width:34.2%;
  border-right: 1px solid #D6D2CC;
}

.prdt_rw_itm_rgt{
  width:67.3%;
}

.prdt_rw_itm_lft_img{
  text-align:center;
}

.prdt_rw_itm_rgt{
  padding:32px 0 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
}

.prdt_rw_itm_cnt{
  padding:0 70px 0 64px;
  width:100%;
}

.prdt_rw_itm_cnt h2{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:bold;
  line-height:43px; 
  color:#9B9089;
  margin-bottom:20px;
}

.prdt_rw_itm_cnt p{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:300;
  line-height:43px; 
  color:#9B9089;
  margin-bottom:13px;
}

.product_price{
  margin-bottom:13px;
}

.product_price p{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:300;
  line-height:43px; 
  color:#9B9089;
  margin-bottom:13px;
}

.product_price p strong{
  font-weight:600;
}

.prdt_rw_itm_cnt{
  padding-left:30px;
}

.prdt_rw_itm_cnt ul{
  padding-left:30px;
}

.prdt_rw_itm_cnt ul li{
  font-family: 'Barlow';
  font-size:36px;
  font-weight:300;
  line-height:43px; 
  color:#9B9089;
  list-style:disc;
}

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

.prdt_btm_btn{
  padding:0 35px;
  margin-top:50px;
  width: 100%;
}

.prdt_btn_rw{
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.add_cart_btn button{
  border:0;
  padding:11px 40px;
  background:transparent;
  font-family: 'Barlow';
  font-size:33px;
  font-weight:300;
  line-height:39px; 
  color:#BCB0B1;
  border-radius: 50px;
  font-weight: 600;
  min-width: 383px;
  cursor:pointer;
  transition:all 0.5s;
  border:1px solid #BCB0B1;
  letter-spacing: 4px;
}

.add_cart_btn button:hover{
  background:#EBDDDC;
  border:1px solid transparent;
  color:#BCB0B1;
}

.quantity_btn{
  border-radius: 15px;
  max-width: 356px;
  display: flex;
  align-items: center;
}

.quantity_btn label{
  background: #BCB0B1;
  padding: 14px 38px;
  font-family: 'Barlow';
  font-size: 33px;
  font-weight:600;
  line-height: 39px;
  color:#FFFFFF;
  border-top-left-radius: 11px;
  border-bottom-left-radius: 12px;
}

.quantity_btn input{
  padding: 13px 38px;
  font-family: 'Barlow';
  font-size: 33px;
  font-weight:500;
  line-height: 39px;  
  width: 100%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 12px;
  border: 1px solid #BCB0B1;
  color:#9B9089;
  text-align:center;
}
/* Product Page Css End */

/* Login Page Css Start */
.login_rgstr_bnr .inner_bnr_row{
  padding:178px 0 63px;
}

.login_rgstr_bnr .inner_bnr_row:before{width: 260px;height: 330px;}

.login_main {
  float:left;
  width:100%;
  background:rgb(228 221 215 / 21%);
  overflow: hidden;
  padding:160px 0;
}

.login_inr_main {
  padding: 70px 0 100px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.login_inr {
  background-color: #fff;
  max-width:600px;
  margin:0 auto;
  border-radius: 10px;
}

.login_inr .tabs {
  overflow: hidden;
  background:#9a9088;
  display: flex;
  padding-top: 30px;
  padding: 30px 50px 0px;
  border-radius: 10px;
}

.login_inr .tabs h3 a.active {
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  opacity: 1;
}

.login_inr .tabs h3 a {
  color: #ffffff;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight: 600;
  line-height:28px;
  display: block;
  margin-right: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  opacity: 0.5;
  letter-spacing: 1px;
}

.login_inr .login_cnt {
  padding: 30px 30px 50px;
}

.login_inr .frm_grp {
  margin-bottom: 30px;
  position: relative;
}

.login_inr .frm_grp_row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.login_inr .frm_grp label {
  color:#928A85;
  font-family: 'Barlow';
  font-size:18px;
  font-weight:600;
  line-height:28px;
  width: 100%;
}

.login_inr .frm_grp input {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  color:#928A85;
  font-family: inherit;
  padding: .8em 0 10px 0em;
  border: 0;
  font-weight: 500;
  border-bottom: 1px solid #e1e1e1;
  outline: 0;
  display: inline-block;
  font-size:16px;
  line-height:24px;
  margin: 0 0 .8em 0;
  padding-right: 2em;
  width: 100%;
  display: block;
  font-family: 'Barlow';
}

.login_inr .frm_grp input::placeholder{
  color:#928A85;
}

.login_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login_inr .forgot a {
  color:#6A6561;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight: 500;
  line-height:24px;
  text-align: right;
  padding: 10px 0;
}

.login_inr .login_submit button {
  cursor: pointer;
  padding: 12px 36px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #928A85;
  color: #ffffff;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.login_inr form .button:hover {
  background-color: transparent;
  border: 1px solid #928A85;
  color: #928A85;
}

.login_inr .back_btn a {
  color: #fff;
  cursor: pointer;
  padding: 12px 50px;
  border: 1px solid #928A85;
  border-radius:50px;
  background: transparent;
  color: #928A85;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.7s;
}

.login_inr .back_btn a:hover {
  background-color: #928A85;
  border: 1px solid transparent;
  color: #ffffff;
}

.login_cnt h2{
  font-family: 'Barlow';
  font-size:28px;
  font-weight: 600;
  line-height:38px;
  color: #9B9089;
  margin-bottom:30px;
  letter-spacing: 0.46px;
}

.frm_grp_checkbox{
  margin-top:15px;
}

.frm_grp_chbx_itm{
  display:flex;
  align-items:center;
  column-gap:10px;
  margin-bottom:5px;
}

.frm_grp_chbx_itm:last-child{margin-bottom:0;}

.login_inr .frm_grp .frm_grp_chbx_itm input{
  width:auto;
  margin-bottom:0;
  display:none;
}

.login_inr .frm_grp .frm_grp_chbx_itm label{
  position: relative;
  display:block;
  font-size:16px;
  color:#9B9089;
  cursor:pointer;
}

.login_inr .frm_grp .frm_grp_chbx_itm label:before{
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #928A85;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding:8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  margin-top:-2px;

}

.login_inr .frm_grp .frm_grp_chbx_itm input:checked ~ label:before{
  background:#928A85;
}

.login_inr .frm_grp .frm_grp_chbx_itm input:checked ~ label:after {
  content: '';
  display: block;
  position: absolute;
  top:7px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.register_checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom:15px;
}

.register_checkbox input {
  cursor: pointer;
  margin-top: 5px;
}

.register_checkbox label {
  font-family: 'Barlow';
  font-size:18px;
  font-weight:500;
  line-height:28px;
  color: #928A85;
  line-height: 21px;
  width: 100%;
  cursor: pointer;
  position:relative;
  cursor:pointer;
}

.register_checkbox input{
  display:none;
}

.register_checkbox label:before{
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #928A85;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding:8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  margin-top:-2px;
}

.register_checkbox input:checked ~ label:before{
  background:#928A85;
}

.register_checkbox input:checked ~ label:after {
  content: '';
  display: block;
  position: absolute;
  top:3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.register_note p{
  font-family: 'Barlow';
  font-size:18px;
  font-weight: 300;
  line-height:28px;
  color: #928A85;
  margin-bottom:15px;
}

.register_note p a{
  color: #9A9088;
  font-weight: 500;
}
/* Login Page Css End */

/* Contact Page Css Start */
.contact_bnr .inner_bnr_row{
  padding:178px 0 63px;
}
.contact_bnr .inner_bnr_row:before{width: 260px;height: 330px;}

.contact_us {
  position: relative;
  background:rgb(228 221 215 / 21%);
  overflow:hidden;
  float:left;
  width:100%;
  padding:160px 0;
}

.contact_inner{
  display:flex;
  width: 100%;
}

.contact_us .title{
  text-align:left;
}

.contact_us .title h2{
  font-family: 'Barlow';
  font-size:36px;
  font-weight: 600;
  line-height:42px;
  color: #9B9089;
  margin-bottom: 30px;
  letter-spacing: 0.46px;
}

.contact_us_left {
  width: 50%;
}

.contact_us_right{
  width: 50%;
  z-index:1;
  position: relative;
}

.contact_main{
  display:flex;
}

.contact_us .web_container {
  display: flex;
  width: 1215px;
  margin: 0 auto;
}

.contact_title img{
  position:absolute;
  left:0;
  top:14%;
}

.contact_title h3{
  color: #046399;
  font-family: 'Barlow';
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1px;
  margin-bottom:15px;
}

.contact_title h2 {
  color: #009b50;
  font-family:'Poppins';
  font-size: 42px;
  font-weight:300;
  line-height: 42px;
  text-transform: uppercase;
}

.contact_title p{
  color: #959595;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding:30px 0 40px;
}

.contact_us_left .contact_title span{
  position: relative;
  background-image: linear-gradient(to top, #4999ff  47%, transparent 0);
  background-size: 100% 75%;
  transition: background-size .5s;
}

.contact_form .form_group{
  margin-bottom:30px;
  position: relative;
}

.contact_form{
    margin-top:30px;
}

.contact_form .form_group:last-child{
  margin-bottom:0px;
}

.contact_form input{
  width:100%;
  height: 50px;
  padding:0 15px;
  border-radius: 7px;
  font-family: 'Barlow';
  border:0px solid #2657A6;
  background: #ffffff;
  background-blend-mode: normal;
  font-size: 16px;
  font-weight:500;
  transition:all 0.3s;
  color:#928A85;
  border:1px solid transparent;
}

.contact_form input::placeholder{
  color:#928A85;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight:500;
  line-height: 26px;
  opacity:1;
}

.contact_form input:focus, .contact_form textarea:focus{
  border:1px solid #928A85;
}


.contact_form textarea{
  width:100%;
  height:140px;
   font-family: 'Barlow';
  padding:15px 15px;
  border-radius: 7px;
  border:0px solid #2657A6;
  background: #ffffff;
  background-blend-mode: normal;
  resize:none;
  font-size: 16px;
  font-weight:500;
  transition:all 0.3s;
  color:#928A85;
}

.contact_form textarea::placeholder{
  color:#928A85;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight:500;
  line-height: 26px;
  opacity:1;
}

.contact_form .submit_btn input{
  color: #ffffff;
  font-family: 'Barlow';
  font-size:16px;
  font-weight: 500;
  line-height:26px;
  text-align: center;
  background: #27334d;
  border:1px solid transparent;
  padding:12px 36px;
  border-radius: 7px;
  cursor:pointer;
  transition:all 0.6s;
  width: auto !important;
  display:inline-block;
}

.contact_form .submit_btn input:hover{
  background:transparent;
  border:1px solid #27334d;
  color: #27334d;
}

.contact_us_right .contact_title span{
  color: #37769f;     
  font-size: 30px;
  font-weight:500;
  line-height: 36px;
}

.contact_us_inner {
  padding:0;
  margin-top:10px;
  width:100%;
  position: relative;
}

.contact_us_right .contact_us_right_content h6, .contact_us_right .contact_us_right_content h6 a{
  color: #ffffff;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.contact_us_right a, .contact_us_right .contact_us_right_content p{ 
  color:#6A6561;
  font-family: 'Barlow';
  font-size:18px;
  font-weight:500;
  line-height:36px;
  letter-spacing: 1px;
}

.contact_us_right_content a.contact_direction{
  color:#27334d;
  font-family: 'Barlow';
  font-size:18px;
  font-weight: 400;
  line-height:28px;
  letter-spacing: 1px;
  display:inline-block;
}

.contact_us_right_content a{
  display:flex;
  align-items:center;
  column-gap:15px;
}

.contact_us_right_content img{
/*  filter: brightness(0.7);*/
  display:block;
}

.contact_item .icon i{ 
  font-size: 24px;
}

.contact_item {
  display:flex;
  align-items: start;
  padding:10px 0px;
}

.get_direction_btn a {
  cursor: pointer;
  padding: 12px 36px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #928A85;
  color: #ffffff;
  font-family: 'Barlow';
  font-size:18px;
  font-weight:500;
  line-height:28px;
  text-align: center;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top:15px;
  display:inline-block;
}

.get_direction_btn a:hover{
  background-color: transparent;
  border: 1px solid #928A85;
  color: #928A85;
}

.contact_item:last-child{
  margin-bottom:0;
}

.contact_us_right_content .direction {
  margin:30px 0px;
}

.contact_us_right_content .direction a{
  color:#4999FF;
  font-size: 20px;
  font-weight:400;
  text-decoration: underline;
  letter-spacing: 1px;
}

.contact_us_right .contact_title h3{
  color:#fff;
}

.contact_right_btm{
  margin-top:30px;
}

.contact_right_btm a{
  color: #ffffff;
  font-family: "Josefin Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;   
  border-radius: 7px;
  background: #009b50;
  display:inline-block;
  transition:all 0.6s;   
  border:1px solid transparent;    
}

.contact_right_btm a:hover{
  background:transparent;
  border:1px solid #ffffff;
  color:#ffffff;
}

.contact_right_btm a:first-child{
  padding:17px 33px;
  margin-right:20px;
}

.contact_right_btm a:last-child{
  padding:17px 20px;
}

.submit_btn button {
  cursor: pointer;
  padding: 12px 36px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #928A85;
  color: #ffffff;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.submit_btn button:hover {
  background-color: transparent;
  border: 1px solid #928A85;
  color: #928A85;
}
/* Contact Page Css End */

/* Blog Page Css Start */
.press_main{
  float:left;
  width:100%;
  margin:80px 0;
  position: relative;
}

.press_inr{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  column-gap:50px;
  row-gap:40px;
}

.press_inr .quote {
  padding: 0px;
  border: solid 1px #98a9a5;
  background: #ffffff;
  border-radius: 9px;
  transition: all 0.7s;
}

.blog_img {
  position: relative;
}

.press_inr .quote .blog_img img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 280px;
  object-fit: cover;
  display: block;
}

.blog_content {
  padding: 30px 20px;
}

.blog_date {
  width: 90px;
  background-color: #6A6561;
  color: #ffffff;
  font-family: 'Barlow';
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  height:23px;
  line-height:23px;
  text-align: center;
}

.blog_content h3 {
  color:#6A6561;
  font-family: 'Barlow';
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  margin: 10px 0 10px;
}

.press_inr .blog_content h3{
  min-height: 68px;
}

.blog_content p {
  color:#9B9089;
  font-family: 'Barlow';
  font-size:20px;
  font-weight: 400;
  line-height:30px;
  margin: 0 0 20px;
}

.press_inr .blog_content p {
  min-height: 140px;
}

.blog_Read_more span {
  color: #6A6561;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.blog_Read_more img {
  margin-left: 10px;
}

.press_inr_main {
  float:left;
  width:100%;
  margin:80px 0;
  position: relative;
}

.press_inr_dtl {
  max-width:1250px;
  margin: 0 auto;
}

.press_bck a {
  color:#6A6561;
  font-family: 'Barlow';
  font-size:18px;
  font-weight: 600;
  line-height:26px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press_bck i {
  margin-left: 5px;
}

.press_inr_img {
  margin: 20px 0 30px;
}

.press_inr_img img {
  width: 100%;
  border-radius: 10px;
}

.press_info h2 {
  color:#6A6561;
  font-family: 'Barlow';
  font-size: 45px;
  font-weight:600;
  line-height: 56px;
  margin-bottom: 10px;
}

.press_info h3 {
  color: #6A6561;
  font-family: Poppins;
  font-size: 24px;
  font-weight:600;
  line-height: 34px;
  margin-bottom: 30px;
}

.press_info h5 {
  color:#6A6561;
  font-family: 'Barlow';
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.press_info span {
  color:#6A6561;
  font-family: 'Barlow';
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 27px;
  text-transform: uppercase;
}

.press_info p {
  color:#9B9089;
  font-family: 'Barlow';
  font-size: 22px;
  font-weight:400;
  line-height: 32px;
  margin-bottom: 30px;
}

.press_info ul{
  padding-left:20px;
  margin-bottom:30px;
}

.press_info ul li {
  color:#9B9089;
  font-family: 'Barlow';
  font-size: 22px;
  font-weight:400;
  line-height: 32px;
  list-style:disc;
  margin-bottom:5px;
}


.press_info p a {
  color:#6A6561;
}

.release_btn {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}

.release_btn a.release_prev {
  cursor: pointer;
  padding: 12px 36px;
  border:2px solid #928A85;
  border-radius: 50px;
  background:transparent;
  color: #928A85;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  display: inline-block;
}

.release_btn a.release_next {
  cursor: pointer;
  padding: 12px 36px;
  border:2px solid #928A85;
  border-radius: 50px;
  background:transparent;
  color: #928A85;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight:600;
  line-height: 28px;
  text-align: center;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  display: inline-block;
}

.release_btn a.active, .release_btn a:hover{
  color: #ffffff;
  background: #928A85;
  border: 2px solid #928A85;
}
.inactive{
  opacity: 0.5;
  pointer-events: none;
}
.login-form .error-border {border-bottom: 1px solid red !important;}
.contact_form .error-border{border: 1px solid red !important}


.header_rgt_icon{display:none;}
.pop-up-page {
  width:400px;
  display: none;
  float: right;
  position: absolute;
  z-index:9999;
  right: 0;
  top:64px; 
  background-color: white;
  padding: 15px 15px 20px;
  border: solid 1px #707070;
/*  box-shadow: -2px 0px 5px rgba(35, 31, 32, 40);*/
  box-sizing: border-box;
  border-radius: 10px;
}

.pop-image-close img {
  width: auto;
  float: right;
  margin-bottom: 10px;
}

.pop-up-page p {
  width: 100%;
  float: left;
  letter-spacing:1px;
  font-family: 'Barlow';
  font-size:24px;
  font-weight:600;
  color:#928A85;
  margin-bottom:15px;
  line-height:30px;
  text-align: left;
}

.cart-details {
  width: 100%;
  float: left;
}

.cart_icon a, .logout_ic a{
  display:block;
  text-align:center;
}

.cart_icon a img, .logout_ic a img{
  max-height: 28px;
}

.cart_icon{
  position:relative;
}

.cart_icon p, .logout_ic a p{
  font-family: 'Barlow';
  font-size:16px;
  line-height:20px;
  font-weight:500;
  color: #6A6561;
}

.cart-details .primary {
  width: 100%;
  float: left;
  justify-content: space-between;
  display: flex;
  margin-top: 20px;
}

.cart-details .primary button {
  padding: 11px 18px;
  background: transparent;
  font-family: 'Barlow';
  font-size: 20px;
  line-height: 27px;
  color: #BCB0B1;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #BCB0B1;
}

.cart-details .primary button:hover{
  background: #BCB0B1;
  color: #ffffff;
}

#top-cart-btn-checkout {
  background: #BCB0B1;
  color: #ffffff;
}

#top-cart-btn-checkout:hover{
  border: 1px solid #BCB0B1;
  background:transparent;
  color: #BCB0B1;
}

.cart-details ul li {
  width:100%;
  float: left;
  margin-bottom:20px;
  display: flex;
  align-items: center;
  justify-content:space-between;
  column-gap:15px;
  font-family: 'Barlow';
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing:0.36px;
  color: #6A6561;
}

.popup_total{
  margin:30px 0 0;
  float:left;
  width:100%;
}

.popup_total ul li{
  margin-bottom:0;
  padding:10px 0;
  border-bottom:1px solid #D6D2CC;
}

.popup_total ul li:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.popup_total ul li h3{
  font-family: 'Barlow';
  font-size:22px;
  font-weight: bold;
  line-height:28px;
  color:#928A85;
}

.popup_total ul li h4{
  font-family: 'Barlow';
  font-size:22px;
  font-weight:500;
  line-height:28px;
  color:#9B9089;
}

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

.cart-image-box img{
  max-width:140px;
}

.pop-up-text-data{
  width:calc(100% - 140px);
}

.pop-up-text-data h3 a {
  font-family: 'Barlow';
  font-size:20px;
  line-height:24px;
  font-weight: 500;
  letter-spacing:0.36px;
  color: #6A6561;
  transition: all 0.5s;
  position: relative;
  padding:0;
}

.popup_price_sec{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.pop-up-qty{
  font-family: 'Barlow';
  font-size:20px;
  font-weight:500;
  line-height:30px;
  text-align: left;
  color: #9B9089;
  margin: 10px 0;
}

.popup_price p{
  font-family: 'Barlow';
  font-size:20px;
  font-weight:500;
  line-height:30px;
  text-align: left;
  color: #9B9089;
  margin: 10px 0;
}

.pop-up-text-data > a {
  padding:5px 12px;
  background: #BCB0B1;
  font-family: 'Barlow';
  font-size:16px;
  line-height:24px;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #BCB0B1;
  display:inline-block;
}

.view_save_table {
  float:left;
  width:100%;
  padding:100px 0;
  background:rgb(228 221 215 / 21%);
}

.order_pg_inr{
  max-width:1150px;
  margin:0 auto;
}

.order_title h2 {
  font-family: 'Barlow';
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  color: #9B9089;
  margin-bottom: 30px;
  letter-spacing: 0.46px;
}

.view_save_table .tga {
  width: 100%;
  border: 0;
}

.view_save_table .tga th {
  border: 0;
}

.tga thead th {
  background:#9a9088;
  color: #ffffff;
  font-family: 'Barlow';
  font-size:20px;
  font-weight:500;
  line-height:28px;
  text-align: center;
  padding: 14px 12px;
}

.tga tbody td:first-child {
  border: 0;
}

.view_save_table .tga td {
  color: #808080;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight:500;
  line-height:26px;
  text-align: center;
  background: #FCFCFC;
  border: 0;
  padding: 27px 15px;
}

.view_save_table .tga td span{
  display:block;
}

.view_save_table .tga td p{
  color: #808080;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight:500;
  line-height:26px;
  text-align: center;
  margin-bottom:10px;
}

.prev_order_edit a{
  display:inline-block;
}

/* Cms Page Css Start */
.cms_main{
  float:left;
  width:100%;
  margin:80px 0;
}

.cms_inner_cnt h2 {
  color: #6A6561;
  font-family: 'Barlow';
  font-size: 45px;
  font-weight: 600;
  line-height: 56px;
  margin-bottom:30px;
}

.cms_inner_cnt p {
  color: #9B9089;
  font-family: 'Barlow';
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 30px;
}

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

.cms_inner_cnt ul{
  padding-left: 20px;
  margin-bottom: 30px;
}

.cms_inner_cnt ul li {
  color: #9B9089;
  font-family: 'Barlow';
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  list-style: disc;
  margin-bottom: 5px;
}

.cms_inner_cnt ol{
  padding-left: 20px;
  margin-bottom: 30px;
}

.cms_inner_cnt ol li {
  color: #9B9089;
  font-family: 'Barlow';
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  list-style: auto;
  margin-bottom: 5px;
}
/* Cms Page Css End */

/* 404 Page Css Start */
.error_main {
  float:left;
  width:100%;
  margin:80px 0;
}

.error_inr h2 {
  color:#6A6561;
  font-family: 'Barlow';
  font-size: 42px;
  font-weight:600;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
}

.error_dtl {
  margin: 40px auto 0;
  max-width: 540px;
  text-align: center;
  border-top: 1px solid #959595;
}

.error_dtl p {
  color: #6A6561;
  font-family: 'Barlow';
  font-size: 22px;
  font-weight:500;
  line-height: 32px;
  padding: 28px 0 30px;
}

.error_dtl a{
  cursor: pointer;
  padding: 12px 36px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: #928A85;
  color: #ffffff;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  transition: all 0.7s;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}

.error_dtl a:hover {
  background-color: transparent;
  border: 1px solid #928A85;
  color: #928A85;
}

.thank-details{
  border-top:0;
}

.thank-details p{
  padding-top:0;
}

.thank-details p a{
  padding:0;
  background:transparent;
  text-transform:initial;
  color:#9A9088;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  border:0;
}

.thank-details p a:hover{
  border:0;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0; 
}

.vali, .vali2{
  position: absolute;
  color: red;
  right: 15px;
  top: 14px;
  font-size: 16px;
  font-weight:500;
  font-family: 'Barlow';
}

.vali2{
  top:initial;
  bottom:10px;
}
.cart_count{
  position: absolute;
  top: -15px;
  background:#9b9089;
  color: #fff;
  padding: 3px 10px 5px;
  border-radius: 50%;
  line-height: normal;
  right: -15px;
  font-family: 'Barlow';
  font-size: 16px;
  font-weight: 500;
}
.contact_us_right_content {
  color: #6A6561;
  font-family: 'Barlow';
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 1px;
}

.product_price p.price_amt{
  max-width: 383px;
  text-align: center;
}

.product_price p.price_amt span{
  font-size:24px;
}

.prdt_gallery{
  margin-top:50px;
  padding:0 30px;
  width: 100%;
}

#gallery {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

a.image-popup-vertical-fit {
  cursor: -webkit-zoom-in;
}

.gallery-item {
  position: relative;
  z-index: 10;
}

.inside {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.inside img {
  float: left;
  width: 100%;
/*  height: 380px;*/
  object-fit: cover;
}

.magnific-img img {
    width: 100%;
    height: auto;
}
.mfp-bottom-bar,*{
    font-family: 'Roboto';
}
.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
/*button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}*/
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
  opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur{
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder s.mfp-close {
    cursor:pointer;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

.gallery_slider{
  margin-bottom:0 !important;
}

.gallery_slider .slick-dots{
  position:initial;
  margin-top:10px;
}

.gallery_slider .slick-dots li button{
  width:15px;
  height:15px;
  border-radius:50%;
  background:transparent;
  border:1px solid #9B9089;
}

.gallery_slider .slick-dots li.slick-active button{
   background:#bcb0b1;
   border:1px solid transparent;
}

.gallery_slider .slick-dots li button:before{
  content:none !important;
}