/* defaults */
@font-face {
  font-family: "Bradford";
  src: url("../fonts/BradfordMonoLL-Regular.otf");
}

* {
  cursor: none;
}

body,
html {
  padding: 0;
  height: 100%;
  background-color: white;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  text-rendering: optimizeLegibility;
  font-family: neue-haas-grotesk-text;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.1;
  color: #000000;
  margin: 10px;
  overflow: hidden;
}

body:hover .custom-cursor {
  opacity: 1;
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.25);
  color: white;
}

::selection {
  background-color: rgba(0, 0, 0, 0.25);
  color: white;
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.25);
  color: white;
}

img {
  width: 100%;
  vertical-align: top;
}

button {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 600;
  font-style: normal;
  background: none;
  padding: 0;
  margin: 0;
  font-weight: inherit;
  color: #000000;
  position: -webkit-sticky;
  position: sticky;
  text-align: left;
  background: none;
}

.title {
  font-family: Bradford;
  font-weight: 400;
  font-size: 22vw;
  line-height: 0.8;
  text-align: center;
}

.title-active {
  font-size: 10vw;
}

.under-title-active {
  display: inline;
  font-size: 9vw;
  line-height: 0.8;
  text-align: left;
  letter-spacing: -0.0200em;
  padding-bottom: 40px;
}

.under-title-active2 {
  font-size: 9vw;
  line-height: 0.8;
  text-align: left;
  letter-spacing: -0.0350em;
  padding-bottom: 40px;
}

.under-title-active3 {
  font-size: 8.5vw;
  line-height: 0.8;
  text-align: left;
  letter-spacing: -0.0450em;
  padding-bottom: 40px;
}

.grid-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10% 35% 55%;
      grid-template-columns: 10% 35% 55%;
}

/* ACCORDION */
.accordion {
  /* cursor: crosshair; */
  -webkit-transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  position: -webkit-sticky;
  position: sticky;
}

.accordion-main {
  /* cursor: crosshair; */
  -webkit-transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  position: -webkit-sticky;
  position: sticky;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
}

#accordion-content-main {
  margin: 10px;
  max-height: 0;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
}

/* STYLE */
.base_text {
  -ms-grid-column: 2;
      grid-column-start: 2;
  grid-column-end: 4;
}

.keyword {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 2;
  font-size: 1rem;
}

.keyword-mobile {
  display: none;
  -ms-grid-column: 3;
      grid-column-start: 3;
  grid-column-end: 4;
  font-size: 0.8rem;
  margin-left: 5px;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
}

.image {
  width: 100%;
  -ms-grid-column: 2;
      grid-column-start: 2;
  grid-column-end: 3;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
  transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
}

.image:hover {
  -webkit-box-shadow: 0 15px 48px -20px currentColor;
          box-shadow: 0 15px 48px -20px currentColor;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.imageActive {
  width: 255%;
  -webkit-transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
  transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
  z-index: 1000;
}

.imageActive:hover {
  -webkit-box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
          box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

/* COLOR */
.brown {
  color: peru;
}

.blue {
  color: deepskyblue;
}

.red {
  color: tomato;
}

.black {
  color: #000000;
}

.n1 {
  font-size: 0.7em;
}

/* CURSOR */
.custom-cursor {
  position: fixed;
  top: -18px;
  left: -18px;
  display: block;
  width: 120px;
  height: 120px;
  pointer-events: none;
  will-change: transform;
  z-index: 998;
  -webkit-transform: matrix(1, 0, 0, 1, -100, -100);
  transform: matrix(1, 0, 0, 1, -100, -100);
  opacity: 0;
  mix-blend-mode: difference;
  transition: opacity 0.4s ease, -webkit-transform 0.15s cubic-bezier(0, 0.89, 0.49, 0.92);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.15s cubic-bezier(0, 0.89, 0.49, 0.92);
  transition: transform 0.15s cubic-bezier(0, 0.89, 0.49, 0.92), opacity 0.4s ease;
  transition: transform 0.15s cubic-bezier(0, 0.89, 0.49, 0.92), opacity 0.4s ease, -webkit-transform 0.15s cubic-bezier(0, 0.89, 0.49, 0.92);
}

.custom-cursor .cursor {
  -webkit-transform: scale(0.16);
  transform: scale(0.16);
  transition: -webkit-transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  will-change: transform;
  width: 120px;
  height: 120px;
  float: left;
  border-radius: 100%;
  margin-top: -40px;
  margin-left: -40px;
  background-color: white;
}

.custom-cursor.custom-cursor-active .cursor {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 1;
  background-color: white;
}

.custom-cursor.custom-cursor-active-img {
  z-index: 1010;
}

.custom-cursor.custom-cursor-active-img .cursor {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 1;
  background: white;
  background-image: url("../images/plus_light.jpg");
  background-size: 100%;
}

.custom-cursor.custom-cursor-active-img2 {
  z-index: 1010;
}

.custom-cursor.custom-cursor-active-img2 .cursor {
  -webkit-transform: scale(-3);
  transform: scale(-3);
  opacity: 1;
  background: white;
  background-image: url("../images/plus_light.jpg");
  background-size: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* SCROLL BAR */
/* width */
::-webkit-scrollbar {
  width: 5px;
  -webkit-appearance: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: peru;
}

/* RESPONSIVE */
@media screen and (max-width: 1080px) {
  body {
    font-size: 35px;
  }
  .keyword {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 840px) {
  body {
    font-size: 30px;
  }
  .title-active {
    font-size: 15vw;
  }
  .keyword {
    font-size: 0.7rem;
  }
  .under-title-active,
  .under-title-active2,
  .under-title-active3 {
    padding-bottom: 15px;
  }
  .grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 10% 55% 35%;
        grid-template-columns: 10% 55% 35%;
  }
  .imageActive {
    width: 160%;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
    transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
  }
  .title {
    font-size: 27vw;
    line-height: 1.7;
    margin-top: -90px;
  }
  .title-active {
    font-size: 15vw;
    line-height: 0.8;
    margin-top: 5px;
  }
}

@media screen and (max-width: 650px) {
  .title {
    font-size: 27vw;
    line-height: 1.7;
    margin-top: -70px;
  }
  .title-active {
    font-size: 15vw;
    line-height: 0.8;
    margin-top: 5px;
  }
}

@media screen and (max-width: 414px) {
  body {
    font-size: 35px;
  }
  html {
    margin: 0 5px 5px;
  }
  .keyword {
    font-size: 0.6rem;
  }
  .grid-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0 65% 35%;
        grid-template-columns: 0 65% 35%;
  }
  .under-title-active,
  .under-title-active2,
  .under-title-active3 {
    padding-bottom: 10px;
    font-size: 14vw;
    line-height: 0.9;
    position: -webkit-sticky;
    position: sticky;
  }
  .keyword-mobile {
    display: block;
    -webkit-transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
    transition: 0.5s cubic-bezier(0.5, 0.01, 0.05, 1);
  }
  .imageActive {
    width: 150%;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
    transition: all 0.4s cubic-bezier(0.2, 0.2, 0.045, 1);
  }
  .custom-cursor {
    display: none;
  }
  * {
    cursor: auto;
  }
  .image:hover {
    -webkit-box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
            box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .imageActive:hover {
    -webkit-box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
            box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .title {
    font-size: 27vw;
    line-height: 2.7;
    margin-top: -90px;
  }
  .title-active {
    font-size: 15vw;
    line-height: 0.8;
    margin-top: 5px;
  }
}

@media screen and (max-width: 375px) {
  .title {
    font-size: 27vw;
    line-height: 2.2;
    margin-top: -60px;
  }
  .title-active {
    font-size: 15vw;
    line-height: 0.8;
    margin-top: 5px;
  }
}

@media screen and (max-width: 320px) {
  body {
    font-size: 30px;
  }
  html {
    margin: 0 2px 2px;
  }
  .title {
    font-size: 27vw;
    line-height: 2.1;
    margin-top: -50px;
  }
  .title-active {
    font-size: 15vw;
    line-height: 0.8;
    margin-top: 5px;
  }
}

@media (prefers-color-scheme: dark) {
  body,
  html {
    background-color: black;
    color: whitesmoke;
  }
  button {
    color: whitesmoke;
  }
  .black {
    color: whitesmoke;
  }
  .image:hover {
    -webkit-box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
            box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
  }
  .imageActive:hover {
    -webkit-box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
            box-shadow: 0 15px 48px -20px rgba(0, 0, 0, 0);
  }
  ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb {
    background: whitesmoke;
    border-radius: 10px;
  }
}

@media print {
  body {
    font-size: 30px;
  }
}
/*# sourceMappingURL=style.css.map */