@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
.cal-sans-regular {
    display:block;
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  /*  
  background-color: rgba(27, 31, 34, 0.85); 
  */


  #header .logo {
    width: fit-content;
    padding:5px 10px;
    background-color:rgba(255, 255, 255, .3);
    border: solid 1px #ffffff;
    display: flex;
    align-items: center;   /* 세로 가운데 정렬 */
    justify-content: center; /* 가로 가운데 정렬 (필요시) */
}

#intro p, 
#work p,
#about p,
#contact p {font-size:0.75rem;}
#intro,
#work,
#about,
#contact {
  max-width: 960px;
  margin: 0 auto; /* 가운데 정렬 */
  padding: 20px;
}

#intro .image.main,
#work .image.main,
#about .image.main,
#contact .image.main {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1; /* 960:320 비율 = 3:1 비율 유지 */
  overflow: hidden;
}

#intro .image.main img,
#work .image.main img,
#about .image.main img,
#contact .image.main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 꽉 채우기 */
}
/* .logo span:first-child {font-size:0.85rem;color:#0A44DE} */
.logo span.subj {font-size:0.85rem;color:#f0ec06;}
.logo span.subj span {font-size:0.75rem;color:#fff;}

p.emphasize {color:#f0ec06;}

.rc_business {width:100%;}
.rc_business ul {list-style:none;}
.rc_business ul li {width:100%;background-color:#FFF;color:#090909;font-size:0.75rem;margin-bottom:20px;border-radius:5px;padding:30px 15px;}
.rc_business ul li h4 {color:#000;}

.graph_box {width:100%;height:400px;background-color:#FFF;margin-bottom:16px;
  display: flex; justify-content:flex-start;align-items:stretch;flex-wrap:wrap;gap:0;}
.graph_box .first {width:100%;height:50px;padding:10px 0 0 10px;font-size:0.75rem;color:#000;}
.graph_box div {width:25%;}
.graph_box .second {width:25%;height:300px;display:flex;justify-content: center;align-items: flex-end;text-align:center;font-size:0.75rem;}
.graph_box .second .one {width:50%;height:170px;background-color:rgb(255, 123, 0);}
.graph_box .second .two {width:50%;height:175px;background-color:rgb(255, 123, 0);}
.graph_box .second .three {width:50%;height:226px;background-color:rgb(255, 123, 0);}
.graph_box .second .four {width:50%;height:280px;background-color:rgb(255, 123, 0);}
.graph_box .third {width:25%;height:50px;text-align:center;font-size:0.75rem;color:#000;padding-top:10px;}

.contact_me {width:100%;display:flex;justify-content:center;align-items:stretch;flex-wrap:wrap;gap:10px;margin-bottom:30px;}
.contact_me div {
  width: 32%;
  text-align: center;
  background-color: rgb(252, 253, 253);
  padding-top: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* 내용 정렬 */
}
.contact_me div a {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 이미지와 텍스트 간 공간 자동 분배 */
  flex: 1;  /* div 높이 기준으로 꽉 채움 */
}
.contact_me div img {
  max-height: 80px;
  width: auto;
  margin: 0 auto;
  transition:all .4s;
}
.contact_me div p {
  margin-top: 10px;
  flex-shrink: 0;
}
.contact_me div p {width:100%;height:26px;line-height:26px; font-size:0.75rem;color:#999;} 

.contact_me div a:hover img {transform:scale(1.1);}



@media screen and (max-width: 1680px) {

}

@media screen and (max-width: 736px) {
  .logo br {display:none !important;}
  .contact_me div {
    width: 30%;
  }
}

@media screen and (max-width: 480px) {
  .contact_me div {
    width: 90%;
  }
}