/******** LANDSCAPE **********/
/******** PORTRAIT **********/
#hamburger {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.icon-wrapper {
  z-index: 2;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.icon-wrapper .nav-icon {
  margin: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.icon-wrapper .nav-icon span {
  background-color: white;
  position: absolute;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 3px;
  transition-duration: 500ms;
}
.icon-wrapper .nav-icon span:nth-child(1) {
  top: 10px;
  left: 0px;
}
.icon-wrapper .nav-icon span:nth-child(2) {
  top: 20px;
  left: 0px;
  opacity: 1;
}
.icon-wrapper .nav-icon span:nth-child(3) {
  top: 30px;
  left: 0px;
}
.icon-wrapper .nav-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}
.icon-wrapper .nav-icon.open span:nth-child(2) {
  opacity: 0;
}
.icon-wrapper .nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(1) {
  transform: translateY(-4px);
}
.icon-wrapper .nav-icon:not(.open):hover span:nth-child(3) {
  transform: translateY(4px);
}

.blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: rgba(0, 0, 0, 0.5);
}
.blocker.open {
  display: block;
}

#toggle-menu {
  background-color: var(--color-secondary);
  overflow-y: auto;
  transform: translate(-15rem);
  position: absolute;
}
#toggle-menu.open {
  min-width: 10rem;
  transform: translate(0);
  transition: 0.3s ease-in;
  top: 5rem;
  left: 1rem;
  background-color: white;
}
#toggle-menu .mobile-menu {
  padding: 3em 1em;
}
#toggle-menu .mobile-menu > div {
  padding-bottom: 0.5rem;
}
#toggle-menu .mobile-menu a {
  color: black;
  border-bottom: none;
}

@font-face {
  font-family: "Regular";
  src: url("../fonts/BeVietnamPro-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Bold";
  src: url("../fonts/BeVietnamPro-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Logo";
  src: url("../fonts/Belanosima-SemiBold.ttf");
}
:root {
  --color-text: white;
  --color-primary: #323282;
  --color-secondary: #e3e5f5;
  --font-text: "Regular", serif;
  --font-bold: "Bold", serif;
  --font-logo: "Logo", serif;
  --max-content-width: 1920px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.8;
}

/************** GENERAL STYLING **************/
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  font-size: 16px;
}
body.block {
  height: 100%;
  overflow: hidden;
}
body > * {
  hyphens: auto;
}
@media screen and (min-width: 360px) {
  body > * {
    hyphens: none;
  }
}
body.page-template-home {
  animation: fadeIn 1.5s ease;
}

h2 {
  font-family: var(--font-bold);
}
li {
  margin-left: 1rem;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.5s ease-in-out;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

strong {
  font-family: var(--font-bold);
  font-weight: normal;
}

.black {
  background-color: black;
}

.purple {
  background-color: var(--color-primary);
}

p {
  padding-bottom: 1rem;
}

/************** HEADER **************/
header {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100vw;
  max-width: var(--max-content-width);
  z-index: 10;
}
@media screen and (min-width: 920px) {
  header {
    padding: 0 1rem;
  }
}
@media screen and (min-width: 1920px) {
  header {
    margin-left: calc((100vw - var(--max-content-width)) / 2);
  }
}

/************** CONTENT **************/
.content {
  background-color: var(--color-secondary);
  display: grid;
  gap: 0.5rem;
  width: 100vw;
  max-width: var(--max-content-width);
  margin: auto;
  min-height: calc(100vh - 3.5rem);
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .content {
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content {
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1400px) {
  .content {
    font-size: 1.3rem;
  }
}
.content > * {
  color: var(--color-text);
}
@media screen and (min-width: 920px) {
  .content.full > div {
    padding: calc(60px + 2rem);
    height: 100vh;
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .content.full > div::-webkit-scrollbar {
    display: none;
  }
}
.content > div {
  padding: 1rem;
  align-content: center;
}
@media screen and (min-width: 360px) {
  .content > div {
    padding: 2rem;
  }
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .content > div {
    padding: 2rem 4rem;
  }
}
@media screen and (min-width: 920px) {
  .content > div {
    padding: calc(60px + 2rem);
  }
}
.content > div,
.content > figure {
  min-height: 18rem;
}
.content a:not(.logo a) {
  text-decoration: none;
  color: var(--color-text);
  transition: all 1s ease-in-out;
  border-bottom: 2px solid;
}
.content a:not(.logo a):hover {
  transition: all 0.5s ease-in-out;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.6901960784);
}
.content .logo {
  font-family: var(--font-logo);
  font-size: 4rem;
  line-height: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 360px) {
  .content .logo {
    font-size: 6rem;
  }
}
@media screen and (min-width: 720px) and (orientation: portrait) {
  .content .logo {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .content .logo {
    text-align: center;
  }
}
@media screen and (min-width: 920px) {
  .content .logo {
    font-size: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .content .logo {
    font-size: 10rem;
  }
}
.content .video-figure {
  position: relative;
}
.content .video-figure span {
  position: absolute;
  top: 20%;
  left: 50%;
  color: white;
  width: 250px;
  text-align: center;
  margin-left: -115px;
  font-size: 2rem;
  font-family: var(--font-bold);
}
@media screen and (min-width: 480px) and (orientation: landscape) {
  .content .video-figure span {
    top: 30%;
  }
}
.content .video-figure button {
  position: absolute;
  height: auto;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
}
.content .video-figure button#play {
  left: 50%;
  top: 50%;
  width: 250px;
  margin-left: -125px;
  margin-top: -125px;
}
.content .video-figure button#pause {
  right: 1rem;
  bottom: 1rem;
  width: 150px;
  opacity: 0;
}

/************** FOOTER **************/
footer {
  padding: 1rem;
  text-align: center;
  height: 3.5rem;
}
footer > a {
  padding: 0 1rem;
  color: black;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
