@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow: hidden;
  font-family: sans-serif;
  font-weight: 400;
}

.webgl {
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  z-index: 1;
}

/*

.instagram-button {
  bottom: 55px;
  right: 0;
  width: 100%;
  position: absolute;
  z-index: 30;
  text-align: right;
  visibility: hidden;
}

.contact-button {
  bottom: 55px;
  right: 0;
  width: 100%;
  position: absolute;
  z-index: 31;
  text-align: right;
  visibility: hidden;
}

.btn-sticky {
  right: -200px;
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  background: #f7f7f7;
  border-left: solid 6px #ff7c5c;
  color: #ff7c5c;
  line-height: 30px;
  font-weight: bold;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.39);
  position: relative;
}

@media screen and (max-width: 750px) {
  .name-wrap {
    left: 10px;
    top: 10px;
    width: 150px;
    position: absolute;
    z-index: 5;
  }
  .name {
    font-size: 18px;
  }
  .links {
    font-size: 0;
    bottom: 0px;
    right: 0px;
    width: 100%;
    text-align: right;
    position: absolute;
    z-index: 10;
    visibility: hidden;
  }

  .links svg {
    width: 25px;
    display: inline-block;
    margin-left: initial;
    margin-right: 5px;
    cursor: pointer;
  }

}
*/

.loading-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  z-index: 50;
}

.title-area {
  top: 50%;
  left: 30px;
  position: absolute;
  z-index: 100;
  transform: translateY(-50%);
}

.title {
  font-size: 55px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1;
}

.name-wrap {
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.name {
  color: #ba4400;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
}

.name.bl {
  animation:blink 1.5s ease-in-out infinite alternate;
}

@keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}

@media screen and (max-width: 750px) {
  .title-area {
    top: initial;
    bottom: 20px;
    left: 20px;
    transform: translateX(-120%);
  }

  .title {
    font-size: 30px;
  }

  .name-wrap {
    margin-top: 5px;
    position: relative;
    overflow: hidden;
  }

  .name {
    font-size: 16px;
  }
}

.menu-button {
  top: 20px;
  right: 30px;
  width: 74px;
  height: 74px;
  position: absolute;
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
}

.menu-button::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  box-shadow: 0 0 5px rgba(60,60,60,0.3);
  transition: all .3s linear;
}

.menu-button:hover::after {
  transform: scale(1.1);
}

.def-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.def-line .line {
  width: 37.5%;
  height: 2px;
  background: #1c1d1d;
}

.menu-button.on .def-line .line {
  transform: translateZ(0) scaleX(0);
}

.def-line .line:first-child {
  transform: translateZ(0) scaleX(1);
  transition: transform .6s cubic-bezier(.43,.05,.17,1) .05s;
}

.def-line .line:nth-child(2) {
  margin-top: 2px;
  transform: translateZ(0) scaleX(1);
  transition: transform .6s cubic-bezier(.43,.05,.17,1) .1s;
}

.def-line .line:nth-child(3) {
  margin-top: 2px;
  transform: translateZ(0) scaleX(1);
  transition: transform .6s cubic-bezier(.43,.05,.17,1) .15s;
}

.close-line {
  position: absolute;
  width: 1.5rem;
  height: .12rem;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-line .line {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  overflow: hidden;
  border-radius: 3px;
}

.close-line .line:first-child {
  transform: translate3d(-5px,-5px,0) rotate(45deg);
}

.close-line .line:last-child {
  transform: translate3d(-5px,5px,0) rotate(-45deg);
}

.close-line .line span {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #1c1d1d;
  transform: translate3d(-100%,0,0);
}

.menu-button.on .close-line .line:first-child {
  transform: translateZ(0) rotate(45deg);
  transition: transform 1.2s cubic-bezier(.43,.05,.17,1) .4s;
}

.menu-button.on .close-line .line:last-child {
  transform: translateZ(0) rotate(-45deg);
  transition: transform 1.2s cubic-bezier(.43,.05,.17,1) .6s;
}

.menu-button.on .close-line .line:first-child span {
  transform: translateZ(0);
  transition: transform .4s cubic-bezier(.47,.16,.24,1) .4s;
}

.menu-button.on .close-line .line:last-child span {
  transform: translateZ(0);
  transition: transform .4s cubic-bezier(.47,.16,.24,1) .6s;
}

@media screen and (max-width: 750px) {
  .menu-button {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

.navigation {
  top: 0;
  right: 0;
  transform: translateX(120%);
  width: 420px;
  height: 100%;
  background-color: rgba(230,230,230,0.6);
  position: absolute;
  z-index: 900;
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}

.navigation.on {
  transform: translateX(0%);
}

.navigation ul {
  padding-top: 150px;
  padding-left: 50px;
  display: block;
  list-style: none;
  box-sizing: border-box;
}

.navigation ul li {
  margin-top: 25px;
}

.navigation ul li span {
  color: #000000;
  font-size: 25px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  cursor: pointer;
  display: inline-block;
  transition: color .3s linear;
}

.navigation ul li span.on {
  color: #ba4400;
}

.navigation ul li span:hover {
  color: #ba4400;
}

@media screen and (max-width: 750px) {
  .navigation {
    width: 100vw;
  }
  .navigation ul {
    padding-top: 15px;
    padding-left: 20px;
  }
  .navigation ul li {
    margin-top: 12px;
  }
  .navigation ul li span {
    font-size: 20px;
  }
}

.links {
  bottom: 20px;
  right: 30px;
  position: absolute;
  z-index: 9999;
  opacity: 0;
  line-height: 1;
}

.links svg {
  width: 30px;
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}

.links svg:hover {
  animation-name: hoverAnime;
  animation-fill-mode:backwards;
  animation-duration:.6s;
  animation-iteration-count:1;
  animation-timing-function:ease;
  animation-delay: 0;
  animation-direction:normal;
}

@keyframes hoverAnime{
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.6);
  }
  40% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.cls-1{fill:#ba4400;}
.cls-2{fill:#fff;}

@media screen and (max-width: 750px) {
  .links {
    bottom: 20px;
    right: 20px;
  }
}

.next_previous_link {
  top: 50%;
  right: 30px;
  position: absolute;
  z-index: 90;
  transform: translateY(-50%);
  opacity: 0;
}

.next_previous_link .next {
  width: 42px;
  height: 42px;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.next_previous_link .next span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  transition: color .3s linear;
}

.next_previous_link .next span:hover {
  color: #ba4400;
}

.next_previous_link .next:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  box-shadow: 0 0 5px rgba(60,60,60,0.3);
  transition: all .3s linear;
}

.next_previous_link .next.off {
  cursor: default;
}

.next_previous_link .next.off span {
  color: #f0f0f0;
}

.next_previous_link .next.off span:hover {
  color: #f0f0f0;
}

.next_previous_link .prev {
  width: 42px;
  height: 42px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.next_previous_link .prev span {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  transition: color .3s linear;
}

.next_previous_link .prev span:hover {
  color: #ba4400;
}

.next_previous_link .prev:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  box-shadow: 0 0 5px rgba(60,60,60,0.3);
  transition: all .3s linear;
}

.next_previous_link .prev.off {
  cursor: default;
}

.next_previous_link .prev.off span {
  color: #f0f0f0;
}

.next_previous_link .prev.off span:hover {
  color: #f0f0f0;
}

@media screen and (max-width: 750px) {
  .next_previous_link {
    right: 0;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
  }
}