@font-face {
  font-family: 'Bau Pro';
  src: url("../fonts/BauPro.woff2");
}

@font-face {
  font-family: 'Bau Pro Medium';
  src: url("../fonts/BauPro-Medium.woff2");
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

* {
  margin: 0;
}

body {
  overflow-x: hidden;
}

.button_touch {
  background-color: #1F2839;
  color: #F4F1EA;
  font-family: 'Bau Pro Medium';
  font-size: 16px;
  text-decoration: none;
  padding: 17px 35px 14px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

header {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 20px;
  left: 0;
  z-index: 99999;
}

header .h_left {
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
  cursor: pointer;
}

header .h_left span {
  color: white;
  font-family: 'Bau Pro Medium';
  font-size: 13px;
  margin-left: 15px;
  line-height: 13px;
  letter-spacing: 2px;
}

header .h_right {
  margin-right: 50px;
}

header .h_right img {
  width: 140px;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
}

@media only screen and (orientation: portrait) {
  header .h_left {
    margin-left: 20px;
  }
  header .h_right {
    margin-right: 20px;
  }
  header .h_right img {
    width: 93px;
  }
}

#menu_top {
  position: absolute;
  top: -81px;
  left: 0;
  width: 100vw;
  height: 80px;
  background-color: black;
  z-index: 99999999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#menu_top .left {
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu_top .left svg {
  margin-right: 50px;
  cursor: pointer;
}

#menu_top .left a {
  color: white;
  font-family: 'Bau Pro Medium';
  font-size: 13px;
  text-decoration: none;
}

#menu_top .left a:not(:last-child) {
  margin-right: 20px;
}

#menu_top .right {
  margin-right: 50px;
}

#menu_top .right img {
  width: 140px;
}

#home {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 30px;
}

#home .btn-flip {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  opacity: 1;
  outline: 0;
  line-height: 40px;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
}

#home .btn-flip:hover:after {
  opacity: 1;
  -webkit-transform: translateY(0) rotateX(0);
          transform: translateY(0) rotateX(0);
}

#home .btn-flip:hover:before {
  opacity: 0;
  -webkit-transform: translateY(50%) rotateX(90deg);
          transform: translateY(50%) rotateX(90deg);
}

#home .btn-flip:after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #323237;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  background: white;
  content: attr(data-back);
  -webkit-transform: translateY(-50%) rotateX(90deg);
          transform: translateY(-50%) rotateX(90deg);
}

#home .btn-flip:before {
  top: 0;
  left: 0;
  opacity: 1;
  color: white;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  background: transparent;
  content: attr(data-front);
  -webkit-transform: translateY(0) rotateX(0);
          transform: translateY(0) rotateX(0);
}

#home .button_enter {
  font-weight: 300;
  color: white;
  font-family: 'Lato', sans-serif;
  text-align: center;
  text-decoration: none;
}

#home .logo {
  width: 80vw;
  max-width: 450px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#home .logo:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

#home .bottom {
  position: absolute;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#home .bottom .sun {
  color: white;
  font-size: 30px;
  margin-right: 10px;
}

#home .bottom .moon {
  color: white;
  font-size: 30px;
  margin-left: 10px;
}

#home .bottom #slider .rs-range-color {
  background-color: transparent;
}

#home .bottom #slider .rs-path-color {
  background-color: transparent;
}

#home .bottom #slider .rs-handle {
  background-color: transparent;
  padding: 7px;
  border: 2px solid white;
  margin-left: -6px !important;
}

#home .bottom #slider .rs-handle.rs-focus {
  border-color: white;
}

#home .bottom #slider .rs-handle:after {
  border-color: white;
  background-color: white;
}

#home .bottom #slider .rs-border {
  border-color: transparent;
}

#home .bottom #slider .rs-bg-color {
  background-color: transparent;
  border: 2px dashed white;
}

#home .bottom #slider .rs-top .rs-tooltip {
  margin-bottom: 10px;
  color: white;
  font-family: 'Bau Pro Medium';
  font-size: 20px;
  margin-left: -26.211px !important;
}

#home .bottom #slider .rs-top .rs-tooltip div {
  text-align: center;
}

#site {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: black;
}

#site .site_inner {
  width: 25vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  cursor: pointer;
}

#site .site_inner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

#site .site_inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 5;
}

#site .site_inner h2 {
  z-index: 9;
  text-align: center;
  padding: 50px 2vw;
  color: white;
  font-family: 'Bau Pro Medium';
  font-size: 25px;
  filter: drop-shadow(0px 4px 4px black);
  -webkit-filter: drop-shadow(0px 4px 4px black);
}

#site .site_inner p {
  display: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#site .site_inner:hover .overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

#site .site_inner:hover p {
  display: block;
  color: white;
  position: absolute;
  bottom: 40px;
  z-index: 10;
  text-align: center;
  padding: 0 10px;
  font-family: 'Bau Pro Medium';
}

@media only screen and (max-width: 767px) {
  #site {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #site .site_inner {
    width: 100vw;
  }
  #site .site_inner .overlay {
    width: 100%;
  }
  #site .site_inner img {
    width: 100%;
  }
  #site .site_inner h2 {
    font-size: 20px;
  }
  #site .site_inner p {
    display: none !important;
  }
}

#work {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: black;
}

#work .site_inner {
  width: 50vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  transition: 0.1s;
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  cursor: pointer;
}

#work .site_inner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 6;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

#work .site_inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 5;
}

#work .site_inner h2 {
  z-index: 9;
  text-align: center;
  padding: 50px 2vw;
  color: white;
  font-family: 'Bau Pro Medium';
  font-size: 25px;
  filter: drop-shadow(0px 4px 4px black);
  -webkit-filter: drop-shadow(0px 4px 4px black);
}

#work .site_inner:hover .overlay {
  background-color: rgba(0, 0, 0, 0.25);
}

.si_col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: context-menu !important;
}

.ul_inner {
  display: none;
  z-index: 9;
  color: white;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.ul_inner li {
  text-align: center;
}

.ul_inner li a {
  color: white;
  font-family: 'Bau Pro';
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.ul_inner li:not(:last-child) {
  margin-bottom: 5px;
}

.close_p {
  z-index: 99;
  display: none;
  background-color: white;
  border-radius: 8px;
  border-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: black;
  font-family: 'Bau Pro Medium';
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: absolute;
  bottom: 20px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: color 100ms;
  transition: color 100ms;
  vertical-align: baseline;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

@media only screen and (max-width: 767px) {
  #work {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #work .site_inner {
    width: 100vw;
  }
  #work .site_inner .overlay {
    width: 100%;
  }
  #work .site_inner img {
    width: 100%;
  }
  #work .site_inner h2 {
    font-size: 20px;
  }
}

#single_hero {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#single_hero h1 {
  color: white;
  font-family: 'Bau Pro Medium';
  font-size: clamp(25px, 5vw, 35px);
  font-weight: 500;
}

#single_hero .viewmore {
  position: absolute;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  animation: float 3s infinite ease-in-out;
  -webkit-animation: float 3s infinite ease-in-out;
}

#single_hero .viewmore p {
  margin-bottom: 5px;
  color: white;
  font-family: 'Bau Pro';
  font-size: 15px;
}

#single_text {
  width: 95vw;
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 65px auto;
}

#single_text h3 {
  color: black;
  font-family: 'Bau Pro Medium';
  font-size: 26px;
  width: 50%;
  padding-right: 30px;
}

#single_text p {
  color: black;
  font-family: 'Bau Pro';
  font-size: 16px;
  width: 50%;
  line-height: 130%;
  padding-left: 30px;
}

@media only screen and (orientation: portrait) {
  #single_text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #single_text h3, #single_text p {
    width: 100%;
    padding: 0;
  }
  #single_text h3 {
    padding-bottom: 15px;
  }
}

#single_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100vw;
  max-width: 1320px;
  margin: auto;
}

#single_images img {
  width: 95%;
  padding: 25px 0;
}

@media only screen and (orientation: portrait) {
  #single_images img {
    width: 95%;
    padding: 8px 0;
  }
}

#single_contact {
  width: 90vw;
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 30px 0;
  margin: auto;
}

#single_contact p {
  color: black;
  font-family: 'Bau Pro';
  font-size: 15px;
  line-height: 120%;
  padding-bottom: 22px;
}

#footer {
  width: 95vw;
  margin: auto;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#footer .left a {
  text-decoration: none;
  color: black;
  font-family: 'Bau Pro';
  font-size: 12px;
}

#footer .center {
  text-align: center;
  color: black;
  font-family: 'Bau Pro';
  font-size: 12px;
}

#footer .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#footer .right a {
  text-decoration: none;
  color: black;
  font-family: 'Bau Pro';
  font-size: 12px;
}

@media only screen and (orientation: portrait) {
  #footer {
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
/*# sourceMappingURL=style.css.map */