@charset "UTF-8";
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-weight: 700;
  src: url(../fonts/SpoqaHanSansNeo-Bold.woff) format("woff"), url(../fonts/SpoqaHanSansNeo-Bold.woff2) format("woff2"), url(../fonts/SpoqaHanSansNeo-Bold.otf) format("opentype");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-weight: 500;
  src: url(../fonts/SpoqaHanSansNeo-Medium.woff) format("woff"), url(../fonts/SpoqaHanSansNeo-Medium.woff2) format("woff2"), url(../fonts/SpoqaHanSansNeo-Medium.otf) format("opentype");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-weight: 400;
  src: url(../fonts/SpoqaHanSansNeo-Regular.woff) format("woff"), url(../fonts/SpoqaHanSansNeo-Regular.woff2) format("woff2"), url(../fonts/SpoqaHanSansNeo-Regular.otf) format("opentype");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-weight: 300;
  src: url(../fonts/SpoqaHanSansNeo-Light.woff) format("woff"), url(../fonts/SpoqaHanSansNeo-Light.woff2) format("woff2"), url(../fonts/SpoqaHanSansNeo-Light.otf) format("opentype");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-weight: 100;
  src: url(../fonts/SpoqaHanSansNeo-Thin.woff) format("woff"), url(../fonts/SpoqaHanSansNeo-Thin.woff2) format("woff2"), url(../fonts/SpoqaHanSansNeo-Thin.otf) format("opentype");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0F1B2A;
  font-family: "SpoqaHanSansNeo", sans-serif;
}

a {
  color: #0F1B2A;
  text-decoration: none;
  font-family: "SpoqaHanSansNeo", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

#wrap {
  width: 100%;
  overflow-x: hidden;
}

.scroll_lock {
  overflow: hidden;
}

header {
  width: 100%;
  height: 140px;
  padding: 70px 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  top: 0px;
  left: 0;
  transform: translateY(0%);
  background-color: #fff;
  z-index: 99;
}
header.down {
  transform: translateY(-100%);
  transition: transform 0.7s ease;
}
header.up {
  transform: translateY(0%);
  transition: transform 0.3s ease;
}
header.up.menu_fix, header.down.menu_fix {
  transform: translateY(0%);
}
header .logo {
  width: 185px;
}
header .logo img {
  width: 100%;
}
header nav ul {
  display: flex;
  gap: 80px;
  font-weight: 700;
}
header nav ul a:hover, header nav ul a:focus, header nav ul a:active {
  color: #0891B2;
}
header .header_btn {
  display: flex;
  gap: 8px;
}
header .header_btn .btn-tel {
  display: flex;
  align-items: center;
  margin-right: 12px;
  color: #0891B2;
  font-size: 16px;
  font-weight: 700;
}
header .header_btn .btn-tel img {
  margin-right: 6px;
}
header .header_btn button {
  height: 40px;
  padding: 0 20px;
  border: 2px solid #0891B2;
  border-radius: 20px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #0891B2;
}
header .header_btn button:hover {
  color: #2CC8DD;
  border: 2px solid #2CC8DD;
}
header .header_btn .download {
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background-color: #0891B2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.loadMap_popup .modal-sm > h1 {
  font-size: 25px;
}

.location-title {
  font-size: 19px;
  font-weight: 600;
}

.location-header div, .location-header p {
  margin-bottom: 10px;
}
.location-header .add-text, .location-header p {
  font-size: 15px;
}

.location-content {
  margin-top: 15px;
  display: flex;
  gap: 20px;
}
.location-content .way {
  display: flex;
  gap: 5px;
}
.location-content .way li {
  font-size: 15px;
}
.location-content .way li:nth-of-type(1) {
  font-weight: 500;
  width: 50px;
}
.location-content .way li:nth-of-type(2) {
  font-weight: 400;
}

.add-text-name {
  width: 50px;
  display: inline-block;
  font-weight: 500;
}

.top_button {
  width: 60px;
  height: 60px;
  background: #5F6B7A;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 8px;
  border: 1px solid #E4E8EE;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  background: #fff url(../img/images/arrow_up.svg) no-repeat center;
  cursor: pointer;
  z-index: 9;
}
.top_button.off {
  opacity: 0;
  transition: all 0.3s;
}
.top_button.on {
  opacity: 1;
}
.top_button:hover {
  background: #0891B2 url(../img/images/arrow_up_white.svg) no-repeat center;
}

.full_fix {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}
.full_fix.show {
  display: flex;
}
.full_fix.close {
  display: none;
}

.loadMap_popup .modal-sm {
  width: 600px;
  background-color: #fff;
  padding: 25px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
.loadMap_popup .modal-sm .modal-close:after, .loadMap_popup .modal-sm .modal-close:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #aaa;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: 9px 0 0 0;
  top: 0;
}
.loadMap_popup .modal-sm .modal-close:before {
  transform: rotate(-45deg);
}
.loadMap_popup .modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.password_change {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
}
.password_change.open {
  display: flex;
}
.password_change.close {
  display: none;
}
.password_change > div {
  width: 500px;
  background: #FFFFFF;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.password_change > div h3 {
  padding: 0 40px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  font-weight: 600;
  font-size: 20px;
}
.password_change > div h3 img {
  width: 24px;
  cursor: pointer;
}
.password_change > div form {
  padding: 40px;
}
.password_change > div form .password_change_input {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.password_change > div form .password_change_input label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
}
.password_change > div form .password_change_input label input {
  width: 280px;
  height: 40px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  outline: none;
  padding-left: 16px;
}
.password_change > div form > p {
  margin-bottom: 100px;
  font-weight: 400;
  font-size: 13px;
  padding-left: 10px;
  position: relative;
}
.password_change > div form > p::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: #192534;
}
.password_change > div form .password_change_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.password_change > div form .password_change_btn button {
  width: 180px;
  height: 48px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
}
.password_change > div form .password_change_btn button.find_cancle {
  border: 1px solid #E0E0E0;
  background: #F5F5F5;
  color: #36363D;
}
.password_change > div form .password_change_btn button.find_cancle:hover {
  background: #f1f1f1;
}
.password_change > div form .password_change_btn button.find_confirm {
  background: #0891B2;
  border: none;
  color: #FFFFFF;
}
.password_change > div form .password_change_btn button.find_confirm:hover {
  background: #2CC8DD;
}

.login_popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
}
.login_popup.show {
  display: flex;
}
.login_popup > div {
  width: 450px;
  height: 660px;
  padding: 32px 40px;
  background-color: #fff;
  box-shadow: 0px 16px 16px rgba(21, 34, 50, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
.login_popup > div > .login_button {
  height: 56px;
  width: 100%;
  margin-bottom: 110px;
}
.login_popup > div > .login_button button {
  width: 100%;
  height: 100%;
  line-height: 56px;
  background: #0891B2;
  border: 1px solid #0891B2;
  border-radius: 3px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.login_popup > div > .login_button button:hover {
  border: 1px solid #2CC8DD;
  background: #2CC8DD;
}
.login_popup > div > img:nth-of-type(1) {
  align-self: flex-end;
  margin-bottom: 40px;
  cursor: pointer;
}
.login_popup > div > img:nth-of-type(2) {
  width: 278px;
  align-self: center;
  margin-bottom: 100px;
}
.login_popup .input_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.login_popup .input_wrap input {
  width: 370px;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #C5CFDB;
  border-radius: 3px;
  padding-left: 20px;
  outline: none;
}
.login_popup .login_text {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.login_popup .login_text > div {
  font-size: 13px;
  color: #15232E;
  display: flex;
  align-items: center;
  gap: 7px;
}
.login_popup .login_text > div input {
  display: none;
}
.login_popup .login_text > div input:checked + label {
  background: url(../img/icon/checkbox.svg);
  border: none;
  border-radius: 0px;
}
.login_popup .login_text > div input + label {
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #C5CFDB;
  border-radius: 3px;
  cursor: pointer;
}
.login_popup .login_text ul {
  display: flex;
  gap: 20px;
}
.login_popup .login_text ul li {
  font-size: 13px;
  color: #8E8E8E;
  cursor: pointer;
}
.login_popup .login_text ul li:hover {
  text-decoration: underline;
}
.login_popup .login_copy {
  font-size: 11px;
  color: #999999;
  align-self: center;
}
.login_popup .find_modal {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  display: none;
}
.login_popup .find_modal > div {
  width: 100%;
  height: 58%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  border-radius: 16px 16px 0px 0px;
  padding: 32px 40px;
}
.login_popup .find_modal > div h3 {
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login_popup .find_modal > div h3 img {
  cursor: pointer;
}
.login_popup .find_modal > div .radio_box {
  margin: 20px 0 24px;
  display: flex;
  gap: 24px;
}
.login_popup .find_modal > div .radio_box > div {
  display: flex;
  gap: 6px;
  font-size: 13px;
  align-items: center;
}
.login_popup .find_modal > div .radio_box > div input {
  display: none;
}
.login_popup .find_modal > div .radio_box > div input:checked + label {
  border-color: #0891B2;
}
.login_popup .find_modal > div .radio_box > div input:checked + label div {
  background-color: #0891B2;
}
.login_popup .find_modal > div .radio_box > div label {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.login_popup .find_modal > div .radio_box > div label div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}
.login_popup .find_modal > div form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 168px;
}
.login_popup .find_modal > div form input {
  height: 48px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  outline: none;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
}
.login_popup .find_modal > div form input::-moz-placeholder {
  color: #9E9FA3;
}
.login_popup .find_modal > div form input::placeholder {
  color: #9E9FA3;
}
.login_popup .find_modal > div .button_box {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}
.login_popup .find_modal > div .button_box button {
  flex-grow: 1;
  height: 48px;
  border-radius: 4px;
  font-size: 15px;
}
.login_popup .find_modal > div .button_box button.find_cancle {
  border: 1px solid #E0E0E0;
  background: #F5F5F5;
  color: #36363D;
}
.login_popup .find_modal > div .button_box button.find_cancle:hover {
  background: #e7e7e7;
}
.login_popup .find_modal > div .button_box button.find_confirm {
  background: #0891B2;
  border: none;
  color: #FFFFFF;
}
.login_popup .find_modal > div .button_box button.find_confirm:hover {
  background: #2CC8DD;
}

/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width: 1024px) {
  header {
    height: 190px;
    padding: 130px 20px 0;
  }
  header .logo {
    width: 130px;
  }
  header nav {
    display: none;
  }
  header .header_btn .login, header .header_btn .download {
    display: none;
  }
  header .header_btn .btn-tel {
    margin-right: 0px;
    font-size: 14px;
  }
  .top_button {
    width: 40px;
    height: 40px;
    background-size: 24px;
  }
  .top_button:hover {
    background-size: 24px;
  }
}
.bold {
  font-weight: 700;
}

.footer {
  color: #414D5C;
  padding: 60px 40px 80px;
  font-size: 16px;
  border-top: 1px solid #E6E6E6;
}
.footer * {
  color: #414D5C;
}
.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid #E4E8EE;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-top .terms {
  display: flex;
  gap: 32px;
}
.footer-top .terms a.bold {
  font-weight: 700;
}
.footer-top .terms a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer_mark {
  margin-top: 30px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding-left: 45px;
  color: #0F1B2A;
  font-weight: 400;
  font-size: 12px;
  background: url(../img/common/footer_mark.svg) no-repeat;
}
.footer-bottom {
  padding-top: 16px;
  position: relative;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-row .bold {
  font-weight: 700;
}
.footer-bottom-row-box {
  display: flex;
  gap: 4px;
}
.footer-bottom-row:nth-of-type(2) {
  margin-top: 8px;
}
.footer-bottom-line {
  display: block;
  width: 1px;
  height: 12px;
  background-color: #8d99a8;
}
.footer-bottom .copyright {
  margin-top: 30px;
  height: 40px;
  color: #8D99A8;
}
.footer-bottom .call {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-bottom .call > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom .call > div.call_bottom {
  align-items: baseline;
  justify-content: center;
  gap: 16px;
}
.footer-bottom .call > div.call_bottom div {
  height: 12px;
  border: 1px solid #8D99A8;
}
.footer-bottom .call b {
  font-size: 36px;
  font-weight: 700;
}
.footer-bottom .more-site {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  border-radius: 20px;
  height: 40px;
  width: 180px;
  justify-content: space-between;
  align-items: center;
  background: #EEF1F6;
  padding: 0 16px 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: background ease 0.3s;
  color: #5F6B7A;
  border: none;
}
.footer-bottom .more-site > img {
  transition: 0.5s ease;
}
.footer-bottom .more-site .dropdown-menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  width: 100%;
  border: 1px solid #e4e8ee;
  border-radius: 4px;
  padding: 6px;
  overflow: auto;
  background-color: #fff;
  height: 312px;
  display: none;
  font-weight: 400;
  z-index: 5;
}
.footer-bottom .more-site .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.footer-bottom .more-site .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.footer-bottom .more-site .dropdown-menu li {
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
  font-size: 13px;
  text-align: left;
  color: #414d5c;
}
.footer-bottom .more-site .dropdown-menu li:hover {
  background-color: #eef1f6;
}
.footer-bottom .more-site .dropdown-menu li a {
  width: 100%;
  height: 100%;
}
.footer-bottom .more-site:hover {
  background-color: #0891B2;
  color: #fff;
}
.footer-bottom .more-site:hover img {
  filter: brightness(5);
}
.footer-bottom .more-site.active {
  animation: none;
  background-color: #0891B2;
  color: #fff;
}
.footer-bottom .more-site.active > img {
  transform: rotate(45deg);
  filter: brightness(5);
}
.footer-bottom .more-site.active .dropdown-menu {
  display: block;
}

@media screen and (min-width: 1200px) and (max-width: 1370px) {
  .footer-bottom-row:nth-of-type(2) {
    flex-wrap: wrap;
    max-width: 600px;
    gap: 8px;
  }
  .footer-bottom-row:nth-of-type(2) span {
    margin-right: 4px;
  }
}
@media screen and (max-width: 1199px) {
  .footer {
    padding: 30px 20px 40px;
    font-size: 14px;
  }
  .footer .logo img {
    width: 104px;
  }
  .footer-top {
    padding-bottom: 12px;
    flex-direction: column;
    align-items: start;
  }
  .footer-top .logo {
    width: 104px;
    margin-bottom: 24px;
  }
  .footer-top .terms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-top .terms a {
    margin-right: 12px;
  }
  .footer-bottom {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom-row {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom-row-box {
    gap: 5px;
  }
  .footer-bottom-row:nth-of-type(2) {
    margin-top: 0;
  }
  .footer-bottom .copyright {
    margin-top: 0px;
    height: auto;
  }
  .footer-bottom .call {
    margin-top: 24px;
    position: relative;
    top: 0px;
    right: 0;
    gap: 8px;
  }
  .footer-bottom .call > div {
    gap: 8px;
  }
  .footer-bottom .call > div img {
    width: 24px;
  }
  .footer-bottom .call > div.call_bottom {
    justify-content: flex-start;
    gap: 8px;
  }
  .footer-bottom .call b {
    font-size: 26px;
  }
  .footer-bottom .more-site {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 32px;
  }
  .footer .pc-show {
    display: none;
  }
}
.slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 280px 0;
  gap: 30px;
}
@keyframes header {
  0% {
    transform: translateY(200%);
  }
  100% {
    transform: translateY(0%);
  }
}
.slider .header_ani {
  animation-name: header;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.slider h2 {
  font-size: 68px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 120%;
  overflow: hidden;
}
.slider h2 span {
  display: block;
  transform: translateY(200%);
  animation-delay: 0.5s;
}
.slider > p {
  font-size: 32px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.03em;
  overflow: hidden;
}
.slider > p > .header_line {
  display: block;
  transform: translateY(200%);
  animation-delay: 1s;
}
.slider > p .deco {
  position: relative;
}
.slider > p .deco span {
  position: relative;
  z-index: 1;
}
.slider > p .deco::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 12px;
  background-color: #74e4ff;
  display: block;
  opacity: 0.6;
  z-index: 0;
  animation-delay: 2s;
}
.slider > p .deco.deco_ani::after {
  animation-name: deco;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.slider .slider_img {
  transition: all 0.7s;
  width: 1200px;
  height: 600px;
  background: url(../img/pc/slider_img_full.png) center center no-repeat;
  background-size: cover;
  border-radius: 20px;
  margin-top: 80px;
}
.slider .slider_img.down {
  width: 100%;
  height: 800px;
}
@media all and (min-width: 2500px) {
  .slider .slider_img.down {
    height: 1080px;
  }
}
.slider .slider_img.up {
  width: 1200px;
}

.section_one {
  padding: 90px 0 260px;
}
.section_one_wrap {
  margin: 0 auto;
  width: 970px;
  display: flex;
  flex-direction: column;
  gap: 210px;
}
.section_one_wrap > div {
  display: flex;
  justify-content: space-between;
}
.section_one_wrap > div .img_box {
  position: relative;
}
.section_one_wrap > div .img_box > div {
  opacity: 0;
  animation-delay: 1s;
}
.section_one_wrap > div .img_box img {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  border-radius: 22px;
  opacity: 0;
  animation-delay: 0.5s;
}
.section_one_wrap > div .img_box .first_icon_box {
  position: absolute;
  width: 130px;
  height: 130px;
  right: 0;
  bottom: 0;
  background: url(../img/pc/free.svg);
  border-radius: 50%;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
.section_one_wrap > div .img_box .second_icon_box {
  position: absolute;
  width: 168px;
  height: 132px;
  left: 0;
  bottom: 0;
  background: url(../img/pc/complete.svg);
  border-radius: 22px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
.section_one_wrap > div .img_box.cfo {
  position: relative;
}
.section_one_wrap > div .img_box.cfo .third_icon_box {
  position: absolute;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
}
.section_one_wrap > div .img_box.cfo .third_icon_box:nth-of-type(1) {
  left: 160px;
  top: 40px;
  width: 200px;
  height: 72px;
  background: url(../img/pc/cfo_img_first.svg);
  border-radius: 12px;
  animation-delay: 1s;
}
.section_one_wrap > div .img_box.cfo .third_icon_box:nth-of-type(2) {
  left: 200px;
  top: 125px;
  width: 200px;
  height: 100px;
  background: url(../img/pc/cfo_img_second.svg);
  border-radius: 12px;
  animation-delay: 1.2s;
}
.section_one_wrap > div .img_box.cfo .third_icon_box:nth-of-type(3) {
  left: 160px;
  bottom: 36px;
  width: 250px;
  height: 155px;
  background: url(../img/pc/cfo_img_third.svg);
  border-radius: 12px;
  animation-delay: 1.4s;
}
.section_one_wrap > div .text_box {
  width: 445px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
}
.section_one_wrap > div .text_box .gray_box, .section_one_wrap > div .text_box h3, .section_one_wrap > div .text_box p, .section_one_wrap > div .text_box a {
  opacity: 0;
}
.section_one_wrap > div .text_box .gray_box {
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  background: #EEF1F6;
  border-radius: 8px;
  color: #414D5C;
  font-weight: 700;
  margin: 0px 0 10px;
  animation-delay: 1s;
}
.section_one_wrap > div .text_box h3 {
  font-size: 53px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 35px;
  line-height: 140%;
  animation-delay: 1.1s;
}
.section_one_wrap > div .text_box p {
  font-size: 20px;
  letter-spacing: -0.07em;
  animation-delay: 1.2s;
}
.section_one_wrap > div .text_box a.cfo_store {
  margin-top: 50px;
  color: #0891B2;
  font-weight: 500;
  font-size: 20px;
  animation-delay: 1.3s;
  padding-right: 29px;
  background: url(../img/icon/arrow_right.svg) no-repeat center right;
}
.section_one_wrap > div .text_box a.cfo_store:hover {
  text-decoration: underline;
}
.section_one_wrap > div:nth-of-type(1) .text_box {
  padding-top: 0px;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tax {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes price {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fixAni {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes deco {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes boxUp {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(-3%);
  }
}
@keyframes boxDown {
  0% {
    opacity: 1;
    transform: translateY(-3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.tax_ani {
  animation-name: tax;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.text_ani {
  animation-name: text;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.price_ani {
  animation-name: price;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fix_ani {
  animation-name: fixAni;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.section_two {
  width: 100%;
  background-color: #F8F9FB;
}
.section_two .swiper {
  padding-bottom: 20px;
}
.section_two_wrap {
  padding: 130px 0 200px;
}
.section_two_wrap .top {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.section_two_wrap .top_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section_two_wrap .top_text > div, .section_two_wrap .top_text h3, .section_two_wrap .top_text p {
  opacity: 0;
}
.section_two_wrap .top_text > div {
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  background: #2CC8DD;
  border-radius: 8px;
  color: #FFFFFF;
  font-weight: 700;
}
.section_two_wrap .top_text h3 {
  font-size: 53px;
  animation-delay: 0.3s;
}
.section_two_wrap .top_text p {
  padding-top: 15px;
  font-size: 20px;
  animation-delay: 0.6s;
}
.section_two_wrap .top_img {
  width: 500px;
  position: relative;
  animation-delay: 0.5s;
  opacity: 0;
}
.section_two_wrap .top_img > img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
}
.section_two_wrap .top_img .hometax {
  position: absolute;
  width: 160px;
  height: 160px;
  top: -40px;
  right: -60px;
  animation-delay: 0.8s;
  opacity: 0;
}
.section_two_wrap .top_img .tax_img {
  position: absolute;
  top: 85px;
  right: 50%;
  opacity: 0;
  animation-delay: 0.8s;
}
.section_two_wrap .top_img .shadow_img {
  position: absolute;
  top: 85px;
  right: 50%;
  z-index: -1;
  top: 5px;
  right: 24.5%;
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}
.section_two_wrap .top_img .shadow_ani {
  animation-name: shadow;
}
@keyframes shadow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_two_wrap .bottom {
  margin-top: 130px;
}
.section_two_wrap .bottom > div {
  padding: 30px;
  width: 200px;
  height: 200px;
  background: #FFFFFF;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section_two_wrap .bottom > div.slider_item1 > div {
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: url(../img/icon/slider_icon1.svg) no-repeat;
  background-position: bottom right;
}
.section_two_wrap .bottom > div.slider_item2 > div {
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: url(../img/icon/slider_icon2.svg) no-repeat;
  background-position: bottom right;
}
.section_two_wrap .bottom > div.slider_item3 > div {
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: url(../img/icon/slider_icon3.svg) no-repeat;
  background-position: bottom right;
}
.section_two_wrap .bottom > div.slider_item4 > div {
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: url(../img/icon/slider_icon4.svg) no-repeat;
  background-position: bottom right;
}
.section_two_wrap .bottom > div.slider_item5 > div {
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: url(../img/icon/slider_icon5.svg) no-repeat;
  background-position: bottom right;
}
.section_two_wrap .bottom > div.slider_item6 > div {
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: url(../img/icon/slider_icon6.svg) no-repeat;
  background-position: bottom right;
}
.section_two_wrap .bottom > div span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.section_three {
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
}
.section_three .swiper {
  padding-bottom: 20px;
}
.section_three_wrap {
  padding: 105px 0 200px;
}
.section_three_wrap .top {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.section_three_wrap .top_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 70px;
  gap: 20px;
}
.section_three_wrap .top_text > div, .section_three_wrap .top_text h3, .section_three_wrap .top_text p {
  opacity: 0;
}
.section_three_wrap .top_text > div {
  padding: 0 20px;
  height: 36px;
  line-height: 36px;
  background: #2CC8DD;
  border-radius: 8px;
  color: #FFFFFF;
  font-weight: 700;
}
.section_three_wrap .top_text h3 {
  font-size: 53px;
  animation-delay: 0.3s;
}
.section_three_wrap .top_text p {
  padding-top: 15px;
  font-size: 20px;
  animation-delay: 0.6s;
}
.section_three_wrap .top_img {
  width: 420px;
  height: 495px;
  background: url(../img/pc/phone.svg) no-repeat;
  opacity: 0;
}
.section_three_wrap .top_img > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 150px;
}
.section_three_wrap .top_img > div > div {
  width: 400px;
  height: 70px;
  padding-left: 30px;
  border: 1px solid #E4E8EE;
  background-color: #fff;
  box-shadow: 0px 3px 10px rgba(53, 65, 80, 0.25);
  border-radius: 4px;
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
}
.section_three_wrap .top_img > div > div:nth-of-type(1) {
  animation-delay: 1s;
}
.section_three_wrap .top_img > div > div:nth-of-type(2) {
  animation-delay: 1.2s;
}
.section_three_wrap .top_img > div > div:nth-of-type(3) {
  animation-delay: 1.4s;
}
.section_three_wrap .top_img > div > div span {
  font-size: 16px;
  font-weight: 700;
  color: #414D5C;
}
.section_three_wrap .bottom {
  margin: 80px 0 0 0;
  display: flex;
}
.section_three_wrap .bottom > div {
  padding: 30px;
  width: 200px;
  height: 200px;
  background: #FFFFFF;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section_three_wrap .bottom > div.slider_item1 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon1.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div.slider_item2 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon2.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div.slider_item3 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon3.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div.slider_item4 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon4.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div.slider_item5 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon5.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div.slider_item6 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon6.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div.slider_item7 > div {
  width: 45px;
  height: 45px;
  align-self: flex-end;
  background: url(../img/icon/slider2_icon7.svg) no-repeat;
  background-position: bottom right;
}
.section_three_wrap .bottom > div span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.blog {
  background-color: #F8F9FB;
  padding: 230px 0 120px;
}
.blog_wrap {
  width: 1200px;
  margin: 0 auto;
}
.blog_wrap h3 {
  font-size: 53px;
}
.blog_wrap h3 .swiper-pagination {
  display: none;
}
.blog_content {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.blog_content > a {
  width: 360px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-100%);
}
.blog_content > a:nth-of-type(1) {
  animation-delay: 0.5s;
}
.blog_content > a:nth-of-type(2) {
  animation-delay: 0.8s;
}
.blog_content > a:nth-of-type(3) {
  animation-delay: 1.1s;
}
.blog_content > a.price_ani.price_hover {
  animation-name: boxDown;
  animation-duration: 0.3s;
  opacity: 1;
  animation-delay: 0s;
}
.blog_content > a.price_ani.price_hover:hover {
  animation-name: boxUp;
  animation-duration: 0.3s;
}
.blog_content > a:hover h4 {
  text-decoration: underline;
}
.blog_content > a:hover {
  overflow: hidden;
  transform: translateY(-10px);
}
.blog_content > a:hover img {
  transform: scale(1.05);
}
.blog_content > a > div {
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}
.blog_content > a img {
  transition: all 0.3s;
  width: 100%;
  max-width: 100%;
}
.blog_content > a span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #7D8998;
  margin-top: 30px;
}
.blog_content > a h4 {
  font-size: 20px;
  margin-top: 20px;
  height: 50px;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 28px;
  height: 28px;
}
.blog_content > a p {
  font-size: 18px;
  color: #414D5C;
  margin-top: 10px;
  height: 66px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 25px;
  height: 50px;
}
.blog_btn {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.blog_btn a {
  padding: 0 35px;
  height: 46px;
  line-height: 46px;
  border: 1px solid #414D5C;
  color: #414D5C;
  border-radius: 100px;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
}
.blog_btn a:hover {
  border: 1px solid #2CC8DD;
  color: #2CC8DD;
}

.price {
  padding: 230px 0 0;
}
.price_wrap {
  width: 1200px;
  margin: 0 auto;
}
.price_wrap > h3 {
  font-size: 53px;
}
.price_content {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.price_content > div {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  width: 360px;
  height: 600px;
  padding-top: 45px;
  border: 1px solid #F8F9FB;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: #fff;
}
.price_content > div:nth-of-type(1) {
  animation-delay: 0.5s;
}
.price_content > div:nth-of-type(2) {
  animation-delay: 0.8s;
}
.price_content > div:nth-of-type(3) {
  animation-delay: 1.1s;
}
.price_content > div.price_ani.price_hover {
  animation-name: boxDown;
  animation-duration: 0.3s;
  opacity: 1;
  animation-delay: 0s;
}
.price_content > div.price_ani.price_hover:hover {
  animation-name: boxUp;
  animation-duration: 0.3s;
}
.price_content > div h3 {
  margin-top: 25px;
  padding: 0 40px;
  font-size: 70px;
  height: 90px;
}
.price_content > div h3 span {
  padding-left: 10px;
  font-size: 20px;
  font-weight: 400;
}
.price_content > div h4 {
  padding: 0 40px;
  font-size: 20px;
}
.price_content > div ul {
  border-top: 1px solid #E4E8EE;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.price_content > div ul > .name_box {
  padding: 0 25px;
  height: 36px;
  line-height: 36px;
  background: #F8F9FB;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #414D5C;
}
.price_content > div ul li:not(.name_box) {
  padding-left: 27px;
  background: url(../img/icon/check.svg) no-repeat;
}
.price_content .api_wrap {
  position: relative;
}
.price_content .api_wrap h3 {
  font-weight: 500;
  font-size: 52px;
  display: flex;
  align-items: center;
}
.price_content .api_wrap .api_comment {
  position: absolute;
  top: -25px;
  left: 25px;
  background: #0891B2;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  filter: drop-shadow(2px 6px 12px rgba(0, 0, 0, 0.12)) drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.12));
}
.price_content .api_wrap .api_comment::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  display: block;
  bottom: -6px;
  left: 12px;
  background-color: #0891B2;
  transform: rotate(45deg);
}

.banner {
  padding: 140px 0;
}
.banner_wrap {
  margin: 0 auto;
  width: 1200px;
  height: 250px;
  display: flex;
  justify-content: space-between;
  background-color: #F0F9FF;
  border-radius: 20px;
  padding: 60px 150px 60px 120px;
}
.banner_wrap_text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.banner_wrap_text h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 140%;
}
.banner_wrap_text p {
  font-weight: 400;
  font-size: 20px;
  color: #192534;
}
.banner_wrap_button {
  width: 230px;
  display: flex;
  align-items: center;
}
.banner_wrap_button button {
  width: 100%;
  height: 55px;
  background: #0891B2;
  border: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;
}
.banner_wrap_button button:hover {
  background: #2CC8DD;
}

@media all and (max-width: 1199px) {
  .slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 280px 20px 150px;
    gap: 30px;
  }
  .slider h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
  }
  .slider p {
    font-size: 18px;
    text-align: center;
  }
  .slider p .deco {
    position: relative;
  }
  .slider p .deco span {
    position: relative;
    z-index: 1;
  }
  .slider p .deco::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 12px;
    background-color: #74e4ff;
    display: block;
    opacity: 0.6;
    z-index: 0;
    animation-delay: 2s;
  }
  .slider p .deco.deco_ani::after {
    animation-name: deco;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }
}
@media all and (max-width: 1199px) and (max-width: 390px) {
  .slider h2 {
    font-size: 32px;
  }
  .slider p {
    font-size: 15px;
  }
}
@media all and (max-width: 1199px) {
  .slider .slider_img {
    transition: none;
    width: 100%;
    height: 390px;
    background: url(../img/pc/slider_img_full.png) center center no-repeat;
    background-size: cover;
    border-radius: 20px;
  }
}
@media all and (max-width: 1199px) and (max-width: 590px) {
  .slider .slider_img {
    background: url(../img/mobile/slider_img_m.png) center center no-repeat;
    background-size: contain;
  }
}
@media all and (max-width: 1199px) {
  .slider .slider_img.down {
    width: 100%;
    height: 390px;
  }
  .slider .slider_img.up {
    width: 100%;
  }
  .section_one {
    padding: 80px 20px 260px;
  }
  .section_one_wrap {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  .section_one_wrap > div {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 60px;
  }
  .section_one_wrap > div .img_box {
    position: relative;
    order: 1;
    width: 100%;
    max-width: 470px;
    align-self: center;
  }
  .section_one_wrap > div .img_box > div {
    opacity: 0;
  }
  .section_one_wrap > div .img_box img {
    width: 100%;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    border-radius: 22px;
    opacity: 0;
  }
  .section_one_wrap > div .img_box .first_icon_box {
    position: absolute;
    width: 30%;
    height: 42%;
    right: 0;
    bottom: 0;
    background: url(../img/pc/free.svg) no-repeat center center;
    background-size: 100%;
    border-radius: 50%;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  }
  .section_one_wrap > div .img_box .second_icon_box {
    position: absolute;
    width: 40%;
    height: 44%;
    left: 0;
    bottom: 0;
    background: url(../img/pc/complete.svg) no-repeat center;
    background-size: 100%;
    border-radius: 22px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  }
  .section_one_wrap > div .img_box.cfo {
    position: relative;
  }
  .section_one_wrap > div .img_box.cfo > img {
    width: 70%;
  }
  .section_one_wrap > div .img_box.cfo .third_icon_box {
    position: absolute;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  }
  .section_one_wrap > div .img_box.cfo .third_icon_box:nth-of-type(1) {
    left: 40%;
    top: 10%;
    width: 50%;
    height: 16%;
    background: url(../img/pc/cfo_img_first.svg) no-repeat;
    background-size: 100%;
    border-radius: 12px;
  }
  .section_one_wrap > div .img_box.cfo .third_icon_box:nth-of-type(2) {
    left: 50%;
    top: 30%;
    width: 50%;
    height: 22%;
    background: url(../img/pc/cfo_img_second.svg) no-repeat;
    background-size: 100%;
    border-radius: 12px;
  }
  .section_one_wrap > div .img_box.cfo .third_icon_box:nth-of-type(3) {
    left: 40%;
    bottom: 10%;
    width: 60%;
    height: 32%;
    background: url(../img/pc/cfo_img_third.svg) no-repeat;
    background-size: 100%;
    border-radius: 12px;
  }
  .section_one_wrap > div .text_box {
    order: 0;
    width: 445px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
  }
  .section_one_wrap > div .text_box .gray_box {
    padding: 0 20px;
    height: 33px;
    line-height: 33px;
    background: #EEF1F6;
    border-radius: 8px;
    color: #414D5C;
    font-weight: 700;
    font-size: 13px;
    margin: 0px 0 13px;
  }
  .section_one_wrap > div .text_box h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    line-height: 140%;
  }
  .section_one_wrap > div .text_box p {
    font-size: 15px;
    line-height: 200%;
    letter-spacing: -0.05em;
  }
  .section_one_wrap > div .text_box a {
    margin-top: 50px;
    color: #0891B2;
    font-weight: 500;
    font-size: 15px;
  }
  .section_one_wrap > div:nth-of-type(1) .text_box {
    padding-top: 0px;
  }
  @keyframes text {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes tax {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes price {
    0% {
      opacity: 0;
      transform: translateY(20%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes deco {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .tax_ani {
    animation-name: tax;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  .text_ani {
    animation-name: text;
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  .price_ani {
    animation-name: price;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  .section_two {
    width: 100%;
    background-color: #F8F9FB;
  }
  .section_two .swiper {
    padding-bottom: 20px;
  }
  .section_two_wrap {
    padding: 80px 0px 110px;
  }
  .section_two_wrap .top {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    justify-content: space-between;
  }
  .section_two_wrap .top_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section_two_wrap .top_text > div, .section_two_wrap .top_text h3, .section_two_wrap .top_text p {
    opacity: 0;
  }
  .section_two_wrap .top_text > div {
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    background: #2CC8DD;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
  }
  .section_two_wrap .top_text h3 {
    font-size: 24px;
    animation-delay: 0.3s;
  }
  .section_two_wrap .top_text p {
    padding-top: 15px;
    font-size: 15px;
    animation-delay: 0.6s;
  }
  .section_two_wrap .top_img {
    max-width: 570px;
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation-delay: 0.5s;
    opacity: 0;
  }
  .section_two_wrap .top_img > img {
    width: 76%;
    border-radius: 22px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.25);
  }
  .section_two_wrap .top_img .hometax {
    position: absolute;
    width: 20%;
    top: -10%;
    right: 4%;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .section_two_wrap .top_img .hometax > img {
    width: 100%;
  }
  .section_two_wrap .top_img .tax_img {
    width: 50%;
    position: absolute;
    top: 22%;
    left: 0;
    opacity: 0;
    animation-delay: 0.8s;
  }
  .section_two_wrap .top_img .tax_img > img {
    width: 100%;
  }
  .section_two_wrap .top_img .shadow_img {
    width: 50%;
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
    top: 6%;
  }
  .section_two_wrap .top_img .shadow_img > img {
    width: 100%;
  }
  .section_two_wrap .bottom {
    margin-top: 60px;
  }
  .section_two_wrap .bottom > div {
    padding: 30px 14px 12px;
    width: 150px;
    height: 150px;
    background: #FFFFFF;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section_two_wrap .bottom > div.slider_item1 > div {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    background: url(../img/icon/slider_icon1.svg) no-repeat;
    background-position: bottom right;
  }
  .section_two_wrap .bottom > div.slider_item2 > div {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    background: url(../img/icon/slider_icon2.svg) no-repeat;
    background-position: bottom right;
  }
  .section_two_wrap .bottom > div.slider_item3 > div {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    background: url(../img/icon/slider_icon3.svg) no-repeat;
    background-position: bottom right;
  }
  .section_two_wrap .bottom > div.slider_item4 > div {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    background: url(../img/icon/slider_icon4.svg) no-repeat;
    background-position: bottom right;
  }
  .section_two_wrap .bottom > div.slider_item5 > div {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    background: url(../img/icon/slider_icon5.svg) no-repeat;
    background-position: bottom right;
  }
  .section_two_wrap .bottom > div.slider_item6 > div {
    width: 40px;
    height: 40px;
    align-self: flex-end;
    background: url(../img/icon/slider_icon6.svg) no-repeat;
    background-position: bottom right;
  }
  .section_two_wrap .bottom > div span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.05em;
  }
  .swiper-wrapper {
    transition-timing-function: linear;
  }
  .section_three {
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
  }
  .section_three .swiper {
    padding-bottom: 20px;
  }
  .section_three_wrap {
    padding: 80px 0 110px;
  }
  .section_three_wrap .top {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
  }
  .section_three_wrap .top_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 70px;
    gap: 20px;
  }
  .section_three_wrap .top_text > div, .section_three_wrap .top_text h3, .section_three_wrap .top_text p {
    opacity: 0;
  }
  .section_three_wrap .top_text > div {
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    background: #2CC8DD;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 13px;
  }
  .section_three_wrap .top_text h3 {
    font-size: 24px;
    animation-delay: 0.3s;
  }
  .section_three_wrap .top_text p {
    padding-top: 15px;
    font-size: 15px;
    animation-delay: 0.6s;
    line-height: 150%;
  }
  .section_three_wrap .top_img {
    width: 330px;
    height: 390px;
    background: url(../img/pc/phone.svg) no-repeat;
    background-size: 100%;
    opacity: 0;
    align-self: center;
  }
  .section_three_wrap .top_img > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 120px;
  }
  .section_three_wrap .top_img > div > div {
    width: 100%;
    height: 60px;
    padding-left: 20px;
    border: 1px solid #E4E8EE;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(53, 65, 80, 0.25);
    border-radius: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0;
  }
  .section_three_wrap .top_img > div > div > img {
    width: 25px;
  }
  .section_three_wrap .top_img > div > div:nth-of-type(1) {
    animation-delay: 1s;
  }
  .section_three_wrap .top_img > div > div:nth-of-type(2) {
    animation-delay: 1.2s;
  }
  .section_three_wrap .top_img > div > div:nth-of-type(3) {
    animation-delay: 1.4s;
  }
  .section_three_wrap .top_img > div > div span {
    font-size: 14px;
    font-weight: 700;
    color: #414D5C;
  }
  .section_three_wrap .bottom {
    margin: 60px 0 0 0;
    display: flex;
  }
  .section_three_wrap .bottom > div {
    padding: 30px 15px 12px;
    width: 150px;
    height: 150px;
    background: #FFFFFF;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section_three_wrap .bottom > div.slider_item1 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon1.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div.slider_item2 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon2.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div.slider_item3 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon3.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div.slider_item4 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon4.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div.slider_item5 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon5.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div.slider_item6 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon6.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div.slider_item7 > div {
    width: 45px;
    height: 45px;
    align-self: flex-end;
    background: url(../img/icon/slider2_icon7.svg) no-repeat;
    background-position: bottom right;
  }
  .section_three_wrap .bottom > div span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.05em;
  }
  .blog {
    background-color: #F8F9FB;
    padding: 80px 20px;
  }
  .blog .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
  }
  .blog .swiper-pagination-bullet-active {
    width: 22px;
    height: 8px;
    background: #0891B2;
    border-radius: 4px;
  }
  .blog_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .blog_wrap h3 {
    font-size: 24px;
    position: relative;
  }
  .blog_wrap h3 .swiper-pagination {
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .blog_content {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
  }
  .blog_content > a {
    width: 30%;
    animation-delay: 0s !important;
    display: flex;
    flex-direction: column;
  }
  .blog_content > a .blog_img {
    width: 100%;
  }
  .blog_content > a span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #7D8998;
    margin-top: 30px;
  }
  .blog_content > a h4 {
    font-size: 18px;
    margin-top: 20px;
    height: auto;
    max-height: 50px;
  }
  .blog_content > a img {
    width: 100%;
  }
  .blog_content > a p {
    font-size: 15px;
    color: #414D5C;
    margin-top: 10px;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 21px;
    height: 42px;
  }
  .blog_btn {
    display: flex;
    justify-content: center;
    margin-top: 70px;
  }
  .blog_btn button {
    padding: 0 35px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #414D5C;
    color: #414D5C;
    border-radius: 100px;
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
  }
  .blog_btn button:hover {
    border: 1px solid #2CC8DD;
    color: #2CC8DD;
  }
}
@media all and (max-width: 1199px) {
  .price {
    padding: 80px 20px;
  }
  .price_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .price_wrap > h3 {
    font-size: 24px;
  }
  .price_content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
@media all and (max-width: 1199px) and (max-width: 1024px) {
  .price_content {
    flex-direction: column;
  }
}
@media all and (max-width: 1199px) {
  .price_content > div {
    opacity: 0;
    width: 31%;
    padding-top: 45px;
    border: 1px solid #F8F9FB;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background-color: #fff;
  }
  .price_content > div:nth-of-type(1) {
    animation-delay: 0.5s;
  }
  .price_content > div:nth-of-type(2) {
    animation-delay: 0.8s;
  }
  .price_content > div:nth-of-type(3) {
    animation-delay: 1.1s;
  }
}
@media all and (max-width: 1199px) and (max-width: 1024px) {
  .price_content > div {
    width: 100%;
    max-width: 400px;
    height: 540px;
    align-self: center;
    animation-delay: 0.6s;
  }
  .price_content > div:nth-of-type(2) {
    animation-delay: 0.6s;
  }
  .price_content > div:nth-of-type(3) {
    animation-delay: 0.6s;
  }
}
@media all and (max-width: 1199px) {
  .price_content > div h3 {
    margin-top: 25px;
    padding: 0 40px;
    font-size: 70px;
    height: 90px;
  }
  .price_content > div h3 span {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 400;
  }
  .price_content > div h4 {
    padding: 0 40px;
    font-size: 18px;
  }
  .price_content > div ul {
    border-top: 1px solid #E4E8EE;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .price_content > div ul > .name_box {
    padding: 0 25px;
    height: 34px;
    line-height: 34px;
    background: #F8F9FB;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #414D5C;
  }
  .price_content > div ul li:not(.name_box) {
    padding-left: 27px;
    background: url(../img/icon/check.svg) no-repeat;
    font-size: 15px;
  }
  .price_content .api_wrap {
    position: relative;
  }
  .price_content .api_wrap h3 {
    font-weight: 500;
    font-size: 52px;
    display: flex;
    align-items: center;
  }
  .price_content .api_wrap .api_comment {
    position: absolute;
    top: -17.5px;
    left: 25px;
    background: #0891B2;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    filter: drop-shadow(2px 6px 12px rgba(0, 0, 0, 0.12)) drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.12));
  }
  .price_content .api_wrap .api_comment::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    display: block;
    bottom: -6px;
    left: 12px;
    background-color: #0891B2;
    transform: rotate(45deg);
  }
  .banner {
    padding: 0px 20px 110px;
  }
  .banner_wrap {
    margin: 0 auto;
    width: 100%;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #F0F9FF;
    border-radius: 20px;
    padding: 60px 20px 40px;
  }
  .banner_wrap_text {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .banner_wrap_text h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
  }
  .banner_wrap_text p {
    font-weight: 400;
    font-size: 15px;
    color: #192534;
    text-align: center;
  }
}
@media all and (max-width: 1199px) and (max-width: 390px) {
  .banner_wrap_text h3 {
    font-size: 16px;
  }
  .banner_wrap_text p {
    font-size: 13px;
  }
}
@media all and (max-width: 1199px) {
  .banner_wrap_button {
    width: auto;
    display: flex;
    align-items: center;
  }
  .banner_wrap_button button {
    width: 100%;
    padding: 0 35px;
    height: 45px;
    background: #0891B2;
    border: none;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
  }
  .banner_wrap_button button:hover {
    background: #2CC8DD;
  }
}
@media all and (max-width: 1199px) and (max-width: 390px) {
  .banner_wrap_button button {
    font-size: 13px;
  }
}
@media all and (max-width: 767px) {
  .blog {
    background-color: #F8F9FB;
    padding: 80px 20px;
  }
  .blog .swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
  }
  .blog .swiper-pagination-bullet-active {
    width: 22px;
    height: 8px;
    background: #0891B2;
    border-radius: 4px;
  }
  .blog_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .blog_wrap h3 {
    font-size: 24px;
    position: relative;
  }
  .blog_wrap h3 .swiper-pagination {
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .blog_content {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
  }
  .blog_content > a {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .blog_content > a span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #7D8998;
    margin-top: 30px;
  }
  .blog_content > a h4 {
    font-size: 18px;
    margin-top: 20px;
  }
  .blog_content > a .blog_img {
    width: 80%;
  }
}
@media all and (max-width: 767px) and (max-width: 520px) {
  .blog_content > a .blog_img {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .blog_content > a img {
    width: 100%;
    align-self: center;
  }
  .blog_content > a p {
    font-size: 15px;
    color: #414D5C;
    margin-top: 10px;
  }
  .blog_btn {
    display: flex;
    justify-content: center;
    margin-top: 70px;
  }
  .blog_btn button {
    padding: 0 35px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #414D5C;
    color: #414D5C;
    border-radius: 100px;
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
  }
  .blog_btn button:hover {
    border: 1px solid #2CC8DD;
    color: #2CC8DD;
  }
  .price {
    padding: 80px 20px;
  }
  .price_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .price_wrap > h3 {
    font-size: 24px;
  }
  .price_content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
  }
  .price_content > div {
    opacity: 0;
    width: 100%;
    padding-top: 45px;
    border: 1px solid #F8F9FB;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background-color: #fff;
  }
  .price_content > div:nth-of-type(1) {
    animation-delay: 0.5s;
  }
  .price_content > div:nth-of-type(2) {
    animation-delay: 0.5s;
  }
  .price_content > div:nth-of-type(3) {
    margin-top: 40px;
    animation-delay: 0.5s;
  }
}
@media all and (max-width: 767px) and (max-width: 520px) {
  .price_content > div {
    height: 540px;
  }
}
@media all and (max-width: 767px) {
  .price_content > div h3 {
    margin-top: 25px;
    padding: 0 40px;
    font-size: 70px;
    height: 90px;
  }
  .price_content > div h3 span {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 400;
  }
  .price_content > div h4 {
    padding: 0 40px;
    font-size: 18px;
  }
  .price_content > div ul {
    border-top: 1px solid #E4E8EE;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .price_content > div ul > .name_box {
    padding: 0 25px;
    height: 34px;
    line-height: 34px;
    background: #F8F9FB;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #414D5C;
  }
  .price_content > div ul li:not(.name_box) {
    padding-left: 27px;
    background: url(../img/icon/check.svg) no-repeat;
    font-size: 15px;
  }
  .price_content .api_wrap {
    position: relative;
  }
  .price_content .api_wrap h3 {
    font-weight: 500;
    font-size: 52px;
    display: flex;
    align-items: center;
  }
  .price_content .api_wrap .api_comment {
    position: absolute;
    top: -17.5px;
    left: 25px;
    background: #0891B2;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    filter: drop-shadow(2px 6px 12px rgba(0, 0, 0, 0.12)) drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.12));
  }
  .price_content .api_wrap .api_comment::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    display: block;
    bottom: -6px;
    left: 12px;
    background-color: #0891B2;
    transform: rotate(45deg);
  }
}
.pc-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
}

.mobile-br {
  display: none;
}

@media screen and (max-width: 1260px) {
  .pc-hidden {
    display: block;
  }
  .mobile-hidden {
    display: none;
  }
}
.header-popup {
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #192534;
  position: absolute;
  top: 0;
  left: 0;
  gap: 25px;
  transition: all ease 0.3s;
}
.header-popup * {
  color: #fff;
  font-family: "Pretendard";
}

@keyframes headerTop {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
}
@keyframes headerbot {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 4.375rem;
  }
}
@keyframes headerbotMobile {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 130px;
  }
}
.on .header-popup {
  animation: headerTop 0.5s both;
}

.off .header-popup {
  animation: headerbot 0.5s both;
}
@media screen and (max-width: 1260px) {
  .off .header-popup {
    animation: headerbotMobile 0.5s both;
  }
}

.header-popup .header-popup-text {
  font-size: 20px;
  font-weight: 600;
  color: #74e4ff;
}

.header-popup .header-popup-btn-box {
  display: flex;
  gap: 15px;
}

.header-popup a {
  color: #fff;
  border: 2px solid #fff;
  padding: 0 25px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  gap: 3px;
}

@media screen and (max-width: 1259px) {
  .header-popup {
    background-color: #192534;
    height: 130px;
    flex-direction: column;
    text-align: center;
    gap: 11px;
  }
  .mobile-br {
    display: block;
  }
  .header-popup-text {
    color: #0f1b2a;
    font-size: 18px;
    line-height: 1.3;
  }
  .header-popup a {
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    /* font-weight: 600; */
    height: 36px;
    padding: 0 15px;
  }
  .header.hide {
    top: -130px;
  }
}