@font-face {
  font-family: 'Josefin Sans';
  src: url('/style/JosefinSans-Regular.ttf');
}
@font-face {
  font-family: 'Josefin Sans';
  font-weight: 300;
  src: url('/style/JosefinSans-Light.ttf');
}
@font-face {
  font-family: 'Josefin Sans';
  font-weight: bold;
  src: url('/style/JosefinSans-Bold.ttf');
}
* {
  box-sizing: border-box;
  word-wrap: break-word;
}
* :focus {
  outline: none;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
}
.wrapper {
  width: 100%;
  max-width: 700px;
}
.hero {
  height: 100vh;
  background: url("/images/hero.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.hero .wrapper {
  text-align: left;
  color: #fff;
  margin-left: 100px;
}
.hero .wrapper h1 {
  margin: 0;
  width: 100%;
  font-size: 90px;
}
.hero .wrapper h3 {
  margin: 30px 0;
  width: 100%;
  font-size: 30px;
  font-weight: 300;
}
.hero .wrapper .button {
  margin-top: 70px;
}
.hero .wrapper .button button {
  font-size: 22px;
  background: none;
  border: 1px solid #fff;
  font-weight: bold;
  padding: 10px 50px;
  color: #fff;
}
.hero .wrapper .button button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.hero .wrapper .button button:active {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .hero {
    height: 600px;
    background: url("/images/hero.jpg") no-repeat 50% center;
    background-size: cover;
  }
  .hero .wrapper {
    margin: 0 auto;
    padding-left: 15px;
  }
  .hero .wrapper h1 {
    font-size: 40px;
  }
  .hero .wrapper h3 {
    font-size: 20px;
  }
  .hero .wrapper .center button {
    font-size: 18px;
    padding: 5px 30px;
  }
}
.services {
  min-height: 100vh;
  background: url("/images/services.jpg") no-repeat center center;
  background-size: cover;
}
.services .wrapper {
  margin: 0 auto;
  padding: 80px 20px;
}
.services .wrapper h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
}
@media (max-width: 1000px) {
  .services .wrapper h2 {
    font-size: 34px;
  }
}
.services-list {
  margin-top: 50px;
  color: #fff;
}
.services .service-box {
  display: flex;
}
.services .service-box .image {
  width: 200px;
}
.services .service-box .image img {
  width: 100%;
}
.services .service-box .texts {
  padding-left: 30px;
  width: calc(100% - 200px);
}
.services .service-box .texts .title {
  font-weight: bold;
  font-size: 25px;
  text-transform: uppercase;
}
.services .service-box .texts .list {
  margin-top: 20px;
  margin-left: auto;
  order: 2;
}
.services .service-box .texts .list-item {
  display: flex;
  width: 100%;
  margin: 4px 0;
  font-weight: bold;
  font-size: 17px;
}
.services .service-box .texts .list-item .price {
  text-align: right;
  margin-left: auto;
  order: 2;
}
@media (max-width: 1000px) {
  .services .service-box {
    display: block;
  }
  .services .service-box .image {
    width: 170px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .services .service-box h2 {
    font-size: 25px;
  }
  .services .service-box .texts {
    width: 100%;
    padding: 20px;
  }
}
.references {
  min-height: 100vh;
  background: url("/images/references.jpg") no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
}
.references h2 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
}
.references .instagram {
  margin: 50px auto;
  max-width: 1600px;
}
.references .socials {
  text-align: center;
  margin-top: 20px;
}
.references .socials a {
  text-decoration: none;
  margin: 0 20px;
}
.references .socials a img {
  width: 40px;
}
.references .center {
  margin-top: 20px;
  text-align: center;
}
.references .center button {
  font-size: 22px;
  background: none;
  border: 1px solid #fff;
  font-weight: bold;
  padding: 10px 50px;
  color: #fff;
  cursor: pointer;
}
.references .center button:hover {
  opacity: 0.8;
}
.references .center button:active {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .references {
    height: auto;
  }
  .references h2 {
    font-size: 34px;
  }
  .references .center button {
    font-size: 18px;
    padding: 5px 30px;
  }
}
.contact {
  min-height: 100vh;
  background: url("/images/contact.jpg") no-repeat center center;
  padding: 80px 20px;
}
.contact .wrapper {
  text-align: left;
  color: #fff;
  margin-left: 100px;
  padding-top: 50px;
}
.contact .wrapper h2 {
  margin: 0;
  width: 100%;
  font-size: 60px;
}
.contact .wrapper .contacts {
  margin-top: 200px;
}
.contact .wrapper .contacts-line {
  margin: 40px 0;
  font-size: 26px;
}
.contact .wrapper .contacts-line label {
  display: block;
  font-weight: bold;
  color: #69443c;
}
.contact .wrapper .contacts-line span {
  font-weight: 300;
}
.contact .wrapper .contacts-line a {
  color: #fff;
  text-decoration: none;
}
.contact .wrapper .contacts-line a:hover {
  opacity: 0.8;
}
.contact .wrapper .contacts-line a:active {
  opacity: 0.6;
}
.contact .wrapper .center {
  margin-top: 70px;
  text-align: center;
}
.contact .wrapper .center button {
  font-size: 22px;
  background: none;
  border: 1px solid #fff;
  font-weight: bold;
  padding: 10px 50px;
  color: #fff;
}
.contact .wrapper .center button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.contact .wrapper .center button:active {
  opacity: 0.6;
}
@media (max-width: 1000px) {
  .contact .wrapper {
    margin: 0 auto;
  }
  .contact .wrapper h2 {
    font-size: 34px;
  }
  .contact .wrapper .center button {
    font-size: 18px;
    padding: 5px 30px;
  }
  .contact .wrapper .contacts-line {
    font-size: 20px;
  }
}
.book {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  display: none;
}
.book .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  background: rgba(0, 0, 0, 0.5);
}
.book-content {
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 20px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 100px auto 50px auto;
  z-index: 12;
}
.book-content .close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.book-content .close img {
  width: 30px;
}
.book-content .close:hover {
  opacity: 0.8;
  cursor: pointer;
}
.book-content .close:active {
  opacity: 0.6;
}
.book-content .form-group {
  margin: 10px 0;
}
.book-content .form-group label {
  display: block;
  font-weight: bold;
}
.book-content .form-group input {
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  font-size: 18px;
  padding: 10px;
}
.book-content .form-group button {
  background: #69443c;
  padding: 10px 20px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  border: 0;
  cursor: pointer;
}
.book-content .form-group button:hover {
  opacity: 0.8;
}
.book-content .form-group button:active {
  opacity: 0.6;
}
