@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  color: #222;
  font-size: 14px; }

@media screen and (min-width: 992px) {
  html {
    font-size: 16px; } }
body {
  background: #fafafa;
  font-family: "Open Sans", sans-serif;
  line-height: 1.4;
  overflow-x: hidden; }

a {
  text-decoration: none;
  color: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

img {
  max-width: 100%; }

p {
  margin: 0; }

li {
  list-style: none; }

ul, li {
  padding: 0;
  margin: 0; }

img {
  max-width: 100%; }

.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25em; }

header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%; }

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1em; }
  .navigation .menu {
    display: flex;
    align-items: center;
    color: #120a04;
    font-size: 1rem; }
    @media screen and (max-width: 767px) {
      .navigation .menu {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        transition: .3s ease-in-out; }
        .navigation .menu.open {
          visibility: visible;
          opacity: 1;
          background: rgba(255, 255, 255, 0.9); } }
    .navigation .menu li {
      cursor: pointer;
      padding: 1.25em 1em;
      transition: .3s ease-in-out; }
      @media screen and (max-width: 767px) {
        .navigation .menu li {
          transition: .3s ease-in-out; }
          .navigation .menu li:hover, .navigation .menu li:active {
            font-weight: 700; } }
      @media screen and (min-width: 768px) {
        .navigation .menu li:not(:last-child) {
          margin-right: 1em; }
        .navigation .menu li:hover, .navigation .menu li.active {
          box-shadow: inset 0 0 0 4px #b88a56; } }

.navigation__toggler {
  cursor: pointer;
  z-index: 9; }
  @media screen and (min-width: 768px) {
    .navigation__toggler {
      display: none; } }
  .navigation__toggler .navigation__toggler--bar {
    background-color: #454553;
    height: 2px;
    width: 30px;
    position: relative;
    transition: .3s ease-in-out; }
    .navigation__toggler .navigation__toggler--bar:nth-child(2) {
      margin-top: 7px; }
    .navigation__toggler .navigation__toggler--bar:nth-child(3) {
      margin-top: 7px; }
  .navigation__toggler.open .navigation__toggler--bar:first-child {
    transform: rotate(45deg);
    top: .625em; }
  .navigation__toggler.open .navigation__toggler--bar:nth-child(2) {
    left: 0;
    width: 0; }
  .navigation__toggler.open .navigation__toggler--bar:last-child {
    top: -.625em;
    transform: rotate(-45deg); }

.header__content {
  color: #120a04;
  text-align: center;
  margin-top: 4em; }
  @media screen and (min-width: 576px) {
    .header__content {
      margin-top: 12em; } }
  .header__content h1 {
    font-size: 2.125rem;
    font-weight: 400;
    line-height: 1.125em; }
    @media screen and (min-width: 768px) {
      .header__content h1 {
        font-size: 3.125rem; } }
    .header__content h1 span {
      font-size: 1.875rem;
      font-weight: 700;
      display: block; }
      @media screen and (min-width: 768px) {
        .header__content h1 span {
          font-size: 2.875rem; } }
  .header__content p {
    font-size: .875rem;
    margin: 1.75em auto 0;
    line-height: 2em;
    max-width: 46em;
    width: 100%; }
  .header__content .btn__read-more {
    border: 4px solid #b88a56;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.5em 2em;
    max-width: 12em;
    margin: 4.25em auto 0; }
    @media screen and (min-width: 768px) {
      .header__content .btn__read-more {
        margin: 6.25em auto 0; } }

.collection {
  background: #120a04;
  padding: 12em 0 13em; }
  .collection .section__header h2 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.25em; }
    @media screen and (min-width: 768px) {
      .collection .section__header h2 {
        font-size: 2.875rem; } }
    .collection .section__header h2 span {
      color: #b88a56;
      font-weight: 700;
      display: block; }
  .collection .section__header p {
    color: #fff;
    font-size: .875rem;
    text-align: center;
    line-height: 2em;
    margin: 1.875em auto 0;
    max-width: 60em; }
  .collection .product__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    margin-top: 11em; }
    .collection .product__grid .product__popup {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 6.25em;
      background: #261910;
      color: #fff;
      visibility: visible;
      opacity: 1;
      z-index: 9;
      transition: .3s ease-in-out; }
      .collection .product__grid .product__popup .close__popup {
        position: absolute;
        right: 1em;
        top: 1em;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center; }
        .collection .product__grid .product__popup .close__popup .toggle__close--popup {
          cursor: pointer; }
          .collection .product__grid .product__popup .close__popup .toggle__close--popup .close__popup--item {
            background: #fff;
            height: 2px;
            width: 30px;
            position: relative; }
            .collection .product__grid .product__popup .close__popup .toggle__close--popup .close__popup--item:first-child {
              transform: rotate(45deg); }
            .collection .product__grid .product__popup .close__popup .toggle__close--popup .close__popup--item:last-child {
              top: -.125em;
              transform: rotate(-45deg); }
      .collection .product__grid .product__popup.hidden {
        visibility: hidden;
        opacity: 0;
        z-index: 0; }
      .collection .product__grid .product__popup .product__title {
        font-size: 2.125rem;
        line-height: 1.25em;
        text-align: center;
        margin-top: 1em; }
        .collection .product__grid .product__popup .product__title span {
          color: #b88a56;
          font-weight: 700;
          display: block; }
      .collection .product__grid .product__popup p {
        font-size: .875rem;
        margin-top: 2.5em;
        max-width: 35em;
        text-align: center; }
    .collection .product__grid .product__grid--item {
      flex: 1 0 33%;
      max-width: 33%;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      cursor: pointer; }
      .collection .product__grid .product__grid--item img {
        visibility: visible;
        opacity: 1;
        transition: .3s ease-in-out; }
      .collection .product__grid .product__grid--item:hover img {
        visibility: hidden;
        opacity: 0; }
      .collection .product__grid .product__grid--item:hover .product__details {
        visibility: visible;
        opacity: 1; }
      .collection .product__grid .product__grid--item .product__details {
        position: absolute;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
        padding: 4em;
        text-align: center;
        transition: .3s ease-in-out; }
        .collection .product__grid .product__grid--item .product__details h4 {
          color: #fff;
          font-size: 1.5rem;
          font-weight: 700; }
        .collection .product__grid .product__grid--item .product__details p {
          border-top: 4px solid #b88a56;
          color: #fff;
          margin-top: 1em;
          padding-top: 1em; }
        .collection .product__grid .product__grid--item .product__details .read-more {
          color: #fff;
          font-size: .75rem;
          position: absolute;
          bottom: 1em;
          right: 1em; }
      .collection .product__grid .product__grid--item.fifthPopup, .collection .product__grid .product__grid--item.sixthPopup, .collection .product__grid .product__grid--item.seventhPopup {
        background: #261910; }
      .collection .product__grid .product__grid--item.secondPopup {
        background: #97765e; }
      .collection .product__grid .product__grid--item.thirdPopup, .collection .product__grid .product__grid--item.ninthPopup {
        background: #442d1c; }
      .collection .product__grid .product__grid--item.fourthPopup {
        background: #61422b; }
      .collection .product__grid .product__grid--item.sixthPopup {
        background: #19100a; }
      .collection .product__grid .product__grid--item.eightPopup {
        background: #120a04; } 
      .collection .product__grid .product__grid--item.tenthPopup {
        background: #442d1c; }
      .collection .product__grid .product__grid--item.eleventhPopup {
        background: #97765e; }
      .collection .product__grid .product__grid--item.tewlvePopup {
        background: #120a04; }     


.section__slider .glyphicon {
  color: #000; }
.section__slider .carousel-indicators {
  position: absolute;
  bottom: 5em;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1; }
  .section__slider .carousel-indicators li {
    transition: .3s ease-in-out; }
    .section__slider .carousel-indicators li:hover, .section__slider .carousel-indicators li.active {
      font-weight: 700; }
    .section__slider .carousel-indicators li:not(:last-child) {
      margin-right: 6.25em; }
.section__slider .carousel-control {
  width: 10%; }
  .section__slider .carousel-control.right, .section__slider .carousel-control.left {
    opacity: 1;
    background-image: none; }
  .section__slider .carousel-control:hover, .section__slider .carousel-control:focus {
    opacity: 1; }
.section__slider .slider__content {
  height: 100vh; }
.section__slider .slider__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .section__slider .slider__content .slider__title {
    padding-top: 1.25em; }
    .section__slider .slider__content .slider__title h2 {
      font-size: 2rem;
      font-weight: 400;
      line-height: 1.25em;
      text-align: center; }
      .section__slider .slider__content .slider__title h2 span {
        font-weight: 900;
        display: block; }
  .section__slider .slider__content .slider__message {
    max-width: 41.5em;
    margin: 0 auto;
    padding-top: 2.5em; }
    .section__slider .slider__content .slider__message p {
      font-size: .875rem;
      line-height: 2em;
      text-align: center; }

.section__partners {
  background: #97765e;
  padding: 7em 0 9em; }
  .section__partners h2 {
    color: #fcece0;
    text-align: center; }
  .section__partners .our__partners--grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 41.5em;
    margin: 1.25em auto 0; }
    .section__partners .our__partners--grid .partner__container {
      flex: 1 0 33%;
      padding: 0 1em;
      text-align: center;
      margin-top: 5em; }

.section__gallery {
  background: #19100a;
  padding: 11em 0 14em; }
  .section__gallery .section__header h2 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.25em; }
    @media screen and (min-width: 768px) {
      .section__gallery .section__header h2 {
        font-size: 2.875rem; } }
    .section__gallery .section__header h2 span {
      color: #b88a56;
      font-weight: 700;
      display: block; }
  .section__gallery .section__header p {
    color: #fff;
    font-size: .875rem;
    text-align: center;
    line-height: 2em;
    margin: 1.875em auto 0;
    max-width: 60em; }
  .section__gallery .gallery__grid {
    display: flex;
    flex-wrap: wrap;
    margin: 10em auto 0;
    max-width: 55.5em; }
    .section__gallery .gallery__grid .gallery__img {
      flex: 1 0 33%;
      line-height: 0; }

.section__contact {
  background: #120a04;
  padding: 12em 0 11em; }
  .section__contact h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 400;
    text-align: center; }
  .section__contact input,
  .section__contact textarea {
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 1em .5em;
    width: 100%; }
    .section__contact input:focus,
    .section__contact textarea:focus {
      outline: none; }
    .section__contact input::-webkit-input-placeholder,
    .section__contact textarea::-webkit-input-placeholder {
      color: #fff;
      font-family: "Open Sans", sans-serif;
      font-weight: 300; }
    .section__contact input::-moz-placeholder,
    .section__contact textarea::-moz-placeholder {
      color: #fff;
      font-family: "Open Sans", sans-serif;
      font-weight: 300; }
    .section__contact input:-ms-input-placeholder,
    .section__contact textarea:-ms-input-placeholder {
      color: #fff;
      font-family: "Open Sans", sans-serif;
      font-weight: 300; }
    .section__contact input:-moz-placeholder,
    .section__contact textarea:-moz-placeholder {
      color: #fff;
      font-family: "Open Sans", sans-serif;
      font-weight: 300; }
  .section__contact textarea {
    min-height: 10em;
    resize: none; }
  .section__contact form {
    margin: 6em auto 0;
    max-width: 34em;
    text-align: center; }
  .section__contact .input__group--spread {
    display: flex;
    border-bottom: 4px solid #3c281b; }
    .section__contact .input__group--spread .input__group {
      flex: 1 0 50%; }
  .section__contact .mail__address {
    border-bottom: 4px solid #3c281b;
    margin-top: 1em; }
  .section__contact .message__content {
    margin-top: 1em; }
  .section__contact .btn__send {
    background: transparent;
    border: 4px solid #22150c;
    color: #fff;
    cursor: pointer;
    padding: 1.25em 2.75em; }

footer {
  background: #22150c;
  color: #fff;
  padding: 9.5em 0 2.5em; }
  footer ul {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 767px) {
      footer ul {
        flex-direction: column; } }
    footer ul li {
      cursor: pointer;
      font-size: 1rem;
      transition: .3s ease-in-out; }
      footer ul li:not(:last-child) {
        margin-bottom: 1em; }
      @media screen and (min-width: 768px) {
        footer ul li:not(:last-child) {
          margin-right: 4em;
          margin-bottom: 0; } }
      footer ul li:hover {
        font-weight: 700; }
  footer .copyright {
    font-size: .75rem;
    font-weight: 300;
    margin-top: 6.25em;
    text-align: center; }

.mail__send,
.mail__not-send {
  display: none;
  max-width: 34em;
  padding: 1.5em;
  background: #3c281b;
  color: #fff;
  text-align: center;
  margin: 2em auto 0; }
  .mail__send span,
  .mail__not-send span {
    font-size: .875rem; }
