/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500&display=swap');

/* ==========================================================================
   2. GENERAL
   ========================================================================== */


/*html {
      scroll-behavior: smooth;
    }*/

body {
  font-family: 'Raleway', sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
  letter-spacing: 0.02em;
  scroll-behavior: smooth;
}

p {
  font-size: 15px;
  /*color: #757575;*/
  color: #000;
  line-height: 26px;
}

a:hover,
a:focus {
  color: #61D2B4;
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Butler_Regular';
}

h4 {
  font-size: 24px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: #61D2B4;
}

.section {
  padding: 80px 0;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.btn-gold {
  display: inline-block;
  overflow: hidden;
}

.btn-gold a {
  overflow: hidden;
  position: relative;
  background-color: #be9667;
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 12px;
  display: inline-block;
}

.btn-gold a:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}

.btn-gold a:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 1499px) {
  .container {
    max-width: 1440px;
  }
}


/* ==========================================================================
   3 Header
   ========================================================================== */

header.header-wrapper nav.navbar .navbar-brand img {
  max-width: 200px;
}

header.header-wrapper .container-fluid {
  padding: 0 50px;
}

header.header-wrapper nav.navbar {
  padding: 20px 50px;
}

header.header-wrapper nav.navbar.fixed-top.menu-bg {
  padding: 10px 50px;
}

header.header-wrapper nav.navbar.fixed-top.menu-bg ul.navbar-nav li.dropdown-submenu ul.site-dropdown-menu {
  top: 40px !important;
}

header.header-wrapper nav.navbar.fixed-top.menu-bg .navbar-brand img {
  max-width: 100px;
}

header.header-wrapper nav.navbar ul li {
  position: relative;
  margin: 0 20px;
}

header.header-wrapper nav.navbar ul li:first-child:before {
  display: none;
}

header.header-wrapper nav.navbar ul li:before {
  content: '|';
  display: block;
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(164, 164, 164, 0.25) !important;
}

header.header-wrapper nav.navbar ul li a {
  color: #fff;
  padding: 20px 0px 20px 0 ;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  position: relative;
  opacity: 1;
}

header.header-wrapper nav.navbar ul li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  left: 0;
  top: 90%;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
  box-shadow: 0px 3px 6px 3px rgba(190, 150, 103, 0.28);
}

header.header-wrapper nav.navbar ul li a:hover:before {
  opacity: 1;
  transition: transform 0.3s, opacity 0.1s;
  transform: scale3d(1, 1, 1);
}

header.header-wrapper nav.navbar ul li a:hover {
  color: #be9667 !important;
}

header.header-wrapper .banner .owl-carousel .owl-nav {
  display: none;
}
header.header-wrapper .banner .owl-carousel .owl-nav .owl-prev {
  background: url('../img/prev.png');
  position: absolute;
  top: 46%;
  left: 40px;
  width: 20px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
}

header.header-wrapper .banner .owl-carousel .owl-nav .owl-next {
  background: url('../img/next.png');
  position: absolute;
  top: 46%;
  right: 40px;
  width: 20px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
}

header.header-wrapper .banner .owl-carousel .owl-nav .owl-prev span {
  display: none;
}

header.header-wrapper .banner .owl-carousel .owl-dots {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  bottom: 50px;
}

header.header-wrapper .banner .owl-carousel .owl-dots button {
  width: 50px;
  height: 1px;
  background: rgba(190, 150, 103, 0.5);
  margin: 0 0 0 0;
}

header.header-wrapper .banner .owl-carousel .owl-dots .owl-dot.active {
  background: #be9667;
  width: 50px;
  height: 3px;
  position: relative;
  top: 1px;
}

header.header-wrapper .banner .item {
  position: relative;
}

header.header-wrapper .banner .item img {
  width: 100%;
  height: 100vh;
}

header.header-wrapper .banner .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.7);
}

header.header-wrapper .banner .item-detail {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
  z-index: 9;
}

header.header-wrapper .banner .item-detail .btn-gold {
  margin: 30px 0 0 0;
}

header.header-wrapper .banner .item-detail h1 {
  color: #fff;
  font-size: 83px;
  text-transform: uppercase;
  letter-spacing: 12px;
  font-family: 'Butler_Light';
  margin: 50px 0 0 0;
}

header.header-wrapper .banner .item-detail h1 span {
  color: #be9667;
  text-transform: capitalize;
  font-family: 'PlayfairDisplay-Italic';
  letter-spacing: 0px;
}

header.header-wrapper .banner .item-detail h3 {
  color: #fff;
  font-size: 30px;
  margin: 20px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 6px;
}

 .banner {
    height: 100vh;
  }
  .banner .owl-carousel {
    height: 100vh;
  }
  .banner .owl-carousel .item {
    height: 100vh;
  }
  .banner .owl-carousel .item img {
    height: 100vh;
    object-fit: cover;
  }


/* ==========================================================================
   4 About Section
   ========================================================================== */

section#about .about-content .about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

section#about .about-content .section-header {
  text-align: left;
  margin-bottom: 60px;
}

section#about .about-content .section-header .lines {
  float: left;
}

section#about .about-content .col-md-7 {
  padding: 0 0 0 80px;
}

section#about .about-content p {
  margin: 0 0 15px 0;
  text-align: justify;
}


/* ==========================================================================
   5 Section Title
   ========================================================================== */

.section {
  padding: 100px 0;
}

.section-header {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.section-header .section-title {
  font-size: 60px;
  margin-top: 0;
  text-transform: uppercase;
  color: #160c06;
  position: relative;
  letter-spacing: 0.14em;
}

.section-header .section-title span {
  color: #61D2B4;
}

.section-header .section-subtitle {
  margin-top: 15px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid #be9667;
  margin-top: 15px;
}


/* ==========================================================================
   6 Buttons
   ========================================================================== */

.btn {
  font-size: 14px;
  padding: 11px 40px;
  border-radius: 0px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}

.btn-common {
  border: 1px solid #61D2B4;
  background: #61D2B4;
  position: relative;
  color: #fff;
  z-index: 1;
  border-radius: 30px;
}

.btn-common:hover {
  color: #fff;
  background: #33b391;
  border-color: #33b391;
  transition: all .50s ease-in-out;
  -moz-transition: all .50s ease-in-out;
  -webkit-transition: all .50s ease-in-out;
}

.btn-border {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
}

.btn-border:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: #61D2B4;
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  padding: 7px 0px;
  color: #999;
  text-transform: capitalize;
}

.btn-rm i {
  vertical-align: middle;
}

button:focus {
  outline: none !important;
}

.clear {
  clear: both;
}


/* ==========================================================================
   7 Social Iocns
   ========================================================================== */

.social-icons {
  margin-top: 40px;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline;
}

.social-icons ul li a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
  border-radius: 50%;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #ddd;
  font-size: 16px;
}

.social-icons ul li a:hover {
  color: #fff;
}

.facebook a {
  color: #4867AA;
}

.facebook a:hover {
  background: #4867AA;
}

.twitter a {
  color: #1DA1F2;
}

.twitter a:hover {
  background: #1DA1F2;
}

.google-plus a {
  color: #DD4D42;
}

.google-plus a:hover {
  background: #DD4D42;
}

.youtube a {
  color: #DF2926;
}

.youtube a:hover {
  background: #DF2926;
}

.linkedin a {
  color: #007BB6;
}

.linkedin a:hover {
  background: #007BB6;
}

.instagram a {
  color: #674339;
}

.instagram a:hover {
  background: #674339;
}

.whatsapp a {
  color: #189d0e;
}

.whatsapp a:hover {
  background: #189d0e;
}


/* ==========================================================================
   8  Pre Loader
   ========================================================================== */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #be9667;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}


/* ========================================================================== 
  9 Scroll To Up 
   ========================================================================== */

.back-to-top {
  display: none;
  position: fixed;
  bottom: 100px;
    right: 20px;
  z-index: 99;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #be9667;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}


/* ==========================================================================
   10. Navbar Style
   ========================================================================== */

.navbar-brand {
  position: relative;
  padding: 0px;
}

.top-nav-collapse {
  background: #fff;
  z-index: 999;
  top: 0px !important;
  padding: 0;
  box-shadow: 0px 3px 6px 3px rgba(190, 150, 103, 0.27);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: #fff !important;
}

.top-nav-collapse .navbar-brand {
  top: 0px;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: #000 !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: #be9667 !important;
}

.indigo {
  background: transparent;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav li a:hover,
.navbar-expand-lg .navbar-nav li .active>a,
.navbar-expand-lg .navbar-nav li a:focus {
  color: #be9667;
}

.navbar .nav-link.active {
  color: #be9667 !important;
}

.dropdown-toggle::after {
  display: none;
}

.slicknav_btn {
  border-color: #be9667;
}

.slicknav_menu .slicknav_icon-bar {
  background: #be9667;
}

#hero-area ul.navbar-nav li.dropdown-submenu ul.sub-menu {
  display: none;
  position: absolute;
  top: 50px;
  background: #fff;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  width: 200px;
  padding: 10px 0;
}

#hero-area ul.navbar-nav li.dropdown-submenu ul.sub-menu li {
  margin: 0 10px;
}

#hero-area ul.navbar-nav li.dropdown-submenu ul.sub-menu li:before {
  display: none;
}

#hero-area ul.navbar-nav li.dropdown-submenu ul.sub-menu li a {
  color: #333 !important;
  margin: 0px;
  padding: 5px;
  font-size: 10px;
}

#hero-area ul.navbar-nav li.dropdown-submenu ul.sub-menu li a:before {
  display: none;
}

#hero-area ul.navbar-nav li.dropdown-submenu ul.sub-menu li a:hover {
  color: #be9667 !important;
}

#hero-area ul.navbar-nav li.dropdown-submenu:hover ul.sub-menu {
  display: block;
}


/* only small tablets */

@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
  .navbar-brand {
    position: absolute;
    padding: 15px;
    top: 0;
  }
  .navbar-brand img {
    width: 70%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  .slicknav_nav .active a {
    background: #be9667;
    color: #fff;
  }
  .slicknav_nav a:hover,
  .slicknav_nav .active {
    color: #be9667;
    background: #f8f9fa;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: #be9667;
  }
}


/* ==========================================================================
  11. Services section
   ========================================================================== */

.item-boxes {
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-boxes .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 1px solid #f1f1f1;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-boxes .icon i {
  font-size: 26px;
  line-height: 60px;
  color: #be9667;
}

.item-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.item-boxes:hover .icon {
  background: #be9667;
}

.item-boxes:hover .icon i {
  color: #fff;
}


/* ==========================================================================
  12. Features Section Style
   ========================================================================== */

#process {
  /*background: url(../img/procedure.jpg) fixed no-repeat;*/
  background-size: cover;
  background: #f9f8f8;
  color: #fff;
  overflow: hidden;
  position: relative;
}

#process .process-img {
  text-align: center;
  margin: 0 0 40px 0;
}

#process .text {
  text-align: center;
}

#process .text h4 {
  color: #160c06;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: 0.1em;
}

#process .box-item .text p {
  font-size: 14px;
  line-height: 26px;
}

#process .box-item:hover .icon {
  background: #be9667;
}

#process .show-box img {
  position: absolute;
  bottom: -120px;
}

#process .process-img img {
  border-radius: 100%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}


/* ==========================================================================
  13. Portfolio Section
   ========================================================================== */

section#collection {
  float: left;
  width: 100%;
}

#collection .mix {
  padding: 10px;
}

#collection .portfolio-item {
  margin-bottom: 30px;
}

#collection .portfolio-item .shot-item {
  margin: 0px;
}

#collection-grid .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}

.controls .active {
  color: #be9667 !important;
  border-color: #be9667;
  background: transparent;
}

.controls .btn {
  text-transform: uppercase;
  margin: 2px;
}

.controls:hover {
  cursor: pointer;
}

.portfolio-img {
  overflow: hidden;
  display: block;
  position: relative;
}

.portfolio-img img {
  width: 100%;
}

.shot-item {
  margin-right: 15px;
  border-radius: 4px;
  background: #fff;
  position: relative;
}

.shot-item img {
  width: 100%;
}

.shot-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}

.shot-item:hover .overlay {
  opacity: 1;
}

.overlay .item-icon {
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: #be9667;
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  top: 50%;
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #be9667;
  border-radius: 50%;
}

.overlay .item-icon:hover {
  background: #be9667;
  color: #fff;
}

.shot-item:hover .item-icon {
  visibility: visible;
  opacity: 1;
}


/* Lightbox */

body.WS-lightbox--opened {
  overflow-y: hidden;
  height: 100vh;
}

.grid {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  column-gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0 50px;
}

.grid li {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}

.grid li:hover {
  cursor: pointer;
  transform: scale(1.025);
}

.grid li img {
  width: 100%;
}

.WS-lightbox {
  font-family: 'Montserrat', sans-serif;
  position: fixed;
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999999;
}


/* .WS-lightbox .WS-lightbox--bg {
   position: absolute;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   filter: blur(10px);
   z-index: -1;
   background-size: cover;
   background-position: center;
}*/

.WS-lightbox [class^="WS-lb-ctrl-"] {
  z-index: 1;
}

.WS-lightbox [class^="WS-lb-ctrl-"],
.WS-lightbox [class^="WS-lb-arrow-"] {
  position: absolute;
  display: grid;
  justify-content: center;
  align-content: center;
  height: 30px;
  width: 30px;
  background-color: var(--btnColor);
  box-sizing: border-box;
  color: white;
  opacity: 0.8;
  transition: all 0.5s ease;
}

.WS-lightbox [class^="WS-lb-ctrl-"]:hover,
.WS-lightbox [class^="WS-lb-arrow-"]:hover {
  cursor: pointer;
  opacity: 1;
}

.WS-lightbox [class^="WS-lb-ctrl-"][class*="-close"],
.WS-lightbox [class^="WS-lb-arrow-"][class*="-close"] {
  position: initial;
  top: 0;
  position: absolute;
  right: 0;
}

.WS-lightbox .WS-lb-arrows {
  position: absolute;
  width: 100%;
  bottom: 50%;
}

.WS-lightbox .WS-lb-arrows.outside {
  z-index: 1;
}

.WS-lightbox .WS-lb-arrows [class^="WS-lb-arrow-"] {
  top: calc(50% - 15px);
  z-index: 1;
}

.WS-lightbox .WS-lb-arrows [class^="WS-lb-arrow-"][class*="-left"] {
  left: var(--pos_arrows);
}

.WS-lightbox .WS-lb-arrows [class^="WS-lb-arrow-"][class*="-left"][class*="attached-"] {
  left: calc((30px + var(--pos_arrows)) * -1);
}

.WS-lightbox .WS-lb-arrows [class^="WS-lb-arrow-"][class*="-right"] {
  right: var(--pos_arrows);
}

.WS-lightbox .WS-lb-arrows [class^="WS-lb-arrow-"][class*="-right"][class*="attached-"] {
  right: calc((30px + var(--pos_arrows)) * -1);
}

.WS-lightbox .WS-lb-arrows [class^="WS-lb-arrow-"].outside {
  top: calc(50% - 15px - (var(--selector_bottom) * .5));
}

.WS-lightbox .WS-lightbox--container {
  position: relative;
  line-height: 0;
  transition: all 0.8s ease;
}

.WS-lightbox .WS-lightbox--container img {
  border: 2px solid white;
  box-sizing: border-box;
}

.WS-lightbox .WS-lightbox--subcontainer {
  position: relative;
  display: grid;
  justify-content: center;
  align-content: center;
  background-color: lightgrey;
}

.WS-lightbox .WS-lightbox--subcontainer[data-zoom-open="1"] {
  overflow: hidden;
}

.WS-lightbox .WS-lightbox--subcontainer[data-zoom-open="1"] img {
  position: absolute;
}

[class^="WS-lb-arrow"].shrink-hover:hover {
  transform: scale(0.8);
}

[class^="WS-lb-arrow"].zoom-hover:hover {
  transform: scale(1.2);
}

[class^="WS-lb-arrow"][class*="-top"].translate-hover:hover {
  transform: translateY(-10px);
}

[class^="WS-lb-arrow"][class*="-bottom"].translate-hover:hover {
  transform: translateX(10px);
}

[class^="WS-lb-arrow"][class*="-left"] {
  left: var(--pos_arrows);
}

[class^="WS-lb-arrow"][class*="-left"][class*="attached-"] {
  left: calc((30px + var(--pos_arrows)) * -1);
}

[class^="WS-lb-arrow"][class*="-left"].translate-hover:hover {
  transform: translateX(-10px);
}

[class^="WS-lb-arrow"][class*="-right"] {
  right: var(--pos_arrows);
}

[class^="WS-lb-arrow"][class*="-right"][class*="attached-"] {
  right: calc((30px + var(--pos_arrows)) * -1);
}

[class^="WS-lb-arrow"][class*="-right"].translate-hover:hover {
  transform: translateX(10px);
}

.WS-lightbox {
  display: none;
}


/* Lightbox */


/* ==========================================================================
  14. Offer
  ========================================================================== */

#offer {
  width: 100%;
  float: left;
  position: relative;
  background: url('../img/offer.jpg');
}

#offer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
}

#offer .container {
  position: relative;
}

#offer h2.section-title {
  color: #fff;
}

#offer .offer-info p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 32px;
}


/* ==========================================================================
  15. Customization
  ========================================================================== */

section#customization {
  width: 100%;
  float: left;
  background-color: #f9f8f8;
}

section#customization .customization-content {
  margin: 30px 0 0 0;
}

section#customization .customization-content h4 {
  margin: 20px 0 0 0;
  color: #be9667;
  text-transform: uppercase;
}

section#customization .customization-content p {
  margin: 10px 0 0 0;
}

section#customization .customization-content h5 {
  color: #160c06;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 30px 0 0 0;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
}

section#customization .customization-content h6 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 20px 0 0 0;
}

section#customization .customization-content ul {
  margin: 10px 0 0 0;
}

section#customization .customization-content ul li {
  margin: 0 0 10px 0;
  color: #757575;
}

section#customization .customization-content ul li i {
  margin: 0 5px 0 0;
}

section#customization .btn-gold {
  margin: 50px 0 0 0;
}


/* ==========================================================================
  16. Schedule an appointment
  ========================================================================== */

#s-appointment {
  width: 100%;
  float: left;
  background: url('../img/appointment.jpg');
  position: relative;
  background-position: center;
}

#s-appointment:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#s-appointment .s-appointment-form .wpcf7-validation-errors {
  color: #fff;
}

#s-appointment .container {
  position: relative;
}

#s-appointment h2,
#s-appointment p {
  color: #fff;
}

#s-appointment .s-appointment-form label {
  color: #fff;
}

#s-appointment .s-appointment-form label span {
  color: #dc3545;
}

#s-appointment .s-appointment-form input.form-control,
#s-appointment .s-appointment-form textarea {
  background-color: rgba(255, 255, 255, 0.2);
}

#s-appointment .s-appointment-form input:focus,
#s-appointment .s-appointment-form textarea:focus {
  border: 1px solid #fff;
}

#s-appointment .s-appointment-form input::-webkit-input-placeholder {
  font-weight: 400;
  color: #fff;
  opacity: 1;
}

#s-appointment .s-appointment-form textarea::-webkit-input-placeholder {
  font-weight: 400;
  color: #fff;
  opacity: 1;
}

#s-appointment .s-appointment-form .btn-gold {
  overflow: hidden;
  position: relative;
  background-color: #be9667;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  margin: 0 auto;
}

#s-appointment .s-appointment-form .btn-gold button {
  background: none;
  border: none;
  padding: 20px 40px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
}

#s-appointment .s-appointment-form .btn-gold:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}

#s-appointment .s-appointment-form .btn-gold:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}


/* ==========================================================================
  17. Measurements
  ========================================================================== */

#measurements {
  width: 100%;
  float: left;
  background: url('../img/appointment.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

#measurements:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#measurements .container {
  position: relative;
}

#measurements h2,
#measurements p {
  color: #fff;
}

#measurements .measurements-form label {
  color: #fff;
}

#measurements .measurements-form label span {
  color: #dc3545;
}

#measurements .measurements-form input.form-control,
#measurements .measurements-form textarea {
  background-color: rgba(255, 255, 255, 0.2);
}

#measurements .measurements-form input:focus,
#measurements .measurements-form textarea:focus {
  border: 1px solid #fff;
}

#measurements .measurements-form input::-webkit-input-placeholder {
  font-weight: 400;
  color: #fff;
  opacity: 1;
}

#measurements .measurements-form .sb-btn {
  display: inline-block;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 20px 0 0 0;
}

#measurements .measurements-form .sb-btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #be9667;
  border-radius: 10rem;
  z-index: -2;
  border: 1px solid #be9667;
}

#measurements .measurements-form .sb-btn:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  transition: all .3s;
  border-radius: 10rem;
  z-index: -1;
  border: 1px solid #be9667;
}

#measurements .measurements-form .sb-btn:hover {
  color: #be9667;
}

#measurements .measurements-form .sb-btn:hover:before {
  width: 100%;
}

#measurements .measurements-form .btn-submit {
  background: none !important;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px 30px;
}

#measurements .measurements-form .form-control-file {
  width: 100%;
  padding: 10px;
  border: 1px solid #fff;
  color: #fff;
  margin: 00 0 0;
}

#measurements .measurements-form .btn-submit:hover {
  background: #fff;
  color: #be9667;
}


/* ==========================================================================
  18. Events
  ========================================================================== */

section#events {
  float: left;
  width: 100%;
}

section#events .events-info .event-wrapper .event-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

section#events .events-info .event-wrapper .event-item-text {
  margin: 20px 0 0 0;
}

section#events .events-info .event-wrapper .event-item-text h3 {
  font-size: 24px;
}

section#events .events-info .event-wrapper .event-item-text h3 a {
  color: #333;
}

section#events .events-info .event-wrapper .event-item-text h3 a:hover {
  color: #be9667;
}

section#events .events-info .event-wrapper .event-item-text span {
  color: #a7a7a7;
  width: 100%;
  float: left;
  margin: 2px 0;
}

section#events .events-info .event-wrapper .event-item-text span i {
  margin: 0 5px 0 0;
}

section#events .events-info .event-wrapper .event-item-text p {
  margin: 15px 0 0 0;
  float: left;
  width: 100%;
}

section#events .events-info .event-wrapper .event-item-text .btn-gold {
  float: left;
  margin: 20px 0 0 0;
}


/* ==========================================================================
  19. Testimonials
  ========================================================================== */

section#testimonials {
  width: 100%;
  float: left;
  position: relative;
  background: url('../img/appointment.jpg');
  background-position: 80% 15%;
  display: none;
}

section#testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

section#testimonials .owl-carousel .item {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 20px 0 50px;
}

section#testimonials .owl-carousel .item .quote i {
  color: #be9667;
  font-size: 18px;
  margin: 0 0 30px 0;
}

section#testimonials h2 {
  color: #fff;
}

section#testimonials .owl-carousel .item h3 {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #be9667;
  margin: 30px 0 0 0;
}

section#testimonials .owl-carousel .item p {
  color: #fff;
}

section#testimonials .owl-carousel .owl-nav button.owl-prev {
  background: url(../img/prev.png);
  position: absolute;
  top: 50%;
  left: 40px;
  width: 20px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
}

section#testimonials .owl-carousel .owl-nav button.owl-prev span {
  display: none;
}

section#testimonials .owl-carousel .owl-nav button.owl-next {
  background: url(../img/next.png);
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
}

section#testimonials .owl-carousel .owl-nav button.owl-next span {
  display: none;
}

section#testimonials .owl-carousel .owl-nav button.owl-next span:before {
  content: "\f054";
  position: absolute;
  top: 0;
  left: 0;
  font: normal normal normal 14px/1 FontAwesome;
  color: #fff;
  font-size: 20px;
}

section#testimonials .owl-carousel .owl-dots {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  bottom: -30px;
}

section#testimonials .owl-carousel .owl-dots button {
  width: 50px;
  height: 1px;
  background: rgba(190, 150, 103, 0.5);
  margin: 0 0 0 0;
}

section#testimonials .owl-carousel .owl-dots .owl-dot.active {
  background: #be9667;
  width: 50px;
  height: 3px;
  position: relative;
  top: 1px;
}


/* ==========================================================================
  20. Subscribe
  ========================================================================== */

section#subscribe {
  width: 100%;
  float: left;
}

section#subscribe input {
  background: none;
  padding: 10px;
  outline: none;
  color: #333;
  width: 100%;
  border: 1px solid #be9667;
}

section#subscribe button {
  color: #fff;
  background: #be9667;
  border: none;
  padding: 11px 35px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

section#subscribe input::-webkit-input-placeholder {
  color: #333;
}


/* ==========================================================================
  21. Contact Us
  ========================================================================== */

.contact-us h3 {
  font-size: 36px;
  margin-bottom: 45px;
}

.contact-us p span {
  color: #61D2B4;
  padding-left: 10px;
}

#contact {
  color: #fff;
  position: relative;
  float: left;
  width: 100%;
  background: #383e44;
  padding: 70px 0 50px;
}

#contact .contact-form .contact-form-btm .contact-us {
  padding: 0px;
}

#contact .contact-form .contact-form-btm .contact-address p {
  color: #fff;
  float: left;
  margin: 0 30px 0 0;
}

#contact h2.section-title {
  color: #fff;
}

#contact .contact-block {
  width: 100%;
  padding: 20px 0;
}

#contact .contact-block input:focus {
  border-color: #fff !important;
}

#contact .contact-block .submit-button {
  overflow: hidden;
  position: relative;
  background-color: #be9667;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
}

#contact .contact-block .submit-button button {
  background: none;
  border: none;
  padding: 20px 40px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  width: 100%;
}

#contact .contact-block .submit-button:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}

#contact .contact-block .submit-button:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

#contact .contact-block .submit-button button {
  background: none !important;
  border: none;
  padding: 16px 30px;
}

#contact .contact-block .submit-button button:hover {
  background: #fff;
  color: #fff;
}

#contact .contact-form-btm .contact-form-map iframe {
  width: 100%;
  height: 250px;
}

#contact .contact-us {
  padding: 0 100px 0 0;
}

#contact .contact-us .contact-address {
  width: 50%;
  float: left;
  margin: 30px 0 0 0;
}

#contact .contact-us .contact-address p span {
  color: #be9667;
}

#contact .contact-us p a {
  color: #be9667;
}

#contact .contact-us p a:hover {
  color: #fff;
}

#contact .contact-us .social-icons {
  width: 50%;
  float: right;
  margin: 20px 0 0 0;
}

#contact .contact-us .social-icons ul {
  float: right;
}

.form-control {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-color: #fff;
  border-radius: 0px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  box-shadow: none;
  color: #fff;
  border-color: #61D2B4;
  background: transparent;
  outline: none;
}

.btn.disabled,
.btn:disabled {
  opacity: 1;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: #d9534f;
}


/* ==========================================================================
  Men’s wear
  ========================================================================== */

section#menswear {
  width: 100%;
  float: left;
}

section#menswear h2 {
  font-size: 60px;
  letter-spacing: 0.04em;
}

section#menswear h5 {
  color: #be9667;
  font-size: 11px;
  letter-spacing: 0.5em;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

section#menswear .content {
  margin: 30px 0 0 0;
}

section#menswear .content p {
  text-align: justify;
}

section#menswear .lft-content {
  padding: 0 50px 0 0;
}

section#menswear .menswear-img {
  text-align: center;
}

section#menswear .menswear-img img {
  width: 80%;
  height: 550px;
  object-fit: contain;
}

section#menswear .menswear-grid {
  margin: 70px 0;
}

section#menswear .menswear-grid h2 {
  font-size: 44px;
}

section#menswear .btn-gold {
  width: 100%;
}


/* ==========================================================================
22. Footer Style
 ========================================================================== */

footer {
  background: #292f35;
  padding: 20px 0;
  float: left;
  width: 100%;
}

.footer-links {
  line-height: 48px;
}

.footer-links li {
  float: left;
}

.footer-links li a {
  color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: #be9667;
}

footer .footer-links li.dropdown-submenu {
  padding: 8px 0 0 0;
}

footer .footer-links li.dropdown-submenu a i {
  margin: 0 0 0 5px;
}

footer .footer-links li.dropdown-submenu ul.site-dropdown-menu {
  position: absolute;
  top: auto;
  bottom: 100%;
  background: #292f35;
  padding: 20px;
}

footer .footer-links li.dropdown-submenu ul.site-dropdown-menu li {
  width: 100%;
}

footer .footer-links li.dropdown-submenu ul.site-dropdown-menu li a {
  padding: 0px;
}

footer .footer-links li.dropdown-submenu ul.site-dropdown-menu li a:hover {
  color: #be9667;
}

.copyright {
  margin-top: 10px;
  text-align: center;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}

.copyright p {
  color: #fff;
  margin-bottom: 10px;
}

.copyright p a {
  color: #fff;
}

.copyright p a:hover {
  color: #61D2B4;
}

.copyright:before {
  content: '';
  height: 25px;
  width: 1px;
  background-color: #be9667;
  position: absolute;
  top: 0;
  right: 0;
}

.db {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  line-height: 26px;
}

.db a {
  color: #be9667 !important;
}

.db a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-text {
  display: flex;
  justify-content: center;
}


/*** Breadcrumb ***/

.breadcrumb {
  width: 100%;
  float: left;
  padding: 0px;
  margin: 0px;
  position: relative;
}

.breadcrumb img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.breadcrumb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.breadcrumb-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.breadcrumb-title ul {
  display: none;
}

.breadcrumb-title h1 {
  color: #be9667;
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 0.038em;
}

.breadcrumb-title ul li {
  display: inline-block;
  text-transform: uppercase;
  color: #757575;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0 15px 0 0;
  position: relative;
}

.breadcrumb-title ul li:before {
  content: '|';
  position: absolute;
  top: 0;
  right: -13px;
}

.breadcrumb-title ul li:last-child:before {
  display: none;
}

.breadcrumb-title ul li a {
  color: #fff;
}


/*** Breadcrumb ***/


/*** Inner page ***/

#menswear.no-padding {
  padding: 0px !important;
}

#customization.bg-none {
  background: #fff;
  padding: 50px 0;
}


/*** Inner page ***/


/*------gallery-----*/

#gallery {
  padding: 90px 0 70px;
  position: relative;
  float: left;
  width: 100%;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: transparent;
}

#lightgallery {
  justify-content: center;
}

.demo-gallery>ul {
  margin-bottom: 0;
}

.demo-gallery>ul>li {
  float: left;
  margin-bottom: 15px;
  margin-right: 5px;
  width: 200px;
}

.demo-gallery>ul>li a {
  border: 3px solid #FFF;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}

.demo-gallery>ul>li a>img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery>ul>li a:hover>img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery>ul>li a:hover .demo-gallery-poster>img {
  opacity: 1;
}

.demo-gallery>ul>li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery>ul>li a .demo-gallery-poster>img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery>ul>li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery>a>img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery .justified-gallery>a:hover>img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster>img {
  opacity: 1;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery>a .demo-gallery-poster>img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery>a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}

.demo-gallery.dark>ul>li a {
  border: 3px solid #04070a;
}

.home .demo-gallery {
  padding-bottom: 80px;
}

.lg-actions .lg-next:before {
  content: ' ' !important;
  background: url(../img/next.png);
  position: absolute;
  top: 46%;
  right: 0;
  width: 20px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.lg-actions .lg-next:after {
  display: none;
}

.lg-actions .lg-prev:after {
  display: none;
}

.lg-actions .lg-prev:before {
  content: '' !important;
  background: url('../img/prev.png');
  position: absolute;
  top: 46%;
  left: 0;
  width: 20px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.lg-close:before {
  content: '' !important;
  background: url('../img/icon-close.png');
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.lg-close:after {
  display: none;
}

#lg-download {
  display: none;
}

#lg-counter {
  display: none;
}

p:empty {
  display: none;
}

.appointment-btn .btn-submit {
  background: none;
  border: none;
  padding: 20px 40px;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  background-color: #be9667;
}

.appointment-btn {
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  margin: 0 auto;
}
.appointment-btn:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}
.appointment-btn:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.appointment-btn .ajax-loader {
  position: relative;
}

.contact-button {
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
}

.contact-button .btn-common-contact {
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  width: 100%;
  background-color: #be9667;
  border: none;
  padding: 16px 30px;
}
.contact-button:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}
.contact-button:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.contact-button .ajax-loader {
  position: relative;
}

.m-cnt {
  width: 100%;
  float: left;
  padding: 0 0;
  position: fixed;
  bottom: 0;
  background: #fff;
  display: none;
  box-shadow: 5px 5px 25px 5px #00000030;
  z-index: 9;
}

.m-cnt .m-cnt-row {
  width: 25%;
  float: left;
  text-align: center;
  padding: 10px 0;
}

.m-cnt-row.color1 {
  background: #17a2b8;
}
.m-cnt-row.color2 {
  background: #323232;
}
.m-cnt-row.color3 {
  background: #4267b2;
}
.m-cnt-row.color4 {
  background: #4caf50;
}

.m-cnt .m-cnt-row a.phone i,
.m-cnt .m-cnt-row a.phone span {
  color: #fff;
  font-size: 20px;
}

.m-cnt .m-cnt-row a.email i,
.m-cnt .m-cnt-row a.email span {
  color: #fff;
  font-size: 20px;
}

.m-cnt .m-cnt-row a.facebook i,
.m-cnt .m-cnt-row a.facebook span {
  color: #fff;
  font-size: 20px;
}

.m-cnt .m-cnt-row a.whatsapp i,
.m-cnt .m-cnt-row a.whatsapp span {
  color: #fff;
  font-size: 20px;
}

.m-cnt .m-cnt-row img {
  max-width: 18px;
}

.m-cnt .m-cnt-row span {
  width: 100%;
  display: inline-block;
}

.messenger {
  position: fixed;
  bottom: 150px;
  right: 25px;
  z-index: 9;
}

.messenger img {
  max-width: 50px;
}

.whatsapp-desktop {
  position: fixed;
  top: 42%;
  right: 25px;
  z-index: 9;
}
.fb_reset {
  position: fixed !important;
  top: 50% !important; 
  z-index: 99 !important;
}
.fb_reset .fb_dialog  {
  top: 42% !important;
  margin-top:70px;
}
.whatsapp-desktop a {
  background: none !important;
}

.whatsapp-desktop img {
  max-width: 60px;
}
a.btn-custom {
  overflow: hidden;
  position: relative;
  background-color: #be9667;
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 12px;
  display: inline-block;
}
a.btn-custom:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}
a.btn-custom:hover:after {
  left: 120%;
    -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
#contact .wpcf7-response-output {
    max-width: 50%;
    text-align: center;
    margin: 0 auto !important;
}
#s-appointment .wpcf7-response-output {
    max-width: 50%;
    color: #fff;
}
.lg-actions .lg-prev,
.lg-actions .lg-next {
  background: none;
}
.back-to-top{
	width: 38px;
}