* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #fff;
  background-repeat: repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

picture {
  display: block;
}

li,
a {
  list-style: none;
  text-decoration: none;
  list-style-type: none;
}

.mws {
  max-width: 122rem;
  margin-left: auto;
  margin-right: auto;
}

.scroll {
  scroll-margin-top: 25px;
}

.fxr {
  display: flex;
  flex-direction: row;
}

.fxc {
  display: flex;
  flex-direction: column;
}

h1,h2,h3,h4,h5,h6 {
  hyphens: auto;
}

h2 {
  text-transform: uppercase;
  font-size: 45px;
  margin: 2rem 0;
}

a,
p,
span {
  font-size: 16px;
  letter-spacing: 0.2rem;
  color: #161615;
}

.button {
  background-color: #B13112;
  border: none;
  color: white;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  padding-bottom: 1rem;
  margin: 2rem 0;
  cursor: pointer;
  transition-duration: 0.25s;
  width: fit-content;
}
.button:hover {
  background-color: #161615;
}

a {
  color: #161615;
}

.signature {
  color: #B13112;
}

h3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

[data-movein] {
  opacity: 0;
  transform: translateY(-10rem);
  transition-duration: 1.5s;
}
[data-movein].in-vp {
  opacity: 1;
  transform: translateY(0);
}

.scroll {
  scroll-margin-top: 10rem;
}

.data {
  margin: 8rem auto;
  font-size: 17px;
  font-family: lato, sans-serif;
}
.data ul {
  display: block;
  list-style-type: disc;
  margin-top: 1em;
  margin-bottom: 1 em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
.data li {
  list-style: inside;
}
.data a {
  text-decoration: underline;
}
.data h1,
.data h2,
.data h3,
.data h4 {
  line-height: 1.1;
  font-size: 2.2rem;
}

header {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  margin-top: 0;
  position: relative;
}
header .container-logo {
  min-width: 18rem;
  height: 6rem;
}
header .main-header__all {
  margin-bottom: 2rem;
}
header .main-header__all.active {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 66;
  background-color: #fff;
}
header .main-header__all.active .top-nav {
  margin-top: 1.5rem;
}
header .top-nav {
  display: flex;
  flex-direction: row;
  padding-bottom: 1.5rem;
  margin-top: 3rem;
  justify-content: space-between;
}
header .top-nav .menu {
  display: flex;
  flex-direction: row;
  margin-top: 3.2rem;
  align-items: flex-end;
}
header .top-nav li {
  margin-right: 4rem;
}
header .top-nav li:last-of-type {
  margin-right: 0;
}
header .top-nav a {
  color: #707070;
  font-size: 1.8rem;
}
header .nav-item:last-of-type .nav-link {
  padding-right: 0;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 15px;
}

#myBtn:hover {
  background-color: #555;
}

.header-content {
  min-height: 70rem;
  overflow: hidden;
  position: relative;
  display: flex;
  background-image: url(../img/header_02.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.header-content::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.35;
  z-index: 1;
}

.header-content__img {
  display: none;
}
.header-content__text {
  width: 50rem;
  margin-left: calc((100% - 122rem) / 2 + 2rem);
  align-self: flex-end;
  margin-bottom: 10rem;
  /**/
  position: relative;
  z-index: 2;
}
.header-content__text h1,
.header-content__text p {
  color: white;
}
.header-content__text p {
  margin: 4rem 0;
  margin-top: 2rem;
}

@keyframes loader {
  0% {
    rotate: 0deg;
  }
  25% {
    rotate: y 90deg;
    scale: 0.5;
  }
  100% {
    rotate: 360deg;
  }
}
@supports not (rotate: 0deg) {
  @keyframes loader {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: scale(0.5) rotateY(90deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}
.container-logo {
  animation: loader 1.5s;
  transition: 0.5s ease-in-out;
}

.footer {
  background-color: #B13112;
  overflow: visible;
}
.footer__bg {
  justify-content: space-between;
  align-items: center;
  color: white;
  height: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.footer__links {
  gap: 1rem;
}
.footer .ba::before,
.footer .ba::after {
  content: " | ";
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.footer a,
.footer p {
  color: white;
}

.bac-footer {
  position: relative;
}
.bac-footer img {
  height: auto;
  width: 24rem;
  position: absolute;
  right: -1rem;
  bottom: -6rem;
  z-index: 9999;
}

a,
p,
span {
  font-size: 16px;
  line-height: 1.6;
  font-family: lato, sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1,
h2 {
  font-size: 38px;
  color: #6B2316;
  letter-spacing: 0.8rem;
}

h3 {
  font-size: 22px;
  color: #B13112;
  letter-spacing: 0.5rem;
}

h1,
h2,
h3 {
  font-family: lato, sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  font-style: normal;
}

.ptm {
  padding-top: 7rem;
}

.pbm {
  padding-bottom: 7rem;
}

.about {
  justify-content: space-around;
  margin: 15rem auto 9rem auto;
  position: relative;
}
.about__image {
  flex: 0 0 40%;
  max-width: 38rem;
  z-index: 1;
}
.about .bac {
  height: auto;
  width: 15rem;
  position: absolute;
  right: 60%;
  top: -24%;
  z-index: -1;
}
.about__content {
  flex: 0 0 50%;
  max-width: 50rem;
  margin: 0 0 0 5rem;
}
.about__content p {
  margin-bottom: 3rem;
}

.work {
  background-color: #f7f5f2;
  position: relative;
}
.work__bg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.work h2 {
  margin-bottom: 4rem;
}
.work .bac-work {
  height: auto;
  width: 37rem;
  position: absolute;
  top: -3%;
  z-index: -1;
}
.work__items {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10rem;
}
.work__item {
  flex: calc((100% - 10rem) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  overflow: visible;
}

.work__item p {
  width: 100%;
  max-width: 400px;
}

.work__img {
  max-width: 38rem;
  z-index: 1;
}
.work a {
  margin-top: 6rem;
  align-self: center;
}
.work h3 {
  margin-top: 4rem;
}

.image {
  background-image: url(../img/footer_02.jpg);
  background-size: 100%;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 35rem;
}

.furniture_wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5rem;
}

.furniture_wrap .imagebox {
  width: calc((100% - 5rem) / 2);
  max-width: 380px;
}

.furniture_wrap .contentbox {
  width: calc((100% - 5rem) / 2);
}

.contact {
  justify-content: space-between;
  margin: 10rem auto;
}
.contact__content {
  flex: 0 0 60%;
}
.contact__content h2 {
  margin-top: 0;  
  width: 550px;
  max-width: 100%;
}
.contact__content p {
  width: 60%;
}
.contact__links {
  flex: 0 0 30%;
  margin-top: 1rem;
}
.contact__links > * {
  margin: 1.5rem 0;
  gap: 4rem;
  overflow: visible;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 0;
  }
}
.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 2s linear forwards;
}

@media only screen and (max-width: 1300px) {
  .mws {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
@media only screen and (max-width: 1160px) {
  .work__items {
    flex: 100%;
    flex-direction: column;
    gap: 10rem;
  }
  .work__items p {
    width: 50%;
  }
  .work a {
    margin-top: 10rem;
  }

  .furniture_wrap {
    flex-direction: column;    
  }

  .furniture_wrap .contentbox {
    width: 100%;
    text-align: center;    
  }

  .furniture_wrap .contentbox .textbox {
    max-width: 65rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1060px) {
  .contact {
    flex-direction: column;
    gap: 3rem;
  }
  .about {
    flex-direction: column;
  }
  .about__image {
    align-self: center;
  }
  .about__content {
    margin-left: 0;
    max-width: 100%;
  }
  .about .bac {
    right: 0%;
    top: -5%;
  }
  .footer__bg {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .furniture_wrap {
    flex-direction: column;
  }

  .furniture_wrap .imagebox {
    width: 370px;
    max-width: 100%;
  }  
}

@media only screen and (max-width: 800px) {
  header .top-nav li {
    margin-right: 2rem;
  }
  header .top-nav li a {
    font-size: 1.4rem;
  }
  .header-content {
    min-height: 50rem;
    background-image: none;
    display: flex;
    flex-direction: column;
  }

  .header-content::after {
    display: none;
  }

  .header-content h1 {
    color: #6B2316;
  }
  .header-content__text {
    align-self: normal;
    width: fit-content;
    margin-top: 3rem;
  }
  .header-content__text p {
    color: #161615;
  }
  .header-content__img {
    display: block;
  }
  h1,
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  br {
    display: none;
  }
  .footer a,
  .footer p,
  .footer span {
    font-size: 1.4rem;
  }
  header .top-nav a {
    font-size: 1.6rem;
  }
  .mws {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .work a {
    text-align: center;
  }
  .about {
    margin-top: 0;
  }
}
@media only screen and (max-width: 670px) {
  header .top-nav {
    margin-top: 2rem;
  }
  
  header .container-logo {
    min-width: unset;
    width: auto;
    height: 4rem;    
  }

  header .container-logo svg {
    width: 15rem;
    height: auto;
  }

  .work__items p {
    width: 100%;
  }
  .footer__links {
    flex-direction: column;
    gap: 1rem;
  }
  .footer .ba::after,
  .footer .ba::before {
    content: none;
  }
  header .top-nav {
    flex-direction: column;
  }
  header .top-nav .menu {
    justify-content: flex-end;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .contact__content p {
    width: 100%;
  }
  header .main-header__all {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 420px) {
  header .top-nav .menu {
    justify-content: space-between;
  }

  header .top-nav li {
    margin-right: 0;
  }

  header .top-nav li a {
    font-size: 1.2rem;
  }

  .bac-work {
    height: auto;
    max-width: 24rem;
    width: auto;
    position: absolute;
    top: -3%;
    z-index: -1;
  }
}

@media only screen and (max-width: 345px) {
  header .top-nav li a {
    word-break: break-all;
  }
  header .top-nav {
    padding-bottom: 0;
  }
  header .main-header__all {
    margin-bottom: 1rem;
  }
}
.error-container {
  text-align: center;
  font-size: 180px;
  font-family: lato, sans-serif;
  font-weight: 800;
  margin: 20px 15px;
}

.error-container > span {
  display: inline-block;
  line-height: 0.7;
  position: relative;
  color: #6B2316;
}

.error-container > span > span {
  display: inline-block;
  position: relative;
}

.error-container > span:nth-of-type(1) {
  perspective: 1000px;
  perspective-origin: 500% 50%;
  color: #596048;
}

.error-container > span:nth-of-type(1) > span {
  transform-origin: 50% 100% 0px;
  transform: rotateX(0);
  animation: easyoutelastic 5s infinite;
}

.error-container > span:nth-of-type(3) {
  perspective: none;
  perspective-origin: 50% 50%;
}

.error-container > span:nth-of-type(3) > span {
  transform-origin: 100% 100% 0px;
  transform: rotate(0deg);
  animation: rotatedrop 5s infinite;
}

@keyframes easyoutelastic {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-30deg);
  }
  15% {
    transform: rotate(-90deg);
  }
  70% {
    transform: rotate(-90deg);
  }
  80% {
    transform: rotate(0);
  }
  100% {
    transform: rotateX(0);
  }
}
@keyframes rotatedrop {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(30deg);
  }
  15% {
    transform: rotate(90deg);
  }
  70% {
    transform: rotate(90deg);
  }
  80% {
    transform: rotate(0);
  }
  100% {
    transform: rotateX(0);
  }
}
.main-404 h1 {
  text-align: center;
  margin: 30px 15px;
}

.zoom-area {
  max-width: 490px;
  margin: 30px auto 30px;
  font-size: 19px;
  text-align: center;
}

.link-container {
  text-align: center;
}

a.more-link {
  text-transform: uppercase;
  font-size: 13px;
  background-color: #bbb;
  padding: 10px 15px;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  line-height: 1.5;
  text-decoration: none;
  margin-top: 50px;
  letter-spacing: 1px;
}

.main-404 span {
  font-family: lato, sans-serif;
  font-size: 42rem;
  color: #6B2316;
}
.main-404 span svg {
  width: 100%;
  height: 100%;
}

.main-404 {
  margin-bottom: 13rem;
  min-height: 74vh;
}

#background-wrap {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}

@media only screen and (max-width: 1500px) {
  .main-404 span {
    font-size: 24rem;
  }
  .error-container {
    margin-top: 12rem;
  }
  .svg {
    max-width: auto;
    height: 18rem;
  }
  .bac-footer {
    z-index: -1;
  }
}
@media only screen and (max-width: 1100px) {
  .main-404 span {
    font-size: 16rem;
  }
  .svg {
    max-width: auto;
    height: 11rem;
  }
}
@media only screen and (max-width: 800px) {
  .error-container {
    font-size: inherit;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    align-items: center;
    margin-top: 4rem;
    flex-wrap: nowrap;
  }
  .main-404 {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .main-404 span {
    font-size: 7rem;
  }
  .svg {
    max-width: auto;
    height: 5rem;
  }
}
/* KEYFRAMES */
@-webkit-keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }
  100% {
    margin-top: -100%;
  }
}
@-moz-keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }
  100% {
    margin-top: -100%;
  }
}
@keyframes animateBubble {
  0% {
    margin-top: 1000px;
  }
  100% {
    margin-top: -100%;
  }
}
@-webkit-keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}
@-moz-keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}
@keyframes sideWays {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: 50px;
  }
}
/* ANIMATIONS */
.x1 {
  -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: -5%;
  top: 5%;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
}

.x2 {
  -webkit-animation: animateBubble 17s linear infinite, sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 17s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 17s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 5%;
  top: 80%;
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  transform: scale(0.4);
}

.x3 {
  -webkit-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 25s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 10%;
  top: 40%;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  transform: scale(0.7);
}

.x4 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  -moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 20%;
  top: 0;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

.x5 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 30%;
  top: 50%;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  transform: scale(0.5);
}

.x6 {
  -webkit-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 21s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 50%;
  top: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  transform: scale(0.8);
}

.x7 {
  -webkit-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 20s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 65%;
  top: 70%;
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  transform: scale(0.4);
}

.x8 {
  -webkit-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  -moz-animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  animation: animateBubble 22s linear infinite, sideWays 3s ease-in-out infinite alternate;
  left: 80%;
  top: 10%;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

.x9 {
  -webkit-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  -moz-animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  animation: animateBubble 29s linear infinite, sideWays 4s ease-in-out infinite alternate;
  left: 90%;
  top: 50%;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  transform: scale(0.6);
}

.x10 {
  -webkit-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  -moz-animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  animation: animateBubble 26s linear infinite, sideWays 2s ease-in-out infinite alternate;
  left: 80%;
  top: 80%;
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  transform: scale(0.3);
}

/* OBJECTS */
.bubble {
  height: 200px;
  position: absolute;
  width: 200px;
}/*# sourceMappingURL=main.css.map */