@charset "utf-8";

/*wrap*/
#wrap{
  background-color: #000;
}

/*메인 공통*/
#wrap .sub-tit p{
  color: #F1854C;
  font-size: 1.5rem;
  font-weight: lighter;
  text-transform: uppercase;
}

#wrap .sub-tit h2{
  color: #fff;
  font-size: 3rem;
}

@media screen and (max-width : 1200px) {
  #wrap .sub-tit{
    margin-bottom: 30px;
  }

  #wrap .sub-tit p{
    font-size: 1.3rem;
  }

  #wrap .sub-tit h2{
    font-size: 2.4rem;
  }
}

@media screen and (max-width : 700px) {
  #wrap .sub-tit p{
    font-size: 1.2rem;
  }

  #wrap .sub-tit h2{
    font-size: 2rem;
  }
}

@keyframes circle{
  0%{transform: rotate(0);}
  100%{transform: rotate(360deg);}
}

/***************#main-banner****************/
#main-banner{
  height: 100vh;
}

#main-banner video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main-banner .bg-color{
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;

}

#main-banner .mb-txt{
  width: 100%;
  height: 100vh;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

#main-banner .mb-txt p{
  padding: 0 5%;
  width: 100%;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#main-banner .mb-txt br{
  display: none;
}

#main-banner .mb-txt p span{
  display: block;
  font-size: 2rem;
  font-weight: 50;
  margin-top: 10px;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  #main-banner .mb-txt p{
    font-size: 3.6rem;
  }

}

/*모바일*/
@media screen and (max-width : 700px) {
  #main-banner .mb-txt br{
    display: block;
  }

  #main-banner .mb-txt p{
    font-size: 2.8rem;
  }

  #main-banner .mb-txt p span{
    font-size: 1.5rem;
    margin-top: 20px;
  }

}

/***************************#works******************************/
#works{
  padding: 200px 5% 100px;
}

#works .works-tap{
  display: flex;
  justify-content: space-between;
  position: relative;
}

#works .works-tap .works-tap-btn{
  margin-top: 50px;
  width: 40%;
  position: sticky;
  top: 150px;
  height: fit-content;
}

#works .works-tap .works-tap-btn ul li{
  display: flex;
  gap: 20px;
  cursor: pointer;
  margin-top: 42px;
}

#works .works-tap .works-tap-btn ul li > span{
  font-size: 3.2rem;
  font-weight: 500;
  margin-top: 14px;
  color: rgb(225, 225, 225, 0.5);
  transition: color 0.5s;
}

#works .works-tap .works-tap-btn ul li p{
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(225, 225, 225, 0.5);
  transition: color 0.5s;
}

#works .works-tap .works-tap-btn ul li .btn-box{
  margin-top: 15px;
  display: none;
}

#works .works-tap .works-tap-btn ul li .btn-box a{
  display: block;
  width: 50px;
  height: 50px;
  position: relative;
}

#works .works-tap .works-tap-btn ul li .btn-box img{
  width: 100%;
}

#works .works-tap .works-tap-btn ul li .btn-box .btn{
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}

#works .works-tap .works-tap-btn ul li .btn-box:hover img{
  animation: circle 5s linear infinite;
}

#works .works-tap .works-tap-btn ul li.active .btn-box{
  display: block;
}

#works .works-tap .works-tap-btn ul li:hover > span,
#works .works-tap .works-tap-btn ul li.active > span{
  color: #F1854C;
}

#works .works-tap .works-tap-btn ul li:hover p,
#works .works-tap .works-tap-btn ul li.active p{
  color: rgb(225, 225, 225, 1);
}

#works .works-tap .works-tap-con{
  width: 60%;
}

#works .works-tap .works-tap-con > ul > li ul li{
  width: calc(100% - 50%);
  height: 400px;
  margin-bottom: 25px;
  position: relative;
}

#works .works-tap .works-tap-con > ul > li ul li:nth-child(2n+1){
  margin-left: 50%;
}

#works .works-tap .works-tap-con > ul > li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: border-radius 0.5s;
}

#works .works-tap .works-tap-con > ul > li ul li:hover img{
  border-radius: 150px 0;
}

#works .works-tap .works-tap-con .con-txt{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  align-content: center;
  transition: background-color 0.5s, color 0.5s;
}

#works .works-tap .works-tap-con .con-txt:hover{
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

#works .works-tap .works-tap-con .con-txt p{
  font-size: 3rem;
  font-weight: 600;
}

#works .works-tap .works-tap-con .con-txt span{
  display: block;
  font-weight: lighter;
  margin-top: 10px;
  font-size: 2rem;
}

/****태블릿********/
@media screen and (max-width : 1200px) {
  #works{
    padding-top: 100px;
  }

  #works .works-tap{
    display: block;
  }

  #works .works-tap .works-tap-btn{
    width: 100%;
    position: static;
  }

  #works .works-tap .works-tap-btn > ul{
    margin-top: 25px;
  }

  #works .works-tap .works-tap-btn ul li .btn-box{
    margin-top: 5px;
  }

  #works .works-tap .works-tap-btn ul li:last-child .btn-box{
    margin-top: 0;
  }

  #works .works-tap .works-tap-btn ul li .btn-box a{
    width: 40px;
    height: 40px;
  }

  #works .works-tap .works-tap-btn ul li .btn-box .btn{
    font-size: 2rem;
  }

  #works .works-tap .works-tap-btn ul li .btn-box img{
    animation: circle 10s linear infinite;
  }

  #works .works-tap .works-tap-con > ul > li ul li{
    height: 300px;
  }

  #works .works-tap .works-tap-con > ul > li ul li:nth-child(2n+1){
    margin-left: 0;
  }

  #works .works-tap .works-tap-btn ul li{
    margin-top: 10px;
  }

  #works .works-tap .works-tap-btn ul li span{
    font-size: 3rem;
    margin-top: 0;
  }

  #works .works-tap .works-tap-btn ul li p{
    font-size: 3rem;
  }

  #works .works-tap .works-tap-con{
    width: 100%;
    margin-top: 20px;
  }

  #works .works-tap .works-tap-con > ul > li ul li{
    width: 100%;
  }

  #works .works-tap .works-tap-con .con-txt{
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
  }


  /*모바일*/
  @media screen and (max-width : 700px) {
    #works{
      padding-top: 40px;
    }
    #works .works-tap .works-tap-btn ul li{
      gap: 10px;
    }

    #works .works-tap .works-tap-btn ul li > span{
      font-size: 1.8rem;
    }
    
    #works .works-tap .works-tap-btn ul li > p{
      font-size: 2rem;
    }

    #works .works-tap .works-tap-btn ul li .btn-box{
      margin-top: 0;
    }
  
    #works .works-tap .works-tap-btn ul li .btn-box a{
      width: 35px;
      height: 35px;
    }
  
    #works .works-tap .works-tap-btn ul li .btn-box .btn{
      font-size: 1.8rem;
    }

    #works .works-tap .works-tap-con > ul > li ul li{
      height: 200px;
    }

    #works .works-tap .works-tap-con .con-txt p{
      font-size: 2.2rem;
    }
  
    #works .works-tap .works-tap-con .con-txt span{
      font-size: 1.8rem;
    }

  }

}


/*******************************fade-txt*********************************/
#fade-txt{
  width: 100%;
  font-size: 7rem;
  font-weight: bold;
  padding: 150px 5%;
  overflow: hidden;
}

#fade-txt .right{
  color: #fff;
}

#fade-txt .left{
  text-shadow: -1px 0 #F1854C, 0 1px #F1854C, 1px 0 #F1854C, 0 -1px #F1854C;
  color: #000;
  text-align: right;
}

@media screen and (max-width : 1200px) {
  #fade-txt{
    font-size: 4rem;
    padding: 100px 5%;
  }
}

@media screen and (max-width : 700px) {
  #fade-txt{
    font-size: 2.2rem;
    padding: 10px 5% 20px;
  }
}

/*******************************story*********************************/
#story{
  padding: 150px 5% 200px;
  text-align: center;
  color: #fff;
}

#story .story-txt h3{
  margin-top: 10px;
  font-size: 6rem;
}

#story .story-txt h3 br{
  display: none;
}

#story .story-txt p{
  font-size: 2.6rem;
  font-weight: light;
  margin-top: 10px;
}

#story .story-txt .btn-box{
  width: 90px;
  height: 90px;
  margin: 40px auto;
}

#story .story-txt .btn-box a{
  display: block;
  color: #fff;
  position: relative;
  text-transform: uppercase;
}

#story .story-txt .btn-box img{
  width: 100%;
}

#story .story-txt .btn-box:hover img{
  animation: circle 5s linear infinite;
}

#story .story-txt .btn-box .btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#story > img{
  width: 100%;
  position: sticky;
  top: 200px;
  height: fit-content;
}

#story .con-inner{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5%;
}

#story .con-inner > div{
  width: calc((90% - 40px) / 3);
  height: 618px;
  background-color: rgba(55, 55, 55, 0.9);
  border-radius: 30px;
  padding: 50px 2%;
  text-align: left;
  overflow: hidden;
  position: relative;
}

#story .con-inner div p{
  font-size: 3rem;
  font-weight: bold;
}

#story .con-inner div span{
  display: block;
  margin-top: 40px;
  font-weight: lighter;
  font-size: 1.8rem;
}

#story .con-inner div div{
  width: 297px;
  height: 260px;
  opacity: 0.3;
  position: absolute;
  bottom: 30px;
  right: 10px;
}

#story .con-inner div .challenge-img{
  background: url(../images/main/story_Challenge.png) no-repeat center / contain;
}

#story .con-inner div .responsibility-img{
  background: url(../images/main/story_Responsibility.png) no-repeat center / contain;
  bottom: 10px;
}

#story .con-inner div .value-img{
  background: url(../images/main/story_Value.png) no-repeat center / contain;
  bottom: 10px;
}

/*태블릿*/
@media screen and (max-width : 1200px) {

  #wrap .sub-tit {
    margin-bottom: 10px;
  }

  #story .story-txt h3{
    margin-top: 0;
  }

  #story .story-txt p{
    font-size: 1.7rem;
  }

  #story .story-txt .btn-box{
    margin: 20px auto;
    width: 70px;
    height: 70px;
  }

  #story .story-txt .btn-box img{
    animation: circle 10s linear infinite;
  }

  #story .story-txt .btn-box span{
    font-size: 1.2rem;
  }

  #story .con-inner{
    flex-direction: column;
  }

  #story .con-inner > div{
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 60px 40px;
  }

  #story .con-inner div p{
    font-size: 2.8rem;
  }

  #story .con-inner div span{
    margin-top: 25px;
    font-size: 1.6rem;
    width: 50%;
  }

  #story .con-inner div div{
    bottom: 0;
  }

  #story .con-inner div .responsibility-img,
  #story .con-inner div .value-img{
    bottom: -20px;
  }

}

/*모바일*/
@media screen and (max-width : 700px) {
  #story .story-txt h3{
    font-size: 3rem;
  }

  #story .story-txt h3 br{
    display: block;
  }

  #story .story-txt p{
    margin: 10px auto;
    width: 70%;
  }

  #story .story-txt p br{
    display: none;
  }

  #story .story-txt .btn-box{
    width: 60px;
    height: 60px;
  }

  #story .story-txt .btn{
    font-size: 1rem;
  }

  #story > img{
    width: 100%;
    margin-top: 20px;
    position: sticky;
    top: 300px;
    height: fit-content;
  }

  #story .con-inner > div{
    padding: 40px 30px;
  }

  #story .con-inner div p{
    font-size: 2rem;
  }

  #story .con-inner div span{
    font-size: 1.3rem;
    width: 100%;
    margin-top: 20px;
  }

  #story .con-inner div div{
    opacity: 0.1;
  }

  #story .con-inner div .challenge-img,
  #story .con-inner div .responsibility-img,
  #story .con-inner div .value-img{
    display: none;
  }
}


/************************partners****************************/
#partners{
  overflow: hidden;
  padding: 200px 0 100px;
}

#partners .sub-tit{
  padding: 0 5%;
  margin-bottom: 70px;
}

#partners .loop-container{
  display: flex;
  gap: 40px;
  opacity: 0.5;
  margin-top: 60px;
}

#partners .loop-container:first-child{
  margin-top: 0;
}

#partners .loop-container .item img{
  display: block;
  width: 200px;
  height: 100%;
  object-fit: cover;
}

#partners .loop-container.left{
  animation: scroll 30s linear infinite;
}

#partners .loop-container.right{
  animation: scroll 30s linear infinite;
  animation-direction: reverse;
}

@keyframes scroll {
  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(-100%);
  }
}

/*태블릿*/
@media screen and (max-width : 1200px) {

  #partners{
    padding: 20px 0 80px;
  }

  #partners .sub-tit{
    margin-bottom: 40px;
  }

  #partners .sub-tit p{
    font-size: 1.3rem;
  } 

  #partners .sub-tit h2{
    font-size: 2.4rem;
  }

  #partners .loop-container{
    margin-top: 30px;
  }

  #partners .loop-container .item img{
    width: 100px;
  }
}

/*모바일*/
@media screen and (max-width : 700px) {
  #partners{
    padding-top: 80px;
  }

  #partners .loop-container{
    margin-top: 20px;
    gap: 20px;
  }

  #partners .loop-container .item img{
    width: 80px;
  }
}


/***************************contact*****************************/
#contact{
  background-color: #fff;
  padding: 100px 5%;
  display: flex;
  justify-content: space-between;
}

#contact .contact_txt{
  width: 70%;
}

#contact .contact_txt p{
  font-size: 6rem;
  font-weight: bolder;
}

#contact .contact_txt span{
  display: block;
  margin-top: 10px;
  font-size: 2.4rem;
}

#contact .contact_btn{
  width: 226px;
  height: 226px;
  position: relative;
}

#contact .contact_btn img{
  width: 100%;
  opacity: 0.4;
  animation: circle 15s linear infinite;
}

#contact .contact_btn a{
  display: block;
  color: #F1854C;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
}

#contact .contact_btn a::after{
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: #F1854C;
  margin-top: 10px;
  transition: width 0.5s;
}

#contact .contact_btn:hover a::after{
  width: 100%;
}

/*태블릿*/
@media screen and (max-width : 1200px) {
  #contact{
    padding: 70px 5%;
  }

  #contact .contact_txt p{
    font-size: 4rem;
  }

  #contact .contact_txt span{
    font-size: 2rem;
  }

  #contact .contact_btn{
    width: 160px;
    height: 160px;
  }

  #contact .contact_btn a{
    font-size: 1.8rem;
  }

  #contact .contact_btn a::after{
    display: none;
  }

}

/*모바일*/
@media screen and (max-width : 700px) {
  #contact{
    flex-direction: column;
    padding: 50px 5%;
  }

  #contact .contact_txt{
    width: 100%;
    text-align: center;
  }

  #contact .contact_txt p{
    font-size: 3.2rem;
  }

  #contact .contact_txt span{
    margin-top: 20px;
    font-size: 1.8rem;
  }

  #contact .contact_btn{
    width: 100px;
    height: 100px;
    margin-top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  #contact .contact_btn a{
    font-size: 1.2rem;
  }
}

