@charset "UTF-8";
/*************************************
    Device Breakpoint (Media Query)
    767px 이하: mobile
    768px ~ 1024px: tablet
    1025px 이상: desktop
*************************************/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Gloock&family=Lusitana:wght@400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Cardo|Pathway+Gothic+One");
:root {
  --black: #0E1126;
  --swatch--red: #5D04D9;
  --swatch--padding--main: 30px;
  --swatch--white: #dacfec;
  --white: white;
  --dark: #171717;
  --swatch--black: #0D0D0D;
  --swatch--padding--nav-color: var(--white);
  --vh: 1vh;
  --hue: 223;
  --bg: hsl(var(--hue),10%,90%);
  --fg: hsl(var(--hue),10%,10%);
  --primary: hsl(var(--hue),90%,50%);
  --trans-dur: 0.3s;
  --trans-timing: cubic-bezier(0.65,0,0.35,1);
}

/* Color Theme Swatches in Hex */
.Dcoya---Cyber-Phishing-Dashboard-1-hex {
  color: #5D04D9;
}

.Dcoya---Cyber-Phishing-Dashboard-2-hex {
  color: #260E59;
}

.Dcoya---Cyber-Phishing-Dashboard-3-hex {
  color: #0E1126;
}

.Dcoya---Cyber-Phishing-Dashboard-4-hex {
  color: #056CF2;
}

.Dcoya---Cyber-Phishing-Dashboard-5-hex {
  color: #05C7F2;
}

/* Color Theme Swatches in RGBA */
.Dcoya---Cyber-Phishing-Dashboard-1-rgba {
  color: rgb(92, 4, 216);
}

.Dcoya---Cyber-Phishing-Dashboard-2-rgba {
  color: rgb(38, 14, 89);
}

.Dcoya---Cyber-Phishing-Dashboard-3-rgba {
  color: rgb(13, 17, 38);
}

.Dcoya---Cyber-Phishing-Dashboard-4-rgba {
  color: rgb(4, 107, 242);
}

.Dcoya---Cyber-Phishing-Dashboard-5-rgba {
  color: rgb(4, 198, 242);
}

/* Color Theme Swatches in HSLA */
.Dcoya---Cyber-Phishing-Dashboard-1-hsla {
  color: hsl(264, 96%, 43%);
}

.Dcoya---Cyber-Phishing-Dashboard-2-hsla {
  color: hsl(258, 72%, 20%);
}

.Dcoya---Cyber-Phishing-Dashboard-3-hsla {
  color: hsl(230, 47%, 10%);
}

.Dcoya---Cyber-Phishing-Dashboard-4-hsla {
  color: hsl(213, 96%, 48%);
}

.Dcoya---Cyber-Phishing-Dashboard-5-hsla {
  color: hsl(191, 96%, 48%);
}

/* 태블릿 사용 예시
  @include tablet { 
    color: blue; // 태블릿, 기본적으로 ~ max-width: 1024px까지만 적용
  }

  @include tablet(768px) { 
    color: green; // 768px 이상 1024px 이하 범위에서 녹색
  }
*/
/************************************************************ 
    HTML5 display-role reset for older browsers 
*************************************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: keep-all;
}

html {
  font-size: 62.5%;
}
html.no-scroll {
  overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol, li, dl, dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

q {
  quotes: none;
}

q:before, q:after {
  content: none;
}

li, img, input, button {
  vertical-align: middle;
}

b, strong {
  font-weight: bold;
}

input, textarea {
  font-family: "Pretendard", sans-serif;
  border: none;
}

button {
  font-family: "Pretendard", sans-serif;
  vertical-align: top;
  background: none;
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  width: 100%;
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
  resize: none;
}

table {
  border-spacing: 0;
}

td, th {
  padding: 0;
}

address {
  font-style: normal;
}

/* hyper link */
a:link, a:visited {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

/* hr , legend , caption */
caption, legend {
  clear: both;
  display: none;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0px;
  line-height: 0;
  visibility: hidden;
}

/************************************************************ 
    Setting Shortened Names
*************************************************************/
/* response */
.pc-view {
  display: block !important;
}

.mo-view {
  display: none !important;
}

@media all and (max-width: 1024px) {
  .pc-view {
    display: none !important;
  }
  .mo-view {
    display: block !important;
  }
}
/* cursor */
.hand {
  cursor: pointer;
}

/* hidden content */
.blind {
  position: absolute;
  left: -1000%;
  top: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.hidden {
  font-size: 0;
  height: 1px;
  left: -1000%;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 1px;
}

/* margin */
.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

/* padding */
.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* border */
.bd0 {
  border: 0 !important;
}

.bdr0 {
  border-right: 0 !important;
}

.bdl0 {
  border-left: 0 !important;
}

.bdt0 {
  border-top: 0 !important;
}

.bdb0 {
  border-bottom: 0 !important;
}

/* background */
.bg0 {
  background: none !important;
}

/* display */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

/* text align */
.ta_left {
  text-align: left;
}

.ta_right {
  text-align: right;
}

.ta_center {
  text-align: center;
}

/* icon */
i.icon {
  display: block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

@font-face {
  src: url("https://fonts.cdnfonts.com/css/pp-neue-montreal") format("woff2");
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/****************************** 
    Intro & About
******************************/
.main-text-heading {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  text-align: center;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  width: 100%;
  max-width: 860px;
  height: auto;
  font-family: Gotham, sans-serif;
  font-size: clamp(1rem, 5vw, 3.2rem);
  line-height: 1.2;
  position: relative;
  -webkit-transform: perspective(1000px);
          transform: perspective(1000px);
}
.main-text-heading.text-fly-in {
  position: absolute;
  -webkit-transform: none;
          transform: none;
}

.dala-floda-span {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  word-spacing: 0.15em;
  font-family: "Lusitana", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  -webkit-transform: perspective(1000px);
          transform: perspective(1000px);
}

/****************************** 
    Loading 
******************************/
.loading-screen {
  z-index: 10001;
  background-color: var(--black);
  padding: 0;
  display: none;
  position: fixed;
  inset: 0%;
}
.loading-screen .loading-screen-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.loading-screen .loading-screen-fill {
  background-color: var(--swatch--red);
  width: 100%;
  height: 0%;
  -webkit-transition: height 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}
.loading-screen .loading-screen-fill .loading-screen-inner-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

/****************************** 
    Keyword 
******************************/
.comp-keyword {
  z-index: 2;
  padding-right: var(--swatch--padding--main);
  padding-left: var(--swatch--padding--main);
  pointer-events: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: clip;
}
.comp-keyword .comp-keyword-content {
  z-index: 0;
  background-color: var(--swatch--red);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}
.comp-keyword .comp-keyword-content.mobile {
  display: none;
}
.comp-keyword .i-chevron {
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 60px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/****************************** 
    About 
******************************/
.comp-about {
  background-color: var(--white);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 500svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow-x: clip;
}
.comp-about .word {
  display: inline-block;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  opacity: 0; /* 애니메이션 전에 보이지 않도록 설정 */
}
.comp-about .image-fly-in-wrapper {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 200vh;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  -webkit-transform: perspective(1000px);
          transform: perspective(1000px);
}
.comp-about .image-fly-in-wrapper.old {
  display: none;
}
.comp-about .image-fly-in-wrapper.back {
  z-index: 0;
}
.comp-about .image-fly-in-wrapper.front {
  z-index: 2;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image {
  width: 100%;
  height: 100%;
  position: absolute;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image.one {
  width: 70px;
  top: 16%;
  left: 33%;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image.two {
  width: 78px;
  top: 22%;
  left: 61%;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image.three {
  width: 97px;
  top: 39%;
  right: 14%;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image.four {
  cursor: pointer;
  width: 136px;
  bottom: 18%;
  left: 50%;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image.five {
  width: 75px;
  bottom: 22%;
  left: 25%;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image.six {
  width: 111px;
  top: 42%;
  left: 14%;
}
.comp-about .image-fly-in-wrapper .fly-in-list-item .fly-in-image .fly-in-tag {
  aspect-ratio: auto;
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: block;
  position: relative;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.comp-about .video-pin-wrapper {
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100svh;
  -webkit-transition: background-color 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -100vh;
}
.comp-about .video-pin-wrapper .text-fly-wrapper {
  pointer-events: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
.comp-about .video-pin-wrapper .hero-video {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
}
.comp-about .video-pin-wrapper .hero-video > video {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}
.comp-about .video-pin-wrapper .hero-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.comp-career {
  position: relative;
  min-height: 100%;
  height: auto;
  color: #fff;
  margin-top: 30vh;
  -webkit-transition: background-color 1.2s ease, color 0.8s ease;
  transition: background-color 1.2s ease, color 0.8s ease;
  overflow: hidden;
}
.comp-career.fadeOut {
  background-color: var(--swatch--red);
}
.comp-career.fadeOut h3 {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  opacity: 0;
}
.comp-career.fadeOut .circle .txt {
  opacity: 0;
}
.comp-career .pinBx {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.comp-career .pinBx .circleBx {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}
.comp-career .pinBx .circleBx .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../image/test.jpg);
  background-size: cover;
  background-position: center;
  -webkit-animation: careerBg forwards infinite 10s linear;
          animation: careerBg forwards infinite 10s linear;
}
.comp-career .pinBx .circleBx .circle {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-clip-path: circle(18%);
          clip-path: circle(18%);
  will-change: clip-path;
  -webkit-transition: -webkit-clip-path 0.3s ease;
  transition: -webkit-clip-path 0.3s ease;
  transition: clip-path 0.3s ease;
  transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease;
}
.comp-career .pinBx .circleBx .circle .txt {
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.comp-career .pinBx .circleBx .circle .txt::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.comp-career .pinBx .circleBx .circle .txt img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  max-height: unset;
  -webkit-animation: rotate forwards infinite 8s linear;
          animation: rotate forwards infinite 8s linear;
}
.comp-career .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(2rem, 6vw, 4rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  font-weight: bold;
  z-index: 1;
  font-size: 5vw;
}
.comp-career .circle-text.text-white {
  color: #fff;
}
.comp-career .circle-text.text-black {
  color: black;
  z-index: -1;
}
@-webkit-keyframes careerBg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes careerBg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.comp-career h3 strong {
  display: block;
  line-height: 0.75;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: max(0.4166666667em, 20px);
}
.comp-career h3 p {
  font-family: "Pretendard";
  font-size: max(0.3333333333em, 14px);
  letter-spacing: -0.025em;
  color: #eaeaec;
}

@media screen and (max-width: 820px) {
  .comp-career .bottom {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  .comp-career .bottom {
    margin-bottom: 80px;
  }
}
@media (orientation: Portrait) {
  .comp-career h3 {
    font-size: 10.9375vw;
  }
  .comp-career .bottom .txt {
    font-size: 5.2083333333vw;
  }
  .comp-career .bottom .txt div {
    -webkit-perspective: 10em;
            perspective: 10em;
    margin-bottom: max(0.28em, 20px);
  }
}
@media (orientation: Portrait) and (max-width: 500px) {
  .comp-career .bottom .txt {
    font-size: 8vw;
  }
  .comp-career .bottom .txt div {
    -webkit-perspective: 25em;
            perspective: 25em;
    margin-bottom: 0.65em;
  }
}
.projects-component {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 65vh;
  padding-bottom: 60vh;
}
.projects-component .projects-list {
  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;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-component .projects-list::-webkit-scrollbar {
  display: none;
}
.projects-component .projects-list .project-item {
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1.5rem;
  position: relative;
}
.projects-component .projects-list .project-item .project-title-container {
  position: relative;
  display: inline-block;
  z-index: 5;
  pointer-events: auto;
  will-change: transform, opacity, filter;
}
.projects-component .projects-list .project-item .project-title-container .project-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.5rem 0;
}
.projects-component .projects-list .project-item .project-title-container .hover-indicator {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #f0ede8;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  will-change: width, opacity;
}
.projects-component .projects-list .project-item .project-title-container .hover-indicator.left {
  left: -20px;
}
.projects-component .projects-list .project-item .project-title-container .hover-indicator.right {
  right: -20px;
}
.projects-component .projects-list .project-item .project-content {
  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;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  margin: 0;
  pointer-events: none;
}
.projects-component .projects-list .project-item .project-content .project-details {
  width: calc((100% - 400px) / 2);
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.1px;
}
.projects-component .projects-list .project-item .project-content .project-details.right {
  text-align: right;
}
.projects-component .projects-list .project-item .project-content .project-details .detail-label {
  font-size: 13px;
  letter-spacing: 0.05rem;
}
.projects-component .projects-list .project-item .project-content .project-details .detail-label .line-wrapper {
  overflow: hidden;
  margin-bottom: 12px;
}
.projects-component .projects-list .project-item .project-content .project-details .detail-label strong {
  font-weight: 600;
  display: block;
}
.projects-component .projects-list .project-item .project-content .project-details .detail-label span {
  display: block;
}
.projects-component .projects-list .project-item .project-content .project-details .detail-year {
  margin-top: 0.5rem;
}
.projects-component .projects-list .project-item .project-content .project-image {
  max-width: 400px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.projects-component .projects-list .project-item .project-content .project-image .image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.projects-component .projects-list .project-item .project-content .project-image .image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-height: 700px) {
  .project-title {
    font-size: 2.5rem;
  }
  .project-item {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 768px) {
  .project-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-details {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .project-details.right {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .project-image {
    width: 80%;
  }
  .project-title {
    font-size: 2rem;
  }
}
.circle-text-svg {
  width: 100%;
  height: 100%;
  -webkit-animation: rotateText 12s linear infinite;
          animation: rotateText 12s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: block;
}

.circle-text-svg text {
  font-size: 14px;
  font-weight: bold;
  fill: #fff; /* 원하는 색상 */
  letter-spacing: 2px;
  text-transform: uppercase;
}

@-webkit-keyframes rotateText {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateText {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.comp-skill {
  position: relative;
  min-height: 100vh; /* 170 */
  z-index: 10;
  overflow: visible;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100vw;
          flex: 0 0 100vw;
}
.comp-skill .skill-box {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: visible;
  pointer-events: none;
  z-index: 10;
}
.comp-skill .skill-box.active {
  opacity: 1;
  pointer-events: auto;
}
.comp-skill .skill-box .skill {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: sans-serif;
  text-align: center;
  z-index: 20;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  pointer-events: none;
  background-color: transparent; /* 안쪽은 투명 */
  overflow: hidden; /* 가상 요소 넘치지 않도록 */
}
.comp-skill .skill-box .skill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#7A7A7A), to(#333333));
  background: linear-gradient(to bottom, #7A7A7A, #333333);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), black 100%);
  z-index: 0;
  pointer-events: none;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.comp-skill .skill-box .skill img {
  width: 35px;
  height: 35px;
}
.comp-skill .skill-box .skill span {
  font-size: 16px;
  font-weight: bold;
  margin-left: 8px;
}
.comp-skill .skill-box #skillCanvas {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.pin-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100vh;
}

.skill-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100vw;
          flex: 0 0 100vw;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: auto; /* 세로 콘텐츠 */
}
.skill-wrap .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0.6)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, black 100%);
  -webkit-filter: blur(40px);
          filter: blur(40px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.skill-wrap .solid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.comp-mindset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 100vh;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.comp-mindset .mindset-slide {
  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;
  min-width: 100vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.comp-mindset .mindset-slide-title {
  color: #D9D9D9;
  margin-bottom: 50px;
  text-align: center;
}
.comp-mindset .mindset-slide-title h2 {
  font-size: 40px;
}
.comp-mindset .mindset-slide-title p {
  font-size: 15px;
  margin-top: 10px;
}
.comp-mindset .mindset-slide .chart-wrapper {
  width: 50vw;
  height: 500px;
  background-color: black;
  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;
}
.comp-mindset .mindset-slide .chart-wrapper path {
  stroke: black;
  cursor: pointer;
  -webkit-transition: fill 250ms;
  transition: fill 250ms;
}
.comp-mindset .mindset-slide .chart-wrapper path:hover {
  fill: #fff;
}
.comp-mindset .mindset-slide .chart-wrapper text {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comp-mindset .mindset-slide .chart-wrapper polyline {
  fill: none;
  stroke: #ffffff; /* 선 색상 */
  stroke-width: 2px;
  stroke-dasharray: 5 4; /* 점선 모양: 선 5px, 간격 4px */
  stroke-linecap: round; /* 점선 끝을 둥글게 */
}

.mindset-slide,
.mindset-slide-gap,
.skill-wrap {
  margin-right: -1px;
}

.comp-workflow {
  position: relative;
  height: 100%;
  padding: 20vh 0;
}
.comp-workflow::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  content: "";
  z-index: 10;
}
.comp-workflow .bg-wrap {
  position: relative;
  z-index: 0;
}
.comp-workflow .bg-wrap .timeline-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.comp-workflow .bg-wrap .timeline-bg.visible {
  opacity: 1;
}
.comp-workflow .timeline {
  position: absolute;
  z-index: 11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  position: relative;
  padding: 0 50px;
}
.comp-workflow .timeline-container {
  position: relative;
  overflow: hidden;
}
.comp-workflow .timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 11;
}
.comp-workflow .timeline-header__title {
  color: #fff;
  font-size: 46px;
  font-family: Cardo;
  font-weight: normal;
  margin: 0;
}
.comp-workflow .timeline-header__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Pathway Gothic One", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  margin: 10px 0 0 0;
  font-weight: normal;
}
.comp-workflow .timeline::before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: rgba(255, 255, 255, 0.04);
}
.comp-workflow .timeline .timeline-item {
  padding: 50px 20px;
  opacity: 0.3;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  opacity: 0.3;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  will-change: transform, opacity;
}
.comp-workflow .timeline .timeline-item.timeline-item--active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.comp-workflow .timeline .timeline-item.timeline-item--active::before {
  top: 50%;
  -webkit-transition: 0.3s all 0.2s;
  transition: 0.3s all 0.2s;
  opacity: 1;
}
.comp-workflow .timeline .timeline-item.timeline-item--active .timeline__content-title {
  margin: -50px 0 20px 0;
}
.comp-workflow .timeline .timeline-item::before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: "Pathway Gothic One", sans-serif;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  top: 70%;
  margin-top: -5px;
  padding-left: 15px;
  opacity: 0;
  right: calc(-100% - 56px);
}
.comp-workflow .timeline .timeline-item:nth-child(even) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.comp-workflow .timeline .timeline-item:nth-child(even)::before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
}
.comp-workflow .timeline .timeline__content-title {
  font-weight: normal;
  font-size: 66px;
  margin: -10px 0 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Pathway Gothic One", sans-serif;
  color: #fff;
}
.comp-workflow .timeline .timeline__content-desc {
  margin: 0;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: rgba(255, 255, 255, 0.9);
  font-family: Cardo;
  font-weight: normal;
  line-height: 25px;
}
.comp-workflow .timeline .timeline__img {
  max-width: 100%;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .timeline-item {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    width: 100%;
    padding: 0 30px 150px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}
/****************************** 
    Logo
******************************/
.logo-wrapper {
  cursor: pointer;
  color: inherit;
}
.logo-wrapper.inner {
  width: 120px;
  height: 120px;
}
.logo-wrapper.outer {
  color: #fff;
  width: 120px;
  height: 120px;
}

.logo-white {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

/****************************** 
    Presets
******************************/
.inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-embed::before, .w-embed::after {
  content: " ";
  grid-area: 1/1/2/2;
  display: table;
}
.w-embed::after {
  clear: both;
}

.comp-wrapper {
  overflow-x: clip;
}

body.scroll-locked {
  overflow: hidden;
  height: 100vh;
}

/*************** 
		 Header
***************/
.nav {
  z-index: 9998;
  padding-right: var(--swatch--padding--main);
  padding-left: var(--swatch--padding--main);
  color: var(--black);
  width: 100%;
  position: fixed;
  inset: 0% auto auto 0%;
}
.nav.inside-menu {
  -webkit-filter: invert(1);
          filter: invert(1);
  position: absolute;
  inset: 0% 0% auto;
}
.nav .nav-wrapper {
  z-index: 1;
  color: inherit;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  z-index: 9999;
}
.nav .nav-wrapper.invert-nav {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.nav .nav-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.nav .nav-column.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .nav-column.mid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .nav-column.mid .soren-main-link {
  cursor: pointer;
  color: inherit;
}
.nav .nav-column.right {
  color: inherit;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .nav-column.right .contact-button {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  color: inherit;
  background-color: rgba(239, 239, 239, 0);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  font-family: Gotham, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .hamburger-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav .hamburger-wrapper .hamburger-line {
  background-color: currentColor;
  height: 1px;
  padding-bottom: 0;
  padding-right: 0;
}

.menu {
  z-index: 9999;
  padding-right: var(--swatch--padding--main);
  padding-left: var(--swatch--padding--main);
  color: var(--swatch--white);
  background-color: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 0%;
  font-family: Gotham Book, sans-serif;
  font-weight: 400;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}
.menu.active {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: none;
          transform: none;
}
.menu .menu-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.menu .menu-wrapper .menu-content {
  grid-column-gap: clamp(2rem, 4vw, 100rem);
  grid-row-gap: clamp(2rem, 4vw, 100rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-wrapper .menu-content .menu-headline {
  text-align: center;
}
.menu .menu-wrapper .menu-content .menu-body {
  color: var(--white);
  text-align: center;
  grid-column-gap: clamp(2rem, 5vw, 100rem);
  grid-row-gap: clamp(2rem, 5vw, 100rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Gotham, sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  letter-spacing: -0.05em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  font-size: clamp(2rem, 4vw, 50px);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links .menu-main-link {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  overflow: hidden;
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links .menu-main-link .menu-phone-number {
  color: var(--white);
  text-decoration: none;
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links .menu-main-link .menu-phone-number:hover {
  color: var(--swatch--red);
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links .menu-main-link .menu-email {
  color: var(--white);
  letter-spacing: 0;
  font-family: Dala Floda, sans-serif;
  font-size: clamp(2rem, 4.4vw, 100rem);
  text-decoration: none;
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links .menu-main-link .menu-follow {
  color: var(--white);
  text-decoration: none;
}
.menu .menu-wrapper .menu-content .menu-body .menu-main-links .menu-main-link .menu-main-link-text {
  position: relative;
}
.menu .menu-wrapper .menu-content .menu-body .socials {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  font-family: Gotham Book, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: none;
}
.menu .menu-wrapper .menu-content .menu-body .socials .social-link {
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.menu .menu-wrapper .menu-content .menu-body .socials .social-link:hover {
  color: var(--swatch--red);
}

.footer {
  z-index: 30;
  --footer-background: #5D04D9;
  display: grid;
  position: relative;
  grid-area: footer;
  min-height: 12rem;
}

.footer .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: var(--footer-background);
  -webkit-filter: url("#blob");
          filter: url("#blob");
}

.footer .bubbles .bubble {
  position: absolute;
  left: var(--position, 50%);
  background: var(--footer-background);
  border-radius: 100%;
  -webkit-animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
          animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.footer .content {
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 4rem;
  padding: 2rem;
  background: var(--footer-background);
}

.footer .content a,
.footer .content p {
  color: #F5F7FA;
  text-decoration: none;
}

.footer .content b {
  color: white;
}

.footer .content p {
  margin: 0;
  font-size: 0.75rem;
}

.footer .content > div {
  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;
}

.footer .content > div > div {
  margin: 0.25rem 0;
}

.footer .content > div > div > * {
  margin-right: 0.5rem;
}

.footer .content .image {
  -ms-flex-item-align: center;
      align-self: center;
  width: 4rem;
  height: 4rem;
  margin: 0.25rem 0;
  background-size: cover;
  background-position: center;
}

.footer .content .copy {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer .content .copy p {
  margin-bottom: 1rem;
}

@-webkit-keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}

@keyframes bubble-size {
  0%, 75% {
    width: var(--size, 4rem);
    height: var(--size, 4rem);
  }
  100% {
    width: 0rem;
    height: 0rem;
  }
}
@-webkit-keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}
@keyframes bubble-move {
  0% {
    bottom: -4rem;
  }
  100% {
    bottom: var(--distance, 10rem);
  }
}/*# sourceMappingURL=main.css.map */