@font-face {
  font-family: "molleatregular";
  src: url("../fonts/molleat_regular-webfont.woff2") format("woff2"), url("../fonts/molleat_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --colorOrange: #ff9839;
  --colorWhite: #FFF;
  --fontSize8: 0.666rem;
  --fontSize12: 1rem;
  --fontSize26: 2.166rem;
  --headerHeight: 3rem;
}
@media only screen and (max-width: 580px) {
  :root {
    --headerHeight: 5rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

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

*:focus:not(:focus-visible) {
  outline: 0;
}

html, body {
  scrollbar-gutter: stable;
}

html {
  scroll-behavior: smooth;
  font-size: 40.3px;
}
@media only screen and (max-width: 1680px) {
  html {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 960px) {
  html {
    font-size: 3.5vw;
  }
}
@media only screen and (max-width: 580px) {
  html {
    font-size: 4.5vw;
  }
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fontSize12);
  line-height: 1.4;
  font-family: "baloo-chettan-2", sans-serif;
  font-weight: 500;
  font-style: normal;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 99999;
  width: calc((100vw - 1680px) * 0.5 + 1rem);
  background-image: url(../images/border_left.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right top;
}
body:after {
  content: "";
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 99999;
  width: calc((100vw - 1680px) * 0.5 + 1rem);
  background-image: url(../images/border_right.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left top;
}

.preview_check {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 999999;
}

body:not(.wp-admin) .preview {
  width: 100%;
  position: absolute;
  left: 0%;
  top: 21.8rem;
  height: auto;
  z-index: 999999;
  pointer-events: none;
  opacity: 0.4;
  display: block;
}

.preview_check:checked + .preview {
  display: none;
}

img {
  border: 0;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(255, 152, 57, 0.8);
  z-index: 9998;
  height: 0.5rem;
  transition: 200ms ease-in-out;
  background-image: url(../images/header_bg.jpg);
  background-size: 100% auto;
}
header .header_logo {
  width: 6.4rem;
  height: auto;
  position: absolute;
  left: 50%;
  top: 0.65rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: 200ms ease-in-out;
}
@media only screen and (max-width: 580px) {
  header .header_logo {
    width: 8.4rem;
    top: 1.4rem;
  }
}
header .hamburger {
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease-in-out;
  left: calc((100vw - 1680px) / 2 + 1.5rem);
  top: 1.15rem;
}
@media only screen and (max-width: 1680px) {
  header .hamburger {
    left: 1.5rem;
  }
}
@media only screen and (max-width: 580px) {
  header .hamburger {
    top: 1.7rem;
  }
}
header.fixed {
  height: var(--headerHeight);
  background-color: rgba(255, 152, 57, 0.9);
  -webkit-backdrop-filter: blur(0.05rem);
          backdrop-filter: blur(0.05rem);
}
header.fixed .header_logo {
  opacity: 1;
}
header.fixed .hamburger {
  opacity: 1;
  pointer-events: auto;
}
body:not(.home) header {
  height: var(--headerHeight);
  background-color: rgba(255, 152, 57, 0.9);
  -webkit-backdrop-filter: blur(0.05rem);
          backdrop-filter: blur(0.05rem);
}
body:not(.home) header .header_logo {
  opacity: 1;
}
body:not(.home) header .hamburger {
  opacity: 1;
  pointer-events: auto;
}

nav {
  position: fixed;
  left: 0;
  top: 0;
  height: var(--headerHeight);
  width: 100%;
  background-image: url(../images/header_bg.jpg);
  z-index: 9999;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  transform: translateY(-100%);
  opacity: 0;
  transition: 200ms ease-out;
}
nav.is-active {
  pointer-events: auto;
  transform: translateY(0%);
  opacity: 1;
}
nav .close_nav {
  left: calc((100vw - 1680px) / 2 + 1.5rem);
  top: 1.15rem;
  position: absolute;
  z-index: 99;
  width: 1rem;
  height: auto;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
}
nav .close_nav svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1680px) {
  nav .close_nav {
    left: 1.5rem;
  }
}
@media only screen and (max-width: 580px) {
  nav .close_nav {
    width: 2rem;
    top: 1.5rem;
  }
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 0 2rem;
  font-size: var(--fontSize12);
}
@media only screen and (max-width: 580px) {
  nav ul {
    justify-content: flex-end;
    padding-inline: 1rem;
  }
}
nav ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: var(--colorWhite);
  text-decoration: none;
}

footer {
  width: 100%;
  background-image: url(../images/header_bg.jpg);
  background-size: 100% auto;
  font-size: 0.6rem;
  color: var(--colorWhite);
}
footer .innerwrapper {
  padding: 0.3rem 0;
}
footer .innerwrapper a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: 3rem;
}

.hamburger {
  position: absolute;
  z-index: 99;
  left: 1.5rem;
  top: 1.5rem;
  width: 1rem;
  height: auto;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 580px) {
  .hamburger {
    width: 2rem;
  }
}
.hamburger svg {
  width: 100%;
  height: auto;
}

.outerwrapper {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
}

.innerwrapper {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
}
@media only screen and (max-width: 960px) {
  .innerwrapper {
    padding-inline: 1rem;
  }
}

.section__start {
  position: relative;
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section__start .logo {
  font-size: 0;
  line-height: 0;
  width: 37vh;
  min-width: 20vw;
  position: relative;
  z-index: 99;
}
.section__start .logo .play_button {
  font-size: 0;
  line-height: 0;
  display: block;
  margin-inline: auto;
  width: 10%;
  margin-top: 5%;
}
.section__start .logo .play_button svg {
  width: 100%;
  height: auto;
}
.section__start .logo img {
  width: 100%;
  height: auto;
  transform: translateX(-3%);
}
.section__start .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1,
h2 {
  font-family: "molleatregular";
  margin: 0;
  font-size: var(--fontSize26);
  color: var(--colorWhite);
  font-weight: 400;
  text-transform: uppercase;
}

.section__portfolio {
  position: relative;
  overflow: clip;
}
.section__portfolio .innerwrapper {
  padding-top: 26.5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 960px) {
  .section__portfolio .innerwrapper {
    padding-top: 17.7rem;
  }
}
.section__portfolio .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2rem);
  margin-inline: auto;
  margin-top: 1rem;
}
@media only screen and (max-width: 580px) {
  .portfolio-grid {
    width: 100%;
  }
}
.portfolio-grid .portfolio-item {
  width: 33.33%;
  font-size: 0;
  line-height: 0;
  padding: 0.2rem;
}
@media only screen and (max-width: 580px) {
  .portfolio-grid .portfolio-item {
    width: 50%;
  }
}
.portfolio-grid .portfolio-item .portfolio-item-inner {
  position: relative;
  display: block;
  font-size: 0;
  line-height: 0;
}
.portfolio-grid .portfolio-item .portfolio-item-inner:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 300ms ease-out;
}
.portfolio-grid .portfolio-item .portfolio-item-inner .play_button {
  position: absolute;
  width: 15%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: opacity 300ms ease-out;
  opacity: 0.8;
}
@media (hover: hover) {
  .portfolio-grid .portfolio-item .portfolio-item-inner:hover:before {
    opacity: 0;
  }
  .portfolio-grid .portfolio-item .portfolio-item-inner:hover .play_button {
    opacity: 0;
  }
}
.portfolio-grid .portfolio-item img {
  width: 100%;
  height: auto;
}

.section__contact {
  position: relative;
  overflow: clip;
}
.section__contact .innerwrapper {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 9;
}
.section__contact .innerwrapper a {
  color: inherit;
}
@media only screen and (max-width: 960px) {
  .section__contact .innerwrapper {
    padding-top: 0rem;
  }
}
.section__contact .innerwrapper .content {
  margin-top: 23.3rem;
  text-align: center;
  color: var(--colorWhite);
  font-size: var(--fontSize12);
  max-width: 29em;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .section__contact .innerwrapper .content {
    margin-top: 16.3rem;
  }
}
@media only screen and (max-width: 580px) {
  .section__contact .innerwrapper .content {
    margin-top: 12.3rem;
  }
}
.section__contact .innerwrapper .content .insta_link {
  font-size: 0;
  line-height: 0;
  display: block;
  position: absolute;
  left: -2rem;
  bottom: 0.35rem;
  width: 3rem;
}
@media only screen and (max-width: 960px) {
  .section__contact .innerwrapper .content .insta_link {
    position: relative;
    left: auto;
    bottom: auto;
    width: 3rem;
    margin-inline: auto;
    margin-top: 2rem;
  }
}
.section__contact .innerwrapper .content .insta_link svg {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 960px) {
  .section__contact .innerwrapper .content .insta_link svg path {
    fill: #FFF;
  }
}
.section__contact .innerwrapper .content h2:not(:first-child) {
  margin-top: 2rem;
}
.section__contact .innerwrapper .content h2 + p {
  margin-top: 0;
}
.section__contact .innerwrapper .content p br {
  display: none;
}
.section__contact .innerwrapper .content .column__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 17rem;
  margin-inline: auto;
  text-align: left;
}
.section__contact .innerwrapper .content .column__wrapper .column p:first-child {
  margin-top: 0;
}
.section__contact .innerwrapper .content .column__wrapper .column p:last-child {
  margin-bottom: 0;
}
.section__contact .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.mediabox-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9999;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: mediabox;
  background-image: url(../images/player_bg.jpg);
  background-size: cover;
}
@keyframes mediabox {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mediabox-content {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  display: block;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mediabox-content .mediabox-inner {
  width: calc(100% - 4rem);
  margin-inline: auto;
  max-width: 100vh;
}
@media only screen and (max-width: 580px) {
  .mediabox-content .mediabox-inner {
    width: calc(100% - 2rem);
  }
}
.mediabox-content .mediabox-details {
  color: var(--colorOrange);
  text-align: left;
  font-size: 0.8rem;
  font-family: "baloo-chettan-2", sans-serif;
  margin-top: 0.3rem;
}

.mediabox-content iframe {
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
  height: auto !important;
  border: none !important;
  margin: auto 0;
  aspect-ratio: 16/9;
  background-color: #000;
}

.mediabox-hide {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: mediaboxhide;
}
@keyframes mediaboxhide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.mediabox-close {
  position: absolute;
  top: 0;
  cursor: pointer;
  right: 2rem;
  top: 1rem;
  margin: auto 0;
  width: 0.7rem;
  height: 0.7rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path fill='%23FFF' fill-rule='nonzero' d='M.3 13.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3L7 8.4l5.3 5.3c.2.2.5.3.7.3.2 0 .5-.1.7-.3.4-.4.4-1 0-1.4L8.4 7l5.3-5.3c.4-.4.4-1 0-1.4-.4-.4-1-.4-1.4 0L7 5.6 1.7.3C1.3-.1.7-.1.3.3c-.4.4-.4 1 0 1.4L5.6 7 .3 12.3c-.4.4-.4 1 0 1.4Z'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media only screen and (max-width: 580px) {
  .mediabox-close {
    position: fixed;
    bottom: auto !important;
    width: 2rem;
    height: 2rem;
    right: 1rem;
  }
}

.mediabox-close:hover {
  opacity: 0.5;
}

@media all and (max-width: 768px) and (min-width: 10px) {
  .mediabox-content {
    max-width: 90%;
  }
}
@media all and (max-width: 600px) and (min-width: 10px) {
  .mediabox-content iframe {
    height: 320px !important;
  }
  .mediabox-close {
    bottom: 362px;
  }
}
@media all and (max-width: 480px) and (min-width: 10px) {
  .mediabox-content iframe {
    height: 220px !important;
  }
  .mediabox-close {
    bottom: 262px;
  }
}
.section__page-content .innerwrapper .content {
  min-height: calc(100svh - 1.4rem);
  text-align: left;
  padding-inline: 8rem;
  padding-top: calc(var(--headerHeight) + 2rem);
  font-size: var(--fontSize8);
}
.section__page-content .innerwrapper .content h1 {
  color: var(--colorOrange);
}
