/* 전체 적용 소스 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--font-color-base);
}

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

html,
body {
  height: 100%;
  font-family: "Pretendard", sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

#wrap {
  background-color: #0e0e0e;
  position: relative;
  width: 100%;
  height: 100%;
}

/* header 소스 */
header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 1000;
}

.header {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  vertical-align: middle;
}

.header-btn a {
  line-height: 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

.header-btn .inquiry-btn {
  padding: 0 25px;
  background: #fff;
  color: #000;
}

.header-btn .kakao-btn {
  padding: 0 25px;
  margin-right: 10px;
  background: #232323;
  color: #fff;
}

/* Mainbanner 소스 */
.main_banner {
  width: 100%;
  height: 100vh;
  background-color: #0e0e0e;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.main_banner-image {
  position: relative;
}

.consulting {
  text-align: left;
  position: absolute;
  bottom: 12%;
  right: 7%;
  color: #fff;
}

.consulting img {
  margin-bottom: 20px;
}

.consulting p {
  font-size: 16px;
  margin-bottom: 15px;
}

.consulting-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.consulting-buttons .btn {
  background: rgb(37, 37, 37, 0.5);
  color: #fff;
  border: 1px solid rgb(255, 255, 255, 0.1);
  padding: 8px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 8px;
}

.consulting-buttons .btn:hover {
  background: #fff;
  color: #000;
}

.consulting .warning {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.ribbon-text-wrapper {
  position: absolute;
  top: 61%;
  left: 22%;
  width: 45%;
  overflow: hidden;
  transform: rotate(-30deg) skewX(-30deg);
  z-index: 2;
  pointer-events: none;
  transform-origin: left center;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(102, 102, 102, 0) 0%,
    /* 들어갈 때 */ rgba(255, 255, 255, 1) 10%,
    /* 들어갈 때 끝 */ rgba(255, 255, 255, 1) 90%,
    /* 나올 때 시작 */ rgba(102, 102, 102, 0) 100% /* 나올 때 끝 */
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(
    to right,
    rgba(102, 102, 102, 0) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 1) 90%,
    rgba(102, 102, 102, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.ribbon-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  padding-left: 100%;
  animation: scroll-ribbon 15s linear infinite;
  transform: skewX(20deg);
}

@keyframes scroll-ribbon {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* section 공용소스 */
section {
  position: relative;
  background-color: #0e0e0e;
}

/* partner 소스 */
.partner {
  background: #0e0e0e;
  padding: 100px 0;
  text-align: center;
}

.company-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-container p {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}

.partner-swiper {
  padding: 10px 0;
}

.partner-swiper .swiper-wrapper {
  align-items: center;
}

.partner-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-swiper .swiper-slide img {
  width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s, opacity 0.3s;
}

.partner-swiper .swiper-slide img:hover {
  transform: scale(1.05);
}

/* section1 소스 */
.section1 {
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background-image: url(/ado/images/section1_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
}

.section1-header h2 {
  font-size: 32px;
  line-height: 43px;
  font-weight: normal;
  margin-bottom: 25px;
}

.section1-header p {
  font-size: 16px;
  margin-bottom: 50px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 15px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.grid-item {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  font-weight: bold;
  position: relative;
  align-items: center;
}

.item-content {
  position: relative;
}

.item-text {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translateY(-50%);
  color: #2d2d2d;
}

.item-text.text_p {
  left: 42%;
}

.item-text.text_w {
  color: #fff;
}

.item-text p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.item-text h3 {
  font-size: 30px;
  font-weight: bold;
}

.box-text {
  margin-top: -5px;
  width: 100%;
  border-radius: 30px;
  color: #2d2d2d;
  font-size: 20px;
  line-height: 32px;
  font-weight: normal;
  padding: 20px;
}

.box-text.text_w {
  color: #fff;
}

/* 개별 배경색 스타일 */
.pink {
  background: #fec0c1;
}
.blue {
  background: #469bff;
}
.green {
  background: #65e996;
}
.turquoise {
  background: #25c3ce;
}
.yellow {
  background: #fec629;
}
.purple {
  background: #6c65e9;
}

/* section2 소스 */
.section2 {
  color: #fff;
  text-align: center;
  padding: 120px 0;
}

.section2-header h2 {
  font-size: 32px;
  line-height: 43px;
  font-weight: normal;
  margin-bottom: 25px;
}

.section2-header p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 100px;
}

.section2-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

/* section3 소스 */
.section3 {
  text-align: center;
  padding: 120px 0;
}

.section3-container video {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

/* section4 소스 */
.section4 {
  color: #fff;
  text-align: center;
  padding: 120px 0;
}

.section4-header h2 {
  font-size: 32px;
  line-height: 43px;
  font-weight: normal;
  margin-bottom: 120px;
}

.section4-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.naver_box {
  background-image: url(/ado/images/section4_img01_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: 35px 37px;
  margin-bottom: 120px;
}

.instagam_box {
  background-image: url(/ado/images/section4_img02_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: 35px 37px;
  margin-bottom: 120px;
}

.website_box {
  background-image: url(/ado/images/section4_img03_bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  padding: 35px 37px;
  margin-bottom: 60px;
}

.section4-title {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.section4-title h2 {
  font-size: 56px;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
}

.section4-title p {
  font-size: 16px;
  text-align: left;
}

.section4-subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.section4-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.image-box {
  padding: 20px;
  border-radius: 32px;
}

.naver_box .image-box {
  background-color: #65e996;
}

.instagam_box .image-box {
  background: linear-gradient(90deg, #cd4484 0%, #ed5d5e 38%, #f2b345 100%);
}

.website_box .image-box {
  background-color: #469bff;
}

.instagam_box .ad-box,
.website_box .ad-box {
  color: #fff;
}

.text-box {
  position: relative;
  display: flex;
  flex-direction: column;
}

.text-ad {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
}

.ad-box {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  color: #2d2d2d;
  flex-direction: column;
  text-align: left;
}

.first-ad {
  padding-left: 40px;
}

.ad-box .icon {
  margin-bottom: 20px;
}

.ad-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.ad-box p {
  font-size: 16px;
  line-height: 23px;
}

.section4-btn a {
  line-height: 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}

.section4-btn .inquiry-btn {
  padding: 0 25px;
  background: #fff;
  color: #000;
}

/* section5 소스 */
.section5 {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section5-header {
  margin-bottom: 30px;
}

.section5-header h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.section5-header p {
  font-size: 16px;
  color: #fff;
}

.team-slider {
  position: relative;
  max-width: 1440px;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-card {
  position: absolute;
  width: 280px;
  height: 360px;
  background: white;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.5;
}

.team-card.active {
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

.team-card img {
  width: 100%;
  border-radius: 10px;
}

/* section6 소스 */
.section6 {
  padding: 120px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section6_bg {
  position: relative;
  inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.section6-container {
  max-width: 1440px;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
}

.section6-inner {
  position: absolute;
  top: 0;
  left: 12%;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  color: white;
}

.section6-content h2 {
  text-align: left;
  font-size: 64px;
  line-height: 74px;
  margin-bottom: 30px;
  font-weight: 500;
}

.section6-content h2 strong {
  font-weight: 700;
}

.section6-content .buttons {
  display: flex;
  gap: 10px;
}

.buttons .kakao-btn,
.buttons .inquiry-btn {
  padding: 10px 25px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.buttons .kakao-btn {
  background-color: #232323;
  color: #fff;
}

.buttons .inquiry-btn {
  background-color: #fff;
  color: #0e0e0e;
}

.section6-top-wrapper {
  position: absolute;
  top: 50%;
  right: -3%;
  width: 35%;
  overflow: hidden;
  transform: rotate(-30deg) skewX(-30deg);
  z-index: 2;
  pointer-events: none;
  transform-origin: left center;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(102, 102, 102, 0) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 1) 90%,
    rgba(102, 102, 102, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(
    to right,
    rgba(102, 102, 102, 0) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 1) 90%,
    rgba(102, 102, 102, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.section6-bottom-wrapper {
  position: absolute;
  top: 65%;
  right: -3%;
  width: 35%;
  overflow: hidden;
  transform: rotate(35deg) skewX(30deg);
  z-index: 2;
  pointer-events: none;
  transform-origin: left center;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(102, 102, 102, 0) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 1) 90%,
    rgba(102, 102, 102, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(
    to right,
    rgba(102, 102, 102, 0) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 1) 90%,
    rgba(102, 102, 102, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.section6-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 45px;
  font-weight: 700;
  opacity: 0; /* 기본은 숨김 */
}

.top-animation {
  animation: topScroll 15s linear infinite;
  transform: skewX(20deg);
  color: #fff;
  padding-left: 100%;
}

.bottom-animation {
  animation: bottomScroll 15s linear infinite;
  transform: skewX(-20deg);
  color: #000;
}

/* section7 소스 */
.section7 {
  padding: 190px 0 80px;
  position: relative;
  overflow: hidden;
}

.section7-bg {
  position: absolute;
  max-width: 1440px;
  width: 100%;
  height: auto;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.section7-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section7-container {
  position: relative;
  z-index: 1;
}

.section7-header {
  margin-bottom: 50px;
  text-align: center;
}

.section7-header h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.section7-header p {
  font-size: 16px;
  color: #fff;
}

.contact-form {
  max-width: 850px;
  color: #fff;
  font-size: 14px;
  background: #232323;
  margin: 50px auto 0;
  padding: 60px;
}

.contact-form .explain {
  margin-bottom: 30px;
}

.contact-form .explain .require {
  display: inline-block;
  font-size: 17px;
  padding-left: 16px;
}

.contact-form .require {
  position: relative;
}

.contact-form .explain .require::after {
  right: auto;
}

.contact-form .require::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #65e996;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  margin-bottom: 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  background-color: black;
  border: 1px solid #999;
  color: #fff;
  border-radius: 5px;
}

.form-group input {
  height: 45px;
}

.form-group textarea {
  resize: none;
}

.privacy-text {
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 0 10px;
  margin: 10px 0 15px;
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
  height: 150px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.privacy-content {
  white-space: pre-line;
  word-break: keep-all;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: #fff;
}

.checkbox-line label {
  margin-bottom: 0;
  padding-left: 0;
}

.checkbox-line input[type="checkbox"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}

.checkbox-line input[type="checkbox"]:checked {
  background-color: #fff;
}

.checkbox-line input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: black;
  border-radius: 50%;
}

.form-submit {
  text-align: center;
}

.form-submit button {
  cursor: pointer;
  line-height: 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  padding: 0 25px;
  background: #fff;
  color: #000;
}

@keyframes topScroll {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-100%);
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

@keyframes bottomScroll {
  0%,
  49.99% {
    opacity: 0;
  }
  50% {
    transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 1;
  }
}

/* footer 소스 */
footer {
  background-color: #111;
  padding: 50px 100px 200px;
  text-align: center;
}

footer img {
  margin-bottom: 40px;
}

footer p {
  padding-top: 30px;
  border-top: 1px solid rgb(255, 255, 255, 0.5);
  color: #ffffff;
  opacity: 0.7;
  font-size: 16px;
}

.footer-top {
  position: fixed;
  bottom: 0;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70px;
  height: 70px;
  background-color: #232323;
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
}

.top-button img {
  width: 35px;
  margin-bottom: 5px;
}

/* 고정된 문의하기 폼 */
.bottom-contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  background: #232323;
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

.bottom-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(90deg, #65e996, #469bff, #65e996);
  background-size: 200% auto;
  animation: border-flow 2s linear infinite;

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.bottom-content {
  flex: 1;
  position: relative;
  width: 100%;
}

.bottom-content .main_logo {
  margin-bottom: 15px;
}

.bottom-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.bottom-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 15px;
  border-radius: 30px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.bottom-form input::placeholder {
  color: #888;
}

.submit-btn2 {
  flex: 1;
  min-width: 0;
  border-radius: 30px;
  border: none;
  background: #fff;
  color: black;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.bottom-form .agree {
  position: absolute;
  top: 13%;
  left: 10%;
}

.bottom-form .agree label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

.bottom-form .agree input[type="checkbox"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  padding: 10px;
}

.bottom-form .agree input[type="checkbox"]:checked {
  background-color: #fff;
}

.bottom-form .agree input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background-color: black;
  border-radius: 50%;
}

.privacy-popup {
  display: none;
  position: fixed;
  top: 20%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: auto;
}

#privacyBottom.privacy-popup {
  overflow: visible;
  top: -270%;
  background: none;
}

.quick-inquiry-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.popup-inner {
  background: #232323;
  color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  width: 90%;
  max-height: 500px;
  overflow-y: auto;
  position: relative;
  box-sizing: border-box;
}

.popup-inner h2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.privacy-popup .popup-inner h3 {
  font-size: 24px;
  text-align: center;
}

.popup-inner .close-div {
  text-align: center;
}

.popup-inner .close-div button {
  border-radius: 30px;
  border: none;
  background: #fff;
  color: black;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 25px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.pc-display {
  display: block;
}

.m-display {
  display: none;
}

.pc-bg {
  display: block;
}

.m-bg {
  display: none;
}

/* 반응형 스타일 */
@media (max-width: 1440px) {
  .header {
    padding: 0 20px;
  }

  .consulting {
    bottom: 10%;
    right: 20%;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    max-width: 786px;
  }

  .section2_img {
    width: 100%;
  }

  .section3 {
    padding: 60px 0;
  }

  .section4-content img {
    width: 100%;
  }

  .naver_box,
  .instagam_box,
  .website_box {
    padding: 25px 27px;
  }

  .footer-top {
    bottom: 15%;
  }

  .bottom-content .main_logo {
    width: 55px;
  }

  .bottom-form .agree {
    top: 7%;
    left: 7%;
  }

  .bottom-form .agree input[type="checkbox"] {
    width: 10px;
    height: 10px;
  }

  #privacyBottom.privacy-popup {
    top: -300%;
  }
}

@media (max-width: 1000px) {
  header {
    padding: 20px 0;
  }

  .header-btn.m-display .kakao-btn {
    margin-right: 0;
  }

  .header-btn a {
    width: 120px;
    height: 35px;
    font-size: 14px;
  }

  .header-btn .inquiry-btn {
    line-height: 35px;
  }

  .header-btn .kakao-btn {
    line-height: 33px;
  }

  .pc-display {
    display: none;
  }

  .m-display {
    display: block;
  }

  .main_banner {
    height: auto;
    padding-top: 105px;
  }

  .main_banner-image {
    width: 100%;
  }

  .main_banner_bg {
    width: 100%;
  }

  .consulting {
    position: unset;
    transform: unset;
    padding: 0 20px;
  }

  .consulting-buttons .btn {
    padding: 8px 16px;
  }

  .consulting .warning {
    word-break: keep-all;
  }

  .ribbon-text-wrapper {
    top: 52%;
    left: 19%;
    width: 60%;
  }

  .ribbon-text {
    font-size: 20px;
  }

  .company-container p {
    margin-bottom: 30px;
  }

  .partner,
  .section4 {
    padding: 80px 0;
  }

  .section1 {
    padding: 0 0 80px;
    background-image: none;
  }

  .section1-header {
    padding: 80px 0 30px;
    background-image: url(/ado/images/section1_mbg.png);
    background-repeat: no-repeat;
    background-position: center 15px;
  }

  .section1-header h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
  }

  .section1-header p {
    font-size: 11px;
  }

  .grid-container {
    max-width: 100%;
    padding: 0 20px;
    gap: 10px;
  }

  .item-content img {
    width: 100%;
  }

  .item-text p {
    font-size: 8px;
    margin-bottom: 5px;
  }

  .item-text h3 {
    font-size: 14px;
  }

  .box-text {
    font-size: 10px;
    line-height: 13px;
    padding: 10px;
    border-radius: 10px;
    word-break: keep-all;
  }

  .section2 {
    padding: 0 0 80px;
  }

  .section2-header h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .section2-header p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 50px;
  }

  .section3 {
    padding: 0;
  }

  .section4-header h2 {
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 80px;
  }

  .naver_box,
  .instagam_box,
  .website_box {
    padding: 0 20px;
    margin: 0 15px 80px;
  }

  .section4-title {
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .section4-title h2 {
    font-size: 24px;
    line-height: 33px;
    text-align: left;
  }

  .section4-title p {
    font-size: 10px;
  }

  .section4-subtitle {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .image-box {
    padding: 15px;
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
  }

  /* .text-box {
    margin-top: 25px;
  } */

  .section4-content {
    flex-direction: column;
  }

  .section4-content .section4_img01_icon {
    max-width: 45px;
    width: 100%;
  }

  .naver_box,
  .instagam_box,
  .website_box {
    padding: 0 20px;
    margin: 0 15px 80px;
  }

  .naver_box {
    background-image: url(/ado/images/section4_img01_mbg.png);
    background-position: center -17%;
  }

  .instagam_box {
    background-image: url(/ado/images/section4_img02_mbg.png);
    background-position: center -40%;
  }

  .website_box {
    background-image: url(/ado/images/section4_img03_mbg.png);
    background-position: center -40%;
  }

  .text-ad {
    gap: 0;
    flex-direction: column;
  }

  .ad-box {
    padding: 10px 15px 0;
  }

  .ad-box .icon {
    margin-bottom: 10px;
  }

  .ad-box h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .ad-box p {
    font-size: 10px;
    line-height: 15px;
    word-break: keep-all;
  }

  .first-ad {
    padding: 10px 15px;
  }

  .section4-btn a {
    font-size: 14px;
    line-height: 35px;
  }

  .section5 {
    padding: 50px 0;
  }

  .section5-header {
    margin-bottom: 0;
  }

  .section5-header h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .section5-header p {
    font-size: 12px;
  }

  .team-card {
    width: 240px;
    height: 320px;
  }

  .section6_bg {
    height: 100%;
    object-fit: contain;
  }

  .section6-content h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .section6-inner {
    top: 50%;
    transform: translateY(-50%);
  }

  .section6-top-wrapper {
    top: 48%;
  }

  .section6-bottom-wrapper {
    top: 64%;
  }

  .top-animation {
    font-size: 32px;
  }

  .bottom-animation {
    font-size: 26px;
  }

  .section7 {
    padding: 60px 20px;
  }

  .section7-header {
    margin-bottom: 30px;
  }

  .section7-header h2 {
    font-size: 23px;
    line-height: 30px;
  }

  .form-row {
    gap: unset;
    flex-direction: column;
  }

  .checkbox-line {
    margin-top: 0;
  }

  .checkbox-line label {
    margin-bottom: 0 !important;
  }

  .checkbox-line input[type="checkbox"] {
    width: 10px;
    height: 10px;
    padding: 7px;
  }

  .contact-form .explain .require {
    font-size: 15px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .form-group input {
    height: 40px;
  }

  .contact-form {
    margin: 30px auto 0;
    padding: 30px 20px;
  }

  .bottom-form input {
    font-size: 14px;
  }

  .bottom-form .agree {
    left: 20%;
  }

  .submit-btn2 {
    font-size: 14px;
  }

  .popup-inner .close-div button {
    font-size: 15px;
    padding: 5px 20px;
  }
}

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

  .m-bg {
    display: block;
  }

  .header-btn.m-display {
    display: flex !important;
    gap: 5px;
    flex-direction: column;
  }

  .header-btn {
    text-align: right;
  }

  .section4-header h2 {
    line-height: 35px;
  }

  .section6 {
    padding: 0 0 80px;
  }

  .section6-container {
    height: auto;
  }

  .section6_bg {
    width: 100%;
    position: unset;
  }

  .section6-inner {
    position: unset;
    transform: unset;
    padding: 0 20px;
  }

  .section6-content h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .section6-top-wrapper {
    top: 43%;
    right: -7%;
    width: 75%;
  }

  .section6-bottom-wrapper {
    top: 57%;
    right: -8%;
    width: 75%;
  }

  .top-animation {
    font-size: 28px;
  }

  .bottom-animation {
    font-size: 24px;
  }

  footer {
    padding: 50px 0;
    width: 100%;
  }

  footer img {
    margin-bottom: 50px;
  }

  footer p {
    font-size: 11px;
  }

  .footer-top {
    bottom: 27%;
  }

  .top-button {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  .top-button img {
    width: 25px;
    margin-bottom: 3px;
  }

  .bottom-contact {
    padding: 15px 20px;
  }

  .bottom-form {
    flex-wrap: wrap;
  }

  .bottom-form > input {
    flex: 0 0 calc(50% - 10px);
  }

  .bottom-form > button {
    flex: 0 0 100%;
    padding: 10px 15px;
  }

  .bottom-form .agree {
    top: 5%;
  }

  .bottom-form .agree label {
    font-size: 12px;
    gap: 3px;
  }

  .bottom-form .agree input[type="checkbox"] {
    padding: 7px;
  }

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

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

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

  .icon.hidden {
    display: none;
  }

  .bottom-contact.hidden {
    transform: translateY(110%);
    left: 0;
  }
}
