/* GLOBALS */
/* 
 * In this file you should declare any global variables
 * For example: brand colours, typefaces, etc.
 * imported by style.scss
 */
/* 
 * In this file Are opinionated base styles that come in after the normalize Reset.
 * We may want to merge some of these into the normalize stylesheet if they become common enough.
 * 
 * imported by style.scss
 */
:root {
  box-sizing: border-box;
}

*, *:before, *:after {
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main {
  z-index: 9998;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

#page {
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dd,
p, figure,
pre, table, fieldset, hr, a {
  margin-top: 0 !important;
  text-wrap: balance;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kodchasan", sans-serif;
  font-weight: 800;
  text-wrap: balance;
  line-height: 100%;
}

h1 {
  font-size: clamp(2.7994rem, 2.4609rem + 1.6922vw, 3.8147rem);
}

h2 {
  font-size: clamp(2.3328rem, 2.0931rem + 1.1983vw, 3.0518rem);
}

h3 {
  font-size: clamp(1.944rem, 1.7782rem + 0.829vw, 2.4414rem);
}

h4 {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
}

h5 {
  font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
}

a,
p {
  font-family: "Kodchasan", sans-serif !important;
  font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  line-height: 145%;
}
@media (max-width: 480px) {
  a,
  p {
    font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
  }
}

/* ATOMS */
/*
    BUTTONS PARTIAL

    THIS IS THE STYLESHEET FOR THE BUTTONS AND LINKS
*/
nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
nav ul li {
  transition: all 0.2s ease-in-out;
}
nav ul li i {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
}
nav ul li a {
  color: inherit;
}
nav ul li a:hover {
  color: #0c0c0c;
}
nav ul li:hover {
  transform: translateY(-2px);
}

/*
    CONTAINER PARTIAL

    THIS IS THE STYLESHEET FOR ALL THE STYLED CONTIANERS
*/
.container {
  text-transform: uppercase;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.container::after, .container::before {
  content: "";
  display: block;
  width: 2rem;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-mask-size: auto auto;
          mask-size: auto auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform-origin: center;
}
.container::before {
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-mask-image: url("../img/container_end.svg");
          mask-image: url("../img/container_end.svg");
  margin-right: -1px;
}
.container::after {
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-mask-image: url("../img/container_end-flipped.svg");
          mask-image: url("../img/container_end-flipped.svg");
  margin-left: -1px;
}
.container > * {
  padding: 0.5rem;
}
.container--blue::after, .container--blue::before {
  background-color: #099ac4;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.container--blue > * {
  background-color: #099ac4;
  color: #ffffff;
}
.container--red::after, .container--red::before {
  background-color: #EF3D27;
}
.container--red::before {
  transform: scaleY(-100%);
}
.container--red > * {
  background-color: #EF3D27;
  color: #0c0c0c;
}
.container--yellow::after, .container--yellow::before {
  background-color: #F2B11C;
}
.container--yellow::after {
  transform: scaleY(-100%);
}
.container--yellow > * {
  background-color: #F2B11C;
  color: #0c0c0c;
}
.container--green::after, .container--green::before {
  background-color: #65AA77;
}
.container--green::before {
  transform: scaleY(-100%);
}
.container--green::after {
  transform: scaleY(-100%);
}
.container--green > * {
  background-color: #65AA77;
  color: #ffffff;
}

/* MOLECULES */
/*
    TEAM PARTIAL

    THIS IS THE STYLESHEET FOR OUR TEAM
*/
.team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(auto-fill, minimax(0, 1fr));
  grid-gap: 1rem;
}
@media (max-width: 768px) {
  .team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .team {
    grid-template-columns: minmax(0, 1fr);
  }
}

.member {
  display: grid;
  grid-template-rows: auto repeat(2, auto);
  grid-gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #f0f0f0;
  border: solid #e2e2e2 1px;
  box-shadow: 2px 2px 4px 0 #f0f0f0;
}
.member__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  background-color: #ffffff;
}
.member__name {
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
}
.member__desc {
  font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
}

/* ORGANISMS */
/*
    HEADER PARTIAL

    THIS IS THE STYLESHEET FOR THE HEADER
*/
#wpadminbar ~ #page header.site-header {
  margin-top: 32px;
}
@media (max-width: 480px) {
  #wpadminbar ~ #page header.site-header {
    margin-top: 46px;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 480px) {
  header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: unset;
  }
}
header.scroll {
  background-color: #ffffff;
  box-shadow: 2px 2px 4px 0 rgba(12, 12, 12, 0.2);
}
header.hide {
  opacity: 0;
  pointer-events: none;
}
header .logo {
  height: 100%;
  width: auto;
  aspect-ratio: 2/1;
}
header .logo a {
  height: 100%;
  width: 100%;
}
header .logo .icon {
  display: block;
  height: 100%;
  width: 100%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-image: url(../img/logo_Horizontal-monochrome.svg);
  mask-image: url(../img/logo_Horizontal-monochrome.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: black; /* Or any color of your choice. */
}
header .logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  header .logo {
    height: 64px;
  }
}
header ul {
  list-style-type: none;
  list-style-position: inside;
  color: #0c0c0c;
  gap: 1rem;
}
header ul li a {
  color: inherit;
  text-transform: uppercase;
  text-decoration: unset;
  font-weight: 800;
}
header ul li a.active {
  text-decoration: underline;
}
header .page_nav {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
}
header .page_nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  header .page_nav {
    position: relative;
  }
}
header .social_nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
header .social_nav ul li i {
  font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
}
header .social_nav ul li p {
  display: none;
}
@media (max-width: 480px) {
  header .social_nav {
    display: none;
  }
}

nav ul {
  list-style-type: none;
  list-style-position: inside;
}
nav ul li a {
  text-decoration: none;
}

/*
    FOOTER PARTIAL

    THIS IS THE STYLESHEET FOR THE FOOTER
*/
footer {
  background-color: #0c0c0c;
  clip-path: polygon(0% 100%, 5% 94%, 10% 100%, 15% 94%, 20% 100%, 25% 94%, 30% 100%, 35% 94%, 40% 100%, 45% 94%, 50% 100%, 55% 94%, 60% 100%, 65% 94%, 70% 100%, 75% 94%, 80% 100%, 85% 94%, 90% 100%, 95% 94%, 100% 100%, 100% 0%, 0% 0%);
  clip-path: polygon(0% 0%, 5% 15%, 10% 0%, 15% 15%, 20% 0%, 25% 15%, 30% 0%, 35% 15%, 40% 0%, 45% 15%, 50% 0%, 55% 15%, 60% 0%, 65% 15%, 70% 0%, 75% 15%, 80% 0%, 85% 15%, 90% 0%, 95% 15%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 480px) {
  footer {
    clip-path: polygon(0% 100%, 10% 94%, 20% 100%, 30% 94%, 40% 100%, 50% 94%, 60% 100%, 70% 94%, 80% 100%, 90% 94%, 100% 100%, 100% 0%, 0% 0%);
  }
}
@media (max-width: 480px) {
  footer {
    clip-path: polygon(0% 0%, 10% 6%, 20% 0%, 30% 6%, 40% 0%, 50% 6%, 60% 0%, 70% 6%, 80% 0%, 90% 6%, 100% 0%, 100% 100%, 0% 100%);
  }
}
footer .content {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  footer .content {
    grid-template-rows: minmax(0, 1fr) repeat(2, 3fr) minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
}
footer .content .section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
@media (max-width: 768px) {
  footer .content .section {
    padding-top: unset;
  }
}
footer .content .section--blue {
  background-color: #099ac4;
}
footer .content .section--green {
  background-color: #65AA77;
}
footer .content .section--red {
  background-color: #EF3D27;
}
footer .content .section--yellow {
  background-color: #F2B11C;
}
footer .content .social_nav ul {
  color: #0c0c0c;
}
footer .content .social_nav ul a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .content .social_nav ul i {
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
}
footer .content nav {
  height: 100%;
  width: 100%;
}
footer .content nav ul {
  height: inherit;
  width: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  color: #ffffff;
  gap: 0.25em;
}
footer .content nav ul li a, footer .content nav ul li p {
  text-align: center;
  display: block;
  width: 100%;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
}

/*
    LANDING PAGE PARTIAL

    THIS IS THE STYLESHEET FOR THE LANDING PAGE
*/
.page-template-page-landing {
  position: relative;
}
.page-template-page-landing::before {
  display: block;
  position: absolute;
  inset: 0;
  content: "";
  background-image: url("../img/pixel_pattern.png");
  mix-blend-mode: multiply;
  opacity: 0.05;
}
.page-template-page-landing footer.site-footer {
  display: none;
}

.link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
}

main#landing-page {
  position: relative;
  width: 100%;
  min-height: unset;
}
main#landing-page #hero {
  position: relative;
  width: 100%;
  background-color: #099ac4;
  box-shadow: inset 0 -20px 50px rgba(12, 12, 12, 0.3);
  clip-path: polygon(0% 100%, 5% 94%, 10% 100%, 15% 94%, 20% 100%, 25% 94%, 30% 100%, 35% 94%, 40% 100%, 45% 94%, 50% 100%, 55% 94%, 60% 100%, 65% 94%, 70% 100%, 75% 94%, 80% 100%, 85% 94%, 90% 100%, 95% 94%, 100% 100%, 100% 0%, 0% 0%);
}
main#landing-page #hero::after, main#landing-page #hero::before {
  content: "";
  height: 80px;
  display: block;
}
@media (max-width: 480px) {
  main#landing-page #hero::after, main#landing-page #hero::before {
    height: 120px;
  }
}
@media (max-width: 480px) {
  main#landing-page #hero {
    clip-path: polygon(0% 100%, 10% 94%, 20% 100%, 30% 94%, 40% 100%, 50% 94%, 60% 100%, 70% 94%, 80% 100%, 90% 94%, 100% 100%, 100% 0%, 0% 0%);
  }
}
main#landing-page #hero .content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, auto));
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
  width: 100%;
  max-width: 1280px;
  gap: 1em;
  padding: 2rem;
  margin: auto auto;
  color: #ffffff;
}
@media (max-width: 768px) {
  main#landing-page #hero .content {
    grid-template-rows: auto auto;
    height: unset;
    padding: 0.5rem;
  }
}
main#landing-page #hero .canvas_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 2rem;
}
@media (max-width: 768px) {
  main#landing-page #hero .canvas_container {
    padding: 1rem;
  }
}
main#landing-page #hero .canvas_container h1 {
  text-align: center;
}
@media (max-width: 480px) {
  main#landing-page #hero .canvas_container h1 {
    font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
  }
}
main#landing-page #hero .canvas_container p {
  color: #ffffff;
  font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
  opacity: 0.5;
  text-align: center;
}
main#landing-page #hero canvas {
  width: 100%;
  height: 100%;
}
main#landing-page #hero .text_container {
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  text-align: center;
}
main#landing-page #hero .text_container h3 {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
}
@media (max-width: 480px) {
  main#landing-page #hero .text_container h3 {
    font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  }
}
main#landing-page #hero .text_container h4 {
  width: 100%;
  font-size: clamp(1.35rem, 1.2792rem + 0.3542vw, 1.5625rem);
}
@media (max-width: 480px) {
  main#landing-page #hero .text_container h4 {
    font-size: clamp(0.7813rem, 0.775rem + 0.0313vw, 0.8rem);
  }
}
main#landing-page #hero .text_container a {
  font-size: inherit;
  width: 100%;
  color: inherit;
}
main#landing-page #hero .text_container ul {
  flex-wrap: wrap;
}
main#landing-page #hero .text_container ul li p {
  display: none;
}
@media (max-width: 480px) {
  main#landing-page #hero .text_container ul li i {
    font-size: clamp(0.9375rem, 0.9167rem + 0.1042vw, 1rem);
  }
}
main#landing-page #what .title_container h3 {
  font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
}
main#landing-page #what .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
main#landing-page #what .text h3 {
  margin-top: 0.5em;
}
main#landing-page #what .content {
  margin: unset;
  border-radius: 1rem;
  background-color: #f0f0f0;
  border: solid #e2e2e2 1px;
  margin-top: 1em;
  box-shadow: 2px 2px 4px 0 #f0f0f0;
}
main#landing-page #what .content img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(12, 12, 12, 0.3));
  border-radius: 1.5rem;
}
main#landing-page #what .content a {
  color: #099ac4;
  font-size: inherit;
}
@media (max-width: 480px) {
  main#landing-page #what .content h3 {
    font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  }
}
main#landing-page #what iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: solid #e2e2e2 1px;
  box-shadow: 2px 2px 4px 0 #f0f0f0;
}
main#landing-page #wheel .content {
  border-radius: 1rem;
  background-color: #f0f0f0;
  border: solid #e2e2e2 1px;
  box-shadow: 2px 2px 4px 0 #f0f0f0;
  margin-top: 2em;
}
main#landing-page #wheel .content img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(12, 12, 12, 0.3));
}
main#landing-page #wheel .content a {
  color: #099ac4;
  font-size: inherit;
}
@media (max-width: 480px) {
  main#landing-page #wheel .content h3 {
    font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  }
}
main#landing-page #when .content {
  margin-bottom: 75px;
}
@media (max-width: 480px) {
  main#landing-page #when .content h2 {
    font-size: clamp(1.125rem, 1.0833rem + 0.2083vw, 1.25rem);
  }
}
main#landing-page #when .content .social_nav {
  margin-top: 1rem;
  width: 100%;
  height: auto;
}
main#landing-page #when .content .social_nav ul {
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
}
main#landing-page section:not(#hero) {
  width: 100%;
  max-width: 1280px;
  margin: auto auto;
  text-align: center;
  padding: 2rem;
}
@media (max-width: 480px) {
  main#landing-page section:not(#hero) {
    padding: 1rem;
  }
}
main#landing-page section:not(#hero)::before {
  content: "";
  height: 75px;
  display: block;
}
main#landing-page section:not(#hero) .title_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media (max-width: 480px) {
  main#landing-page section:not(#hero) .title_container h2 {
    font-size: clamp(1.62rem, 1.509rem + 0.5552vw, 1.9531rem);
  }
}
main#landing-page section:not(#hero) .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 2rem;
}
@media (max-width: 480px) {
  main#landing-page section:not(#hero) .content {
    margin-top: 0.5rem;
    padding: unset;
  }
}

#pattern {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-size: 300px;
  animation: movingBackground 5s linear infinite;
  mix-blend-mode: multiply;
  opacity: 0.07;
}
@keyframes movingBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300px 300px;
  }
}

.pattern--1 {
  background-image: url("../img/Pattern_zigzag.svg");
}
.pattern--2 {
  background-image: url("../img/Pattern_Diamond.svg");
}
.pattern--3 {
  background-image: url("../img/Pattern_Grid.svg");
}
.pattern--4 {
  background-image: url("../img/Pattern_Icon.svg");
}/*# sourceMappingURL=landing.css.map */