* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

@font-face {
  font-family: "Suit";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Thin.woff2")
    format("woff2");
}

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: #2b5be1;
}

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

.suit {
  font-family: "Suit", sans-serif;
}

/* header 소스 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

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

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

.header-btn {
  background: linear-gradient(90deg, #4e77e9 0%, #2b5be1 100%);
  color: #fff;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 14px;
}

#wrap {
  position: relative;
}

main {
}

/* footer */
footer {
  position: relative;
  background-color: #f0f0f0;
  color: #fff;
  padding: 75px 0 175px;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.ft-logo {
  width: auto;
  display: block;
}

.ft-logo {
  margin-bottom: 40px;
}

.ft-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.ft-info p {
  line-height: 1.5;
  font-size: 16px;
  color: #000;
  opacity: 0.8;
  word-break: keep-all;
}

.contact-bottom {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.contact-timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 9px 30px 0;
  background: url("/ado/images/contact-timer-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  height: 50px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 7px;
  animation: timerFloat 1.5s ease-in-out infinite;
}

@keyframes timerFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.contact-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2959dd 0%, #12338e 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.16),
    0px 3px 7px 1px rgba(0, 0, 0, 0.1);
}

.display-pc {
  display: block;
}

.display-m {
  display: none;
}

.menu-pc {
}

.menu-m {
  display: none;
}

.br-mo {
  display: none;
}

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

  footer {
    padding: 75px 20px 175px;
  }
}

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

  .menu-m {
    display: flex;
  }
}

@media (max-width: 800px) {
  .contact-bottom {
    padding: 0 20px;
  }
}

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

  .display-m {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .br-mo {
    display: inline-block;
  }

  .header-logo img {
    width: 130px;
  }

  .header-btn {
    font-size: 12px;
  }

  footer {
    padding: 50px 20px 150px;
  }

  .ft-logo {
    margin-bottom: 30px;
  }

  .ft-logo img {
    max-width: 230px;
  }

  .ft-divider {
    margin-bottom: 30px;
  }

  .ft-info p {
    line-height: 1.7;
    font-size: 14px;
  }

  .contact-timer {
    padding: 4px 0 0;
    height: 28px;
    font-size: 13px;
    margin-bottom: 7px;
    background: url(/ado/images/contact-timer-mbg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }

  .contact-timer img {
    width: 10px;
    padding-top: 3px;
  }

  .contact-cta-btn {
    font-size: 20px;
    padding: 15px 0;
  }
}
