@charset "utf-8";

.banner > div > div > span > h2{
  font-size: 50px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 30px;
}
.banner > div > div > span > p{
  color: #fff;
  line-height: 30px;
  font-weight: 300;
}
.banner > div > div > img{
  width: 50%;
}

.banner_img{
  display: flex; 
  justify-content: flex-end;
}



/* 연혁 */
.year_btn{
  background: var(--background);
  border-radius: 17px;
  display: flex;
  justify-content: space-between;
}
.year_btn > a{
  width: 50%;
  display: inline-block;
  padding: 15px;
  border-radius: 17px;
  text-align: center;
  font-weight: 400;
  color: #777;
  transition: .5s;
}

.y_on{
  background: rgba(13, 84, 222, .1);
  color: #333 !important;
  font-weight: 500 !important;
}

.year > li{
  background: var(--background);
  margin: 30px 0;
  padding: 30px 80px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.year > li > h3{
  font-size: 18px;
  text-align: center;
  color: var(--point-color);
  width: 20%;
}
.year > li > span{width: 70%;}
.year > li > span > p{line-height: 20px;}
.year > li > span > p:not(:last-child){margin-bottom: 20px;}






/* 함께하는 현장 */
.partner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.partner > li{
  background: var(--background);
  padding: 40px;
  box-sizing: border-box;
  border-radius: 40px;
  width: 24%;
}
.partner > li{margin-bottom: 40px;}
.partner > li > h3{margin-bottom: 30px; line-height: 30px;}
.partner > li > p:not(:last-child){margin-bottom: 15px;}

.partner > li:last-child{
  background: none;
  transition: .3s;
}
.partner > li:last-child > h3{
  text-align: center;
  color: var(--point-color);
}
.partner > li:last-child > a{
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  
  > span{font-size: 14px;}
  > .feather{
  	width: 18px; height: 18px;
  	margin-left: 5px;
  }
}





/* 핵심가치와 비전 */
.vision{
  display: flex;
  justify-content: space-between;
}
.vision > li{
  background: var(--background);
  padding: 40px;
  box-sizing: border-box;
  border-radius: 40px;
  width: 32%;
}
.vision > li > span{
  background: rgba(13, 84, 222, .1);
  color: var(--point-color);
  border-radius: 3px;
  font-weight: 600;
  width: 25px; height: 25px;
  display: inline-block;
  text-align: center;
  line-height: 25px;
  margin-right: 15px;
}
.vision > li > h3{
  color: var(--point-color); 
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
}
.vision > li > p{
  color: #777;
  margin-top: 30px;
  line-height: 30px;
}



 









@media (hover:hover) {
  .partner > li:last-child:hover{background: var(--background);}
  .partner > li:last-child:hover a > i{
    animation: go 2s infinite; 
    color: var(--point-color);
}
}













/* tablet 해상도 */
@media screen and (min-width:767px) and (max-width:1536px) {

	
	.banner > div > div > span > h2{
	  font-size: 40px;
	}
  .banner > div > div > img{
    width: 50%;
  }
  
  /* 연혁 */
  
  
  
  
  
  
  /* 함께하는 현장 */
  .partner > li{
    background: var(--background);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 30px;
    width: 32%;
  }
  
  
  
  
  
  
  /* 핵심가치와 비전 */
  .vision > li{
    background: var(--background);
    padding: 30px;
    box-sizing: border-box;
    border-radius: 30px;
    width: 32%;
  }
  

}













/* mobile 해상도 */
@media screen and (max-width:767px) {
  .banner > div > div > span > h2{
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 30px;
  }
  .banner > div > div > span > p{
    color: #fff;
    line-height: 30px;
    font-weight: 300;
  }
  .banner > div > div > img{
    width: 40%;
  }
  
  .banner_img{
    display: flex; 
    justify-content: flex-end;
  }
  
  
  
  
  
  /* 연혁 */
  .year_btn{border-radius: 13px;}
  .year_btn > a{border-radius: 13px;}
  
  .year > li{
    margin: 15px 0;
    padding: 20px;
    border-radius: 20px;
  }
  .year > li > h3{
    font-size: 14px;
    width: 20%;
  }
  .year > li > span{width: 70%;}
  
  
  
  
  
  
  /* 함께하는 현장 */
  .partner{
    display: flex;
    justify-content: space-between;
  }
  .partner > li{
    padding: 20px;
    border-radius: 20px;
    width: 49%;
    margin-bottom: 15px;
  }
  .partner > li > h3{margin-bottom: 15px;}
  .partner > li > p:not(:last-child){margin-bottom: 10px;}
  
  
  
  
  
  
  /* 핵심가치와 비전 */
  .vision{
    display: block;
    justify-content: center;
  }
  .vision > li{
    padding: 20px;
    border-radius: 20px;
    width: 100%;
  }
  .vision > li:not(:last-child){margin-bottom: 15px;}
  .vision > li > h3{font-size: 14px;}
  .vision > li > p{margin-top: 15px;}

}