body {
  font-family: 'Lato', sans-serif;
  background: #000;
  font-size: 1.2rem;
  line-height: 2.0rem;
}

p {
  color: #000;
  font-size: 1.44rem;
  line-height: 2.4rem;
}

a {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

.container {
  max-width: 1400px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 101;
  padding: 0 2rem;
  background: rgba(26, 26, 26, 0.7);
  border-bottom: 1px solid #ffed00;
  /*background: #1a1a1a;*/
  /*background: linear-gradient(0deg, rgba(33, 171, 173, 0) 0%, #1a1a1a 100%, #1a1a1a 100%);*/
}

header > div:nth-child(1) {
  height: 100px;
}

header #menu {
  height: 100%;
}

header #menu > div {
  height: 100%;
}

header #menu a {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 1rem;
  transition: all 0.25s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

header #menu a span {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
header #menu a span:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(50%, 0);
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffed00;
  transition: all 0.25s ease-in-out;
}

header #menu a:hover span, header #menu a.active span {
  color: #ffed00;
}

header #menu a:hover span:after, header #menu a.active span:after {
  width: 100%;
  left: 0%;
  transform: translate(0, 0);
}

.page-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  position: relative;
  text-align: center;
}

.page-title:after {
  content: '';
  width: 4rem;
  height: 6px;
  background: #ffed00;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: all 0.25s ease-in-out;
}

.page-title.page-title-white {
  color: #FFF;
}

.container-white {
  background: #FFF;
}

.container-pattern {
  background: url("/images/pattern.jpg") center center transparent scroll repeat;
  background-size: 6rem;
}

.page-container {
  padding: 6rem 0;
}

.page header {
  background: #000;
  border-bottom: 1px solid #ffed00;
}

.page #page-content-wrapper {
  width: 100%;
  padding: 2rem;
  background: #FFF;
  padding-top: 200px;
  min-height: 100vh;
}

.page-not-found #page-content-wrapper {
  min-height: inherit;
  padding-top: 0;
}

/**
* Gallery
**/
#realizations-list .col-sm-3 {
  width: 20%;
  padding-bottom: 1rem;
}

#realizations-list .col-sm-3 a {
  display: block;
  border: 1px solid #FFF;
  filter: grayscale(100%);
  opacity: 0.75;
  overflow: hidden;
}

#realizations-list .col-sm-3 a:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5rem;
  height: 5rem;
  background: url("/images/zoom.svg") center center transparent scroll no-repeat;
  background-size: 5rem;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

#realizations-list .col-sm-3 a img {
  transition: all 0.25s ease-in-out;
}

#realizations-list .col-sm-3 a:hover {
  opacity: 1;
  border-color: #ffed00;
  filter: grayscale(0);
}

#realizations-list .col-sm-3 a:hover img {
  transform: scale(1.05);
}

#realizations-list .col-sm-3 a:hover:after {
  opacity: 1;
}

/** 
* Offers
**/
#offers-container-list .col-sm-4 {
  padding: 3rem;
  background: #fafafa;
  margin: 0;
  flex: 33%;
}

#offers-container-list .col-sm-4:first-child {
  flex: 100%;
}

#offers-container-list .col-sm-4 h4 {
  font-size: 1.68rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  position: relative;
}

#offers-container-list .col-sm-4 h4:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -1rem;
  width: 6rem;
  height: 5px;
  background: #ffed00;
}

#offers-container-list .col-sm-4:nth-child(2n) {
  background: url("/images/pattern.jpg") center center transparent scroll repeat;
  background-size: 6rem;
  color: #FFF;
}

#offers-container-list .col-sm-4:nth-child(2n) p {
  color: #FFF;
}

#offers-container-list .col-sm-4:nth-child(2n) h4 {
  color: #ffed00;
}

#offers-container-list .col-sm-4:nth-child(2n) h4:after {
  background: #FFF;
}

/**
* Contact
*/
#contact-list-wrapper {
  text-align: center;
  color: #FFF;
}

#contact-list-wrapper #contact-list {
  line-height: 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

#contact-list-wrapper #contact-list li {
  font-size: 1.92rem;
  position: relative;
  padding-left: 5rem;
  min-height: 5rem;
  margin-bottom: 2rem;
}

#contact-list-wrapper #contact-list li .icon {
  position: absolute;
  top: 0;
  left: 0rem;
  display: block;
  width: 5rem;
  text-align: left;
}

#contact-list-wrapper #contact-list li .icon img {
  vertical-align: top;
}

#contact-list-wrapper #contact-list li .contact-item {
  display: block;
  text-align: left;
  line-height: 1.44rem;
  padding-top: 0.5rem;
}

#contact-list-wrapper #contact-list li .contact-item a {
  color: #FFF;
}

/**
* Slider
*/
#cematic-slider {
  width: 100%;
  height: 850px;
  overflow: hidden;
}

#cematic-slider > div {
  height: 850px;
  width: 100%;
  overflow: hidden;
}

#cematic-slider .slideshow-banner-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  transform: translate(-50%, -40%);
  padding: 6rem 4rem;
  background: rgba(0, 0, 0, 0.6);
  width: 70%;
}

#cematic-slider .slideshow-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #ffed00;
  text-transform: uppercase;
  line-height: 4.2rem;
  margin-bottom: 2rem;
}

#cematic-slider .slideshow-description {
  font-size: 2.04rem;
  font-weight: 400;
  color: #FFF;
  line-height: 2.4rem;
}

#cematic-slider-ow {
  position: relative;
}

#cematic-slider-ow .tns-nav {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 1rem;
  width: auto;
  display: inline-block;
  z-index: 100;
}

#cematic-slider-ow .tns-nav > button {
  width: 20px;
  height: 20px;
  border: none;
  background: #444;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}

#cematic-slider-ow .tns-nav > button:not(:last-child) {
  margin-right: 10px;
}

#cematic-slider-ow .tns-nav > button.tns-nav-active {
  background: #ffed00;
}

/** 
* Arrow up
*/
#arrow-up {
  width: 60px;
  height: 60px;
  border: 1px solid #ffed00;
  background: transparent;
  border-radius: 50px;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  background: #000;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 0px 10px 0px black;
  -moz-box-shadow: 0px 0px 10px 0px black;
  box-shadow: 0px 0px 10px 0px black;
}

#arrow-up img {
  max-width: 40px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.25s ease-in-out;
}

#arrow-up.arrow-up-visible {
  opacity: 1;
  pointer-events: all;
}

#logo {
  padding: 1.2rem 0;
  height: 100%;
}
#logo img {
  height: 100%;
  width: auto;
}

/**
* Menu hamburger
*/
.hamburger .line {
  width: 50px;
  height: 5px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#menu-mobile-hamburger {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
}

#menu-mobile-hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}

#menu-mobile-hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#menu-mobile-hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

h2 { margin-top: 2rem; }
.subpage-images-row img { width: 100%; height: auto; }

header #menu .d-flex > div { position:relative; }
header #menu .d-flex > div #submenu { position: absolute; left: -20%; top: 100px; width: 140%; background: rgba(26, 26, 26, 0.7); display: none; }
header #menu .d-flex > div #submenu a { font-weight:400; font-size:1rem; white-space: break-spaces; display: block; line-height: 1.2rem; padding: 0.5rem 0; }
header #menu .d-flex > div:hover #submenu { display:block; }
#submenu a:hover { color: #ffed00; }

header #menu.mobile-menu-active .d-flex > div #submenu {
  display: block;
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  background: transparent;
}