* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: 400;
}

body {
  background: #faf6f1;
  color: #5d5d5d;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

.archivo {
  font-family: "Archivo Narrow", serif;
}

body,
html {
  width: 100%;
  height: auto;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;  
}

a {
  cursor: pointer;
  text-decoration: none;  
}

img {
  display: block;
  max-width: 100%;
}

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

img.scale {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

ul,
ol {
  list-style: none;
}

*:focus {
  outline: none !important;
}

::placeholder {
  color: #9f9f9f;
  opacity: 1;
  font-style: italic;
  font-weight: 300;
}

::-ms-input-placeholder {
  color: #9f9f9f;
  opacity: 1;
  font-style: italic;
  font-weight: 300;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.he {
  justify-content: flex-end;
}

.vc {
  align-items: center;
}

.ve {
  align-items: flex-end;
}

/* -------------------------------------------------------------------------- */

@keyframes pulsate {
  0% { 
    opacity: 0.2;
  }
  50% { 
    opacity: 1.0;
  }
  100% { 
    opacity: 0.2;
  }
}

.transition {
  transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;    
}

/* -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f5cdb9;
  z-index: 1000;
}

#preloader img {
  width: 150px;
  -webkit-animation: pulsate 3s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 3s ease-out;
  animation-iteration-count: infinite;  
}

/* -------------------------------------------------------------------------- */

#cookie {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 20px 30px;
  background: rgba(35,31,32,0.9);
  z-index: 999;
  color: #faf6f1;
  font-size: 14px;
}

#cookie a:not(.button) {
  font-weight: 600;
  text-decoration: underline;
  color: #faf6f1;
}

#cookie p.accept {
  margin-left: auto;
}

#cookie p.accept a {
  margin: 0 0 0 30px;
  transform: none;
}

/* -------------------------------------------------------------------------- */

.fancybox-navigation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.fancybox-navigation .fancybox-button {
  position: absolute !important;
}

.fancybox-bg {
  background: #111111;
}

/* -------------------------------------------------------------------------- */

.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
  height: 100%;
}

/* -------------------------------------------------------------------------- */

@media only screen
and (min-width : 1201px) {
  .ease:hover,
  section#content .page-content p a {
    opacity: 0.5;
  }
  .zoom:hover,
  .zoom-container:hover img {
    transform: scale(1.1) rotate(1deg);
    -o-transform: scale(1.1) rotate(1deg);
    -ms-transform: scale(1.1) rotate(1deg);
    -moz-transform: scale(1.1) rotate(1deg);
    -webkit-transform: scale(1.1) rotate(1deg);    
  }
  header ul li.selected a.lvl1,
  header ul li:hover a.lvl1 {
    background: #111111;
  }    
  header ul li.selected::after {    
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
    background: #111111; 
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
    -moz-path: polygon(100% 0, 0 0, 50% 100%);
    z-index: 10;
  }
  header ul li:hover ul.submenu {
    transform: translateY(calc(100% + 70px));
    -webkit-transform: translateY(calc(100% + 70px));
    -moz-transform: translateY(calc(100% + 70px));
  }
  #sticky-header.sticky {
    top: 0;
  }
  #sticky-header ul li.selected a.lvl1,
  #sticky-header ul li:hover a.lvl1 {
    background: rgba(196,124,109,0.5);
    color: #faf6f1;
  }  
  #sticky-header ul li:hover ul.submenu {
    transform: translateY(calc(100% + 110px));
    -webkit-transform: translateY(calc(100% + 110px));
    -moz-transform: translateY(calc(100% + 110px));
  }  
  section#service-list .owl-carousel:hover .item:not(:hover) {
    opacity: 0.4;
    -webkit-opacity: 0.4;
    -moz-opacity: 0.4;
  }
  section#service-list .item:hover .image-container i {
    opacity: 0.5;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
  }
  section#gallery ul li:hover .mask {
    background: rgba(174,137,88,0.8);
  }
  section#gallery ul li:hover .mask i {
    opacity: 0.5;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
  }
  section#content .service-list .services-container .service-entry:hover .click {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
  }
}

/* -------------------------------------------------------------------------- */

#main-background-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#about-background-image {
  display: none;
}

header {
  width: 100%;
  height: 70px;
  background: #c47c6d;
  z-index: 50;
}

body.body-splash header {
  background: rgba(196,124,109,0.9);
}

header .responsive-container,
#sticky-header .responsive-container {
  display: none;
}

header ul li {
  height: 100%;
}

header ul li a {
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #faf6f1;
  padding: 0 10px;  
}

header ul li a.lvl1 {
  z-index: 10;
}

header ul li a.lvl2 {
  font-size: 16px;
  margin: 5px 0;
  white-space: nowrap;
}

header ul li ul.submenu {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: max-content;
  background: rgba(196,124,109,0.9);
  padding: 10px 0;
  z-index: 5;
}

header ul li.selected ul.submenu {
  padding-top: 30px;
}

#sticky-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 200;
  background: rgba(250,246,241,0.95);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

#sticky-header img.logo {
  height: 80px;
  width: auto;
  margin-right: auto;
  margin-top: 10px;
}

#sticky-header ul li {
  height: 100%;
}

#sticky-header ul li a {
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #835b26;
  padding: 0 10px;  
}

#sticky-header ul li a.lvl1 {
  z-index: 10;
}

#sticky-header ul li a.lvl2 {
  font-size: 16px;
  margin: 5px 0;
  white-space: nowrap;  
}

#sticky-header ul li ul.submenu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 100%;
  height: max-content;
  background: rgba(250,246,241,0.95);
  padding: 10px 0;
  z-index: 5;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.2);  
}

#sticky-header ul li.selected ul.submenu {
  padding-top: 30px;
}

footer {
  padding: 75px 0 25px 0;
  background: #ae8958;
  z-index: 50;  
}

footer .logo-container {
  position: absolute;
  width: 140px;
  height: 140px;
  background: #ae8958;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  top: -70px;
}

footer .logo-container img {
  width: 135px;
  height: auto;
  margin: -8px 0 0 -23px;
}

footer p {
  text-align: center;
  font-size: 14px;
  color: #111111;
  line-height: 20px;
}

footer p a {
  color: inherit !important;
}

footer p a:not(:last-child)::after {
  content: '\2022';
  margin: 0 8px;
}

/* -------------------------------------------------------------------------- */

section#splash-image-container {
  background: #faf6f1;
  width: 100%;
  height: 570px;
  overflow: hidden;
  margin-top: -70px;
}

section#splash-image-container .image-container {
  width: 100%;
  height: 100%;
}

section#splash-image-container .image-container img.mobile {
  display: none;
}

section#splash-image-container .image-container .line1,
section#splash-image-container .image-container .line2 {
  display: none;
}

section#splash-image-container .logo-container {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}

section#splash-image-container img.logo {
  width: 380px;
  height: auto; 
  margin-top: 35px;
}

section#about-home {
  background: #c47c6d;
  width: 100%;
  height: 400px;
}

section#about-home .content {
  width: 50%;
}

section#about-home .content h1 {
  color: #faf6f1;
  font-size: 61px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;  
}

section#about-home .content h2 {
  color: #faf6f1;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: -10px;
}

section#about-home .content h3 {
  color: #faf6f1;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;  
}

section#about-home .image {
  width: 50%;
  overflow: hidden;
}

section#about-home .image .line1 {
  position: absolute;
  width: 20px;
  height: 100%;
  background: rgba(196,124,109,0.7);
  top: 0;
  left: 0;
  z-index: 20;
}

section#about-home .image .line2 {
  position: absolute;
  width: 20px;
  height: 100%;
  background: rgba(196,124,109,0.4);
  top: 0;
  left: 20px;
  z-index: 20;
}

section#service-list {
  padding-bottom: 50px;
  margin-top: -30px;
  z-index: 30;
}

section#service-list::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  background: #faf6f1;
  z-index: -1;
}

section#service-list .item .image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

section#service-list .item .image-container i {
  font-size: 80px;
  color: #faf6f1;
  position: absolute;
  z-index: 10;
  opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
}

section#service-list .item h2 {
  text-align: center;
  padding: 0 30px;
  margin: 50px 0 0 0;
  font-weight: 600;
  color: #835b26;
  text-transform: uppercase;
  font-size: 30px;
}

section#service-list .item p {
  text-align: center;
  font-style: italic;
  padding: 0 30px;
  font-size: 16px;
  line-height: 24px;
  color: #5d5d5d;
}

section#service-list .item i.more {
  display: none;
}

section#service-list .navigation-container {
  position: absolute;
  width: calc(100% + 80px);
  height: 300px;
  top: 0;
  left: -40px;
  z-index: 0;
}

section#service-list .navigation-container i {
  font-size: 36px;
  color: #835b26;
  cursor: pointer;
}

section#service-list .navigation-container .fa-chevron-left {
  margin-right: auto;
}

section#service-list .navigation-container .fa-chevron-right {
  margin-left: auto;
}

section#material-logos {
  background: #faf6f1;
}

section#material-logos .material-logo-container {
  flex-wrap: wrap;
  border-top: #dccfbe 1px solid;
  padding: 35px 0;  
}

section#material-logos .material-logo-container img {
  max-height: 100px;
  max-width: 140px;
  height: auto;
  width: auto;
  margin: 15px;
}

section#about-page {
  background: rgba(17,17,17,0.85);
  padding: 70px 0 80px 0;
}

body:not(.body-splash) section#about-page {
  padding-bottom: 120px;
}

section#about-page h2 {
  color: #faf6f1;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

section#about-page h3 {
  color: #faf6f1;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: -15px;
}

section#about-page p {
  color: #faf6f1;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 15px 0 0 0;
  opacity: 0.6;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
}

section#about-page .buttons-container {
  margin-top: 30px;
}

section#about-page a.phone {
  width: max-content;
  height: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz--radius: 20px;
  background: #ae8958;
  margin: 0 5px;
  padding: 0 20px;
  font-size: 22px;
  color: #111111;
  font-weight: 600;
}

section#about-page a.phone i {
  color: inherit;
  font-size: 24px;
  margin-right: 10px;
}

section#about-page a.social {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz--radius: 100%;
  background: #faf6f1;
  margin: 0 5px;
}

section#about-page a.social i {
  color: #111111;
  font-size: 24px;
}

section#map {
  width: 100%;
  height: 300px;
  background: #faf6f1;
}

section#map iframe {
  width: 100% !important;
  height: 100% !important;
}

section#page-image-container {
  background: #f5cdb9;
  width: 100%;
  height: 400px;
}

section#page-image-container .content {
  width: 50%;
  padding-left: calc((100vw - 1200px) / 2);
}

section#page-image-container .content .logo {
  width: 270px;
  height: auto;
}

section#page-image-container .content h1 {
  color: #111111;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: 5px;
}

section#page-image-container .image {
  width: 50%;
  overflow: hidden;
}

section#page-image-container .image .line1 {
  position: absolute;
  width: 20px;
  height: 100%;
  background: rgba(245,205,185,0.7);
  top: 0;
  left: 0;
  z-index: 20;
}

section#page-image-container .image .line2 {
  position: absolute;
  width: 20px;
  height: 100%;
  background: rgba(245,205,185,0.4);
  top: 0;
  left: 20px;
  z-index: 20;
}

section#page-logo-container {
  background: #f5cdb9;
  width: 100%;
  height: 350px;
}

section#page-logo-container .content {
  width: 100%;
}

section#page-logo-container .content .logo {
  width: 270px;
  height: auto;
}

section#page-logo-container .content h1 {
  color: #111111;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: 5px;
}

section#content {
  background: #faf6f1;
  padding: 50px 0 150px 0;
}

section#content .contact-map {
  margin-top: 50px;
  width: 100%;
  height: 300px;
}

section#content .contact-map iframe {
  width: 100% !important;
  height: 100% !important;
}

section#content .contact-approach {
  margin-top: 15px;
}

section#content .contact-approach p {
  font-size: 16px;  
  border-bottom: #dccfbe 1px solid;
  padding-bottom: 5px;  
}

section#content .contact-approach p:not(:last-child) {
  margin-bottom: 5px;  
}

section#content .contact-approach p label {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  color: #835b26;  
}

section#content .open-hour-company-container {
  margin-top: 50px;
}

section#content .open-hour-company-container .open-hour-container,
section#content .open-hour-company-container .company-container {
  width: 50%;
}

section#content .open-hour-company-container .open-hour-container {
  padding-right: 25px;
}

section#content .open-hour-company-container .company-container {
  padding-left: 25px;
}

section#content .open-hour-company-container h3 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #835b26;
  text-transform: uppercase;
  font-size: 30px;  
}

section#content .open-hour-company-container .open-hour-container .row:not(:last-child) {
  margin-bottom: 10px;
}

section#content .open-hour-company-container .open-hour-container .row .day {
  width: 200px;
  background: #c47c6d;
  height: 30px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #faf6f1;
  text-transform: uppercase;
}

section#content .open-hour-company-container .open-hour-container .row .day::after {
  content: '';
  position: absolute;
  top: 0;
  right: 10px;
  width: 10px;
  height: 100%;
  background: #d39484;
}

section#content .open-hour-company-container .open-hour-container .row .day::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: #e1ad9b;
}

section#content .open-hour-company-container .open-hour-container .row .hours {
  width: 200px;
  background: #f5cdb9;
  height: 30px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  flex-grow: 1;
}

section#content .open-hour-company-container .company-container .row:not(:last-child) {
  border-bottom: #dccfbe 1px solid;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

section#content .open-hour-company-container .company-container .row .left {
  width: 200px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #835b26;
  text-transform: uppercase;
}

section#content .open-hour-company-container .company-container .row .right {
  height: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #835b26;
}

section#content .open-hour-company-container .company-container .row .right a {
  color: inherit;
}

section#gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #faf6f1;
  z-index: -1;
}

section#gallery .gallery-wrapper {
  padding-top: 50px;
}

section#gallery h2 {
  font-weight: 600;
  color: #835b26;
  text-transform: uppercase;
  font-size: 30px;  
}

section#gallery h3 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;  
}

section#gallery ul {
  flex-wrap: wrap;
  margin-top: 30px;
}

section#gallery ul li {
  width: calc(100% / 4);
  aspect-ratio: 3/2;
  -webkit-aspect-ratio: 3/2;
  -moz-aspect-ratio: 3/2;
  overflow: hidden;
}

section#gallery ul li .mask {
  background: rgba(174,137,88,0);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 20;
}

section#gallery ul li .mask i {
  font-size: 80px;
  color: #faf6f1;
  position: absolute;
  z-index: 10;
  opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
}

section#team {
  margin-top: -30px;
}

section#team::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  background: #faf6f1;
  z-index: -1;
}

section#team .team-member:not(:last-child) {
  margin-bottom: 30px;
}

section#team .team-member .image {
  width: 400px;
  height: 450px;
  overflow: hidden;
  flex-shrink: 0;
}

section#team .team-member .image .line1 {
  position: absolute;
  width: 20px;
  height: 100%;
  background: rgba(196,124,109,0.7);
  top: 0;
  right: 0;
  z-index: 20;
}

section#team .team-member .image .line2 {
  position: absolute;
  width: 20px;
  height: 100%;
  background: rgba(196,124,109,0.4);
  top: 0;
  right: 20px;
  z-index: 20;
}

section#team .team-member .content {
  flex-grow: 1;
  height: 450px;
  background: #c47c6d;
  padding: 50px;
}

section#team .team-member .content h2 {
  color: #faf6f1;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 400;
}

section#team .team-member .content h3 {
  color: #faf6f1;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: -5px;
}

section#team .team-member .content p {
  color: #faf6f1;
  font-size: 14px;
  line-height: 19px;
  font-style: italic;
  text-align: justify;
  margin-top: 15px;
}

section#team .team-member .content p i.fa-quote-left {
  position: absolute;
  top: -5px;
  left: -30px;
  font-size: 25px;
  opacity: 0.25;
  -webkit-opacity: 0.25;
  -moz-opacity: 0.25;
}

section#team .team-member .content .team-buttons {
  margin-top: auto;
}

section#team .team-member .content a.phone,
section#team .team-member .content a.instagram {
  width: max-content;
  height: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz--radius: 20px;
  background: #faf6f1;
  margin: 0 5px;
  padding: 0 20px;
  font-size: 22px;
  color: #111111;
  font-weight: 600;
}

section#team .team-member .content a.phone i,
section#team .team-member .content a.instagram i {
  color: inherit;
  font-size: 24px;
  margin-right: 10px;
}

section#content .page-content :first-child,
#service-fancy-box .page-content :first-child {
  margin-top: 0 !important;
}

section#content .page-content :last-child,
#service-fancy-box .page-content :last-child {
  margin-bottom: 0 !important;
}

section#content .page-content p,
#service-fancy-box .page-content p {
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  margin: 15px 0;
}

body.body-404 section#content .page-content p {
  text-align: center !important;
}

body.body-404 section#content .icon-wrapper {
  margin-bottom: 30px;
}

body.body-404 section#content .icon-wrapper i {
  font-size: 80px;
  color: #835b26;
}

section#content .page-content p b,
section#content .page-content p strong,
#service-fancy-box .page-content p b,
#service-fancy-box .page-content p strong {
  font-weight: 700;
}

section#content .page-content p a,
#service-fancy-box .page-content p a {
  color: #835b26;
  text-decoration: underline;
  transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;  
}

section#content .page-content ul li::before,
#service-fancy-box .page-content ul li::before {
  content: '\2022';
  color: #835b26;
  font-weight: 800;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

section#content .page-content ol li,
#service-fancy-box .page-content ol li {
  counter-increment: list;
}

section#content .page-content ol li::before,
#service-fancy-box .page-content ol li::before {
  content: counter(list);
  color: #835b26;
  font-weight: 800;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

section#content .page-content ul,
section#content .page-content ol,
#service-fancy-box .page-content ul,
#service-fancy-box .page-content ol {
  margin: 15px 0 0 30px;
  list-style-position: outside;
}

section#content .service-list {
  width: 100%;
  max-width: 800px;
  margin: 25px auto 0 auto;
}

section#content .service-list h2 {
  font-size: 30px;
  color: #835b26;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 25px;
}

section#content .service-list h2 i {
  font-size: 36px;
  position: absolute;
  right: 0;
}

section#content .service-list h2.opened i.fa-chevron-down {
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

section#content .service-list .services-container {
  display: none;
}

section#content .service-list .services-container .service-entry  {
  margin: 10px 0;
  flex-wrap: wrap;
  cursor: pointer;
}

section#content .service-list .services-container .service-entry h3 {
  width: 590px;
  background: #f5cdb9;
  padding: 5px 20px;
  font-size: 16px;
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;  
}

section#content .service-list .services-container .service-entry .time {
  width: 60px;
  background: #c47c6d;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  z-index: 10;  
}

section#content .service-list .services-container .service-entry .time .line1,
section#content .service-list .services-container .service-entry .time .line2 {
  display: none;
}

section#content .service-list .services-container .service-entry .price {
  width: 150px;
  background: #f5cdb9;
  text-align: right;
  padding-right: 20px;
  font-size: 18px;
  color: #111111;
  font-weight: 600;
  z-index: 10;  
}

section#content .service-list .services-container .service-entry .price .line1 {
  position: absolute;
  width: 10px;
  height: 100%;
  background: rgba(196,124,109,0.7);
  top: 0;
  left: 0;
  z-index: 20;
}

section#content .service-list .services-container .service-entry .price .line2 {
  position: absolute;
  width: 10px;
  height: 100%;
  background: rgba(196,124,109,0.4);
  top: 0;
  left: 10px;
  z-index: 20;
}

section#content .service-list .services-container .service-entry .price .more {
  display: none;
}

section#content .service-list .services-container .service-entry p {
  width: 590px;
  padding: 10px 0 10px 20px;
  text-align: justify;
  font-style: italic;
  font-size: 14px;
  line-height: 19px;
  z-index: 10;
}

section#content .service-list .services-container .service-entry .click {
  position: absolute;
  top: -10px;
  left: -200px;
  width: 870px;
  height: calc(100% + 10px);
  background: #f7e1d5;
  opacity: 0;
  -webkit-opacity: 0;
  -moz-opacity: 0;
}

section#content .service-list .services-container .service-entry .click i {
  font-size: 50px;
  color: #faf6f1;
  position: absolute;
  z-index: 10;
  opacity: 0.5;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  margin-left: 20px;
}

section#content .service-list .service-content {
  display: none;
}

section#content .service-list-table {
  width: calc(100% + 30px);
  height: max-content;
  margin: 15px -15px -15px -15px; 
  flex-wrap: wrap;
}

section#content .service-list-table .service-list-col {
  margin: 0 15px;
  width: calc(50% - 30px);
}

section#content .service-category-container {
  margin: 30px 0 0 0;
}

section#content .service-list-table h2 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #835b26;
  text-transform: uppercase;
  font-size: 30px;    
}

section#content .service-list-table .service-entry {
  margin-top: 10px;
}

section#content .service-list-table .service-entry:not(.has-description) {
  cursor: default;
}

section#content .service-list-table .service-entry h3 {
  width: auto;
  background: #f5cdb9;
  padding: 5px 20px;
  font-size: 16px;
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
  flex-grow: 1;
}

section#content .service-list-table .service-entry .price {
  width: 180px;
  padding-left: 20px;
  background: #c47c6d;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  z-index: 10;  
  flex-shrink: 0;
}

section#content .service-list-table .service-entry .price .line1 {
  position: absolute;
  width: 10px;
  height: 100%;
  background: rgba(245,205,185,0.7);
  top: 0;
  left: 0;
  z-index: 20;
}

section#content .service-list-table .service-entry .price .line2 {
  position: absolute;
  width: 10px;
  height: 100%;
  background: rgba(245,205,185,0.4);
  top: 0;
  left: 10px;
  z-index: 20;
}

section#content .service-list-table .service-entry .info-row {
  background: #f7e1d5;
  padding: 5px 20px;
  font-style: italic;
  font-size: 14px;
  line-height: 19px;  
}

section#content .service-list-table .service-content {
  display: none;
}

section#content .service-list-table .service-entry .info-row .more {
  margin-left: auto;
  font-size: 12px;
  font-style: italic;
  color: #c2a68f;  
}

section#content .service-list-table .service-entry .info-row .more i {
  color: #835b26;
  font-size: 20px;
  margin-left: 5px;
}

#service-fancy-box {
  width: 800px;
  height: 100%;
  background: #faf6f1; 
}

#service-fancy-box .page-content h2 {
  font-size: 30px;
  color: #835b26;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;  
}

section#skeyndor-home {
  width: 100%;
  height: auto;
  background: #faf6f1;
  z-index: 40;
}

section#skeyndor-home .container {
  height: 100%;
}

section#skeyndor-home .image {
  width: 50%;
}

section#skeyndor-home .image .image-position {
  position: absolute;
  top: -30px;
  left: 0;
  width: max-content;
}

section#skeyndor-home .content .more-responsive {
  display: none;
}

section#skeyndor-home .image .image-position .more {
  margin: 30px 0 0 auto;
  font-size: 12px;
  font-style: italic;
  color: #c2a68f;
  width: max-content;
}

section#skeyndor-home .image .image-position .more i {
  color: #835b26;
  font-size: 25px;
  margin-left: 5px;
}

section#skeyndor-home .content {
  width: 50%;
  padding: 50px 0;
}

section#skeyndor-home .content h2 {
  color: #000000;
  font-size: 54px;
  line-height: 54px;
  font-weight: 700;
  text-transform: uppercase;
}

section#skeyndor-home .content h3 {
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  color: #835b26;
  font-size: 18px;
  margin-bottom: 15px;
}

section#skeyndor-home .content p {
  text-align: justify;
  font-size: 16px;
  line-height: 24px;
  color: #5d5d5d;
}

.skeyndor-images {
  margin-top: 45px;
}

.skeyndor-images img {
  width: calc(50% - 15px);
}

.skeyndor-images img:first-child {
  margin-right: 30px;
}

.skeyndor-video {
  width: 100%;
  margin-top: 30px;
}

.skeyndor-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}