@font-face {
  font-family: "Aggravo";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff")
    format("woff");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Ria";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2410-1@1.0/RiaSans-ExtraBold.woff2")
    format("woff2");
  font-weight: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style-type: none;
}

html,
body {
  height: auto;
  font-family: "Pretendard", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

:root {
  --main-color: #50ffcd;
}

.simple {
  font-family: "Aggravo", sans-serif;
  font-weight: 700;
}

.pretendard {
  font-family: "Pretendard", sans-serif;
}

.ria {
  font-family: "Ria", sans-serif;
}

/* header 소스 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 0.5px solid #fff;
}

header.fixed {
  border-bottom: none;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.header {
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.header-menu {
  display: flex;
}

.header-menu a {
  display: inline-block;
  padding: 5px 45px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-menu a:last-child {
  padding: 5px 0 5px 45px;
}

.header-menu a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 14, 14, 0.85);
  color: #fff;
  z-index: 99;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 0.5px solid #fff;
}
.menu-close {
  background: none;
  border: none;
  cursor: pointer;
}
.menu-close img {
  width: auto !important;
  vertical-align: middle;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
}
.mobile-menu-list a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  transform: translateX(15px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-menu.active .mobile-menu-list a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active .mobile-menu-list a:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu-list a:nth-child(2) {
  transition-delay: 0.18s;
}
.mobile-menu.active .mobile-menu-list a:nth-child(3) {
  transition-delay: 0.26s;
}
.mobile-menu.active .mobile-menu-list a:nth-child(4) {
  transition-delay: 0.34s;
}

.mobile-menu-footer {
  padding: 20px 0;
  font-size: 14px;
  margin-top: auto;
}
.mobile-menu-footer p {
  display: block;
  padding: 0 20px 20px;
  margin-bottom: 20px;
  font-size: 24px;
  border-bottom: 0.5px solid #fff;
}
.mobile-menu-footer small {
  padding: 0 20px;
  font-size: 14px;
  color: #f0f0f0;
}

#wrap {
  position: relative;
}

main {
  background: #212529;
}

/* footer */
footer {
  position: relative;
  background-color: #242424;
  color: #fff;
  padding: 66px 0 176px;
}

.footer {
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ft-wrap {
  display: grid;
  grid-template-columns: 325px 2fr 1fr;
  width: 100%;
  align-items: start;
}
.ft-logo {
  width: auto;
  display: block;
}

.ft-info {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.ft-info .company,
.ft-info .address {
  margin-bottom: 15px;
}

.ft-info .company {
  margin-bottom: 35px;
}

.ft-info .address {
  margin-bottom: 42px;
}

.ft-info strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ft-info .address .address-flex {
  display: flex;
  gap: 60px;
}

.ft-info .addr-title {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.ft-copy {
  font-size: 16px;
  color: #f0f0f0;
}

.ft-right {
  justify-self: end;
}

.ft-right strong {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.ft-right .email {
  margin-bottom: 15px;
}

.ft-right .email span {
  font-weight: 300;
}

.ft-right .tel .big {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
}

.kakao-link {
  margin-top: 13px;
  text-align: center;
}

.kakao-link .desc {
  font-size: 12px;
  color: #fff;
  opacity: 0.75;
}

.kakao-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.btn-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 10px 24px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  flex-direction: column;
}

/* bottom-container */
.bottom-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #131313;
  padding: 30px 0;
  z-index: 1000;
  transition: bottom 0.5s ease-in-out;
}

.bottom-container.hidden {
  transform: translateY(100%);
}

.bottom-content {
  position: relative;
  max-width: 1780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bottom-call {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.bottom-form {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.bottom-form .form-row {
  display: flex;
  gap: 10px;
  flex: 1;
}

.bottom-form input[type="text"] {
  flex: 1;
  padding: 15px 20px;
  background: #181818;
  border: 1px solid #181818;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.bottom-form input::placeholder {
  color: #fff;
  opacity: 0.2;
}

.bottom-form .agree {
  font-size: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bottom-form .agree label {
  display: flex;
  align-items: center;
  gap: 3px;
}

.bottom-form .agree a {
  color: #fff;
  margin-left: 4px;
}

.btn-submit2 {
  background: var(--main-color);
  border: none;
  padding: 13px 45px;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  margin-left: 34px;
  font-size: 16px;
  display: flex;
  align-items: flex-end;
}

.btn-submit2 .arrow {
  margin-left: 6px;
  font-size: 20px;
}

.bottom-toggle-button {
  position: absolute;
  top: -35px;
  left: 0;
  background-color: #131313;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  text-align: center;
  z-index: 1000;
  width: 50px;
}

.bottom-kakao {
  position: absolute;
  top: -120px;
  right: 0;
}

.bottom-kakao .btn-kakao {
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.icon {
  width: 45px;
  height: 45px;
  display: none;
}

.icon.visible {
  display: inline-block;
}

.icon.hidden {
  display: none;
}

.display-pc {
  display: block;
}

.display-m {
  display: none;
}

.menu-pc {
}

.menu-m {
  display: none;
}

@media (max-width: 1780px) {
  .header {
    padding: 20px;
  }

  .header-menu a {
    padding: 5px 30px;
  }

  .header-menu a:last-child {
    padding: 5px 0 5px 30px;
  }

  footer {
    padding: 80px 20px 250px;
  }

  .bottom-container {
    padding: 25px;
  }

  .bottom-content {
    gap: 20px;
  }

  .bottom-form button {
    padding: 10px 50px;
  }

  section > div {
    padding: 0 20px;
  }
}

@media (max-width: 1260px) {
  .ft-wrap {
    grid-template-columns: 280px 2fr 1fr;
  }

  .bottom-content {
    flex-direction: column;
    align-items: normal;
  }
}

@media (max-width: 1024px) {
  .menu-pc {
    display: none;
  }

  .menu-m {
    display: flex;
  }

  .ft-wrap {
    grid-template-columns: 150px 2fr 1fr;
  }

  .ft-logo img {
    width: 110px;
  }

  .bottom-form {
    flex-direction: column;
    align-items: normal;
  }

  .bottom-form button {
    align-self: center;
    margin-top: 0;
    font-size: 20px;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .display-pc {
    display: none;
  }

  .display-m {
    display: block;
  }

  .header-menu {
    gap: 10px;
  }

  .header-menu a {
    font-size: 10px;
  }

  footer {
    padding: 60px 20px;
  }

  .header-logo img,
  .mobile-menu-header img {
    width: 85px;
  }

  .bottom-content {
    gap: 15px;
  }

  .bottom-container {
    padding: 20px;
  }

  .ft-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ft-info {
    font-size: 13px;
  }

  .ft-info strong {
    margin-bottom: 5px;
  }

  .ft-right {
    display: flex;
    justify-self: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .ft-info .address {
    margin-bottom: 0;
  }

  .ft-info .address .address-flex {
    gap: 10px;
    flex-direction: column;
  }

  .ft-right strong {
    font-size: 14px;
  }

  .ft-right .tel .big {
    font-size: 26px;
  }

  .kakao-link {
    margin-top: 27px;
  }

  .ft-copy {
    font-size: 14px;
    margin-top: 25px;
  }

  .bottom-content {
    align-items: flex-start;
  }

  .bottom-call {
    font-size: 22px;
  }

  .bottom-form {
    width: 100%;
    position: relative;
    gap: 15px;
  }

  .bottom-form .form-row {
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 10px 13px;
  }

  .bottom-form input[type="text"] {
    width: 48%;
    flex: none;
    font-size: 12px;
    padding: 12px 20px;
  }

  .bottom-form input[type="text"].w-wr_2 {
    width: 100%;
  }

  .checkbox_fixed {
    font-size: 10px;
  }

  .bottom-form button {
    position: absolute;
    right: 0;
    font-size: 16px;
    padding: 10px 20px;
  }

  .bottom-kakao {
    top: -90px;
  }

  .bottom-kakao .btn-kakao {
    font-size: 10px;
    text-align: left;
    padding: 5px;
  }
}
