*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  background-color: #fffbde;
}

h1 {

  font-family: "Quicksand", "Open Sans", "Arial", sans-serif;
  font-size: 66px;
  line-height: 82px;
  color: #776666;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-top: 47px;
  margin-bottom: 51px;
}
a {
  text-decoration: none;
  color: #776666;
}
a:hover {
  color: rgb(5, 0, 0);
}
.wrapper-flex {
  display: flex;
  flex-direction: column;
  min-height: 100%;  
}
.wrapper-flex-content {
  flex: 1 0 auto;  
}
.wrapper-flex-footer {
  flex: 0 0 auto;  
}
.wrapper {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}
.container_content {
  position: relative;
  width: 80%;
  padding: 53px;
  margin: 0 auto;
}
.container_content p {
  margin: 15px 0 25px 0;
}
.container_footer {
  position: relative;
  width: 90%;
  padding: 48px 0 41px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* MENU */
.header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #faecbb;
  height: 70px;
  padding: 0;
  margin: 0;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.container {
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  padding: 0px 10px;
}
.header_body {
  position: relative;
  padding: 16px 0;
}
.header_burger {
  display: none;
}

.header_list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.header_list li {
  list-style: none;
  margin: 0 3% 0 2%;
  font-size: 28px;
  line-height: 38px;
  text-transform: uppercase;
  color: rgba(119, 85, 85, 1);
}
.header_list li:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
}
  .header_link {
    color: rgba(0, 0, 0, 1);
  }

/* END MENU */

/* SLIDER */
.slider {
  position: relative;
  padding: 0px 0px;
}
.slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin: -15px 0 0 0;
  z-index: 2;
  font-size: 0;
  width: 29px;
  height: 83px;
}
.slider .slick-arrow.slick-prev {
  left: 2%;
  background: url(../img/left-arrow.png) 0 0 / 100% no-repeat;
}
.slider .slick-arrow.slick-next {
  right: 2%;
  background: url(../img/right-arrow.png) 0 0 / 100% no-repeat;
}

.slider__item {
  padding: 0px 5px;
}
.slider-img {
  max-height: 400px;
}
/* END SLIDER */

/* GALLERY */
.photo-gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.photo-gallery a {
  padding: 15px;
}
.photo-gallery img {
  border-radius: 5px;
  box-shadow:  0 0 5px rgba(115, 53, 2, 0.25);
}
/* END GALLERY */

/* MEDIA */
@media (max-width: 960px) {
  body.lock {
    overflow: hidden;
  }
.header_body {
  padding: 25px 0;
}
  .header:before {
    background-color: #faecbb;
  }
  .header_burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
  }
  .header_burger span {
    position: absolute;
    background-color: rgb(5, 0, 0);
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
    transition: all 0.3s ease 0s;
  }
  .header_burger:before,
  .header_burger:after {
    content: "";
    position: absolute;
    background-color: rgb(5, 0, 0);
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .header_burger:before {
    top: 0;
  }
  .header_burger:after {
    bottom: 0;
  }
  .header_burger.active:before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header_burger.active:after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header_burger.active span {
    transform: scale(0);
  }
  .header_menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 13, 4, 0.979);
    color: rgba(248, 246, 246, 0.979);
    font-size: 24px;
    padding: 100px 0 0 0;
    transition: all 0.3s ease 0s;
    overflow: auto;
  }
  .header_menu.active {
    top: 0;
  }
  .header_list {
    display: block;
  }
  .header_list li {
    list-style: none;
    margin: 0 0 20px 40px;
  }
  .header_list li:first-of-type {
    position: relative;
  }
  .header_link {
    color: rgba(241, 234, 231, 0.8);
  }
  .header_link:hover {
    color: rgba(248, 246, 246, 1);
  }
  h1 {
    font-size: 3em;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 2.3em;
    line-height: 42px;
    margin-top: 47px;
    margin-bottom: 41px;
  }
.container_content {
  position: relative;
  width: 80%;
  padding: 23px 13px;
  margin: 0 auto;
}
.slider-img {
  max-height: 300px;
}
  .container_footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

}
