.gfs-didot-regular {
  font-family: "GFS Didot", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  font-size: 28px;
  overflow-x: hidden;
}
@media screen and (max-width: 1399px) {
  html {
    font-size: 22px;
  }
}
@media screen and (max-width: 1199px) {
  html {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 18px;
  }
}

body {
  background-color: #101010;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 64px;
  font-family: "GFS Didot", serif;
  line-height: 1.05;
}
@media screen and (max-width: 1399px) {
  h1 {
    font-size: 54px;
  }
}
@media screen and (max-width: 1199px) {
  h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 375px) {
  h1 {
    font-size: 38px;
  }
}

h3 {
  font-size: 32px;
  font-family: "GFS Didot", serif;
  line-height: 1.05;
}
@media screen and (max-width: 1399px) {
  h3 {
    font-size: 36px;
  }
}
@media screen and (max-width: 575px) {
  h3 {
    font-size: 32px;
  }
}

p {
  line-height: 1.35;
}

.btn {
  font-size: 28px;
}
@media screen and (max-width: 1399px) {
  .btn {
    font-size: 22px;
  }
}
.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(149, 92, 37, 0.5) !important;
}
.btn.btn-primary {
  color: #955c25;
  background-color: #fff;
  border: none;
  border-radius: 0;
  padding: 0.2rem 2.5rem;
  position: relative;
  z-index: 0;
  transition: all 0.2s ease;
}
.btn.btn-primary::before {
  transition: all 0.2s ease-out;
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  background-color: #955c25;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.btn.btn-primary:hover {
  color: #fff;
  text-shadow: 0 0 3px #fff;
}
.btn.btn-primary:hover::before {
  opacity: 0.8;
  height: 100%;
}
.btn.btn-outline-primary {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #955c25;
  border-radius: 0;
  padding: 0.2rem 2.5rem;
  position: relative;
  z-index: 0;
  transition: all 0.2s ease;
}
.btn.btn-outline-primary::before {
  transition: all 0.2s ease-out;
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  background-color: #955c25;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.btn.btn-outline-primary:hover {
  text-shadow: 0 0 3px #000;
}
.btn.btn-outline-primary:hover::before {
  opacity: 0.8;
  height: 100%;
}

.bg-art {
  z-index: -1;
  position: absolute;
  opacity: 0.5;
  background-image: url("../images/bg-art.svg");
}

.hero {
  height: 42vw;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .hero {
    background-image: url("../images/hero@2x.jpg");
  }
}
@media screen and (max-width: 575px) {
  .hero {
    background-image: url("../images/hero-mobile.jpg");
  }
}
@media only screen and (max-width: 575px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 575px) and (min-resolution: 192dpi) {
  .hero {
    background-image: url("../images/hero-mobile@2x.jpg");
  }
}
@media screen and (max-width: 1199px) {
  .hero {
    height: 50vw;
  }
}
@media screen and (max-width: 575px) {
  .hero {
    height: 80vh;
  }
}
.hero::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  position: absolute;
  top: 0;
  left: 0;
}
.hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.hero .logo {
  width: 216px;
  position: absolute;
  top: 50px;
}
@media screen and (min-width: 1599px) {
  .hero .logo {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1599px) {
  .hero .logo {
    width: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .hero .logo {
    width: 125px;
  }
}
@media screen and (max-width: 991px) {
  .hero .logo {
    width: 85px;
  }
}
@media screen and (max-width: 575px) {
  .hero .logo {
    width: 40vw;
    top: 8vw;
    left: 8vw;
  }
}
.hero .logo img {
  width: 100%;
}
.hero .content {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero .content h1 {
  line-height: 1;
  margin-bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  .hero .content h1 {
    padding: 0 1.5rem;
    font-size: 54px;
  }
}
.hero .content .btn {
  position: absolute;
  top: 210%;
  left: 50%;
  transform: translateX(-50%);
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .hero .content .btn {
    top: 32vh;
  }
}

.about .item {
  position: relative;
  margin: 5rem 0;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 575px) {
  .about .item {
    margin: 2rem 0;
  }
}
.about .item h1 {
  color: #955c25;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 575px) {
  .about .item h1 {
    margin: 1rem 0;
  }
}
.about .item .image {
  width: calc(42% - 1.5rem);
  position: relative;
  padding: 0;
  margin-right: 1.5rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 120%;
}
@media screen and (max-width: 575px) {
  .about .item .image {
    width: 70vw;
    margin-left: -24px;
  }
  .about .item .image::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
  }
}
.about .item:first-child .image {
  background-image: url("../images/about-1.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .about .item:first-child .image {
    background-image: url("../images/about-1@2x.jpg");
  }
}
.about .item:last-child .image {
  background-image: url("../images/about-2.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .about .item:last-child .image {
    background-image: url("../images/about-2@2x.jpg");
  }
}
.about .item .content {
  width: 58%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .about .item .content {
    width: 100%;
    padding: 0.5rem;
  }
}
.about .item .content .btn {
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .about .item .content .btn {
    margin-top: 1rem;
  }
}
.about .item.reverse {
  flex-direction: row-reverse;
}
.about .item.reverse .content {
  justify-content: center;
  align-items: center;
}
.about .item.reverse .image {
  padding-right: 0;
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 575px) {
  .about .item.reverse .image {
    padding: 0;
    margin-right: -24px;
  }
}

.testimony {
  margin: 10rem 0 10rem 0;
}
@media screen and (max-width: 1599px) {
  .testimony {
    margin: 8rem 0 6rem 0;
  }
}
@media screen and (max-width: 1199px) {
  .testimony {
    margin: 6rem 0 6rem 0;
  }
}
@media screen and (max-width: 575px) {
  .testimony {
    margin: 1rem 0 6rem 0;
  }
}
.testimony .slider {
  width: 100%;
}
.testimony .slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: #fff;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-size: 45%;
  background-position: 60% 50%;
  position: absolute;
  transition: all 0.2s ease;
  top: -3rem;
  right: calc((100vw - 1320px + 2rem) / 2);
  z-index: 99;
}
@media screen and (max-width: 1399px) {
  .testimony .slider .slick-arrow {
    right: calc((100vw - 1140px + 2rem) / 2);
  }
}
@media screen and (max-width: 1199px) {
  .testimony .slider .slick-arrow {
    right: 10vw;
  }
}
@media screen and (max-width: 575px) {
  .testimony .slider .slick-arrow {
    top: 30vw;
    right: 2rem;
  }
}
.testimony .slider .slick-arrow.slick-prev {
  transform: rotate(180deg) translateX(calc(100% + 1rem));
}
@media screen and (max-width: 575px) {
  .testimony .slider .slick-arrow.slick-prev {
    right: unset;
    left: 2rem;
    transform: rotate(180deg);
  }
}
.testimony .slider .slick-arrow.slick-disabled {
  background-color: #848484;
  pointer-events: none;
}
.testimony .slider .slick-arrow:hover {
  background-color: #955c25;
}
.testimony .slider .item {
  height: 35vw;
  background-color: #653e18;
  display: flex;
  margin: 0 1.5rem;
  filter: brightness(0.2);
  transition: all 0.2s ease;
}
@media screen and (max-width: 1599px) {
  .testimony .slider .item {
    margin: 0 1rem;
  }
}
@media screen and (max-width: 1399px) {
  .testimony .slider .item {
    margin: 0 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .testimony .slider .item {
    margin: 0 1rem;
  }
}
@media screen and (max-width: 991px) {
  .testimony .slider .item {
    margin: 0 0.75rem;
    height: 60vw;
  }
}
@media screen and (max-width: 575px) {
  .testimony .slider .item {
    height: auto;
    display: inline-table;
    margin: 0 1rem;
  }
}
.testimony .slider .item.slick-current {
  filter: brightness(1);
}
.testimony .slider .item .image {
  width: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 575px) {
  .testimony .slider .item .image {
    width: 100%;
    height: auto;
  }
  .testimony .slider .item .image::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 80%;
  }
}
.testimony .slider .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 575px) {
  .testimony .slider .item .image img {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.testimony .slider .item .content {
  width: 50%;
  background-image: url("../images/quote.svg");
  background-repeat: no-repeat;
  background-size: 9vw;
  background-position: 3% -30%;
  position: relative;
}
@media screen and (max-width: 1399px) {
  .testimony .slider .item .content {
    background-size: 20%;
    background-position: 0% -26%;
  }
}
@media screen and (max-width: 991px) {
  .testimony .slider .item .content {
    background-size: 30%;
    background-position: 0% -17%;
  }
}
@media screen and (max-width: 575px) {
  .testimony .slider .item .content {
    width: 100%;
    background-size: 30%;
    background-position: 0% -2.75rem;
  }
}
.testimony .slider .item .content .text {
  padding: 26% 11% 0;
  font-size: 32px;
  font-family: "GFS Didot", serif;
  line-height: 1.3;
}
@media screen and (max-width: 1599px) {
  .testimony .slider .item .content .text {
    padding: 24% 1.5rem 0;
    font-size: 25px;
  }
}
@media screen and (max-width: 1399px) {
  .testimony .slider .item .content .text {
    padding: 22% 1.5rem 0;
  }
}
@media screen and (max-width: 1199px) {
  .testimony .slider .item .content .text {
    padding: 20% 9% 10% 9%;
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .testimony .slider .item .content .text {
    padding: 32% 9% 10% 9%;
  }
}
@media screen and (max-width: 575px) {
  .testimony .slider .item .content .text {
    padding: 4rem 1.25rem 1.5rem 1.25rem;
    font-size: 22px;
  }
}
@media screen and (min-width: 1999px) {
  .testimony .slider .item .content .text {
    font-size: 36px;
  }
}
@media screen and (min-width: 2399px) {
  .testimony .slider .item .content .text {
    font-size: 42px;
  }
}
@media screen and (min-width: 2799px) {
  .testimony .slider .item .content .text {
    font-size: 46px;
  }
}
@media screen and (min-width: 3299px) {
  .testimony .slider .item .content .text {
    font-size: 56px;
  }
}
.testimony .slider .item .content .author {
  text-align: right;
  position: absolute;
  bottom: 2%;
  right: 11%;
}
@media screen and (max-width: 1599px) {
  .testimony .slider .item .content .author {
    font-size: 22px;
    right: 1.5rem;
  }
}
@media screen and (max-width: 1399px) {
  .testimony .slider .item .content .author {
    font-size: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .testimony .slider .item .content .author {
    font-size: 18px;
    bottom: 0%;
  }
}
@media screen and (max-width: 575px) {
  .testimony .slider .item .content .author {
    position: relative;
  }
}
@media screen and (min-width: 1999px) {
  .testimony .slider .item .content .author {
    font-size: 32px;
  }
}
@media screen and (min-width: 2399px) {
  .testimony .slider .item .content .author {
    font-size: 36px;
  }
}
@media screen and (min-width: 2799px) {
  .testimony .slider .item .content .author {
    font-size: 40px;
  }
}
@media screen and (min-width: 3299px) {
  .testimony .slider .item .content .author {
    font-size: 48px;
  }
}

.product .intro {
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (max-width: 575px) {
  .product .intro {
    padding: 0 0.5rem;
  }
}
.product .intro::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: calc(100% + 3rem);
  height: 550px;
  background-color: #56584e;
  z-index: -1;
}
@media screen and (max-width: 1599px) {
  .product .intro::before {
    width: 100vw;
  }
}
@media screen and (max-width: 1399px) {
  .product .intro::before {
    height: 450px;
  }
}
@media screen and (max-width: 1199px) {
  .product .intro::before {
    height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .product .intro::before {
    height: 700px;
  }
}
@media screen and (max-width: 575px) {
  .product .intro::before {
    height: 140vw;
  }
}
@media screen and (max-width: 575px) {
  .product .intro .btn {
    display: block;
  }
}
.product .list {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 575px) and (max-width: 991px) {
  .product .list {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
.product .list .item {
  width: 31%;
  padding: 0 1rem;
  transition: all 0.2s ease;
}
@media screen and (max-width: 575px) {
  .product .list .item {
    width: 100%;
    padding: 0;
    margin: 0 0.5rem;
    filter: brightness(0.75);
  }
  .product .list .item.slick-current {
    filter: brightness(1);
  }
}
.product .list .item .image {
  width: 100%;
  overflow: hidden;
}
.product .list .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.product .list .item .image img:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 575px) {
  .product .list .item .image {
    margin-bottom: 1rem;
  }
}
.product .list .item .content {
  padding: 0.75rem 0;
}
.product .list .item .content h3 {
  margin-bottom: 1rem;
}
.product .list .item .content .btn {
  margin-top: 1rem;
}

.footer {
  margin-top: 4rem;
  padding-bottom: 3rem;
  position: relative;
  height: 40vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/footer.jpg");
}
.footer h1 {
  margin-bottom: 0.4em;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .footer {
    background-image: url("../images/footer@2x.jpg");
  }
}
@media screen and (max-width: 991px) {
  .footer {
    background-image: url("../images/footer-mobile.jpg");
    height: auto;
    padding: 4rem 0.5rem 6rem 0.5rem;
  }
}
@media only screen and (max-width: 991px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 991px) and (min-resolution: 192dpi) {
  .footer {
    background-image: url("../images/footer-mobile@2x.jpg");
  }
}
@media screen and (max-width: 991px) {
  .footer h1 {
    font-size: 42px;
    margin-bottom: 0.6em;
  }
}
@media screen and (max-width: 575px) {
  .footer {
    padding-bottom: 4rem;
  }
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer .form-control {
  background-color: transparent;
  border-radius: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.footer .form-control::placeholder {
  color: #fff;
  opacity: 0.8;
  font-size: 22px;
}
.footer .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(149, 92, 37, 0.75) !important;
}
@media screen and (max-width: 991px) {
  .footer .form-control {
    width: 100%;
  }
  .footer .form-control::placeholder {
    font-size: 20px;
  }
}
.footer .btn {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
@media screen and (max-width: 991px) {
  .footer .btn {
    margin-left: auto !important;
    margin-top: 1rem;
  }
}
.footer .copyright {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.58);
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 1399px) {
  .footer .copyright {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .footer .copyright {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */