* {
  margin: 0;
  padding: 0;
}
html {
  min-height: 100%;
  width: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #e6e6e6;
  -webkit-transition: background 1s;
  /* Safari */
  transition: background-image 1s;
  background-image: url("../images/bg/1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #6a6464;
}
body:before {
  content: '';
  position: fixed;
  background-image: url("../images/bg/trama.png");
  background-repeat: repeat repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body.scrolling header {
  background: rgba(0, 0, 0, 0.5);
}
body.blur section {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}
body section {
  visibility: hidden;
  overflow: hidden;
  height: 0;
  font-size: 13px;
  font-weight: 400;
}
body section.current {
  visibility: visible;
  height: auto;
  padding: 40px;
  padding-top: 115px;
}
body section h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 30px;
  text-transform: uppercase;
}
body header {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  position: fixed;
  -webkit-transition: background 1s;
  -moz-transition: background 1s ;
  -ms-transition: background 1s ;
  -o-transition: background 1s ;
  transition: background 1s ;
}
body header .logo {
  width: 200px;
  display: inline-block;
  cursor: pointer;
}
body header ul {
  color: #e6e6e6;
  text-transform: uppercase;
  list-style: none;
  display: inline-block;
  float: right;
  line-height: 47px;
  font-weight: bold;
}
body header ul li {
  display: inline-block;
  padding: 0 10px;
  cursor: pointer;
}
body header ul span {
  visibility: hidden;
}
@media (max-width: 767px) {
  body header ul li {
    display: none;
  }
  body header ul span {
    visibility: visible;
    font-size: 24px;
    padding-top: 10px;
    display: block;
  }
}
body .content .slider {
  position: absolute;
  top: 50%;
  padding-left: 30px;
  width: 80%;
}
body .content .slider .item {
  position: absolute;
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 1s;
  /* Safari */
  transition: opacity 1s;
  width: 80%;
}
body .content .slider .item h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 30px;
}
body .content .slider .item p {
  font-size: 14px;
  width: 375px;
  max-width: 70%;
}
@media (max-width: 767px) {
  body .content .slider .item {
    transform: translateY(-60%);
    left: 0;
  }
}
body .content .slider .item.current {
  opacity: 1;
}
body .content .slider-bullets {
  position: absolute;
  list-style: none;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
body .content .slider-bullets li {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid;
  margin: 5px 0;
  cursor: pointer;
}
body .content .slider-bullets li.current {
  background: rgba(255, 255, 255, 0.3);
}
body footer {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
body footer .qr {
  display: inline-block;
}
body footer .qr img {
  width: 69px;
}
body footer p {
  font-size: 11px;
  float: right;
  padding-top: 52px;
}
@media (max-width: 767px) {
  body footer .qr {
    display: block;
  }
  body footer .qr img {
    margin: auto;
    display: block;
  }
  body footer p {
    padding-top: 5px;
    text-align: center;
  }
}
body .menu-mobile {
  position: fixed;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s ;
  -ms-transition: opacity 1s ;
  -o-transition: opacity 1s ;
  transition: opacity 1s ;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  text-transform: uppercase;
  text-align: center;
  font-size: 23px;
}
body .menu-mobile.show {
  opacity: 1;
  pointer-events: auto;
}
body .menu-mobile ul {
  padding-top: 80px;
}
body .menu-mobile ul li {
  display: block;
  line-height: 45px;
  cursor: pointer;
}
body .menu-mobile ul span {
  position: absolute;
  top: 30px;
  right: 25px;
}
.contact-info {
  width: 50%;
  padding-left: 20px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  float: right;
}
.contact-map {
  width: 50%;
  float: left;
  height: 100vh;
  z-index: -1;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .contact-info {
    width: 100%;
    margin-top: 30px;
  }
  .contact-map {
    width: 100%;
  }
}
