html {
  font-size: 62.5%;
}

body {
  font: 300 1.75rem/1.65 var(--font-1);
  color: var(--color-main);
  background: url('/gfx/wood-rings.png') no-repeat 130% 100% #fff;
  background-size: 50%;
  background-attachment: fixed;
  overflow-x: hidden;
}

#headerHolder {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #fff;
}

header {
  max-width: var(--page-width-mobile);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

#logoWrap {
  margin-right: 40px;
}

#logo {
  margin: 0;
  background: #fff;
  text-decoration: none;
  perspective: 1000px;
}

#logo,
#logo img,
#logo svg {
  display: block;
  transition: width 250ms ease-out, height 250ms ease-out;
  width: 100%;
  height: 100%;
}

#logo svg #logo-rk {
  transition: transform 500ms cubic-bezier(.17,.67,.83,.67);
  will-change: transform;
  transform-origin: center;
}

#logo:hover svg #logo-rk {
  transform: rotateY(360deg);
}

#logo:hover svg #logo-frame path:last-child {
  transition: fill 500ms ease;
}

#logo:hover svg #logo-frame path:last-child {
  fill: #ddd;
}


/* MENU */
nav {
  display: none;
  position: relative;
  background: var(--color-1);
  padding: 18px 0;
  transition: padding 250ms ease;
}

nav::after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100vw);
  background: var(--color-1);
}

nav i.fa-home {
  position: relative;
}

nav .menuItem {
  height: 75px;
  position: relative;
  z-index: 3;
}

nav .menuItem > a,
#navSidebar .menuItem > a {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0 30px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(139, 89, 20, .4);
  text-align: center;
  white-space: nowrap;
  color: #fff;
  position: relative;
  z-index: 3;
}

nav .menuItem > a {
  border-right: 1px solid #f5eaca;
}

nav .menuItem > a::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  background: #f5eaca;
}

nav .menuItem:nth-last-child(2) a {
  border-right: none;
}

nav .menuItem:nth-last-child(2) a::after {
  display: none;
}

nav .menuItem:hover a,
nav .menuItem a.active {
  /* color: #8b5914; */
  color: #83520d;
  text-shadow: 1px 1px 0 rgba(255,255,255,.4);
}

nav .menuItem:hover .dropdown::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 30px;
  top: 0;
  margin-left: -8px;
  z-index: 3;
  border-style: solid;
  border-width: 6px 8px 0 8px;
  border-color: #c6aa59 transparent transparent transparent;
  opacity: 0;
  animation: showDropArrow .25s ease .1s forwards;
}

nav .menuItem:last-child:hover .dropdown::after {
  left: auto;
  right: 30px;
}

/* dropdown */
nav .menuItem .dropdown {
  display: none;
  min-width: 250px;
  max-width: 400px;
  max-height: calc(90vh - 90px); /* minus #headerHolder height */
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  background: #fff;
  padding: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, .25);
}

nav .menuItem:last-child .dropdown {
  left: auto;
  right: 0;
}

nav .menuItem .dropdown a {
  display: block;
  height: auto;
  margin: 0;
  padding: 17px 30px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 1px 1px 0 #fff;
  color: var(--color-main);
  background: #fff;
  border-right: none;
  border-bottom: 1px solid #ededed;
}

@media screen and (max-height:768px) {
  nav .menuItem .dropdown a {
    padding: 14px 30px;
  }
}

nav .menuItem .dropdown a:last-child {
  border-bottom: none;
}

/* nav .menuItem:focus-within > .dropdown, */
nav .menuItem:hover .dropdown {
  display: block;
  animation: showDropMenu 0.25s ease forwards;
  transform-origin: top;
}

nav .menuItem:hover .dropdown a:hover,
nav .menuItem:hover .dropdown a.active {
  color: #cdad4c;
  padding-left: 35px;
  padding-right: 25px;
  background: #f2f2f2;
}

nav .menuItem:hover .dropdown a.active {
  padding-left: 30px;
}

@keyframes showDropMenu {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showDropArrow {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.burgerMenu {
  position: fixed;
  top: 30px;
  right: 25px;
  z-index: 95;
  background: rgba(0, 0, 0, 0.1);

  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 25px;
  cursor: pointer;
  transition: top 250ms ease;
}

.burgerMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: all 250ms ease;
  transform: rotate(0deg);
}

.burgerMenu:hover span {
  background: var(--color-1);
}

.burgerMenu span:first-child {
  top: 0;
}

.burgerMenu span.middle {
  top: 10px;
}

.burgerMenu span:last-child {
  top: 20px;
}

.burgerMenu.open span:first-child {
  transform: rotate(45deg);
  top: 10px;
}

.burgerMenu.open span:last-child {
  transform: rotate(-45deg);
  top: 10px;
}

.burgerMenu.open .middle {
  opacity: 0;
}

.burgerMenu.open span {
  background: var(--color-1);
}


/* NAVSIDEBAR */
#navSidebar {
  width: 300px;
  height: 100%;
  background: url('/gfx/wood-rings-sidebar.png') no-repeat 10px 0 var(--color-1);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 20px;
  transition: transform 500ms ease-in-out;
  will-change: transform;
  transform: translateX(100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#navSidebar .menuItem:last-child {
  margin-bottom: 25px;
}

#navSidebar .menuItem a {
  height: auto;
  margin: 0 0 5px;
  padding: 10px 20px 12px;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  text-shadow: 1px 1px 0 rgba(139, 89, 20, .4);
  text-transform: uppercase;
  white-space: normal;
}

#navSidebar .menuItem:first-child a {
  padding: 12px 20px;
}

#navSidebar .menuItem a:hover,
#navSidebar .menuItem a.active {
  background: #8b5914;
  color: #fff;
}

#navSidebar .menuItem a.active {
  background: #8b5914;
}

#navSidebar .dropdown {
  display: none;
  margin-left: 20px;
  transform: translateY(5px);
}

#navSidebar .menuItem .dropdown a {
  display: block;
  text-transform: none;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 1;
}

#navSidebar .menuItem .dropdown a::before {
  content: "";
  height: 100%;
  width: 1px;
  background: #8b5914;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background 250ms ease;
}

#navSidebar .menuItem .dropdown a:last-child {
  border-bottom: none;
  margin-bottom: 20px;
}

#navSidebar .menuItem .dropdown a.active {
  background: #fff;
  color: #8b5914;
  text-shadow: 1px 1px 0 rgba(255,255,255,.4);
}

#navSidebar .menuItem .dropdown a.active::before,
#navSidebar .menuItem .dropdown a:hover::before {
  opacity: 0;
}

#navSidebar .menuItem .dropdownExpand {
  display: block;
}


/* SLIDER HEADER */
#sliderDesc {
  width: 100%;
  height: 100%;
  /* height: calc(var(--vh, 1vh) * 100); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(255,255,255,0) 50%);
  pointer-events: none;
}

#sliderDesc.show {
  display: flex;
}

#sliderDesc .slider-header {
  display: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-width: 80%;
}

#sliderDesc .slider-header span {
  position: relative;
}

#sliderDesc .slider-header .header-preamble {
  display: block;
  color: var(--color-1);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.1;
  padding: 0;
}

#sliderDesc .slider-header .header-preamble::before,
#sliderDesc .slider-header .header-preamble::after {
  content: "";
  width: 0;
  height: calc(100% - 18px);
  position: absolute;
  left: 0;
  top: 18px;
  border-left: 3px solid rgba(255, 255, 255, .8);
}

#sliderDesc .slider-header .header-preamble::after {
  left: auto;
  right: 0;
}

#sliderDesc .slider-header .header-preamble span {
  display: inline-block;
  padding: 0 30px;
}

#sliderDesc .slider-header .header-preamble span::before,
#sliderDesc .slider-header .header-preamble span::after {
  content: "";
  width: 100vw;
  height: 0;
  border-top: 3px solid rgba(255, 255, 255, .8);
  position: absolute;
  top: 15px;
  left: -100vw;
}

#sliderDesc .slider-header .header-preamble span::after {
  left: 100%;
}

#sliderDesc .slider-header .header-text {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 9.2rem;
  font-weight: 500;
  line-height: 1;
  padding: 5px 60px 30px 60px;
  border: 3px solid rgba(255, 255, 255, .8);
  border-top: none;
}

#sliderDesc .slider-header.show {
  display: block;
}


/* SLIDER - SWIPER */
#mainSlider {
  width: 100%;
  /* height: 100vh; */
  height: calc(var(--vh, 1vh) * 100);
  min-height: 270px;
}

#mainSlider.slider-subpage {
  min-height: 150px;
  height: 150px;
  z-index: 3;
}

#mainSlider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
}

#mainSlider .swiper-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(31, 26, 23, .45);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 400ms ease;
  will-change: opacity;
}

#mainSlider.slider-subpage .swiper-overlay {
  background: rgba(31, 26, 23, .5);
}

#mainSlider .swiper-overlay.show {
  opacity: 1;
}

#mainSlider .swiper-slide img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mainSlider .swiper-pagination {
  display: flex;
  align-items: center;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  width: var(--page-width-mobile);
}

#mainSlider.slider-subpage .swiper-pagination {
  display: none;
}

#mainSlider #go-down {
  position: absolute;
  left: 50%;
  bottom: 80px;
  z-index: 10;
  transform: translateX(-50%);
}

#mainSlider.slider-subpage #go-down {
  display: none;
}

#page {
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 0 #fff;
}


.section {
  max-width: var(--page-width-mobile);
  position: relative;
  margin: 0 auto;
  padding: 0;
}

/* SECTION ABOUT */
#section-about {
  display: flex;
  flex-flow: row wrap;
}

#about-picture {
  width: 40%;
  padding: 60px 0;
  border-top: 30px solid var(--color-1);
  z-index: 1;
}

#picture-crossfade {
  position: relative;
  border: 10px solid #fff;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
}

#picture-crossfade picture {
  display: block;
  position: absolute;
  z-index: 1;
  max-width: 100%;
}

#picture-crossfade picture.active {
  z-index: 3;
}

#picture-crossfade img {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

#about-txt {
  width: 60%;
  padding: 85px 0 30px 70px;
}

.prolog {
  font-family: var(--font-2);
  font-size: 3rem;
  line-height: 1.1;
}

#about-txt .prolog {
  margin: 0 0 10px;
  color: var(--color-2);
}

#about-txt h1 {
  display: block;
  position: relative;
  margin: 0 0 30px;
  padding-right: 20px;
  width: calc(100% - 220px);
  color: var(--color-1);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
  z-index: 1;
}

#about-txt h1::before {
  content: "";
  position: absolute;
  left: -145px;
  top: 30px;
  width: 120px;
  height: 2px;
  background: var(--color-2);
}

#about-txt h1::after {
  content: "";
  width: 261px;
  height: 204px;
  background: url('/gfx/wood.png') no-repeat 0 0;
  background-size: contain;
  position: absolute;
  top: -80px;
  left: 100%;
  z-index: -1;
}

#about-lead {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
  color: #544438;
  margin: 0 0 30px;
}

#cooperation {
  font-family: var(--font-2);
  font-size: 2.5rem;
  color: var(--color-2);
  text-align: right;
}


#about-more {
  width: 100%;
  text-align: right;
  overflow: hidden;
}

#about-more a.button::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(-100vw - 15px);
  z-index: -1;
  width: 100vw;
  height: 0;
  border-top: 2px solid var(--color-1);
  cursor: default;
  pointer-events: none;
}


/* SECTION OFFER */
#section-offer {
  margin: 40px 0 0;
}

#offer-head {
  max-width: var(--page-width-mobile);
  position: relative;
  margin: 0 auto 45px;
  overflow: hidden;
}

#offer-head .prolog {
  margin: 0 0 10px;
  padding-left: 80px;
  color: var(--color-1);
}

#offer-head h2 {
  display: block;
  position: relative;
  margin: 0 0 5px;
  color: var(--color-3);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
  padding-left: 80px;
}

#offer-head h2::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  z-index: 1;
  width: 45px;
  height: 2px;
  background: var(--color-3);
}

#offer-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 45px;
  height: 100vh;
  background: var(--color-1);
}

#offer-slider-wrapper {
  position: relative;
  background: rgba(211,168,40,.7);
  overflow: hidden;
}

#offer-slider-wrapper .swiper-container {
  max-width: var(--page-width-mobile);
  margin: 0 auto;
  padding: 60px 0;
}

.offer-box {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 0;
}

.offer-box span.sd {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 450px;
  overflow: hidden;
  border: 10px solid #fff;
  background: #fff;
}

.offer-box span.text-above {
  opacity: 0;
  display: flex;
  align-items: center;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  overflow: hidden;
  transform: scale(.7);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  text-shadow: 1px 1px 0 rgba(255,255,255,1);
  color: var(--color-main);
  border: 4px solid var(--color-2);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.offer-box span.text-above span {
  display: inline-block;
  position: relative;
  margin-left: 35px;
  padding-right: 500px;
}

.offer-box span.text-above span::after {
  content: "";
  width: 200%;
  height: 0;
  border-bottom: 2px solid var(--color-1);
  position: absolute;
  top: 50%;
  right: calc(-200% + 490px);
}

.offer-box picture {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 250ms ease-in-out, opacity 250ms ease-in-out;
}

.offer-box picture img {
  display: block;
  width: 100%;
}

.offer-box h3 {
  display: block;
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding: 0 10px;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(255,255,255,.5);
  color: var(--color-main);
  transition: color 150ms ease-in-out, opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.offer-box:hover span.text-above {
  opacity: 1;
  transform: scale(1);
}

.offer-box:hover picture {
  transform: scale(.85) rotate(0.2deg);
  opacity: .1;
}

.offer-box:hover h3 {
  color: var(--color-3);
  opacity: 0;
  transform: translateY(-50%);
}

.offer-swiper-pagination {
  padding: 15px 0 20px;
  text-align: center;
}

.offer-swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  opacity: 0;
  cursor: default !important;
}

.offer-swiper-pagination .swiper-pagination-bullet.show {
  margin: 0 5px;
  opacity: 1;
  cursor: pointer !important;
}

.offer-swiper-pagination .swiper-pagination-bullet::before {
  background: var(--color-1);
}

.offer-swiper-pagination .swiper-pagination-bullet-active::before {
  background: var(--color-2);
}

.offer-control {
  display: none;
  position: absolute;
  top: 195px;
  z-index: 1;
  font-size: 8rem;
  line-height: 1;
  color: #fff;
  text-shadow: none;
  cursor: pointer;
}

.offer-control i {
  position: relative;
  transition: transform 300ms ease;
}

.offer-button-prev {
  left: calc((100vw - var(--page-width-desktop)) / 2 - 79px);
}

.offer-button-next {
  right: calc((100vw - var(--page-width-desktop)) / 2 - 80px);
}

.offer-button-prev:hover i {
  transform: translateX(-10px);
}

.offer-button-next:hover i {
  transform: translateX(10px);
}

/* .swiper-button-disabled {opacity: 0 !important; } */


/* FOOTER */
footer {
  clear: both;
  margin-top: 20px;
  position: relative;
}

footer::after {
  content: "";
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  bottom: -100vh;
  z-index: -1;
  background: #544438;
}

#footer-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page-width-mobile);
  margin: 0 auto;
  padding: 40px 0;
  border-top: 2px solid var(--color-1);
}

#item-logo-holder {
  width: 25%;
}

#item-contactdata-holder {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#footer-data .item {
  display: flex;
  padding-right: 20px;
}

#footer-data .item:last-child {
  padding-right: 0;
}

#footer-data .item-logo img {
  margin: 0;
  max-width: 120px;
}

#footer-data .item-icon {
  margin: 5px 20px 0 0;
}


#footer-data .item-data {
  font-weight: 300;
  line-height: 1.4;
}

#footer-data .item-data span {
  display: block;
  margin-bottom: 2px;
  font-weight: 300;
  letter-spacing: 1px;
}

#footer-data .item-data a {
  color: var(--color-main);
}

#footer-data .item-data a:hover {
  color: var(--color-1);
}

#footer-data .item-data a[href^="tel:"],
#footer-data .item-data a[href^="mailto:"],
#footer-data .item-data .bigger {
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 400;
}

#footer-data .item-data .bigger {
  margin-bottom: 5px;
}

#footer-end {
  width: 100%;
  padding: 10px 0;
  background: #544438;
}

#footer-end-data {
  display: flex;
  justify-content: space-between;
  width: var(--page-width-mobile);
  margin: 0 auto;
}

#footer-end-data p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .35);
}

#footer-end-data .nav {
  margin-right: 50px;
}

#footer-end-data a {
  display: inline-block;
  position: relative;
}

#footer-end-data a:hover {
  color: #fff;
}

#footer-end-data a.link {
  white-space: nowrap;
  margin-bottom: 6px;
}

#footer-end-data a.link::after {
  content: "|";
  display: inline-block;
  padding-left: 15px;
  padding-right: 10px;
  color: rgba(255, 255, 255, .35);
}

#footer-end-data .nav .copy {
  display: inline-block;
  line-height: 1.4;
}

#footer-end-data .design {
  text-align: right;
}



/* BUTTONS  */
.button {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  position: relative;
  z-index: 1;
  vertical-align: top;
  padding: 10px 35px;
  border: 2px solid var(--color-1);
  background: rgba(255, 255, 255, .7);
  outline: none;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-1);
  /* white-space: nowrap; */
  transition: color 250ms ease, background 250ms ease, padding 250ms ease, letter-spacing 250ms ease;
}

.button i {
  letter-spacing: 0;
  font-size: 2.5rem;
  line-height: 1.2;
  transition: color 250ms ease;
}

.button i:first-child {
  margin-right: 10px;
}

.button i:last-child {
  margin-left: 10px;
}

.button:not(:disabled):hover {
  background: var(--color-1);
  color: #fff;
  letter-spacing: 4px;
  text-shadow: none;
  padding: 10px 22px;
}

.button:not(:disabled):hover i {
  color: var(--color-2);
}

.button:disabled {
  cursor: default;
  opacity: .5;
}

/* .btn link  */
#subPage .button.btn {
  margin: 10px 0;
  font-weight: 400;
}


/* Section subPage  */
#subPage h1 {
  display: block;
  position: relative;
  margin: 40px 0;
  padding: 30px 0 20px;
  color: var(--color-3);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
  z-index: 1;
}

#subPage h1::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 40%;
  border-top: 30px solid var(--color-1);
}

#subPage h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e3e3e3;
}

#subPage h1 span {
  display: block;
}



#subPage h2,
#subPage h3,
#subPage h4 {
  display: block;
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 1.3;
}

#subPage h2 {
  font-size: 2.8rem;
}

#subPage h3 {
  font-size: 2.2rem;
}

#subPage h4 {
  font-size: 2rem;
}

hr {
  display: block;
  height: 1px;
  width: 100%;
  margin: 40px 0;
  padding: 0;
  overflow: hidden;
  clear: both;
  background: #e3e3e3;
  border: none;
}

hr.marginsmall {
  margin: 20px 0;
}

ul, ol {
  margin: 30px 0;
}

p + ul, p + ol {
  margin-top: -15px;
}

ul ul,
ol ol {
  margin: 0;
}

ul {
  list-style-image: url('/gfx/li.svg');
  padding-left: 40px;
}

li {
  position: relative;
  margin-left: 0;
  margin-bottom: 5px;
  padding-left: 5px;
  padding-right: 0;
}

blockquote {
  margin: 35px 0 35px 30px;
  padding: 5px 0 5px 20px;
  border-left: 5px solid var(--color-1);
}

#subPage blockquote p {
  margin: 20px 0;
}

a {
  text-decoration: none;
  color: var(--color-1-darker);
}

a:hover {
  color: var(--color-main);
}

/* invers color */
a.i {
  color: var(--color-main);
}

a.i:hover {
  color: var(--color-1);
}

/* page with sidebar/aside */
#pageAside {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
  grid-column-gap: 0;
  grid-template-areas: "content" "sidebar";
}

#content {
  grid-area: content;
}

aside {
  grid-area: sidebar;
  background: rgba(0, 0, 0, .05);
  padding: 20px 20px 40px;
  margin-top: 30px;
}

#subPage aside h4 {
  display: block;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  column-span: all;
  padding-left: 25px;
  border-left: 5px solid var(--color-1);
}

#asideWrapper {
  position: relative;
  transition: all 400ms ease-in-out 50ms;
}

#asideMenu {
  display: flex;
  justify-content: space-between;
}

#asideMenu .item {
  width: 45%;
}

#asideMenu a:not(.ns) {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 15px 10px 15px 25px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: none;
  color: var(--color-main);
  border-left: 5px solid var(--color-1);
}

#asideMenu a:not(.ns)::before { display: none; }

#asideMenu a:not(.ns):hover,
#asideMenu a:not(.ns).active {
  color: #fff;
  background: var(--color-1);
  text-shadow: 1px 1px 0 rgba(139, 89, 20, .4);
}

#asideMenu a:not(.ns).active {
  font-weight: 500;
}

#asideMenu hr {
  display: none;
}

/* question box  */
#qBox {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 15px 15px 20px;
  font-size: 2.3rem;
  line-height: 1.2;
  color: inherit;
  text-shadow: none;
  border: 3px solid #fff;
  background: #f2f2f2;
  background: linear-gradient(135deg,  rgba(0, 0, 0, .05) 0%,#eae9e9 100%);
}

#qBox::before {
  display: none;
}

#qBox_head {
  display: flex;
  align-items: center;
  background: url('/gfx/q.svg') no-repeat 100% 0;
  padding: 0 80px 10px 0;
  min-height: 85px;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

#qBox_body {
  display: block;
  margin-top: 7px;
  padding-top: 10px;
  border-top: 2px solid #fff;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 300;
  transition: padding 250ms ease;
}

#qBox img {
  position: relative;
  top: 2px;
  margin-left: 5px;
  transition: margin-left 250ms ease;
}

#qBox:hover {
  color: #fff;
  background: var(--color-2);
  border: 3px solid var(--color-2);
}

#qBox:hover #qBox_body {
  padding-top: 18px;
}

#qBox:hover img {
  margin-left: 12px;
}

/* buttons  */
#subPage .button { display: inline-flex; }

#subPage .button::before { display: none; }


/* underline effect to a */
#subPage a {
  display: inline-block;
  position: relative;
}

#subPage a:not(.zoom):not(.nu)::before {
  content: "";
  width: 0;
  height: 2px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 250ms ease;
}

#subPage a:hover::before {
  background: var(--color-1);
  width: 100%;
}

#subPage p {
  margin: 0 0 25px;
}

#subPage p.sep {
  margin: 15px 0;
  height: 0;
}

#subPage p.mar-top {
  margin-top: 25px;
}

/* contact page  */
#pageContact h3 {
  line-height: 1.1;
}

#pageContact h3 .text-small {
  font-size: 80%;
  font-weight: 400;
}

#pageContact .col-2 h4 {
  font-size: 110%;
  font-weight: 400;
  color: var(--color-1);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#pageContact #form-map {
  display: flex;
  margin-top: 75px;
  border-top: 8px solid var(--color-1);
}

#pageContact .box1 {
  width: 50%;
  padding: 30px 60px 30px 40px;
  background: #fff;
  position: relative;
}

#pageContact .box1::before {
  content: "";
  width: 50vw;
  height: 100%;
  position: absolute;
  left: -50vw;
  top: 0;
  z-index: -1;
  background: #f0f0f0;
}

#pageContact .box1 h4 {
  margin-top: 0;
}

#pageContact .box2 {
  width: 50%;
}

#map {
  display: block;
  width: 50vw;
  height: 100%;
  background: #f2f2f2;
  position: relative;
}

#map img {
  display: initial;
  position: absolute;
  box-shadow: none;
  border: none;
  margin: inherit;
  padding: inherit;
}

#mapCaption {
  font: 400 1.5rem/21px 'Lato', Arial, sans-serif;
  padding: 10px;
}

#mapCaption strong {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

#mapCaption a {
  display: inline-block;
  margin-top: 5px;
}

.gm-ui-hover-effect {
  top: 0 !important;
  right: 0 !important;
}

#subPage .gm-ui-hover-effect img {
  margin: 0 !important;
  left: 4px;
  bottom: 4px;
}

#subPage .gm-control-active img {
  display: none;
}

#subPage .gm-control-active img:nth-child(1) {
  display: block;
}

#subPage .gm-control-active:hover img:nth-child(1) {
  display: none;
}

#subPage .gm-control-active:hover img:nth-child(2) {
  display: block;
}




/* IMAGES */
picture {
  display: inline-block;
}

img:not(.ins) { /* all img except ins class (ins = img not style) */
  display: none;
  margin: 20px 10px;
  max-width: calc(100% - 20px); /* minus 20px - left + right margin */
  height: auto;
}

img.ins { /* img not styled */
  display: inline-block;
  border: none;
  box-shadow: none;
}

img.img,
.img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto !important;
  margin: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 10px solid #fff;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
  transition: background 300ms ease;
}

img.img.noborder {
  box-shadow: none;
  border: none;
  margin: 0;
  user-select: none;
}

img.img {
  margin: 0 15px 15px 0;
}

.img > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
  transition: transform 400ms ease, opacity 300ms ease;
}

.img::before {
  content: "";
  display: none;
  width: 100px;
  height: 100px;
  background: url('/gfx/zoom.svg') no-repeat 50%;
  background-size: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scaleX(1);
  transition: transform 300ms ease, opacity 300ms ease-in-out;
}

.img.link::before {
  background-image: url('/gfx/link.svg');
}

.imgLeft {
  display: block;
  float: left;
  font-size: 0;
  text-align: center;
  margin: 0 50px 25px 0;
}

.imgRight {
  display: block;
  float: right;
  font-size: 0;
  text-align: center;
  margin: 0 0 25px 50px;
}

.imgCenter {
  display: block;
  font-size: 0;
  text-align: center;
  margin: 0 0 40px;
}

.zoom {
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.zoom .img {
  display: block;
  font-size: initial;
  background: linear-gradient(to top, var(--color-1) 0%, rgba(0,0,0,.6) 100%);
}

.zoom .img::before {
  display: block;
}

.zoom:hover img {
  opacity: .3;
  transform: scale(1.15);
}

.zoom:hover .img::before {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scaleX(-1);
}

/* GALLERY */
.galDesc {
  margin: 50px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
}

.gallery.vertical {
  grid-template-columns: repeat(4, 1fr);
}

.gallery .zoom {
  justify-self: center;
  align-self: center;
}

#subPage .gallery .zoom h3 {
  display: block;
  margin: 0;
  padding: 15px;
  font-size: 130%;
  font-weight: 400;
  text-align: center;
  transition: all 250ms ease;
}

#subPage .gallery .zoom:hover h3 {
  color: var(--color-1);
}

.innerGall {
  margin: 35px 0 30px;
}

#gallery_pagin {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

#gallery_pagin a {
  margin-top: 7px;
  margin-bottom: 7px;
}

#gallery_pagin a.back {
  margin-right: 30px;
}

#gallery_pagin a.right {
  margin-left: auto;
}



/* COLORS */
.color-a { color: var(--color-main); }
.color-b { color: var(--color-1); }
.color-bb { color: var(--color-2); }
.color-c { color: #7b7b7b; }
.grey { color: #b1b1b1; }
.white { color: #fff; }

/* TEXT SIZE  */
.text-big { font-size: 130%; line-height: 1.2; }

.text-small {
  font-size: 1.4rem;
  line-height: 1.5;
}

/* FRAMES  */
#subPage .frame,
#subPage .frame2 {
  display: block;
  clear: both;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, .1);
  padding: 30px 30px 30px 35px;
  margin: 40px 0;
  position: relative;
  border-width: 0 0 0 15px;
  border-style: none none none solid;
  border-color: var(--color-1);
  background: #fff;
  text-shadow: none;
}

#subPage .frame2 {
  color: #fff;
  border-left-color: var(--color-main);
  background: var(--color-1);
}

#subPage .frame::before,
#subPage .frame2::before {
  content: "";
  width: 35px;
  height: 30px;
  position: absolute;
  top: 30px;
  left: -15px;
  background: url('/gfx/arrow-r.svg') no-repeat 60% 50% #fff;
}

#subPage .frame2 a {
  color: #2d2d2d;
}

#subPage .frame2 a:hover {
  color: #fff;
}

#subPage .frame2 a:hover::before {
  background: #2d2d2d;
}

/* TABLES */
#subPage .table-container {
  width: 100%;
  margin: 0;
  overflow: auto;
  clear: both;
  position: relative;
  z-index: 1;
}

#subPage .table-container:hover {
  z-index: 2;
}

#subPage * + .table-container { margin-top: -20px; }

#subPage .table-container + .table-container { margin-top: -20px; }

#subPage .table-container + hr { margin-top: 20px; }

#subPage caption {
  margin: 0 auto 15px;
  font-size: 110%;
  font-weight: 500;
}

#subPage table {
  border-collapse: collapse;
  margin: 35px auto;
  line-height: 1.4;
  background: #fff;
  clear: both;
  box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
}

#subPage table tr td { transition: background 250ms ease; }

#subPage table td,
#page table th {
  border-bottom: 1px solid #e3e3e3;
  padding: 10px 15px;
}

#subPage table th {
  padding: 10px 15px;
  background: var(--color-1);
  color: #fff;
  font-weight: 500;
  text-shadow: none;
}

#subPage table tr:first-child td {
  border-top: 5px solid var(--color-1);
}

#subPage table th {
  border-bottom: none;
}

#subPage table tr:hover td {
  background: #f5f5f5;
}

#subPage table.noborder,
#subPage table.noborder tr,
#subPage table.noborder td {
  border: none;
  background: none;
  margin: 0;
}

#subPage table.noborder {
  margin-bottom: 25px;
}

#subPage table td p {
  margin: 0 0 15px;
}

#subPage table td p:last-child {
  margin-bottom: 0;
}

/* TOGGLE CONTENT  */
#subPage .toggle {
  position: relative;
  margin: 30px 0;
  padding: 0 0 6px;
  overflow: hidden;
  clear: both;
}

#subPage .toggle::after {
  content: "";
  width: calc(100% - 20px);
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f4f4f4;
}

#subPage .toggle ~ .toggle {
  margin-top: -10px;
}

#subPage .toggle h4 {
  display: inline-block;
  margin: 0 0 10px 20px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all 250ms ease;
  font-size: 125%;
  line-height: 1.4;
}

#subPage .toggle h4:hover,
#subPage .toggle h4.active {
  color: var(--color-1);
}

#subPage .toggle h4::before {
  content: "\f105";
  position: absolute;
  top: 5px;
  left: -15px;
  font: normal normal normal 100%/1 FontAwesome;
  color: var(--color-1);
  text-rendering: auto;
  transition: transform 250ms ease, color 250ms ease;
  transform-origin: center;
  text-align: center;
}

#subPage .toggle h4.active::before {
  transform: rotate(90deg);
  color: #b2b2b2;
}

#subPage .toggle p {
  margin: 0 0 10px 20px;
  overflow: hidden;
}

#subPage .toggle h4 + p {
  margin: 0 0 10px 20px;
}

#subPage .toggle > div {
  display: none;
  clear: both;
  overflow: hidden;
  padding: 0 20px;
  margin-left: 20px;
  background: #f4f4f4;
  position: relative;
  top: 5px;
}

#subPage .toggle > div ul,
#subPage .toggle > div ol {
  margin-top: 20px;
  margin-bottom: 20px;
}

#subPage .toggle > div hr {
  background: #dcdcdc;
}

#subPage .toggle > div p {
  margin: 15px 0;
}

#subPage .toggle div + p {
  padding-top: 20px;
}

/* LINKS WRAPPER  */
.linksWrapper {
  background: #f8f8f8;
  padding: 15px 15px;
}

#subPage .linksWrapper p {
  margin-bottom: 0;
}

#subPage .linksWrapper p:last-child {
  margin-bottom: 0;
}

#subPage .linksWrapper a {
  font: 600 1.649rem/1 'Exo 2', sans-serif;
  text-transform: uppercase;
  margin-left: 30px;
  padding: 8px 0 11px;
}

#subPage .linksWrapper a::before {
  bottom: 5px;
}

#subPage .linksWrapper a::after {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -30px;
  background: #fff;
  transition: background 250ms ease;
}

#subPage .linksWrapper a:hover::after {
  background: #e3e3e3
}

#subPage .linksWrapperList .zoom {
  float: left;
  width: 45%;
  margin: 0 30px 20px 0;
}

#subPage .linksWrapperGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
}

#subPage .linksWrapperGrid .zoom {
  float: none;
  width: 100%;
  margin: 0 0 20px;
}

#subPage .linksBox {
  display: block;
  width: 100%;
  position: relative;
  float: left;
  margin-bottom: 30px;
  padding: 25px;
  background: #f5f5f5;
}

#subPage .linksWrapperGrid .linksBox {
  float: none;
  margin: 30px 0 0;
}

#subPage .linksWrapperGrid .linksBox:nth-child(-n + 2) {
  margin-top: 0;
}

#subPage .linksBox h4 {
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}

#subPage .linksBox h4 a {
  display: inline;
}

#subPage .linksBox h4 a::before {
  display: none;
}

#subPage .linksBox p {
  margin-bottom: 0;
}

/* BREADCRUMB */
#breadcrumb {
  position: relative;
  margin: 0;
  padding: 15px 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  color: var(--color-main);
  text-shadow: none;
  /* background: #f5f5f5; */
}

#breadcrumb::before {
  content: "";
  width: 200vw;
  height: 100%;
  /* background: rgba(41, 21, 4, .8); */
  background: rgba(255, 255, 255, .7);
  border-bottom: 1px solid var(--color-1);
  position: absolute;
  bottom: 0;
  left: -100vw;
  z-index: -1;
}

#breadcrumb a {
  color: var(--color-main);
}

#breadcrumb a:hover,
#breadcrumb a.active {
  color: var(--color-1);
}

#breadcrumb a::before {
  display: none;
}

#breadcrumb i {
  display: inline-block;
  margin: 0 12px;
  color: var(--color-1);
}

/* SHARE BUTTONS */
#share {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

#share > span {
  font-size: 1.5rem;
  margin: 6px;
}

.jssocials {
  display: inline-block;
}

.jssocials-share {
  display: inline-block;
  margin: 6px;
}

a.jssocials-share-link {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: bottom;
  color: #fff;
  background: #b2b2b2;
  text-shadow: none;
}

a.jssocials-share-link::before {
  display: none;
}

a.jssocials-share-link:hover {
  background: var(--color-1);
  transform: scale3d(1.4,1.4,1);
}

a.jssocials-share-link .fa {
  font-size: 1.7rem;
  position: relative;
}

a.jssocials-share-link .fa-facebook { top: 2px; }
a.jssocials-share-link .fa-whatsapp { top: 1.5px; font-size: 1.8rem; }
a.jssocials-share-link .fa-comments { top: 1px; }
a.jssocials-share-link .fa-envelope { top: .5px; font-size: 1.6rem; }

#social {
  display: none;
  position: absolute;
  right: 0;
  top: 35px;
  transition: top 250ms ease;
}

#social-mobile {
  display: block;
  margin-top: 20px;
}

#social a,
#social-mobile a {
  display: inline-block;
}

#social a.fb:hover svg path,
#social-mobile a.fb:hover svg path {
  fill: #4267b2;
}

#social img, #social svg,
#social-mobile img, #social-mobile svg {
  display: block;
}

/* Pellet subpage */
img.img.noborder.pellet-img-1 {
  display: block;
  margin: -130px 0 40px 30px;
}
