@charset "UTF-8";
/*
Theme Name: INFOGRAPE
Author: WEB Agency DEP by GUPSA
Author URI: https://teamdep.com/
Description: 겁쟁이사자들의 웹 에이전시 팀 디이피에서 제작하였습니다.
Requires at least: 5.3
Tested up to: 6.2
Requires PHP: 7.4
Version: 1.0.0
*/
:root {
  /** 컬러 설정 */
  --main:#218FD4;
  --main-rgb: 33, 143, 212;
  --sub:#218FD4;
}

html {
  font-size: 0.833vw;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  html {
    font-size: 2.083vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 4.444vw;
  }
}

body {
  font-family: "Pretendard";
  font-weight: 400;
}

.container {
  width: 80rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .container {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.main-btn,
#main-btn {
  display: inline-block;
  padding: 0.625rem 2.5rem;
  border-radius: 1.875rem;
  color: #fff;
  font-size: var(--f7);
  line-height: var(--l7);
  background: var(--main) !important;
  cursor: pointer;
}

.sub-btn,
#sub-btn {
  display: inline-block;
  padding: 0.625rem 2.5rem;
  border-radius: 1.875rem;
  color: var(--main);
  font-size: var(--f7);
  line-height: var(--l7);
  border: 0.0625rem solid var(--main) !important;
  cursor: pointer;
}

#loginform {
  width: 25rem;
  margin: 0 auto;
}
#loginform p.login-username, #loginform p.login-password {
  display: flex;
  align-items: center;
  height: 3.75rem;
}
#loginform p.login-username label, #loginform p.login-password label {
  display: block;
  width: 6rem;
  font-size: var(--f7);
  line-height: var(--l7);
}
#loginform p.login-username input, #loginform p.login-password input {
  width: 19rem;
  height: 100%;
  border: none;
  border-bottom: 0.0625rem solid var(--line2);
}
#loginform p.login-username input:focus, #loginform p.login-password input:focus {
  outline: none;
}
#loginform p.login-remember {
  font-size: var(--f8);
  line-height: var(--l8);
  color: var(--font2);
  text-align: right;
}
#loginform p.login-remember input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  vertical-align: middle;
  width: var(--l8);
  height: var(--l8);
  background: url(./assets/images/login-unchecked.svg) no-repeat center center/cover;
}
#loginform p.login-remember input[type=checkbox]:checked {
  background-image: url(./assets/images/login-checked.svg);
}
#loginform p.login-submit {
  margin-top: 2.5rem;
}
#loginform p.login-submit input[type=submit] {
  width: 100%;
}
#loginform p + p {
  margin-top: 1.25rem;
}

.a11y-hidden {
  background-color: red;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 0 0, 0 0);
  clip-path: polygon(0 0, 0 0, 0 0);
}

.logo__nav {
  background: url(./assets/images/logo.svg) no-repeat center/cover;
  width: 9.0625rem;
  height: 2.375rem;
}
.logo__nav a {
  display: inline-block;
  font-size: 1.625rem;
  line-height: 2.25rem;
  font-weight: 700;
  padding: 0.5rem 0;
  width: 100%;
  height: 100%;
}
.logo__footer {
  flex-grow: 1;
}
.logo__footer a {
  display: inline-block;
  background: url(./assets/images/footerLogo.svg) no-repeat center/contain;
  width: 9.0625rem;
  height: 2.375rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.75rem;
  color: #FFF;
  padding: 0.5rem 0;
}
@media only screen and (max-width: 767px) {
  .logo__footer a {
    width: 5.5rem;
    height: 1.4375rem;
  }
}
.logo__footer span {
  display: inline-block;
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .logo__footer span {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .logo__footer span {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .logo__footer span {
    display: block;
    margin-top: 0.625rem;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFF;
  border-bottom: 0.0625rem solid #E1E1E4;
}

.nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 4.375rem;
}
@media only screen and (max-width: 767px) {
  .nav {
    border-bottom: 1px solid #E1E1E4;
  }
}
.nav__servicelink {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #FFF;
  background-color: #7937FF;
  padding: 0.625rem 1.25rem;
  display: inline-block;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .nav__servicelink {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .nav__servicelink {
    position: absolute;
    right: 12%;
  }
}
@media only screen and (max-width: 767px) {
  .nav__servicelink {
    position: absolute;
    right: 16%;
    padding: 0.4375rem 0.625rem;
  }
}

.menu {
  display: flex;
  flex-flow: row nowrap;
  gap: 3.125rem;
  align-items: center;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .menu > .menu__list {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .menu > .menu__list {
    display: none;
  }
}
.menu__list {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #767676;
}
@media only screen and (max-width: 767px) {
  .menu__list {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.menu__list a {
  padding: 0.5rem 0;
}
.menu__list.open {
  color: #7937FF;
  font-weight: 700;
}
.menu__list:hover {
  color: #7937FF;
}

.burger_btn {
  display: none;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .burger_btn {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 2rem;
    height: 2rem;
    padding: 0.3125rem 0.1875rem;
    position: relative;
  }
  .burger_btn.active > .burger__bar:nth-of-type(1) {
    position: absolute;
    top: 100%;
    left: 65%;
    transform: rotate(40deg) translate(-80%, 50%);
  }
  .burger_btn.active > .burger__bar:nth-of-type(2) {
    transform: translateX(1000%);
  }
  .burger_btn.active > .burger__bar:nth-of-type(3) {
    position: absolute;
    top: 0%;
    left: 62%;
    transform: rotate(-44deg) translate(-80%, -85%);
  }
}
@media only screen and (max-width: 767px) {
  .burger_btn {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    width: 2rem;
    height: 2rem;
    padding: 0.3125rem 0.1875rem;
    position: relative;
  }
  .burger_btn.active > .burger__bar:nth-of-type(1) {
    position: absolute;
    top: 100%;
    left: 65%;
    transform: rotate(40deg) translate(-80%, 50%);
  }
  .burger_btn.active > .burger__bar:nth-of-type(2) {
    transform: translateX(1000%);
  }
  .burger_btn.active > .burger__bar:nth-of-type(3) {
    position: absolute;
    top: 0%;
    left: 62%;
    transform: rotate(-44deg) translate(-80%, -85%);
  }
}
.burger__bar {
  width: 100%;
  height: 2px;
  background-color: #111;
}
.burger__menu {
  display: none;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .burger__menu {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #767676;
    background-color: #FFF;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 100;
  }
}
@media only screen and (max-width: 767px) {
  .burger__menu {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #767676;
    background-color: #FFF;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 100;
  }
}
.burger__menu__list:not(:nth-of-type(1)) {
  border-top: 1px solid #E1E1E4;
}
.burger__menu__list a {
  display: block;
  padding: 1.25rem;
}

.languageBtn {
  width: 4.375rem;
  height: 2.125rem;
  position: relative;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .languageBtn {
    display: none;
    position: absolute;
    right: 12%;
  }
}
@media only screen and (max-width: 767px) {
  .languageBtn {
    display: none;
    width: 3.5625rem;
    height: 1.75rem;
    position: absolute;
    right: 18%;
    padding: 0.3125rem 0.75rem;
  }
}
.languageBtn div {
  width: inherit;
  height: 2.125rem;
  position: absolute;
  z-index: 1000;
  border-radius: 2.125rem;
  border: 0.125rem solid #111111;
  background-color: #FFF;
  top: 0;
  overflow: hidden;
  transition: height 0.1s linear;
}
.languageBtn div::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  border-radius: 2.125rem;
  width: 100%;
  height: 2.125rem;
  border-bottom: 0.125rem solid #111111;
  border-inline: 0.125rem solid #111111;
}
@media only screen and (max-width: 767px) {
  .languageBtn div::before {
    height: 1.75rem;
    border-radius: 1.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  .languageBtn div {
    height: 1.75rem;
    border-radius: 1.0625rem;
  }
}
.languageBtn a {
  width: 100%;
  display: inline-block;
  padding: 0.4375rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .languageBtn a {
    font-size: 0.75rem;
    line-height: 1.125rem;
    padding: 0.3125rem 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .languageBtn a:first-of-type {
    height: 1.75rem;
  }
}
.languageBtn a:last-of-type {
  color: #767676;
}
.languageBtn.active div {
  height: 4.25rem;
  border-radius: 1.0625rem;
}
@media only screen and (max-width: 767px) {
  .languageBtn.active div {
    height: 3.5rem;
  }
}
.languageBtn.active .upArrow {
  transform: rotate(360deg);
}

.upArrow {
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0.5625rem;
  right: 0.75rem;
  background: url(./assets/images/upArrow.svg) no-repeat center/1rem auto;
  transform: rotate(180deg);
  transition: transform 0.1s linear;
}
@media only screen and (max-width: 767px) {
  .upArrow {
    width: 0.875rem;
    height: 0.875rem;
    top: 0.4375rem;
    right: 0.625rem;
  }
}

.footer {
  background-color: #111;
}
.footer__wrap {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .footer__wrap {
    flex-flow: column nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .footer__wrap {
    flex-flow: column nowrap;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

.address {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin-left: 6.25rem;
  width: 85%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .address {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .address {
    width: 100%;
    margin-left: 0;
  }
}
.address__item {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #767676;
  width: fit-content;
  margin-right: 1.25rem;
  margin-bottom: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .address__item {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
.address__item.row {
  margin-right: 1.4375rem;
}
@media only screen and (max-width: 767px) {
  .address__item {
    margin-right: 0;
    margin-bottom: 0.3125rem;
  }
}
.address__item:first-of-type {
  width: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .address__item:first-of-type {
    margin-top: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .address__item:first-of-type {
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .address__item:nth-of-type(5) {
    width: 100%;
  }
}
.address__item:nth-of-type(7) {
  width: 34%;
}
@media only screen and (max-width: 767px) {
  .address__item:nth-of-type(7) {
    width: 100%;
  }
}
.address__item:nth-of-type(9) {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .address__item:nth-of-type(9) {
    width: 100%;
    margin-right: 0;
  }
}
.address__title {
  display: inline-block;
  margin-right: 0.625rem;
  color: #FFF;
}
.address__title.padding {
  padding-left: 3.925rem;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .address__title.padding {
    padding-left: 0;
    margin-top: 0.3125rem;
  }
}
.address__logo {
  display: inline-block;
  width: 6.5625rem;
  height: 1.25rem;
  background: url(./assets/images/kodata.svg) no-repeat center/contain;
  color: transparent;
}
.address__terms {
  margin-left: 0.625rem;
  font-weight: 700;
  color: #FFF;
  display: inline-block;
}
.address-footer__menu {
  display: flex;
  flex-flow: row nowrap;
  margin-top: 1.125rem;
  margin-bottom: 1.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #767676;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .address-footer__menu {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .address-footer__menu {
    margin-top: 3.6875rem;
  }
}
@media only screen and (max-width: 767px) {
  .address-footer__menu {
    margin-top: 1.25rem;
    flex-flow: row wrap;
    width: 80%;
  }
}
.address-footer__menu > b {
  margin-inline: 0.625rem;
}
@media only screen and (max-width: 767px) {
  .address-footer__menu > b:nth-of-type(3) {
    display: none;
  }
}
.address .copyright {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: #767676;
  margin-top: 3.125rem;
}
@media only screen and (max-width: 767px) {
  .address .copyright {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .address .copyright {
    margin-top: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .address .copyright {
    margin-top: 1.25rem;
  }
}

.top-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.0625rem solid #E1E1E4;
  border-radius: 0.625rem;
  padding: 0.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) and (orientation: portrait) {
  .top-btn {
    position: absolute;
    right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-btn {
    width: 2rem;
    height: 2rem;
    position: absolute;
    right: 1.25rem;
    padding: 0;
    border-radius: 0.3125rem;
  }
}
.top-btn div {
  background: url(./assets/images/top-btn.svg) no-repeat center/cover;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .top-btn div {
    width: 1.125rem;
    height: 1.125rem;
  }
}