@charset "UTF-8";
/* 오버레이 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900");
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::after,
::before {
  position: absolute;
  display: flex;
  content: "";
}

/*/////////커스텀 컬러*/
/* @import url('https://fonts.googleapis.com/css?family=Noto+Serif+KR:200,300'); */
/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
ul, li {
  list-style-type: none;
}

/* 텍스트 이펙트 */
.visu-top {
  animation: top 1s ease-out 0s both;
}

.visu-top2 {
  animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  animation: top3 1s ease-out 0s both;
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}
@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}
/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.footer {
  position: fixed;
  padding: 30px 0;
  background-color: #323333;
  left: 0;
  bottom: 0;
  width: 100%;
}
.footer ._wide .addr-box {
  display: flex;
  width: 100%;
}
.footer ._wide .addr-box .logo-box {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.footer ._wide .addr-box .logo-box img {
  width: 180px;
  height: 90px;
}
.footer ._wide .addr-box .logo-box p {
  margin-top: 0px;
  margin-left: 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  text-align: left;
}
.footer ._wide .addr-box .siteMap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer ._wide .addr-box .siteMap p {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
}
.footer ._wide .addr-box .siteMap ul {
  display: flex;
  width: 80%;
  margin-top: 50px;
}
.footer ._wide .addr-box .siteMap ul li {
  width: 20%;
}
.footer ._wide .addr-box .siteMap ul li a {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
}

.contact {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.contact a {
  width: 250px;
  height: 40px;
  font-size: 13px;
  font-weight: 300;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif;
  color: #ffffff;
  text-align: center;
  background-color: #323333;
  transition: all 0.5s ease;
  cursor: pointer;
}
.contact a:hover {
  background-color: #4b4c4d;
}

@media screen and (max-width: 1200px) {
  .footer {
    padding: 30px 0;
  }
  .footer ._wide {
    padding-right: 20px;
  }
  .footer ._wide .addr-box {
    display: flex;
    width: 100%;
  }
  .footer ._wide .addr-box .logo-box {
    display: flex;
    width: 40%;
    flex-direction: column;
  }
  .footer ._wide .addr-box .logo-box img {
    width: 180px;
    height: 90px;
  }
  .footer ._wide .addr-box .logo-box p {
    margin-top: 0px;
    margin-left: 20px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: left;
  }
  .footer ._wide .addr-box .siteMap {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer ._wide .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .footer ._wide .addr-box .siteMap ul {
    display: flex;
    width: 80%;
    margin-top: 50px;
  }
  .footer ._wide .addr-box .siteMap ul li {
    width: 20%;
  }
  .footer ._wide .addr-box .siteMap ul li a {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    color: #ffffff;
  }

  .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
    transition: all 0.5s ease;
  }
}
@media screen and (max-width: 992px) {
  .footer {
    padding: 20px 0 20px;
  }
  .footer ._wide {
    padding-right: 0px;
  }
  .footer ._wide .addr-box {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer ._wide .addr-box .logo-box {
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer ._wide .addr-box .logo-box img {
    width: 180px;
    height: 90px;
  }
  .footer ._wide .addr-box .logo-box p {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }
  .footer ._wide .addr-box .siteMap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .footer ._wide .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .footer ._wide .addr-box .siteMap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 20px;
  }
  .footer ._wide .addr-box .siteMap ul li {
    width: 20%;
  }
  .footer ._wide .addr-box .siteMap ul li a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }

  .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
    transition: all 0.5s ease;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0 20px;
  }
  .footer ._wide {
    padding-right: 0px;
  }
  .footer ._wide .addr-box {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer ._wide .addr-box .logo-box {
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer ._wide .addr-box .logo-box img {
    width: 180px;
    height: 90px;
  }
  .footer ._wide .addr-box .logo-box p {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }
  .footer ._wide .addr-box .siteMap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .footer ._wide .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .footer ._wide .addr-box .siteMap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 20px;
  }
  .footer ._wide .addr-box .siteMap ul li {
    width: 20%;
  }
  .footer ._wide .addr-box .siteMap ul li a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }

  .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
    transition: all 0.5s ease;
  }
  .contact a:hover {
    background-color: #303030;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 20px 0 20px;
  }
  .footer ._wide {
    padding-right: 0px;
  }
  .footer ._wide .addr-box {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer ._wide .addr-box .logo-box {
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer ._wide .addr-box .logo-box img {
    width: 180px;
    height: 90px;
  }
  .footer ._wide .addr-box .logo-box p {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }
  .footer ._wide .addr-box .siteMap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .footer ._wide .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .footer ._wide .addr-box .siteMap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 20px;
  }
  .footer ._wide .addr-box .siteMap ul li {
    width: 33.3333%;
  }
  .footer ._wide .addr-box .siteMap ul li a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    color: #ffffff;
  }

  .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
    transition: all 0.5s ease;
  }
}
@media screen and (max-width: 420px) {
  .footer {
    padding: 20px 0 20px;
  }
  .footer ._wide {
    padding-right: 0px;
  }
  .footer ._wide .addr-box {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer ._wide .addr-box .logo-box {
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer ._wide .addr-box .logo-box img {
    width: 180px;
    height: 90px;
  }
  .footer ._wide .addr-box .logo-box p {
    margin-top: 0px;
    margin-left: 0px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }
  .footer ._wide .addr-box .siteMap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .footer ._wide .addr-box .siteMap p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif;
  }
  .footer ._wide .addr-box .siteMap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 96%;
    margin-top: 20px;
  }
  .footer ._wide .addr-box .siteMap ul li {
    width: 33.3333%;
  }
  .footer ._wide .addr-box .siteMap ul li a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
  }

  .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
  }
  .contact a {
    width: 250px;
    height: 40px;
    font-size: 13px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif;
    text-align: center;
    transition: all 0.5s ease;
  }
}

/*# sourceMappingURL=footer.css.map */
