@charset "UTF-8";

/*******************************************************************************************************************************
 *** 헤더
*******************************************************************************************************************************/

/*quick 시작*/
.quick {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  opacity: 0;
  transition: 0.8s;
}

.view {
  opacity: 1;
}

.quick .call {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 14px;
}

.quick .call img {
  transition: 0.5s;
}

.quick .call i {
  font-size: 24px;
  line-height: 50px;
}

.quick .call:hover img{
  filter: invert(40%) sepia(98%) saturate(424%) hue-rotate(59deg) brightness(100%) contrast(86%);
}

/*quick 끝//*/

/**PC 모바일 이미지 사이즈 조정 시작**/
.d-block {
  display: block;
}

.m-block {
  display: none;
}

/**PC 모바일 이미지 사이즈 조정 끝**/


/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/

/*******************************************************************************************************************************
 *** 푸터
*******************************************************************************************************************************/

/* Footer */
footer {
  background: #000;
  color: #86868b;
  padding: 60px 0 30px;
  text-align: center;
}

footer .content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

footer .content p {
  font-size: 15px;
  margin-bottom: 8px;
}


/*******************************************************************************************************************************
 *** PC ~ 테블릿
*******************************************************************************************************************************/
/*******************************************************************************************************************************
 *** 모바일
*******************************************************************************************************************************/
@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-content {
    padding: 0 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    border-right: none;
    padding: 5px 0;
  }

  /* 모바일에서 일부 정보 숨김 */
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) p:not(:first-child):not(:last-child) {
    display: none;
  }

  .footer-section:nth-child(3) {
    text-align: center;
  }

  /**PC 모바일 이미지 사이즈 조정 시작**/
  .d-block {
    display: none;
  }

  .m-block {
    display: block;
  }

  /**PC 모바일 이미지 사이즈 조정 끝**/
}
