
@font-face {
  font-family: 'Montserrat, sans-serif';
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

* {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 1px transparent;
}

html, body {
  font-family: 'Montserrat, sans-serif';
  color: #333;
  font-size: 16px;
}

body {
  font-family: 'Montserrat, sans-serif';
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
main.main-body{
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat, sans-serif';
  font-weight: 500;
}

p, label {
  font-family: 'Montserrat, sans-serif';
  font-weight: 500;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  color: #000;
}
a:hover{
  text-decoration: none;
  color: #000;

}
h1, h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 28px;
}

.btn {
  border-radius: 0;
  padding: 0.100rem 0.375rem;
}

.btn-primary {
  color: #fff;
  background-color: #523745;
  border-color: #190911;
  padding: 0.5rem 3rem;
  border-radius: 4px;
}

.btn-primary:hover {
  color: #fff;
  background: #bc8f2d;
  border-color: #bc8f2d;
}


.btn-primary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-primary:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #523745 !important;
  border-color: #523745 !important;
}

.btn-secondary {
  color: #fff;
  background-color: #523745;
  border-color: #523745;
  border-radius: 0;
}

.btn-secondary:hover {
  color: #523745;
  background: #fff;
  border-color: #523745;
}

.btn-secondary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-secondary:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #523745 !important;
  border-color: #523745 !important;
}

.btn-info {
  color: #fff;
  background-color: #523745;
  border-color: #fff;
}

.btn-info:hover {
  color: #523745;
  background: #fff;
  border-color: #523745;
}

.btn-info:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-info:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff !important;
  border-color: #523745 !important;
}

.btn-outline-info {
  color: #fff;
  border-color: #fff;
}

.btn-outline-info:hover {
  color: #fff;
  background: #523745;
  border-color: #fff;
}

.btn-outline-info:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-outline-info:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #fff !important;
}
.col-md-3.col-12.list {
    margin-bottom: 30px;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #bc8f2d;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(253, 244, 224);
}
.BreadcrumbList {
    position: relative;
    width: 100%;
    float: left;
    margin-top: 1rem;
    right: 0;
    left: auto;
    margin-bottom: 30px;
    border-bottom: 1px solid #bc8f2d;
}
.fa-chevron-right:before {
    content: "\f054";
    font-size: 9px;
    padding: 5px;
    color: #bc8f2d;
}
.BreadcrumbList a {
    color: #543846;
}
.det-sec.mt-3 ul li a{
  transition: all 0.5s ease;
  text-decoration: none;
  color: #533745;
}
.det-sec.mt-3 ul li a:hover {
    padding-left: 8px;
    transition: all 0.5s ease;
}
/* logo loader*/
 .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.text {
  color: #fbae17;
  display: inline-block;
  margin-left: 5px;
}

.bounceball {
  position: relative;
  display: inline-block;
  height: 37px;
  width: 15px;
}
.bounceball:before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fbae17;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: bounce 500ms alternate infinite ease;
          animation: bounce 500ms alternate infinite ease;
}

@-webkit-keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}

@keyframes bounce {
  0% {
    top: 30px;
    height: 5px;
    border-radius: 60px 60px 20px 20px;
    -webkit-transform: scaleX(2);
            transform: scaleX(2);
  }
  35% {
    height: 15px;
    border-radius: 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    top: 0;
  }
}

.form-control{
      border: 1px solid #533745;
          padding: 0.5rem .75rem;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.shp-address-form {
    padding: 15px;
    border: 1px solid #bc8f2d;
}
/* logo loader*/
.cat-sec {
  width: 100%;
  float: left;
  background: #f3f3f3;
  padding: 40px 0 30px;
}
.serv-sec {
    overflow: hidden;
}
.cat-sec h1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 900;
}
.news-sec h1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 900;
  color: #543846;
}
.news-sec h1:after {
 position: absolute;
    content: '';
    display: block;
    width: 48px;
    height: 5px;
    background-color:#bc8f2d;
    bottom: 0;
}
.news-sec {
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}
.news-box a.btn.btn-primary {
    padding: 0.5rem 3rem;
    margin-top: 42px;
}
.news-box {
    background: #fff;
    box-shadow: 4px 5px #dddddd3d;
        padding: 10px 15px;
    margin: 15px 0px;
    
    border: 1px solid #bc8f2d;
    border-left: 8px solid #bc8f2d;
    transition: all 0.5s ease;
}
.news-box:hover {
    border: 1px solid #bc8f2d;
    border-left: 8px solid #bc8f2d;
    transform: scale(1) translate3d(0,0,0);
    box-shadow: 12px 17px 10px 0 rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}
.news-box h3 {
    display: inline-block;
        text-transform: uppercase;
    font-weight: 700;
}
.news-box span i {
    margin: 10px;
}
.news-box p {
    font-size: 20px;
    font-weight: 400;
}
.media-box {
    width: 100%;
    height: auto;
    padding: 15px;
    background: #fffdf9;
    float: left;
    border: 1px solid #533745;
}
.media-box img {
    width: 50%;
    margin: 0 25%;
}
.media-box h3 {
    font-size: 28px;
    text-align: center;
    padding: 0px 0 20px 0;
}
.swiper-pagination-bullet {
    display: block!important;
    width: 20px!important;
    height: 20px!important;
    opacity: 1!important;
    box-shadow: inherit!important;
    margin: 5px 2px!important;
    border-radius: 50%!important;
    background: #bc8f2d!important;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 50%;
    left: 30px;
}
.swiper-pagination-bullet:hover {
    opacity: 1;
    border-width: 3px!important;
    border-style: solid!important;
    border-color: #bc8f2d!important;
    border-image: initial!important;
    background: #533745!important;
}
.cat-sec ul.lSPager.lSpg {
  top: 20px;
}
ul.cont-form-wp-all.row input {
    display: block;
}
.cat-sec .lSAction {
  display: none !important;
}
.wrapper.cf {
    display: none;
}
.cat-sec .lSSlideOuter .lSPager.lSpg > li a {
  height: 3px;
  width: 40px;
  background: #8d8d8d;
}

.cat-sec .lSSlideOuter .lSPager.lSpg > li.active a, .cat-sec .lSSlideOuter .lSPager.lSpg > li:hover a {
  background: #bc8f2d;
}
.cat-sec h1 {
    color: #543846;
}
.cat-sec .lSSlideOuter.lSrtl {
  padding-bottom: 15px;
}
.cat-box {
  width: 100%;
  float: left;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  border: 1px solid #533745;
  text-align: center;
  background: #fff;
  min-height: 420px;
}

.cat-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
          
}
.modal{
      z-index: 9999;
}

.cat-box .cat-img {
  width: 100%;
  float: left;
  min-height: 110px;
}

.cat-box .cat-img img {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  padding: 20px;
  width: 100px;
      border-bottom: 1px solid #ddd;
          min-height: 110px;
}

.cat-box .cat-txt {
  width: 100%;
  float: left;
  bottom: 0;
  background: #fff;
  padding: 12px 15px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
div#bar-inner {
    background: #533745;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 4px 10px;
    color: #fff;
    margin: 10px;
    float: right;
}
div#bar-inner a{
    color: #fff;
}
.cat-box .cat-txt h4 {
  color: #523745;
  font-family: "Montserrat, sans-serif";
  margin-bottom: 10px;
  font-weight: 600;
  min-height: 56px;
}
span.price-det-old {
    display: block;
    color: #909090;
    font-weight: 600;
    font-size: 12px;
    line-height: 10px;
}
span.price-det-new {
    display: block;
    font-weight: 800;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}
.price_details2 {
    margin: 15px 0px;
    float: right;
        width: 100%;
}

.price_details2 input.btn.btn-default.btn-payment{
  width: 100%;
}
.price_details2 input.btn.btn-default.btn-payment:hover{
  width: 100%;
}
.alert-dismissible .close {
    padding: 1rem 1.25rem;
}
.banner-sec {
  width: 100%;
  float: left;
  position: relative;
}

.banner-box {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.banner-box:hover .banner-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.banner-box .banner-img {
  width: 100%;
  float: left;
}

.banner-box .banner-img img {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.banner-box .banner-txt {
  background: rgba(255, 255, 255, 0.5);
  padding: 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.banner-box .banner-txt h3 {
  font-size: 32px;
  color: #523745;
  margin: 0;
}

.arrival-sec {
  width: 100%;
  float: left;
  padding-bottom: 25px;
}

.arrival-sec h2 {
  color: #523745;
}

.arrival-sec .lSAction > .lSNext {
  background: none;
}

.arrival-sec .lSAction > .lSNext:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 38px;
  color: #523745;
}

.arrival-sec .lSAction > .lSPrev {
  background: none;
}

.arrival-sec .lSAction > .lSPrev:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  font-size: 38px;
  color: #523745;
}

.arrival-sec .lSAction > a {
  top: 40%;
}

.arrival-sec .lSAction > .lSPrev {
  left: -5%;
}

.arrival-sec .lSAction > .lSNext {
  right: -5%;
}

.arrival-sec .lSSlideOuter .lSPager.lSpg > li a {
  height: 3px;
  width: 40px;
  background: #8d8d8d;
}

.arrival-sec .lSSlideOuter .lSPager.lSpg > li.active a, .arrival-sec .lSSlideOuter .lSPager.lSpg > li:hover a {
  background: #bc8f2d;
}

.arrival-sec .lSSlideOuter.lSrtl {
  padding-bottom: 15px;
}

.arrival-sec ul.lSPager.lSpg {
  top: 0;
}
ul#category {
    height: 100%!important;
}
.new-box {
  width: 100%;
  float: left;
  position: relative;
  padding: 15px;
}
.cat-box p {
       color: #333;
    font-weight: 600;
    line-height: 18px;
    width: 70%;
    margin: 15px 15%;
    min-height: 100px;
}
.new-box .new-img {
  width: 100%;
  float: left;
}
input.btn.btn-default.btn-payment{
  position: relative;
  overflow: hidden;
  padding: 6px;
  display: block;
  width: 300px;
  background: linear-gradient(#fdda86 0px, #e19d3c 100%);
  color: #000;
  font-size: 18px;
  border: 1px solid #e19d3c;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  border-radius: 2px;
  transition: 0.75s ease border-color;
}

input.btn.btn-default.btn-payment:after {
  transform: translate(-50%, -50%);
  content: "";
  background: #e19d3c;
  width: 0px;
  height: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
}
input.btn.btn-default, a.btn.btn-default {
    width: 100%;
    background: #543846;
    color: #fff;
    border: 1px solid #bc8f2d;
    margin-bottom: 30px;
    height: 40px;
    border-radius: 4px;
    padding: 8px 40px;
    box-shadow: 0 1px 4px rgb(206, 195, 175);
}
td.cap-details-cell-1 img {
    display: block;
    margin-left: 5px;
}
td.cap-details-cell-1 a {
    color: #000;
}
ul.item-limiter {
    float: right;
    margin-bottom: 30px;
}
.smpl-shpng-crt {
    margin: 30px 0px;
}
input.btn.btn-default:hover, a.btn.btn-default:hover {
    width: 100%;
    background: #bc8f2d;
    color: #543846;;
    border: 1px solid #543846;;
}
input.btn.btn-default.btn-payment:hover {
  background: #e19d3c;
width: 300px;
}
input.btn.btn-default.btn-payment:focus {
  outline: none;
  border-color: #b16a02;
  width: 300px;
}
input.btn.btn-default.btn-payment:focus:after {
  animation: anim-out 0.75s;
  animation-fill-mode: forwards;
}
table#shopingcartheader {
    border: 1px solid #523745;
}
.table td, .table th{
      vertical-align: middle;
      border-top: 1px solid #523745;
      border-bottom: 1px solid #523745;
}
.table tbody+tbody {
    border: 1px solid #533745;
}
.pro-image {
    float: left;
    margin-right: 20px;
}
.cap-pro-name h5 a{
    font-size: 24px;
    color: #000;
}
.cap-pro-image img {
    width: 70px;
    height: auto;
}
.login_wrapper_outside {
    width: 40%;
    margin: 30px auto;
    -webkit-box-shadow: 2px 2px 20px rgba(15, 28, 35, 0.22);
    box-shadow: 2px 2px 20px rgba(15, 28, 35, 0.22);
    background: #fff9ef;
    padding: 30px;
    
    border: 1px solid #bea26b;
}
input.btn.btn-default.btn-login {
    width: 100%;
    display: block;
    margin: 15px 0px; 
}
a.btn.btn-default.btn-login.btn-google {
    background: #ea4335;
    color: #fff;
    border-color: #ea4335;
    outline: none !important;
    width: 100%;
    display: block;
    height: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgb(206, 195, 175);
    padding: 8px 40px;
    margin-top: 8px;
}
a.btn.btn-default.black-btn.btn-login{
    width: 100%;
    background: #bc8f2d;
    color: #fff;
    border: 1px solid #543846;
}
a.btn.btn-default.black-btn.btn-login:hover{
    width: 100%;
    background: #543846;
    color: #fff;
    border: 1px solid #bc8f2d;
}
a.btn.btnfacebook.btn-login.btn-facebook{
    background: #3b5998;
    color: #fff;
    border-color: #3b5998;
    margin-top: 8px;
    height: 40px;
    width: 100%;
    border-radius: 4px;
    outline: none !important;
    padding: 8px 40px;
}
.new-box .new-img img {
  width: 100%;
}
.shipping-cart-main-wp.shipping-cart-mob {
    display: none;
}
.new-box .new-txt {
  text-align: center;
  width: 100%;
  float: left;
}

.new-box .new-txt h4 {
  font-size: 22px;
  color: #000;
  padding-top: 20px;
  font-family: "Montserrat, sans-serif";
}

.new-box .new-txt h5 {
  font-size: 16px;
  color: #7d7d7d;
  margin-bottom: 20px;
  font-family: "Montserrat, sans-serif";
}

.new-box .new-txt label {
  font-family: "Montserrat, sans-serif";
  font-size: 18px;
  color: #bc8f2d;
}

.brand-sec {
  width: 100%;
  float: left;
  background: #f3f3f3;
  padding-top: 40px;
}

.brand-sec h2 {
  color: #523745;
}

.brand-sec label {
  font-style: italic;
  font-size: 22px;
  color: #523745;
  font-family: "Montserrat, sans-serif";
  direction: ltr;
}

.brand-sec .brand-item {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.brand-sec .brand-item:focus {
  outline: none;
}

.brand-sec .brand-item img {
  width: 100%;
  border: 1px solid #eaeaea;
}

.enquiry-sec {
  width: 100%;
  float: left;
  background: #523745 url(../images/enqbg.png) no-repeat;
  min-height: 380px;
  padding-top: 90px;
  background-position-y: center;
}

.enquiry-sec h2, .enquiry-sec p {
  color: #fff;
}

.enquiry-sec .btn {
  min-width: 200px;
  margin-top: 10px;
}

.back-top {
  width: 100%;
  float: left;
  text-align: center;
  padding: 12px;
  background: #06283c;
}

.back-top a {
  color: #fff;
  font-size: 18px;
  font-family: "Montserrat, sans-serif";
  text-decoration: none;
}

header {
  min-height: 95px;
  background: #fff;
  width: 100%;
  float: left;
  position: relative;
  -webkit-box-shadow: -4px 9px 15px -9px #7d7d7d;
          box-shadow: -4px 9px 15px -9px #7d7d7d;
          z-index: 9999;
}

header .header-top {
  width: 100%;
  float: left;
  height: 50px;
  position: relative;
}

header .header-top .nav-log {
  float: left;
  width: 100%;
  padding: 8px 0;
}

header .header-top .nav-log img {
      height: 50px;
    z-index: 100000;
    position: absolute;
        margin: 15px 0px;
}

header .header-bottom {
  width: 100%;
  float: left;
  position: relative;
  background: #fff;
}

header .header-bottom .nav-head {
  float: right;
  padding: 3px 0;
}

header .header-bottom .header-nav {
  width: 100%;
  float: left;
}

header .header-bottom .gold-rate {
  float: right;
  padding: 9px 0;
}

header .header-bottom .gold-rate .dropdown-menu {
  background: #2d4d5f;
  border: none;
  border-radius: 0;
  padding: 0;
}

header .header-bottom .gold-rate .dropdown-menu li {
  border-bottom: 1px solid #38596b;
}

header .header-bottom .gold-rate .dropdown-menu li a {
  color: #fff;
  display: block;
  padding: 8px 10px;
  text-decoration: none;
  font-size: 14px;
}

header .header-bottom .gold-rate .dropdown-menu li a:hover {
  background: #523745;
}
.header-bottom  a.nav-cart-item.acc {
    display: none;
}
.header-bottom a.nav-cart-item {
    display: none;
}
.header-bottom.nav-fix ul li a.nav-cart-item.acc {
    display: block;
    width: 50px;
}
.header-bottom.nav-fix ul li a.nav-cart-item {
    display: block;
    width: 50px;
}
.header-bottom.nav-fix ul li a.nav-cart-item.acc img {
    
    width: 50px;
}
.header-bottom.nav-fix ul li a.nav-cart-item img{
    margin: 0;
    width: 50px;
}
.header-bottom.nav-fix a.nav-cart-item h6{
  display: none;
}
.header-bottom.nav-fix a.nav-cart-item .cart-count{
        position: absolute;
    left: 50px;
    bottom: -10px;
    background: #333;
    padding-top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    line-height: 15px;
    color: #fff;
    text-align: center;
    font-size: 10px;
}
.mainnav {
  margin: 0 auto;
}

li {
  list-style: none;
}

li a {
  text-decoration: none;
}

.dropdown {
  position: absolute;
  width: 150px;
  top: 41px;
  left: 0;
  background: #bc8f2d;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transition: ease-out .35s;
  -moz-transition: ease-out .35s;
  -webkit-transition: ease-out .35s;
  box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.1);
}
h4.req-box {
    width: 100%;
    float: left;
    background: #fbf2e1;
    height: auto;
    padding: 10px;
    color: #000;
    border: #533745 1px solid;
    border-radius: 4px;
    margin-top: 15px;
}
.footer-bottom a {
    color: #543846;
}
.det-sec.mt-3 .form-control{
      border: #533745 1px solid;
      color: #333;
}
h4.req-box i {
    font-size: 18px;
    margin-right: 15px;
}
/*-- side nav*/
.accord-pan {
    margin-bottom: 15px;
    border: 1px solid #533745;
}
.accord-pan .panel span {
    margin-right: 10px;
    display: block;
}
.accord-pan .panel a {
    display: block;
}
button.accordion:focus {
    outline: none;
}
.accord-pan .panel i {
    margin-right: 10px;
}
.accordion {
  background-color: #fff;
  color: #533745;
  border: 1px solid #533745;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
button.accordion:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0fe";
    color: #533745;
    font-weight: bold;
    float: left;
    margin-right: 25px;
    margin-left: 5px;
}
button.accordion.active:after{
    content: "\f146";
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
.accord-pan .panel {
  padding: 20px;
  background-color: white;
  border-radius: 0px;
  border-top: 1px solid #533745;
  display: none;
  overflow: hidden;
  margin-bottom: 0px
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidenav a:hover {
  color: #f1f1f1;
}
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
.head-wrapper{
	width:100%;
	height:100px;
	float:left;
}

.head-wrapper li{ list-style:none;}
.nav-left {
    height:100px;
    background:rgba(0,153,204,.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20%;
}
.nav-right {
    height:100px;
    background:rgba(0,153,204,.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-center {
    width:408px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin:0 auto;
	padding: 8px 0;
}
.logo{ width:100%; height:auto;}
.logo img{ width:100%; height:auto;}
.logo2{ width:200px; height:auto; float:left;}
.logo2 img{ width:100%; height:auto; display:none;}
.head-wrapper a{ color:#000!important;letter-spacing:1px;}
.header-inner{width:92%; height:auto; float:left;}
.header-cont{ width:100%; height:auto; float:left;display: flex;justify-content: space-between;}
.navone{
	width: 500px;
	height: auto;
	float: left;
}
.navtwo{
	width: 42%;
    height: auto;
    float: left;
}
.navthree {
    width: 500px;
    height: auto;
    float: right;
}
.nav-icon {
	width:70px;
    height: 100px;
    float: left;
    background: rgba(0,153,204,.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-iconright {
    width:70px;
    height: 100px;
    float:right;
    background: rgba(0,153,204,.2);
	border-right: .11em solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-icon img{ 
	width:40px; height: auto;
}
.flag-ar img{ width:80px; height:auto;
}
.nav-phone h4 i {
  color: #533745;
  transform: rotate(140deg);
  font-size:14px;
  height: 30px;
  
	font-size: 14px;
	text-align: center;
	padding-top: 10px;
}
.nav-phone h4 {
    font-size:22px;
        line-height: 38px;
        margin-bottom: 0;
}
.nav-phone p{
   font-size:26px;
    line-height: 20px;
    display: inline-block;
    font-weight: 300;
}
.nav-login a i {
   color:#bc8f2d;
    font-size: 19px;
    padding-top: 2px;
}
.nav-login a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    text-align: center;
}

.btn-lg {
    font-size: 16px;
    padding-top: 10px;
}
.nav-mobile {
  color: #FFF;
  padding: 0;
  margin: 0;
  cursor: auto;
  font-size: 18px;
  list-style-type: none;
}
.nav-mobile:after {
  content: "";
  display: table;
  clear: both;
}
.nav-mobile svg {
    height: 40px;
    width: 65px;
    top: 0;
    position: absolute;
}
.nav-mobile svg path {
    fill: #e4cc94;
}
.nav-mobile svg.icon-close {
  display: none;
  padding: 10px;
  z-index: 9999;
}
.nav-mobile li {
  width: 100%;
  height: 45px;
  line-height: 46px;
  text-align: center;
  float: left;
}
.nav-mobile li a {
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #ffffff30;
    text-align: left;
    text-indent: 20px;
}
.nav-mobile .menu-button {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  display: block;
}
.nav-mobile .menu-button:after {
  opacity: 0;
  top: 45px;
  content: "";
  width: 100vw;
  display: block;
  position: fixed;
  height: 100vh;
  content: "";
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
  transition-delay: 0.1s;
}
img.icon-open {
    margin-top: 10px;
}
.nav-mobile #menu-toggle {
  display: none;
}
.nav-mobile #menu-toggle.active ~ .menu-button .icon-close, .nav-mobile #menu-toggle:checked ~ .menu-button .icon-close {
  display: block;
  margin-top: 10px;
  position: relative;
}
.nav-mobile #menu-toggle.active ~ .menu-button .icon-open, .nav-mobile #menu-toggle:checked ~ .menu-button .icon-open {
  display: none;
}
.nav-mobile #menu-toggle.active ~ .menu-button:after, .nav-mobile #menu-toggle:checked ~ .menu-button:after {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
}
.nav-mobile #menu-toggle.active ~ .menu-sidebar, .nav-mobile #menu-toggle:checked ~ .menu-sidebar {
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
}
.nav-mobile .menu-container {
  width: 65px;
  float: left;
  cursor: pointer;
}
.nav-mobile .menu-container .menu-sidebar {
  box-shadow: 5px 0 5px -5px #333;
  display: block;
  width: 65vw;
  bottom: 0;
  background:#fff;
  color: #333;
  position: fixed;
  transform: translateX(405px);
  transition: transform 0.3s cubic-bezier(0, 0, 0.3, 1);
  top:0px;
  left:auto;
  right: 0;
  z-index: 2;
  list-style-type: none;
  padding: 0;
  max-width:340px;
}
ul.menu-sidebar .dropdown {
    position: relative;
    width: 100%;
    top: 0;
    display: grid;
    left: 0;
    background: rgb(243, 243, 243);
    border-radius: 0px;
}
ul.menu-sidebar .dropdown .subs{
  left: 0px;
}
/*.menu-head .nav-mobile li:hover {
    height: auto;
}*/
ul.menu-sidebar ul.dropdown li a{
  text-indent: 30px;
  color: #533745; 
}
ul.menu-sidebar li a{
    color: #533745;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    text-indent: 40px;
}
ul.menu-sidebar li:first-child {
    margin-top: 50px;
}
ul.menu-sidebar li {
    height: 64px;
    line-height: 64px;
}
.inn-sec {
    float: left;
    width: 100%;
}
.nav-mobile .menu-container .menu-sidebar .arrow {
  position: absolute;
  line-height: 50px;
  font-size: 32px;
  color: #555;
  top: 0;
  z-index: 0;
}
.nav-mobile .menu-container .menu-sidebar .arrow.left {
  left: 25px;
}
.nav-mobile .menu-container .menu-sidebar .arrow.right {
  right: 25px;
}
nav-mobile .menu-container .menu-sidebar li {
    height: 55px;
    line-height: 55px;
    font-size: 16px;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(228, 204, 148, 0.21);
    padding-left: 20px;
}
.nav-mobile .menu-container .menu-sidebar li:hover {
    background: #e4cc94;
    color: #000;
}
.nav-mobile .menu-container .menu-sidebar li .menu-sub {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  background: white;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0, 0, 0.3, 1);
  border-left: 1px solid #ccc;
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  max-width: 400px;
}
.nav-mobile .menu-container .menu-sidebar li .menu-sub li {
  overflow: hidden;
}
.nav-mobile .menu-container .menu-sidebar li .menu-sub .menu-sub-title {
  padding-left: 50px;
}
.nav-mobile .menu-container .menu-sidebar li .submenu-label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  color:#fff;
}
.nav-mobile .menu-container .menu-sidebar li .submenu-toggle {
  display: none;
}
.nav-mobile .menu-container .menu-sidebar li .submenu-toggle.active ~ .menu-sub, .nav-mobile .menu-container .menu-sidebar li .submenu-toggle:checked ~ .menu-sub {
  width: 65vw;
  visibility: visible;
  z-index: 1;
  transition: width 0.35s cubic-bezier(0, 0, 0.3, 1);
}
.bg{ width:100%; height: auto; float:left;}
.bg img{ width:100%; height: auto;}
.nav-iconright .btn {
  text-align: center;
  margin-bottom: 10px;
  display:block !important;
  margin-top:110px;
}
span#my-textarea-error{
  float: left;
}

a.frgt-pswd {
    color: #000;
}
.modal-footer {
    justify-content: center;
}
a.btn.btnfacebook {
    background: #007aff;
    color: #fff;
    padding: 7px;
    border-radius: 4px;
    padding: 0.5rem 3rem;
}
span.line {
    display: block;
}
.nav-iconright .btn .fa {
  color: #666;
  font-size: 30px;
  cursor: pointer;
}
.menu-head {
    width: 15%;
    float: right;
}
.nav-iconright .form {
  width:600px;
  height: 100px;
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-iconright .input {
  width:600px;
  border: 0px;
  background: transparent;
  box-sizing: border-box;
  border-bottom: 3px solid #bc8f2d;
  outline: none;
  padding: 20px;
  color: #fff;
  font-size: 20px;
  transition: all 0.5s ease;
  transform: scale(0);
}


/*contact us page*/
.row.cont-page {
    display: block;
}
.address-grid h4 {
	font-weight: 600;
	font-size: 1.2em;
	color: #fff;
	letter-spacing: 1px;
}

.address-left {
	border: 1px solid#533745;
  padding: 2em 2em;
  background: #533745;
  float:left;
  width:100%;
}
.row.cont-page h1 {
    margin: 15px 0px;
}
.address-right-w3-img {
	background: url(../images/contact.jpg) no-repeat 0px 0px;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-moz-background-size: cover;
	min-height: 411px;
	margin-left: 1%;
	width: 65%;
}

.mail_grid_w3l {
	margin: 3em 0 0 0;
}

.contact_left_grid {
	padding-left: 0;
}




.contact-fields-w3ls {
	margin-bottom: 1em;
}

.contact-fields-w3ls:nth-child(4) {
	margin-bottom: 0;
}




.address-grids span.fa {
	color: #533745;
	font-size: 18px;
	float: left;
	width: 50px;
  height: 50px;
  border-radius: 16px;
	border: 2px solid #bc8f2d;
	text-align: center;
	background: #fff;
  line-height: 49px;
}
span.fa.fa-phone {
    transform: rotate(90deg);
}
.address-grids {
	    margin-top: 1em;
    display: inline-block;
    width: 33%;
}

.contact-section .social-icons-agileits-w3layouts {
	margin-top: 1.7em;
}

.contact-right {
	padding-left: 1em;
	float: left;
	width: 65%;
}



.contact-right p {
	font-weight: 600;
	color: #fff;
  margin-bottom: 0;
	font-size: 0.9em;
  margin: 0;
  letter-spacing: 1px;
}

.contact-right span,
.contact-right a {
	color: #fff;
	font-size: 0.9em;
	line-height: 1.8em;

	text-decoration: none;
}

.contact-right a:hover {
	color: #bc8f2d;
	text-decoration: none;
}

/*contact us page end*/

/*-- side nav*/

.mainnav li {
  float: left;
  padding: 5px 20px;
  background: none;
  position: relative;
}

.mainnav li:first-child {
  border: none;
}
.mainnav li:last-child {
  padding-right: 0px;
}

.mainnav li a {
  display: block;
  color: #523745;
  font-family: arial;
}

.mainnav li:hover {
  background: #fff;
  transition: ease-in .35s;
  -moz-transition: ease-in .35s;
  -webkit-transition: ease-in .35s;
}

.mainnav li:hover a {
  color: maroon;
  transition: ease-in .35s;
  -moz-transition: ease-in .35s;
  -webkit-transition: ease-in .35s;
}

/*First Level*/
.subs {
  left: -45px;
  position: relative;
  top: 0px;
  width: 175px;
  border-left: none !important;
  border-bottom: 1px dotted #fff !important;
}

.subs:last-child {
  border: none !important;
}

.hassubs:hover .dropdown, .hassubs .hassubs:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transition: ease-in .35s;
  -moz-transition: ease-in .35s;
  -webkit-transition: ease-in .35s;
}

.mainnav li:hover ul a, .mainnav li:hover ul li ul li a {
  color: white;
}

.mainnav li ul li:hover, .mainnav li ul li ul li:hover {
  background: #fff;
  transition: ease-in-out .35s;
  -moz-transition: ease-in-out .35s;
  -webkit-transition: ease-in-out .35s;
}

.mainnav li ul li:hover a, .mainnav li ul li ul li:hover a {
  color: maroon;
  transition: ease-in-out .35s;
  -moz-transition: ease-in-out .35s;
  -webkit-transition: ease-in-out .35s;
}

/*Second Level*/
.hassubs .hassubs .dropdown .subs {
  left: 25px;
  position: relative;
  width: 165px;
  top: 0px;
}

.hassubs .hassubs .dropdown {
  position: absolute;
  width: 150px;
  left: 120px;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  transition: ease-out .35s;
  -moz-transition: ease-out .35s;
  -webkit-transition: ease-out .35s;
}

.mainnav .hassubs:hover:before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}





.mainnav li:hover {
  background: none;
}

.mainnav li:hover a {
  color: #bc8f2d;
}

.mainnav li a {
  font-family: "Montserrat, sans-serif";
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  color: #523745;
  text-transform: uppercase;
}

.mainnav li a:hover {
  color: #bc8f2d;
}




.mainnav .dropdown {
  width: auto;
  min-width: 350px;
  border: 1px solid #eaeaea;
}

.mainnav .dropdown li {
  left: 0 !important;
  width: 100%;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mainnav .dropdown li:hover {
  background: rgba(11, 54, 77, 0.11);
}

.mainnav .dropdown li a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
}



.mainnav .dropdown .hassubs .dropdown {
  right: -100%;
  left: auto;
}

.mainnav .dropdown .hassubs .dropdown li {
  width: 100%;
}

.gold-rate button {
  background: #3f657c;
  border: none;
  color: #fff;
  padding-right: 15px;
  border-radius: 0px 4px 4px 0;
  font-size: 15px;
  padding: 2px 15px;
  border-left: 1px solid #0b364d;
}

.gold-rate button:focus {
  outline: none;
}

.gold-rate > span {
  height: 26px;
  background: #3f657c;
  border: none;
  color: #fff;
  padding: 3px 10px;
  float: left;
  font-size: 14px;
  border-radius: 4px 0px 0px 4px;
}

.nav-fix {
  position: fixed !important;
  top: 0;
  z-index: 999;
}

.nav-lister {
  float: right;
      border-bottom: 1px solid #ad8a45cb;
}

.nav-lister li {
  float: left;
}
a.nav-cart-item.acc {
    padding-right: 0px!important;
}

.nav-lister .nav-phone {
  padding: 2px 0;
  padding-right: 25px;
}

.nav-lister .nav-phone h4 {
  color: #523745;
  direction: ltr;
  font-family: 'Oswald', sans-serif;
}





.nav-lister .nav-search button {
  border: none;
  outline: none;
  padding: 4px 10px;
  border-radius: 0px 4px 4px 0px;
  color: #fff;
  background: #e3cc94;
}

.nav-lister .nav-search input {
  height: 32px;
  float: left;
  border-radius: 4px 0px 0px 4px;
  border: none;
  width: 176px;
}

.nav-lister .nav-lang {
  padding: 8px 15px;
  border-left: 1px solid #ad8a45cb;;
}

.nav-lister .nav-lang img {
  height: 28px;
}

.nav-lister .nav-social {
  padding: 8px 18px 4px 0;
  border-left: 1px solid #ad8a45cb;;
}

.nav-lister .nav-social a {
  color: #fff;
  font-size: 19px;
  padding-left: 15px;
}


.nav-lister .nav-cart .nav-cart-item {
  text-align: center;
  text-decoration: none;
  float: right;
  position: relative;
  display: inline-flex;
    align-items: center;
        border-left: 1px solid #ad8a45cb;
        padding-right: 25px;
}

.nav-lister .nav-cart .nav-cart-item .cart-count {
  position: absolute;
  left: 54px;
  bottom: 20px;
  background: #333;
  padding-top: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  line-height: 15px;
}
a.nav-cart-item h6 {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    margin: 12px 0px;
}

.nav-lister .nav-cart .nav-cart-item img {
  height: 22px;
  padding-left: 25px;
}

.nav-lister .nav-cart .nav-cart-item span {
  color: #fff;
  font-size: 10px;
  display: block;
  padding-top: 8px;
}
/* details page*/
.det-sec ul li a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a4";
    position: relative;
    left: 0;
    color: #bc8f2d;
    padding-right: 15px;
}
.det-head h1:after {
    position: absolute;
    content: '';
    display: block;
    width: 48px;
    height: 5px;
    background-color: #bc8f2d;
    top: 42px;
}
.det-head h1 {
  color:#523745;
}
.plan {
  position: relative;
  width: 350px;
  height: 200px;
  float: right;
  text-align: center;
  top: 0px;
  left: 0px;
  shape-outside: inset(20px 50px 10px 0 round 50px);
  background: #fff;
  box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.1);
  border: 4px solid #bc8f2d;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease; 
}
.plan:hover {
transform: scale(1.1) translate3d(0,0,0);
    box-shadow: 4px 4px 8px 0 rgba(0,0,0,0.1);
     transition: all 0.5s ease; 
}
.serv-price.old {
    font-size: 14px;
    color: #565656;
    line-height: 0px;
    padding: 20px 0px 0px 0px;
    
}
.serv-title {
		height: 36px;
		text-align: center;
		background: #bc8f2d;
		color: #fff;
		font-weight: 600;
		line-height: 36px;
		font-size: 14px;
    transition: all;
        letter-spacing: 1px;
	}
	.shp-address-form.mob-dis.mob-neu-ship {
    display: none;
}
.shp-sid-main-det {
    width: 66%;
    float: left;
    margin-bottom: 30px;
}
	.serv-price {
		text-align: center;
		font-size: 18px;	
		font-weight: 700;
		padding: 0px 0 0px 0;
    transition: all;
  }
	.serv-line {
		height: 3px;
		background: #E4E4E4;
		margin: 0 auto 7px auto;
  }
  .serv-price span {
			display: block;
			font-size: 12px;
			line-height: 12px;
			font-weight: 400;
    }
    a.btn.btn-request {
    background: #533745;
    color: #fff;
    padding: 12px 34px;
    font-size: 18px;
    border-radius: 4px;
    border: 1px solid #523745;
  }
    a.btn.btn-request:hover {
        background: #bc8f2d;
    color: #ffff;
    border: 1px solid #bc8f2d;
    padding: 12px 34px;
    font-size: 18px;
    border-radius: 4px;
}
.serv-price.old span.price-det-en {
    display: inline-block;
}
.serv-price span.price-det-en {
    display: inline-block;
}
/*Modal Fix*/
.modal.in {
  background: rgba(51, 51, 51, 0.52) !important;
}
.modal-open .modal.show {
    display: block!important;
}
.modal-backdrop.fade {
  display: none;
}

/*Modal Fix End*/
    .det-icon img {
    width: 40%;
    height: auto;
}
.det-icon {
    width: 100%;
    height: auto;
    text-align: center;
}
/* details page*/
.header-mob {
  display: none;
}

.header-mob .h-toggle {
  width: 17%;
  position: relative;
  float: right;
  height: 64px;
  border-left: 1px solid #667781;
}

.header-mob .h-img {
  width: 50%;
  float: right;
  padding: 18px 18px;
  border-left: 1px solid #667781;
  border-right: 1px solid #667781;
}

.header-mob .h-img img {
  width: 100%;
}

.header-mob .h-lang {
  width: 20%;
  float: right;
  border-left: 1px solid #667781;
  padding: 18px 10px;
}

.header-mob .h-lang img {
  width: 100%;
}

.header-mob .h-cart {
  width: 13%;
  float: right;
  padding: 17px 8px;
  position: relative;
}

.header-mob .h-cart img {
  width: 100%;
}

.header-mob .h-cart span {
  width: 15px;
  height: 15px;
  background: #bc8f2d;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  right: 10px;
  bottom: 25px;
  font-size: 12px;
  text-align: center;
}

.hc-nav-trigger {
  right: 15px;
}

li.nav-close {
  display: none;
}

.subs a {
  padding-right: 21px !important;
}

.subs a:after {
  display: none;
}

header .header-bottom .nav-head .dropdown {
  z-index: 99;
}

.slider-sec {
  width: 100%;
  float: left;
  height: auto;
  overflow: hidden;
  position: relative;
}

.slider-sec img{
  width: 100%;
  height: auto;
}

.slider-sec .lSAction {
  display: none !important;
}

.slider-sec .lSSlideOuter .lSPager.lSpg > li a {
  height: 15px;
  width: 15px;
  background: #fff;
}

.slider-sec .lSSlideOuter .lSPager.lSpg > li.active a, .slider-sec .lSSlideOuter .lSPager.lSpg > li:hover a {
  background: #bc8f2d;
}

ul.lSPager.lSpg {
  position: relative;
  top: -60px;
}

.slider-mob {
  width: 100%;
  float: left;
}

.slider-mob .lSAction {
  display: none !important;
}

.slider-mob .lSSlideOuter .lSPager.lSpg > li a {
  height: 15px;
  width: 15px;
  background: #fff;
}

.slider-mob .lSSlideOuter .lSPager.lSpg > li.active a, .slider-mob .lSSlideOuter .lSPager.lSpg > li:hover a {
  background: #bc8f2d;
}

.slider-mob .item img {
  width: 100%;
}

.slider-mob {
  display: none;
}

.widget-sec {
  width: 100%;
  float: left;
  min-height: 120px;
  background: #fff;
  padding: 25px 0;
}

.widget-sec .widget-item {
  width: 100%;
  float: left;
}

.widget-sec .widget-item li {
  width: 33%;
  float: left;
  display: flex;
  justify-content: center;
}

.widget-sec .widget-item li a {
  text-decoration: none;
}

.widget-sec .widget-item li a h5 {
  color: #523745;
  text-align: left;
  padding-left: 25px;
  padding-top: 12px;
  text-transform: uppercase;
}

.widget-sec .widget-item li a .wiget-icon {
  float: left;
}

.widget-sec .widget-item li a .wiget-icon img {
  height: 60px;
}

.widget-sec .widget-item li a .widget-txt {
  float: left;
}
.shp-address-form.p {
    border-top: 0;
    border-bottom: 0;
}
table.table-cart.table-neu {
    width: 100%;
    border: 1px solid #bc8f2d;
}
table.table-cart.table-neu thead th {
    padding: 15px;
    border: 1px solid #bc8f2d;
}
table.table-cart.table-neu thead {
    background: #fffdf8;
}
table.table-cart.table-neu td{
    padding: 15px;
}
.video-box button.btn.btn-primary {
    margin: 15px 0px;
}
th.ptions-hearder {
    width: 50%;
}
.cap-req {
    display: block;
    float: left;
    text-align: justify;
    margin-top: 10px;
}
tr.cap-details1 td {
    vertical-align: top;
}
.shp-gue-form input#newsltr {
    float: left;
    margin: 6px;
}
.shp-sid-chk {
  padding: 15px;
  width: 33.33%;
  float: right;
  border: 1px solid #bc8f2d;
}
ul.grid-pricing {
    width: 100%;
    display: inline-block;
}
.cap-pro-image img {
    height: auto;
    width: 100px;
}
ul.grid-pricing .price_gt {
  font-size: 22px;
}

ul.grid-pricing .cal-inv {
  color: #ff6600;
}

ul.grid-pricing li {
  width: 100%;
  float: left;
}

ul.grid-pricing li .price {
  float: right;
}

.price_p {
  font-size: 14px;
  margin-bottom: 5px;
}

.bag-total-box li {
  width: 100%;
  float: left;
}

.bag-total-box .bag-t-span {
  padding: 8px 0px;
}

.bag-total-box .bag-t-span span {
  font-weight: 300;
}

.bag-total-box .bag-t-span b {
  float: right;
}
span.price-det-en {
    font-size: 10px;
}
.cout-in #couponerror {
  display: block;
  color: red;
}

.ft-sec {
  width: 100%;
  float: left;
  padding: 30px 0;
}

.ft-sec h2 {
  color: #523745;
}

.ft-sec .btn-primary {
  min-width: 190px;
}

.ft-link {
  width: 100%;
  float: left;
  margin-bottom: 25px;
  border: 1px solid #fff;
}

.ft-link:hover {
  -webkit-box-shadow: 6px 3px 12px #dadada;
          box-shadow: 6px 3px 12px #dadada;
  border: 1px solid #eaeaea;
}

.ft-link:hover .ft-btn {
  bottom: 0;
}

.ft-link:hover .ft-img span {
  color: #aeaeae;
}

.ft-box {
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}

.ft-box .ft-img {
  width: 100%;
  float: left;
  position: relative;
  padding: 8px;
}

.ft-box .ft-img img {
  width: 100%;
}

.ft-box .ft-img span {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: rgba(174, 174, 174, 0.555);
}

.ft-box .ft-txt {
  width: 100%;
  padding-top: 15px;
  text-align: center;
  float: left;
}

.ft-box .ft-txt label {
  font-size: 22px;
  font-family: "Montserrat, sans-serif";
  color: #000;
}

.ft-box .ft-txt h5 {
  color: #bc8f2d;
  font-size: 22px;
  margin-bottom: 15px;
}

.ft-box .ft-btn {
  width: 100%;
  float: left;
  background: #bc8f2d;
  position: absolute;
  bottom: -15%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.ft-box .ft-btn label {
  color: #fff;
  text-align: center;
  font-family: "Montserrat, sans-serif";
  font-size: 16px;
  margin-bottom: 0;
  width: 85%;
  padding: 8px;
}

.ft-box .ft-btn span {
  float: right;
  background: #523745;
  padding: 8px;
}

.ft-box .ft-btn span img {
  height: 26px;
  width: auto;
}

footer {
  width: 100%;
  float: left;
}

footer .footer-top {
     width: 100%;
    float: left;
    background: #efefef;
    padding: 40px 0px 30px;
}

footer .footer-top h4 {
  font-size: 20px;
  font-family: "Montserrat, sans-serif";
      color: #543846;
  margin-bottom: 20px;
  font-weight: 800;
}

footer .footer-top h4:after {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 5px;
    background-color:#bc8f2d;
    top: 25px;
}

footer .footer-top .footer-linker li {
  color: #fff;
  font-size: 14px;
}

footer .footer-top .footer-linker li a {
  color: #543846;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
footer .footer-top .footer-linker li a:hover {
    color: #bc8f2d;
    text-decoration: none;
}
ul.footer-linker.soc li a i {
    color: #bc8f2d;
    font-size: 18px;
}
ul.footer-linker.soc li a i:hover {
    color: #543846;
    font-size: 18px;
}
footer .footer-top .footer-linker li i {
  float: left;
  height: 35px;
  margin-right: 15px;
}

footer .footer-bottom {
      background: #efefef;
    width: 100%;
    float: left;
    color: #543846;
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat, sans-serif";
    padding: 10px;
    border-top: 1px solid #fff;
}
a.nav-cart-item.acc img {
    padding: 0px;
}
a.nav-cart-item img {
    padding: 2px;
}
/* mediacenter */
.nws-list{
    width: 100%;
    height: auto;
  background:#fff;
  border: 1px solid #543846;
  margin-bottom: 30px;
}

.nws-img img{
    width: 100%;
    height: auto;
   
}

.news-text {
    width: 100%;
    height: auto;
    padding: 15px;
}
.nws-cnt {
    padding: 15px;
    color: #000;
}
.nws-footer {
    padding-left: 15px;
    padding-bottom: 15px;
}
h1.news-head:after{
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 5px;
    background-color: #bc8f2d;
    top: 40px;
}
.details-page-main-section p {
    text-align: justify;
}
/* popup section*/


/*popup section end*/
.image-section img.lazyOwl {
    width: 100%;
    height: auto;
}
.image-section{
    width: 100%;
    height: auto;
}
.project-details {
    margin-bottom: 30px;
}
.img-box {
    width: 100%;
    height: auto;
}
figure img {
    width: 100%;
    height: auto;
}
.photo-box {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 30px;
}
.photo-box img{
    width: 100%;
    height: auto;
}
.photo-box h4{
    color: #000
}
figure h4 {
    color: #000;
}

span.play-icon {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    float: left;
    align-items: center;
}
span.play-icon img{
    width:100px;
    height:100px;
}
.video-box {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}
.video-box img {
    width: 100%;
    height: auto;
}
figcaption h4 {
    color: #000;
}

/*mediacenter end*/
.sub-inp {
  background: none;
  color: #fff;
  width: 324px;
  height: 44px;
  margin-top: 15px;
}
.dwn-sec h1 {
    font-weight: 900;
    color: #fff;
    margin-top: 30px;
}
.dwn-txt h2 {
    color: #ffff;
}

.sub-inp:focus {
  background: none;
  color: #fff;
  outline: none;
  border-color: #bc8f2d;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sub-link {
  position: relative;
}

.sub-link a {
  font-size: 22px !important;
  position: absolute;
  top: 10px;
  left: 27%;
}

.sub-link a:hover {
  color: #bc8f2d;
}

.dwn-sec {
  width: 100%;
  float: left;
  background: #fff url(../images/mob-banner.jpg);
  height: 560px;
  background-position: center;
}
.cat-sec h1:after {
    position: absolute;
    content: '';
    display: block;
    width: 48px;
    height: 5px;
    background-color:#bc8f2d;
    bottom: 0;
}
.dwn-sec h1:after {
    position: absolute;
    content: '';
    display: block;
    width: 48px;
    height: 5px;
    background-color:#bc8f2d;
    bottom: 0;
}
.header-bottom .nav-log img {
    display: none;
}
.header-bottom.nav-fix img {
    width: 200px;
    position: absolute;
    margin: 10px 0px;
    display: block;
}
.header-bottom.nav-fix {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
li.forgot.pull-right.mt-1 a {
    color: #000;
}
.dwn-sec .dwn-txt p {
  font-size: 18px;
  color: #fff;
}
.dwn-txt{
      padding-top: 150px;
}
.dwn-sec .dwn-img {
  position: absolute;
  top: 50px;
}

.dwn-app {
  width: 100%;
  float: left;
}

.dwn-app a {
  width: 244px;
  float: left;
  display: inline-block;
  margin-right: 10px;
}

.dwn-app a img {
  width: 100%;
}
ul.item-limiter p {
    margin-bottom: 5px;
}
.serv-sec .cat-box {
    margin-bottom: 30px;
}
/* work space*/
/*work-space section*/
    .work-11 a {
  width: 100%;
  float: left;
  text-align: center;
  padding: 2rem;
  text-decoration: none;
  background: #533745;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  margin-top: 30px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
section.work-space-new{
  margin-bottom: 15px;
  float:left;
  width: 100%;
  min-height: 400px;
}
.work-11 a:before {
  content: '';
  width: 100%;
  background: #fff;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border: #533745 solid 2px;
}
.update-footer input#btnUpdate {
    background: #533745;
    color: #fff;
}
.work-11 a:hover:before {
  left: 0;
}
.work-11 a:hover h2.title{
     color: #533745;
    position: relative;
}

.work-11 a:hover i {
  color: #533745;
  -webkit-transform: rotate3d(0, 1, 0, 180deg);
          transform: rotate3d(0, 1, 0, 180deg);
}

.work-11 a:hover h2 {
  color: #000;
  z-index: 10;
}

.work-11 a h4 {
  color: #fff;
  position: relative;
}

.work-11 a i {
  color: #fff;
  font-size: 58px;
  margin-bottom: 2rem;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.clent-invoic {
  width: 100%;
  border: 1px solid #efefef;
}

.clent-invoic thead tr {
  background: #533745;
}

.clent-invoic thead tr th {
  color: #fff;
  padding: 10px 15px;
}

.clent-invoic tbody tr:nth-child(even) {
  background: #ddecff;
}

.clent-invoic tbody tr td {
  border-right: 1px solid #efefef;
  padding: 10px 15px;
}

.clent-invoic tbody tr td:last-child {
  border-right: none;
}

.wallet-tot-wr {
  padding: 10px;
  background: #f4f4f4;
  font-size: 24px;
  border-radius: 4px;
}

.man-up-pr {
  width: 100%;
  float: left;
  padding: 3rem;
  border: 1px solid #efefef;
}

.update-footer {
  border-top: 1px solid #efefef;
  padding-top: 20px;
}
h2.title {
    color: #fff;
    font-size: 24px;
}
/*workspace end*/
/*registered-user-invo-details*/

.registered-user-invo-details .cptions-st {
    background: #FFF;
    padding-left: 10px;
    border: 1px solid #CCC;
    padding-top: 8px;
}

.invoice_cont {
    background: #fff;
    padding: 30px 30px 30px 30px;
}

.clent-invoic {
    background: #fff;
}

tr.cptions-st-in th {
    color: #282827;
    background: #fff;
}

.registered-user-invo-details .cptions-st-1 {
    background: #fff;
    padding-left: 10px;
    border: 1px solid #CCC;
    padding-top: 8px;
}

.registered-user-invo-details .cptions-st-2 {
    background: #FFF;
    padding-left: 10px;
    padding-top: 8px;
    height: 36px;
}

.registered-user-invo-details tr.in-main-s {
    background: #fff;
}

.registered-user-invo-details .cap-details {
    font-size: 14px !important;
    border-bottom: solid 1px #d8d8d8 !important;
    background: #fff;
}

.registered-user-invo-details span#ctl00_contentplaceholder1_GridViewinovicelist_ctl02_lblsku {
    font-size: 12px;
}


.registered-user-invo-details .cap-details-2 {
    padding-left: 10px;
    border-bottom: solid 1px #d8d8d8 !important;
    background: #f5f5f5;
}

.registered-user-invo-details .cap-details-cell-invc {
    border-top: solid 1px #e4e4e4;
    line-height: 20px;
    padding: 24px 10px;
    text-align: left;
    vertical-align: top;
}

.registered-user-invo-details .cap-details-cell-invc-1 {
    padding: 5px 30px 5px 5px;
    vertical-align: middle;
    height: 30px;
    border-top: solid 1px #e4e4e4;
    text-align: right;
}

.registered-user-invo-details .checkout-btn {
    background: url("/images/join-us.png") repeat-x scroll 0 0 transparent;
    border: medium none;
    color: #FFFFFF;
    font-size: 14px;
    padding: 6px;
    margin-top: 6px;
}

.registered-user-invo-details .invoice-date {
    float: right;
    width: 200px;
    height: 28px;
}

.registered-user-invo-details .inovice-totoal {
    width: 230px;
    float: right;
}

.registered-user-invo-details .style2 {
    float: right;
    margin: 10px 0;
    padding: 10px 0px 16px 10px;
    width: 920px;
}

.registered-user-invo-details .invoice-panel {
    width: 100%;
    float: left;
    margin-top: 20px;
    background: #fff;
}

.registered-user-invo-details .style3 {
    width: 100%;
    color: #000000;
    font-size: 13px;
    margin-top: 0px;
    background: #f9f9f9;
}

.registered-user-invo-details .inovice-profile {
    width: 25%;
    height: 76px;
    float: left;
    padding: 20px 0 10px 4px;
    border-bottom: 0px solid #c6c6c6;
}

.registered-user-invo-details .inovice-profile img {
    float: left;
    position: relative;
    width: 220px;
}

.registered-user-invo-details .inovice-details {
    width: 40%;
    float: right;
    text-align: right;
    padding-right: 10px;
    /* border-bottom: 0px solid #c6ca73; */
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 30px;
}

.registered-user-invo-details .cptions-hearder-invc {
    padding: 20px 10px;
    border: 0;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: #000 !IMPORTANT;
}

.registered-user-invo-details .cptions-hearder-invc-1 {
    width: 140px;
    padding: 20px 10px;
    vertical-align: top;
    font-weight: 300;
    text-align: right;
    color: #000;
    text-transform: uppercase;
}

.registered-user-invo-details #ctl00_ContentPlaceHolder1_lblfullname {
    color: #f18424;
    font-weight: bold;
}

.registered-user-invo-details .inovice-grandtotal1 {
    height: 30px;
    text-align: right;
    padding-top: 26px;
    text-transform: uppercase;
    padding-right: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(226, 226, 226);
    border-left: 1px solid rgb(226, 226, 226);
    border-right: 1px solid rgb(226, 226, 226);
}

.registered-user-invo-details .inovice-grandtotal1 h3 {
    margin: auto 0px;
    padding-right: 0px !important;
    color: #243274;
}

.registered-user-invo-details .inovice-grandtotal1 h3 strong {
    color: #000;
}

.registered-user-invo-details tr#ctl00_contentplaceholder1_trshipping {
    border-left: 1px solid rgb(226, 226, 226);
    border-right: 1px solid rgb(226, 226, 226);
}

.registered-user-invo-details tr#ctl00_contentplaceholder1_trtotpurchaseamt {
    border-left: 1px solid rgb(226, 226, 226);
    border-right: 1px solid rgb(226, 226, 226);
}


.registered-user-invo-details td.inovice-grandtotal strong {
    font-size: 16px;
    line-height: 33px;
    padding-right: 7px;
    color: #000;
}

.registered-user-invo-details td.inovice-grandtotal {
    font-size: 16px;
    text-align: right;
    color: var(--primary-color);
    line-height: 31px;
    float: right;
    margin-top: 10px;
}

.registered-user-invo-details .inovice-grandtotal {
    border-top: 0px solid #c6c6c6;
    height: 30px;
    text-align: right;
    padding-top: 10px;
    text-transform: uppercase;
    padding-right: 30px;
}

.registered-user-invo-details .status {
    float: left;
    width: 30%;
    padding: 0px 0 10px 0;
    text-align: left;
    color: #000;
    font-size: 15px;
    line-height: 30px;
}
.frame-pmt {
    margin-top: 50px;
    width: 100%;
}
.frame-suc{
  background: #ddffe58f;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #00a526;
  text-align: center;
  padding: 5px;
}
.frame-failure{
  background: #ffdddd8f;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #a50000;
  text-align: center;
  padding: 5px;
}
/*invoice -section end*/
.radio-btn .cust-radio{margin-left: 15px;}
.payment-cont {
  width: 60%;
  height: auto;
  float: left;
  border: 1px solid #bc8f2d;
  padding: 30px;
  margin: 50px 20%;
}
section.subpage-wrapper {
    min-height: 450px;
}
@media (min-width: 1680px) {
  .container {
    max-width: 1440px;
  }
}

@media (max-width: 1680px) {
  .container {
    max-width: 85%;
  }
  .dwn-img img {
    width: 100%;
  }
  .dwn-sec .dwn-img {
    bottom: 3px;
  }
  .dwn-app a {
    width: 200px;
  }

}
@media (max-width: 1600px) {
.dwn-sec .dwn-img {
    position: absolute;
    top: 77px;
}
}
@media (max-width: 1450px) {
  .dwn-sec .dwn-img {
    position: absolute;
    top: 50px;
}
.cat-box .cat-txt h4{
  font-size: 20px;
}

}
@media (max-width: 1366px) {
.dwn-sec .dwn-img {
    position: absolute;
    top: 50px;
}
}
@media (max-width: 1280px) {
  .container {
    max-width: 90%;
  }
}

@media (max-width: 960px) {
  .container {
    max-width: 85%;
  }
  .header-top {
    display: none;
  }
  .header-bottom {
    display: none;
  }
  .header-mob {
    display: block;
    background: #fff;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  }
  header {
    min-height: 60px;
  }
}
@media (max-width: 600px) {
  .dwn-sec {
    height: auto;
  }
  .det-sec.mt-3 p {
    float: left;
    width: 100%;
    margin-top: 40px;
  }
  .shp-sid-main-det{
    width:100%;
  }
  .section-banner img {
    height: 100px;
    width: 100%;
    float: left;
  }
  .news-box span {
    display: block;
  }
  .news-box span i {
    margin-right: 10px;
    margin-left: 0px;
  }
  a.rem-bag.text-danger i {
    margin-right: 5px;
}
ul.footer-linker {
    margin-bottom: 15px;
}
  li.mob-cart-shp-main-item {
    padding: 10px;
    border: 1px solid #c9a557;
    float: left;
    width: 100%;
}
  .cat-box {
    height: auto;
    margin-bottom: 30px;
  }
  .cat-box .cat-txt h4 {
    color: #451e30;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 28px;
    min-height: 60px;
  }
  .cat-box p {
    color: #000;
    font-weight: 300;
    line-height: 16px;
    font-size: 16px;
}
ul.menu-sidebar img {
    width: 56px;
    float: right;
    margin: 18px;
}
  .login_wrapper_outside{
    width: 100%;
    float: left;
  }
  .cat-txt {
    margin: 0px!important;
  }
  
  span.price-det-new {
    margin-bottom: 15px;
  }
  .shipping-cart-main-wp.shipping-cart-pc{
    display: none;
  }
  .shipping-cart-main-wp.shipping-cart-mob {
    display: block;
    
  }
  input.btn.btn-default.btn-payment.mob {
    width: 100%;
    margin: 15px 0px;
  }
  .item-car-mob-img {
    float: left;
    width: 30%;
    height: 100%;
  }
  .item-car-mob-txt {
    padding: 10px;
    width: 70%;
    float: left;
}
.item-car-mob-txt span.cart-price {
    display: block;
}
  .shp-address-form.pc-dis {
    display: none;
  }
  .shp-address-form.mob-dis.mob-neu-ship {
    display: block;
    width: 100%;
    float: left;
  }
  .item-car-mob-txt a {
    color: #543846;
  }
  .shp-sid-chk {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    float: right;
    margin: 15px 0px;
}
  .BreadcrumbList{
    margin-bottom: 15px;
  }
  .dwn-txt {
    padding-top: 50px;
}
.dwn-sec .dwn-img {
    top: 65px;
}
.dwn-app a {
    width: 80%;
    margin-bottom: 5px;
}
.det-head h1:after {
    display: none;
}
.address-grids {
    margin-top: 1em;
    display: inline-block;
    width: 100%;
}
h1.news-head:after {
    display: none;
}
.det-head h1{
  font-size: 28px;
  margin-top: 15px;
}
.det-icon img {
    width: 20%;
}
 .plan {
    left: 0px;
    top: 25px;
    float: right;
  }
  .footer-bottom a {
    display: block;
  }
  .payment-cont {
    width: 94%;
    margin: 30px 3%;
    padding: 20px;
}


}
@media (max-width: 540px) {
  .container {
    max-width: 100%;
  }
  .plan {
    left: 0px;
    float: right;
    width: 100%;
    height: auto;
    shape-outside: none;
  }
  h4.req-box {
    font-size: 20px;
  }
  
  .plan a.btn.btn-request {
    margin: 10px 0px!important;
  }
  .wrapper.cf {
    display: block;
  }
  .slider-sec {
    display: none;
  }
  .dwn-sec {
    height: auto;
  }
  .dwn-sec .dwn-img {
    position: relative;
    top: 18px;
  }
  footer .footer-top h4 {
    font-size: 18px;
  }
  .news-box a.btn.btn-primary.float-right {
        padding: 0.1rem 1rem;
    margin-top: 22px;
}
  h1{
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  .news-box p{
    font-size: 16px;
  }
  .dwn-app a {
    width: 100%;
    margin-right: 0;
    float: right;
    margin-left: 5px;
  }
  .dwn-app a img{
        width: 80%;
    margin-bottom: 10px;
}
  .dwn-sec .dwn-txt {
    padding: 35px 0 0;
  }
  .dwn-sec .dwn-txt h2{
    font-size: 24px;
  }
  .dwn-sec .dwn-txt p{
    font-size: 16px;
    line-height: 1.1;
  }
  .sub-link a {
    left: 5%;
  }
  .enquiry-sec {
    padding: 40px 0;
    min-height: 200px;
  }
  .enquiry-sec .btn {
    min-width: 140px;
  }
  .arrival-sec .lSSlideOuter .lSPager.lSpg > li a {
    width: 10px;
  }
  .cat-sec .lSSlideOuter .lSPager.lSpg > li a {
    width: 10px;
  }
  .slider-mob {
    display: block;
  }
  .widget-sec .widget-item li {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    display: block;
  }
  .widget-sec .widget-item{
    width: 100%;
    float: left;
    display: block;
    text-align: center;
  }
  .widget-sec .widget-item li a .wiget-icon {
    float: left;
    width: 10%;
  }
  .widget-sec .widget-item li a .widget-txt {
    float: left;
    width: 90%;
  }
  .widget-sec .widget-item li a .wiget-icon img {
    height: auto;
    width: 100%;
  }
  .widget-sec .widget-item li a h5 {
    padding-top: 0;
  }
  .banner-box {
    margin-bottom: 15px;
  }
  .banner-img img {
    width: 100%;
  }
}
/*# sourceMappingURL=sat-style.css.map */
@media (max-width: 460px) {
.dwn-sec .dwn-img {
    position: relative;
    top: 44px;
}
.news-box a.btn.btn-primary.float-right {
    padding: 0.1rem 1rem;
    margin-top: 10px;
}

.serv-price {
    font-size: 24px;
}


}
@media (max-width: 420px) {
.dwn-sec .dwn-img {
    position: relative;
    top: 48px;
}
.det-head h1 {
    font-size: 24px;
}
.dwn-app a {
    margin-bottom: 0px;
}

}

@media (max-width: 400px) {
.dwn-sec .dwn-img {
    position: relative;
    top: 56px;
}
.det-head h1:after{
  display: none;
}
footer .footer-top h4 {
    font-size: 16px;
}
footer .footer-top .footer-linker li a {
    font-size: 16px;
}
}

@media (max-width: 375px) {
.dwn-sec .dwn-txt h2 {
    font-size: 18px;
}
.dwn-sec .dwn-img {
    position: relative;
    top: 25px;
}
.dwn-sec .dwn-txt p {
    font-size: 14px;
}
}