@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


@import url("https://use.typekit.net/ipm5esh.css");


/* Nomalize */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    list-style:none;

}

*::selection {

  background-color: #E8642B;

}

a{
    color:inherit;
    text-decoration: none;
}

/* End Nomalize */






/* Lib */




/* End Lib */







/* Custom */
 





:root {
  --vh: 1vh;
}

@supports (height: 1svh) {
  :root {
    --vh: 1svh;
  }
}

html{
  background-color: #0d0d0d;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}



/* Scrollbar start */
html{
  overflow-x: clip;
}

::-webkit-scrollbar {
  width:0px;
}

::-webkit-scrollbar-thumb{
  background: #FF0000;
}
 /* Scrollbar end */






   /* Cursor */
   * {
    cursor:none;
    
}

.cursor {
    top:-300px;
    left:-300px;
    position:fixed;
    width:15px;
    height:15px;
    border-radius:50%;
    background-color:white;
    mix-blend-mode:difference;
    pointer-events:none;
    transform:translateX(-50%) translateY(-50%);
    z-index:200;
    transition:width .1s, height .1s, background-color 1s;
    text-align: center;
    vertical-align: center;
    line-height:75px;
    font-family:'roboto','sans-serif';
    font-weight:400;
  }




  @media screen and (max-width:1000px){
    *{
      cursor:auto;
    }
    .cursor {
      display:none;
    }
      
    .need-to-cursor-big{
      display:none;
    }
  }

  /* End Cursor */






  /* Loader */
  .progress{
    background-color: #0d0d0d;
    color: #F2F0F0;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index:300;
  }
  
  .progress-text{
    font-family:'Roboto','sans-serif';
    font-size:15px;
    position: absolute;
    z-index:300;
    color:#f2f0f0;
    top:50%;
    left:5%;
  }
  
  .progress-bar{
    position: absolute;
    background-color: #E8642B;
    top:52.5%;
    left:5%;
    width:190px;
    height:3px;
  }


  /* End Loader */





  /* Header */
  .header{
    position:fixed;
    display:flex;
    align-items: center;
    justify-content:space-between;
    width:100vw;
    height:100px;
    z-index: 101;
    padding:0 30px;
    }
      
    .header-logobox{
      z-index: 300;
    }

    .header-logobox > a{
      
      color:white;
      vertical-align: middle;
      padding:3px;
      z-index: 300;

      display:flex;
      align-items: center;
      
    }

    .header-logobox > a > img{
      
      width:90px;
    }
 

  .header-menubox{
    display:flex;
      
    justify-content: space-between;
    align-items:center;
    height:30px;
    width:80px;
    position: relative;
    z-index: 201;

  }

  .header-menu-en{
    display:flex;
    
    align-items: center;
    height:30px;

    font-family: "aktiv-grotesk", sans-serif;
    font-weight: 600;
    font-size:1rem;
    color:#f2f0f0;
    
    transition: .3s;
  }

  .header-menubox:hover > .header-menu-en{
    font-size:1.3rem;
    
    transition: .5s;
  }

  .header-menu-dot{
    display:flex;
    
    justify-content: space-around;
    align-items:center;
    height:30px;
    width:30px;

  }



  .menu-first{
    height:5px;
    width:5px;
    background-color:white;
    border-radius: 100%;
    z-index: 200;
    transition: all 1s;
  }

  .menu-second{
    height:5px;
    width:5px;
    background-color:white;
    border-radius: 100%;
    z-index: 199;
    transition: all .3s;
  }

  .menu-third{
    height:5px;
    width:5px;
    background-color:white;
    border-radius: 100%;
    z-index: 200;
    transition: all 1s;
  }

  .header-menubox:hover > .header-menu-dot > .menu-first{
    display:none;
  }

  .header-menubox:hover > .header-menu-dot > .menu-third{
    display:none;
  }

  .header-menubox:hover > .header-menu-dot > .menu-second{
    width:25px;
    height:25px;
    border-radius: 100%;
  }

  .scale{
    scale:1000;
    background-color:#0d0d0d;
    transition:
    scale 1s ease-in-out,
    background-color 1.5s;
    
  }

.menuSelector{
  color:white;
  position:absolute;
  display:flex;
  position:fixed;
  opacity:0;
  top:-100%;
  left:50%;
  transform:translateX(-50%) translateY(-50%);
  z-index: 200;
}

.opacity{
  top:45%;
  opacity:100;
  transition: 
  top .1s, 
  opacity 2s ease-in-out;
}

.menuSelectorWrapper{
  display:none;
  flex-direction: column;
  font-family:'Roboto','sans-serif';
  font-weight:700;
  justify-content: center;
  align-items: start;
  margin-top:5vh;
  font-size:3.5rem;
  z-index: 100;
}

.menuSelectorWrapper div:hover {
  text-decoration: underline;
  font-size:4rem;
  transition:
  all 0s,
  font-size .5s;
}


  
  /* End Header */

  






  /* Main */






    /* card-1 */
.hero {
    position:relative;
    min-height:100vh;
    height:auto;
    width:100vw;
    background-color: #0d0d0d;
    overflow: hidden;
  }

  .hero > .image-box{
    display:flex;
    position:absolute;
    width:100vw;
    height:100vh;
    z-index: 100;
    transition: 1s ease-in-out;
    overflow:hidden;
    

  }

  .hero > .image-box img{
    position:absolute;
    object-fit: cover;
    width:30%;
  }
  
  .hero > .image-box img.img-hand{
    scale:1.2;
    left:60vw;
    top:5vh;
  }
  .hero > .image-box img.img-public{
    scale:0.8;
    left:72vw;
    top: 45vh;
    
  }

  .hero > .image-box img.img-couple{
    scale:0.2;
    top:50vh;
    left:20vw;
    
  }

  .hero > .image-box img.img-telescope{
    scale:0.5;
    left:12vw;
    top:-18vh;
    
  }

  .hero > .image-box > img.img-car{
    scale:0.5;
    top:55vh;
    left:5vw;
  }

  .hero > .image-box > img.img-samurai{
    scale:0.25;
    top:15vh;
    left:29vw;
  }

  .hero > .image-box > img.img-dragon{
    scale:0.5;
    top:-5vh;
    left:40vw;
  }

  .hero > .image-box > img.img-lotus{
    scale:0.6;
    top:28vh;
    left:-1vw;
  }

.hero > .slogan-container{
  display:flex;
  flex-direction: column;
  position:absolute;
  width:92vw;
  max-width:100%;
  height:auto;
  left:8vw;
  top:20vh;
  gap:0.12em;
  
  font-family:'Roboto', 'sans-serif';
  font-weight:900;
  font-size:9rem;
  line-height:1.08;
  color:#F2F0F0;

  z-index: 1;
}


.hero > .slogan-container > .slogan-box-down{
  margin-top:0;
  font-size:0.88em;
  letter-spacing:-0.02em;
  line-height:1.08;
}




.hero > .guide-container{
  display:flex;
  position:absolute;
  left:0;
  top:calc(100vh - clamp(2rem, 4vh, 3rem));
  transform:translateY(-100%);
  align-items: flex-end;
  justify-content: center;
  
  width:100vw;
  height:auto;
  
  opacity:.9;
  
  font-family:'Roboto', 'sans-serif';

  font-size:1rem;
  font-weight:300;
  color:#F2F0F0;

  z-index: 1;
}


.hero > .guide-container > .guide-box{
  display:flex;
  position:relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom:0;
  z-index: 1;
}


@media screen and (max-width:960px){
  .hero > .image-box img{
    position:absolute;
    object-fit: cover;
    width:60%;
    top: calc(var(--vh, 1svh) * -10);

  }

  .hero > .image-box img.img-hand{
    scale:0.8;
    left:60vw;
    top: calc(var(--vh, 1svh) * -15);
  }
  .hero > .image-box img.img-public{
    scale:0.5;
    left:55vw;
    top: calc(var(--vh, 1svh) * 35);
    
  }

  .hero > .image-box img.img-couple{
    scale:0.15;
    top: calc(var(--vh, 1svh) * 25);
    left:10vw;
    
  }

  .hero > .image-box img.img-telescope{
    scale:0.3;
    left:24vw;
    top: calc(var(--vh, 1svh) * -33);
    
  }

  .hero > .image-box > img.img-car{
    scale:0.4;
    top: calc(var(--vh, 1svh) * 30);
    left:-10vw;
  }

  .hero > .image-box > img.img-samurai{
    scale:0.15;
    top: calc(var(--vh, 1svh) * -3);
    left:20vw;
  }

  .hero > .image-box > img.img-dragon{
    scale:0.3;
    top: calc(var(--vh, 1svh) * -17);
    left:35vw;
  }

  .hero > .image-box > img.img-lotus{
    scale:0.3;
    top: calc(var(--vh, 1svh) * 8);
    left:-6vw;
  }

  .hero > .slogan-container{
  
    font-size:3.75rem;
    line-height:1.18;
    gap:0.14em;
    text-align: center;
    margin-left:0;
    margin-top:0;
    width:100vw;
    left:0;
    top: calc(var(--vh, 1svh) * 50);
    transform:translateY(-50%);
}

.hero > .slogan-container > .slogan-box-down{
  margin-top: 0;
  font-size:0.9em;
  line-height:1.16;
}

.hero > .guide-container > .guide-box{
  display:flex;
  position:relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom:0;
}
}


@media screen and (max-width:480px){
  .hero > .image-box img{
    position:absolute;
    object-fit: cover;
    width:100%;
    top: calc(var(--vh, 1svh) * -10);

  }
  .hero > .image-box img.img-hand{
    scale:1.2;
    left:60vw;
    top: calc(var(--vh, 1svh) * 5);
  }
  .hero > .image-box img.img-public{
    scale:0.5;
    left:30vw;
    top: calc(var(--vh, 1svh) * 42);
    
  }

  .hero > .image-box img.img-couple{
    scale:0.15;
    top: calc(var(--vh, 1svh) * 50);
    left:-10vw;
    
  }

  .hero > .image-box img.img-telescope{
    scale:0.5;
    left:12vw;
    top: calc(var(--vh, 1svh) * -18);
    
  }

  .hero > .image-box > img.img-car{
    scale:0.4;
    top: calc(var(--vh, 1svh) * 58);
    left:-23vw;
  }

  .hero > .image-box > img.img-samurai{
    scale:0.15;
    top: calc(var(--vh, 1svh) * 15);
    left:-5vw;
  }

  .hero > .image-box > img.img-dragon{
    scale:0.3;
    top: calc(var(--vh, 1svh) * 3);
    left:0vw;
  }

  .hero > .image-box > img.img-lotus{
    scale:0.4;
    top: calc(var(--vh, 1svh) * 23);
    left:-40vw;
  }

  .hero > .slogan-container{
  
    font-size:2.75rem;
    line-height:1.28;
    gap:0.22em;
    text-align: center;
    margin-left:0;
    margin-top:0;
    width:100vw;
    left:0;
    top: calc(var(--vh, 1svh) * 50);
    transform:translateY(-50%);
}

.hero > .slogan-container > .slogan-box-down{
  margin-top: 0;
  font-size:0.88em;
  line-height:1.24;
}

.hero > .guide-container > .guide-box{
  display:flex;
  position:relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom:0;
}


.contemp{
  display:none;
}
}

/* End hero */

.hero > .dot{
  position:absolute;
  transform: translateX(-50%);
  left:50%;
  top:100vh;
  width:15px;
  height:15px;
  border-radius: 100%;
  background-color: #F2F0F0;
  animation: blink 1s infinite;
  z-index: 2;
}

@keyframes blink{
  0%{
    opacity:0;
  }

  50%{

  }

  100%{
    opacity:1;
  }
}

.hero > .hero-showreel{
  display:flex;
  flex-direction: column;
  position:relative;
  width:100vw;
  margin-top:160vh;
  z-index: 1;
}

.hero > .hero-showreel > .intro-explain{
  position:absolute;
  margin-top:-50px;
  left:0;
  width:100vw;
  text-align:center;
  font-family:'Roboto', 'sans-serif';
  font-weight:300;
  font-size:1rem;
  line-height:1.4;
  color:#0d0d0d;
  opacity:1;
  z-index:2;
  pointer-events:none;
}

.hero > .hero-showreel > .intro-video-wrapper{
  display:block;
  width:100vw;
  height:100vh;
}

.hero > .hero-showreel > .intro-video-wrapper > .video-box{
  display:flex;
  width:100vw;
  height:100vh;
  overflow: hidden;
}

.hero > .hero-showreel > .intro-video-wrapper > .video-box > video{
  width:100vw;
  object-fit: cover;
}









/* intro */
.intro{
  display:flex;
  position:relative;
  min-height:180vh;
  height:auto;
  width:100vw;
  overflow-x: clip;
  overflow-y: visible;
  background-color: #F2F0F0;
}

.intro > .intro-background-container{
  display:flex;
  flex-direction: column;
  position:block;
  min-height:140vh;
  height:auto;
  width:100vw;
  padding-bottom: clamp(4rem, 8vh, 7rem);
  background-color: #F2F0F0;
  align-items: center;
}

.intro > .intro-background-container > .intro-box{
  display:flex;
  flex-direction: column;
  width:100vw;
  margin-top:0;
  z-index: 1;
}

.showreel{
  display:none;
  position:fixed;
  top:0;
  width:100vw;
  height:100vh;  
  z-index: 100;
  justify-content: center;
  align-items: center;
  

}

.showreel > .showreel-bg{
  width:100vw;
  height:100vh;
  background-color: #0d0d0d;
  position:absolute;
  top:0;
  left:0;
  opacity:.9;
  z-index: 1;
}

.showreel-close-box{
  
  width:50px;
  height:50px;
  position:absolute;
  display:flex;
  justify-content: center;
  align-items: center;
  top:45vh;
  left:92vw;
  transform:translateY(-50%);
  z-index:100;
  overflow:hidden;
  

}

.showreel-close-box > .close-first{
  width:100%;
  position:absolute;
  transform:rotate(45deg);
  border:2px solid white;
  background-color:white;
  padding:1px;
  border-radius: 20%;

}
.showreel-close-box > .close-second{
  width:100%;
  position:absolute;
  transform:rotate(135deg);
  border:2px solid white;
  background-color:white;
  padding:1px;
  border-radius: 20%;

}


.showreel > iframe{
  width:80vw;
  height:90vh;
  z-index:1;

}

.displayFlex{
  display:flex;
}

.intro > .intro-background-container > .intro-box > .intro-explain-2{
  display: block;
  width:100vw;
  height:250px;
  color:#0d0d0d;
  font-family: 'Roboto', 'Sans-serif';
  font-weight:900;
  font-size:11rem;
  text-align: right;
  padding-top: 10px;
  padding-right:30px;
}

.intro > .intro-background-container > .intro-define-box{
  display:flex;
  position:relative;
  justify-content: space-between;
  margin-top:100px;
  width:90vw;
  min-height:58vh;
  height:auto;
  padding-bottom: clamp(3rem, 6vh, 5rem);
  z-index: 3;
}

.intro > .intro-background-container > .intro-define-box > .define-1{
  font-family: 'Roboto', 'Sans-serif';
  font-weight: 300;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  max-width: 36vw;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.intro > .intro-background-container > .intro-define-box > .define-2{
  width:50vw;
  
}

.intro > .intro-background-container > .intro-define-box > .define-2 >div:first-child{
  font-family: 'Noto Sans KR', 'Sans-serif';
  font-weight: 600;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.45;
  text-align: left;
  text-indent: 0;
}

.intro > .intro-background-container > .intro-define-box > .define-2 > div:last-child{
  margin-top:100px;
  font-size:1.3rem;
  font-family: 'Noto Sans Kr', 'Sans-serif';
  font-weight: 400;
}




.intro > .intro-img-container{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:0;
  z-index:2;
  pointer-events:none;
  overflow:visible;
}

.intro > .intro-img-container > .intro-img-box-1{
  display:flex;
  position:absolute;
  top:-90vh;
  left:10vw;
  width:500px;
  height:700px;
  overflow:hidden;
  will-change:transform;
  z-index:1;
}

.intro > .intro-img-container > .intro-img-box-1 > img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.intro > .intro-img-container > .intro-img-box-2{
  display:flex;
  position:absolute;
  top:-55vh;
  left:60vw;
  width:500px;
  height:700px;
  overflow:hidden;
  will-change:transform;
  z-index:1;
}

.intro > .intro-img-container > .intro-img-box-2 > img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.intro > .intro-deco-container{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  height:0;
  z-index:4;
  pointer-events:none;
  overflow:visible;
}

.intro > .intro-deco-container > .intro-explain-deco{
  position:absolute;
  top:-82vh;
  left:80vw;
  font-family:'Roboto', 'Sans-serif';
  font-weight:300;
}




@media screen and (max-width:960px){
  .intro {
    min-height: calc(215vh - 280px);
    height: auto;
    overflow-y: clip;
    padding-bottom: clamp(2rem, 5vh, 3.5rem);
  }

  .intro > .intro-background-container {
    min-height: calc(148vh - 280px);
    padding-bottom: clamp(2.5rem, 6vh, 4rem);
  }

  .intro > .intro-background-container > .intro-define-box {
    min-height: auto;
    padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
  }

  .intro > .intro-deco-container > .intro-explain-deco{
    top: calc(calc(var(--vh, 1svh) * -38) - 40px);
    left: 52vw;
    width: 38vw;
    color: #f2f0f0;
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
    line-height: 1.25;
    text-align: center;
    z-index: 5;
  }

  .hero > .hero-showreel > .intro-explain{
    font-size:1rem;
  }

  .showreel-close-box{
    width:30px;
    height:30px;
    top:22vh;
    left:40vw;
  }

  .intro > .intro-background-container > .intro-box > .intro-explain-2{
    font-size:4rem;
    padding-right:10px;
    line-height: 65px;
    padding-top:60px;
  }

  .intro > .intro-background-container > .intro-define-box{
    margin-top:60px;
  }

  .intro > .intro-background-container > .intro-define-box > .define-1 br,
  .intro > .intro-background-container > .intro-define-box > .define-2 br{
    display:none;
  }

  .intro > .intro-img-container > .intro-img-box-1{
    width: min(78vw, 360px);
    height: auto;
    aspect-ratio: 5 / 7;
    max-height: 400px;
    top: calc(calc(var(--vh, 1svh) * -66) - 250px);
    left: 3.5vw;
  }

  .intro > .intro-img-container > .intro-img-box-2{
    width: min(72vw, 340px);
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 380px;
    top: calc(calc(var(--vh, 1svh) * -44) - 300px);
    left: 48vw;
  }

  .intro > .intro-background-container > .intro-define-box > .define-1{
      font-size:.72rem;
      max-width: 42vw;
      line-height: 1.3;
  }
  
  .intro > .intro-background-container > .intro-define-box > .define-2 >div:first-child{
    font-size: clamp(1.45rem, 4.5vw, 1.85rem);
    line-height: 1.45;
    text-align: left;
    text-indent: 0;
    margin-left:2vw;
    width:50vw;
    
  }
  
  .intro > .intro-background-container > .intro-define-box > .define-2 >div:last-child{
    font-size: 1rem;
    margin-top:30px;
    margin-left:2vw;
    width:50vw;
  }

  .showreel > iframe{
    width:85vw;
    height:90vh;
    z-index: 1;

  }

  .showreel-close-box{
    left:94vw;
    top:50vh;
  }

  }

@media screen and (max-width:480px){
  .hero > .hero-showreel > .intro-explain{
    font-size:1rem;
  }

  .showreel-close-box{
    width:30px;
    height:30px;
    top:22vh;
    left:40vw;
  }

  .intro > .intro-background-container > .intro-box > .intro-explain-2{
    font-size:4rem;
    padding-right:10px;
    line-height: 60px;
    padding-top:60px;
  }

  .intro > .intro-background-container > .intro-define-box{
    margin-top:60px;
  }

  .intro > .intro-background-container > .intro-define-box > .define-1{
      font-size:.72rem;
      max-width: 42vw;
      line-height: 1.3;
  }
  
  .intro > .intro-background-container > .intro-define-box > .define-2 >div:first-child{
    font-size: clamp(1.2rem, 3.4vw, 1.45rem);
    line-height: 1.4;
    text-align: left;
    text-indent: 0;
    margin-left:2vw;
    width:50vw;
    
  }
  
  .intro > .intro-background-container > .intro-define-box > .define-2 >div:last-child{
    font-size: 1rem;
    margin-top:30px;
    margin-left:2vw;
    width:50vw;
  }

  .showreel > iframe{
    width:95vw;
    height:35vh;
    z-index: 1;

  }

  .showreel-close-box{
    left:87vw;
    top:30vh;

  }
  }
/* End Card-2 */




/* Card-3 */
  .value{
    display:block;
    position: relative;
    width: 100%;
    max-width: 100%;
    height:100vh;
    background-color:#F2F0F0;
    overflow-x: clip;
    overflow-y: visible;
    z-index: 2;
  }

  .value > .value-img-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }
  
  .value > .value-img-container > .value-img-box-3{
    display:flex;
    width:500px;
    height:700px;
    position:absolute;
    overflow:hidden;
    margin-top:65vh;
    margin-left:15vw;
    z-index: 2;
    will-change: transform;
  }

  .value > .value-img-container > .value-img-box-3 > img{
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: 2;
  }


  




  .value > .value-container{
    display:flex;
    position: relative;
    padding:0 5vw;
    width: 100%;
    max-width: 100%;
    height:100vh;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 3;
  }

  .value > .value-container > .value-title{
    display:flex;
    position:relative;
    width: 100%;

    max-width: 100%;
    height:100vh;

    font-family: 'Roboto', 'Sans-serif';
    font-weight:900;
    font-size:10rem;
    color:#0d0d0d;
    text-align: left;
    align-items: center;
    line-height: 150px;
    z-index: 2;

  }

  .value > .value-container > .value-explain{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50vw;
    max-width: 50vw;
    padding-top: 85vh;
    margin-right: 30px;
    padding-inline: 0;
    text-align: left;
    z-index: 3;
  }

  .value > .value-container > .value-explain > div:first-child{
    width: 100%;
    font-family: 'Noto Sans KR', 'Sans-serif';
    font-weight: 600;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.45;
    text-align: left;
    text-indent: 0;
    z-index: 3;
  }

  .value > .value-container > .value-explain > div:last-child{
    width: 100%;
    margin-top: 100px;
    font-size: 1.3rem;
    font-family: 'Noto Sans Kr', 'Sans-serif';
    font-weight: 400;
    text-align: left;
    z-index: 3;
  }

  @media screen and (max-width:960px){
    .value{
      height: auto;
      min-height: calc(calc(var(--vh, 1svh) * 54) + 26rem);
      overflow-y: clip;
      padding-bottom: clamp(2.5rem, 6vh, 4rem);
    }

    .value > .value-img-container > .value-img-box-3{
      width: min(82vw, 340px);
      height: auto;
      aspect-ratio: 5 / 7;
      max-height: 400px;
      justify-self: center;
      margin-top: calc(var(--vh, 1svh) * 54);
      margin-left: 18vw;
      display: flex;
      z-index: 1;
    }

  .value > .value-container{
    display:flex;
    flex-direction: column;
    height:auto;
    min-height: calc(calc(var(--vh, 1svh) * 54) + 22rem);
  }

  .value > .value-container > .value-title{
    font-size:4rem;
    line-height: 65px;
    padding-top:0;
    height: auto;
  }

  .value > .value-container > .value-explain{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height:auto;
    width:100%;
    max-width:100%;
    margin-inline:0;
    margin-left:0;
    padding:0 5vw;
    box-sizing:border-box;
    text-align:left;
    position:relative;
    z-index: 4;
  }

  .value > .value-container > .value-explain br{
    display:none;
  }

  .value > .value-container > .value-explain > div:first-child{
    font-family: 'Noto Sans KR', 'Sans-serif';
    font-weight: 600;
    font-size: clamp(1.45rem, 4.5vw, 1.85rem);
    line-height: 1.45;
    text-align: left;
    text-indent: 0;
    width:100%;
    z-index: 3;
  }
  .value > .value-container > .value-explain > div:last-child{
    font-size:1rem;
    font-family: 'Noto Sans Kr', 'Sans-serif';
    font-weight: 400;
    margin-top:30px;
    width:100%;
    text-align: left;
    z-index: 3;
  }

  }


  @media screen and (max-width:480px){

      .intro {
        min-height: calc(215vh - 280px);
      }

      .intro > .intro-background-container {
        min-height: calc(132vh - 280px);
        padding-bottom: clamp(2rem, 5vh, 3rem);
      }

      .intro > .intro-background-container > .intro-define-box {
        padding-bottom: 1.5rem;
      }

      .intro > .intro-img-container > .intro-img-box-1{
        width: min(44vw, 190px);
        height: auto;
        aspect-ratio: 19 / 50;
        max-height: 400px;
        top: calc(calc(var(--vh, 1svh) * -70) - 160px);
        left: 3.5vw;
      }

      .intro > .intro-img-container > .intro-img-box-2{
        width: min(48vw, 230px);
        height: auto;
        aspect-ratio: 23 / 26;
        max-height: 260px;
        top: calc(calc(var(--vh, 1svh) * -32) - 200px);
        right: 3.5vw;
      }

      .intro > .intro-deco-container > .intro-explain-deco{
        top: calc(var(--vh, 1svh) * -24);
        left: 46vw;
        width: 44vw;
        color: #000000;
        font-size: clamp(0.55rem, 2.8vw, 0.7rem);
        line-height: 1.2;
        text-align: center;
        z-index: 5;
      }

      .value > .value-img-container > .value-img-box-3{
        width: min(70vw, 260px);
        height: auto;
        aspect-ratio: 13 / 18;
        max-height: 340px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: calc(var(--vh, 1svh) * 55);
        display: flex;
        z-index: 1;
      }

    .value > .value-container{
      display:flex;
      flex-direction: column;
      height: auto;
      min-height: calc(calc(var(--vh, 1svh) * 50) + 24rem);
      justify-content: flex-start;
    }

    .value > .value-container > .value-title{
      font-size:4rem;
      line-height: 65px;
      padding-top:0;
      height: auto;
    }

    .value > .value-container > .value-explain{
      display:flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      height: auto;
      margin-top: 80px;
      padding-top: 0;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-inline: 0;
      padding-inline: 5vw;
      box-sizing: border-box;
      text-align: left;
      position: relative;
      z-index: 4;
    }  
    .value > .value-container > .value-explain > div:first-child{
      font-family: 'Noto Sans KR', 'Sans-serif';
      font-weight: 600;
      font-size: clamp(1.2rem, 3.4vw, 1.45rem);
      line-height: 1.4;
      text-align: left;
      text-indent: 0;
      width: 100%;
      z-index: 3;
    }
    .value > .value-container > .value-explain > div:last-child{
      font-size:1rem;
      font-family: 'Noto Sans Kr', 'Sans-serif';
      font-weight: 400;
      margin-top:30px;
      width: 100%;
      text-align: left;
      z-index: 3;
    }

    }


  




/* End Card-3 */






/* service */
:root {
  --service-item-width: 16.25vw;
  --service-arm-height: 100vw;
  --service-slider-height: 50vw;
}

.service {
  position: relative;
  width: 100%;
  margin-top: clamp(-8rem, -7vw, -3rem);
  padding-top: clamp(13rem, 18vw, 22rem);
  padding-bottom: clamp(5rem, 8vw, 9rem);
  overflow: hidden;
  background-color: #f2f0f0;
}

@media screen and (min-width: 961px) {
  .service {
    margin-top: clamp(4rem, 7vw, 10rem);
    padding-top: clamp(20rem, 26vw, 32rem);
  }
}

.service-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--vh, 1svh) * 100);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}

.service-bg-inner {
  position: absolute;
  left: 50%;
  bottom: calc(var(--vh, 1svh) * 50);
  width: 240vmax;
  height: 240vmax;
  border-radius: 100%;
  background-color: #282828;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.service-bg.-isActive {
  opacity: 1;
  visibility: visible;
}

.service-inner {
  position: relative;
  width: 100%;
  min-height: 118vh;
  padding-top: clamp(6rem, 11vh, 12.5rem);
  overflow: visible;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.service-content {
  width: 100%;
  min-height: 118vh;
  overflow: visible;
  pointer-events: auto;
}

.service-slider {
  position: relative;
  width: 100%;
}

.cContainer.service-title {
  position: relative;
  z-index: 8;
  text-align: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  pointer-events: none;
}

.service-title-inner {
  display: inline-block;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 11rem);
  line-height: 0.96;
  color: #0d0d0d;
}

.cSubTitle.service-title-sub {
  margin-top: 0.75rem;
}

.cSubTitle.service-title-sub .cSubTitle-inner {
  display: inline-flex;
  justify-content: center;
  gap: 0.15em;
}

.cSubTitle.service-title-sub .cSubTitle-text {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.45);
}

.service-slider-inner {
  position: absolute;
  top: clamp(17rem, 21vw, 22rem);
  left: 0;
  width: 100%;
  height: var(--service-slider-height);
  overflow: visible;
  pointer-events: auto;
  cursor: none;
  touch-action: pan-y;
  z-index: 6;
}

.service-slider-inner:active {
  cursor: none;
}

.service-slider-list-continer,
.service-slider-list-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--service-item-width);
  height: var(--service-arm-height);
  transform: translateX(-50%);
  overflow: visible;
  pointer-events: auto;
}

.service-slider-list {
  position: relative;
  width: var(--service-item-width);
  height: var(--service-arm-height);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: rotate(var(--list-rotate, -90deg));
  transform-origin: center bottom;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  pointer-events: none;
}

.service-slider-item {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--service-item-width);
  height: var(--service-arm-height);
  transform: rotate(var(--item-rotate, 0deg));
  transform-origin: center bottom;
  pointer-events: none;
}

.service-slider-item.-isCurrent {
  z-index: 5;
}

.service-slider-item-inner {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  background-color: #282828;
  border-radius: 0.875rem;
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-slider-item.-isCurrent .service-slider-item-inner {
  cursor: none;
  pointer-events: auto;
}

.service-slider-item-content {
  position: relative;
  overflow: hidden;
  z-index: 2;
  border-radius: inherit;
  opacity: 0.3;
  transition: opacity 0.3s;
  will-change: opacity;
}

.service-slider-item.-isCurrent .service-slider-item-content {
  opacity: 0.68;
}

.service-slider-item-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.service-slider-item-thumbnail-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 15.6;
  object-fit: cover;
  user-select: none;
}

.service-slider-item-thumbnail-img.-cover {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: circle(0 at 50% 50%);
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: clip-path;
}

.service-slider-item.-isCurrent .service-slider-item-thumbnail-img.-cover {
  clip-path: circle(100% at 50% 50%);
}

.service-slider-item-cover {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.cSliderMouseStalker {
  display: none;
}

.cSliderMouseStalker-inner {
  position: relative;
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.cSliderMouseStalker-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100%;
  background: transparent;
  transform: scale(0);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-slider-inner.is-hover .cSliderMouseStalker-circle,
.service-slider-inner.is-dragging .cSliderMouseStalker-circle {
  transform: scale(1);
}

.cSliderMouseStalker-item {
  position: relative;
  overflow: hidden;
}

.cSliderMouseStalker-text {
  display: block;
  padding: 0 0.3125rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  transition: transform 0.35s ease;
}

.cSliderMouseStalker-text.-prev {
  transform: translateX(110%);
}

.cSliderMouseStalker-text.-next {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-110%);
}

.cSliderMouseStalker-text.-drag {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(110%);
}

.cSliderMouseStalker-text.is-active {
  transform: translate(0, 0);
}

.service-slider-info {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: clamp(20rem, 26vw, 32rem);
  color: #0d0d0d;
  text-align: center;
  pointer-events: none;
}

.service-slider-info-en,
.service-slider-info-more {
  overflow: hidden;
}

.service-slider-info-en-text {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0d0d0d;
  will-change: transform;
}

.service-slider-info-textbox {
  width: min(58vw, 350px);
  margin: 0.5rem auto 0;
  min-height: 7.2rem;
}

.service-slider-info-study {
  display: block;
  overflow: visible;
  min-height: 5rem;
  pointer-events: none;
  will-change: transform;
}

.service-slider-info-study p {
  margin: 0.6rem 0 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.55;
  color: #0d0d0d;
  padding-bottom: 0.15em;
}

.service-slider-info-study-ko {
  opacity: 0.72;
  word-break: keep-all;
}

.service-slider-info-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  min-width: 100px;
  padding: 0.2rem 1rem;
  border: 1px solid #0d0d0d;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #0d0d0d;
  text-decoration: none;
  pointer-events: auto;
  transition: background-color 0.3s, color 0.3s;
}

.service-slider-info-more-link:hover {
  background-color: #0d0d0d;
  color: #f2f0f0;
}

.service-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  pointer-events: auto;
}

.service-slider-dots-item {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: rgba(13, 13, 13, 0.25);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.service-slider-dots-item.-isCurrent {
  background-color: #E8642B;
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  :root {
    --service-item-width: 36vw;
    --service-arm-height: 220vw;
    --service-slider-height: 72vw;
  }

  .service {
    margin-top: -3rem;
    padding-top: 12rem;
    padding-bottom: 2.5rem;
  }

  .service-inner {
    min-height: 100vh;
    padding-top: 3.5rem;
  }

  .service-content {
    min-height: 100vh;
  }

  .service-title-inner {
    font-size: clamp(2.75rem, 15vw, 4.5rem);
    line-height: 0.95;
  }

  .cSubTitle.service-title-sub {
    margin-top: 0.5rem;
  }

  .service-slider-inner {
    top: 10.5rem;
  }

  .service-slider-info {
    margin-top: 18.5rem;
  }

  .service-slider-info-en-text {
    font-size: clamp(1.75rem, 9vw, 2.7rem);
  }

  .service-slider-info-textbox {
    width: min(58vw, 240px);
    min-height: 6.4rem;
  }

  .service-slider-info-study {
    min-height: 4.8rem;
  }

  .service-slider-info-study p {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .service-slider-info-study-ko {
    font-size: 0.8rem;
  }

  .service-slider-info-more-link {
    margin-top: 0.35rem;
    padding: 0.15rem 0.85rem;
    font-size: 0.82rem;
  }

  .service-slider-dots {
    margin-top: 0.6rem;
  }

  .service-slider-item:not(.-isCurrent) .service-slider-item-content {
    opacity: 0.18;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --service-item-width: 38vw;
    --service-arm-height: 220vw;
  }

  .service-slider-inner {
    top: 10rem;
  }

  .service-slider-info {
    margin-top: 17.5rem;
  }
}


/* review */

.review {
  position: relative;
  width: 100%;
  padding: clamp(5rem, 9vw, 7.5rem) clamp(1.5rem, 5vw, 4rem) clamp(6.5rem, 11vw, 9rem);
}

.review::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f2f0f0;
  z-index: 1;
}

.review-container {
  position: relative;
  width: 100%;
}

.review-heading {
  position: relative;
  display: flex;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  z-index: 3;
}

.review-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #f2f0f0;
}

.review-list {
  position: relative;
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: 0;
  padding: 2rem 2rem 3rem 0.5rem;
  list-style: none;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-end: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  z-index: 3;
}

.review-list::after {
  content: "";
  flex: 0 0 1.5rem;
}

.review-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  flex: 0 0 min(88vw, 22rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 22rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px 24px rgba(13, 13, 13, 0.12);
  z-index: 3;
}

.review-quote {
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 500;
  line-height: 1.6;
  color: #0d0d0d;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
}

.review-brand,
.review-period {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(13, 13, 13, 0.42);
}

.review-profile {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (min-width: 960px) {
  .review-card {
    flex: 0 0 min(22rem, 28vw);
    min-height: 24rem;
  }
}


/* instagram */

.instagram {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: clamp(6rem, 10vw, 10rem) clamp(1.5rem, 3vw, 6rem);
  background-color: transparent;
}

.instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f2f0f0;
  pointer-events: none;
  z-index: 0;
}

.instagram-container {
  width: 100%;
}

.instagram-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  z-index: 2;
}

.instagram-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #0d0d0d;
}

.instagram-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
}

.instagram-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  background-color: #dedbd8;
  color: inherit;
}

.instagram-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-card:hover .instagram-card-img {
  transform: scale(1.04);
}

.instagram-card-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(13, 13, 13, 0.72);
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f2f0f0;
}

.instagram-status {
  grid-column: 1 / -1;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: rgba(13, 13, 13, 0.55);
}

/* outro */

.outro{
  position: relative;
  width:100vw;
  height:110vh;
  background-color: #f2f0f0;
  margin-top: 0;
  z-index: 3;
}

.outro > .outro-container{
  display:flex;
  width:100vw;
  height:100vh;
}

.outro > .outro-container > .outro-title{
  display:flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', 'Sans-serif';
  font-weight:900;
  font-size:13rem;
  color: #0d0d0d;
  z-index: 3;
  margin-left:3vw;
  line-height:200px;
}



.outro > .outro-container > .outro-body {
  display:flex;
  position: relative;
  width:100vw;
  height:100vh;
  font-size:3rem;
  align-items: center;
  justify-content: center;
  overflow: clip;
}

.outro > .outro-container > .outro-body > img{
  position:absolute;
  left: 50%;
  top: 50%;
  object-fit: cover;
  width:100%;
  transform: translate(-50%, -50%) scale(0.2);
  transform-origin: center center;
  will-change: transform;
}

@media screen and (max-width:960px){
  .review {
    padding: 5rem 1.75rem 6.5rem 1.25rem;
  }

  .service {
    overflow-x: clip;
    overflow-y: visible;
  }

  .outro {
    height: auto;
    min-height: calc(var(--vh, 1svh) * 100);
  }

  .outro > .outro-container {
    flex-direction: column;
    height: auto;
    min-height: calc(var(--vh, 1svh) * 100);
  }

  .outro > .outro-container > .outro-title{
    margin-top: calc(var(--vh, 1svh) * 10);
    font-size:5rem;
    text-align: center;
    line-height:80px;
  }

  .outro > .outro-container > .outro-body {
    height: auto;
    min-height: calc(var(--vh, 1svh) * 70);
  }

  .review-title {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .review-card {
    flex: 0 0 82vw;
    max-width: 18rem;
  }

  .instagram {
    min-height: auto;
    padding: 5rem 1.25rem;
  }

  .instagram-heading {
    display: block;
  }

  .instagram-title {
    margin-top: 0.5rem;
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }
}
  /* End Main */



  /* Footer */

.footer{
    display:flex;
    height:10vh;
    position:relative;
    width:100vw;
    background-color: #f2f0f0;
    z-index: 100;
  }
  
.footer > .footer-infBox{
    display:flex;
    flex-direction: column;
    font-family: 'Noto Sans Kr', sans-serif;
    font-weight: 300;
    font-size:.6rem;
    margin-bottom:3vh;
    margin-left:calc(2vw + 10px);
    color:#0d0d0d;
  }
  
  .footer > .footer-infBox > .web-inf{
    display:flex;
  }

 
  /* End Footer */

  .need-to-cursor-big{
    width:50px;
    height:50px;
  }


/* Stable mobile viewport — pairs with assets/js/viewport-stable.js */
@media screen and (max-width: 960px) {
  .hero {
    min-height: calc(var(--vh, 1svh) * 100);
  }

  .hero > .image-box {
    height: calc(var(--vh, 1svh) * 100);
  }

  .hero > .dot {
    top: calc(var(--vh, 1svh) * 100);
  }

  .hero > .guide-container {
    top: calc(calc(var(--vh, 1svh) * 100) - clamp(2rem, calc(var(--vh, 1svh) * 4), 3rem));
  }

  .hero > .hero-showreel {
    margin-top: calc(var(--vh, 1svh) * 160);
  }

  .hero > .hero-showreel > .intro-video-wrapper,
  .hero > .hero-showreel > .intro-video-wrapper > .video-box {
    height: calc(var(--vh, 1svh) * 100);
  }

  .intro {
    min-height: calc(calc(var(--vh, 1svh) * 215) - 280px);
  }

  .intro > .intro-background-container {
    min-height: calc(calc(var(--vh, 1svh) * 148) - 280px);
  }

  .value {
    height: auto;
    min-height: calc(calc(var(--vh, 1svh) * 54) + 26rem);
    overflow-y: clip;
  }

  .service-bg {
    height: calc(var(--vh, 1svh) * 100);
  }

  .service-bg-inner {
    bottom: calc(var(--vh, 1svh) * 50);
  }

  .service-inner,
  .service-content {
    min-height: calc(var(--vh, 1svh) * 100);
  }

  .outro {
    min-height: calc(var(--vh, 1svh) * 100);
  }

  .outro > .outro-container {
    min-height: calc(var(--vh, 1svh) * 100);
  }

  .outro > .outro-container > .outro-title {
    margin-top: calc(var(--vh, 1svh) * 10);
  }

  .outro > .outro-container > .outro-body {
    min-height: calc(var(--vh, 1svh) * 70);
  }

  .footer {
    height: calc(var(--vh, 1svh) * 10);
  }
}

@media screen and (max-width: 480px) {
  .intro {
    min-height: calc(calc(var(--vh, 1svh) * 215) - 280px);
  }

  .intro > .intro-background-container {
    min-height: calc(calc(var(--vh, 1svh) * 132) - 280px);
  }

  .value > .value-container {
    min-height: calc(calc(var(--vh, 1svh) * 50) + 24rem);
  }
}

/* Custom end */