body {
  background-color: #fcfcfc;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #fcfcfc;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1520px;
  height: 70px;
  margin: 0 auto;
  padding: 0 200px;
}

.main-nav img {
  width: 152px;
  height: 50px;
  cursor: pointer;
}

.main-nav .login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 48px;
  background-color: var(--blue);
  color: var(--gray-100);
  border-radius: 8px;
  cursor: pointer;
}

/* Main */
.home-main {
  padding-top: 70px;
}

/* Hero Section */
.hero-section {
  height: 540px;
  background-color: #cfe5ff;
}

.center-content {
  position: relative;
  max-width: 1120px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.hero-section .content {
  position: relative;
  top: 240px;
}

.hero-section .content p {
  position: relative;
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
}

.hero-section a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 356px;
  height: 56px;
  background-color: var(--blue);
  border-radius: 9999px;
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-50);
  z-index: 1;
}

.hero-section img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  z-index: 0;
}

/* Home Section */
.home-section {
  height: 720px;
  padding: 138px 66px;
  background-color: #ffffff;
}

.home-section .inner {
  display: flex;
  width: 988px;
  height: 444px;
  margin: 0 auto;
  background-color: #fcfcfc;
  border-radius: 12px;
}

.home-section .inner img {
  padding: 0 18px;
}

.home-section .inner .content {
  padding: 103px 24px;
}

.home-section .inner .content .subtitle {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.home-section .inner .content .title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 56px;
}

.home-section .inner .content .description {
  font-size: 24px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 32px;
}

.home-section .reverse-flex {
  flex-direction: row-reverse;
}

.home-section .text-align-right {
  text-align: right;
}

.home-section .inner .reset-left-padding {
  padding-left: 0;
}

.home-section .inner .reset-right-padding {
  padding-right: 0;
}

/* Bottom Section */
.bottom-section {
  height: 540px;
  margin-top: 138px;
  background-color: #cfe5ff;
}

.bottom-section p {
  position: relative;
  top: 256px;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
}

.bottom-section img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
}

/* Footer */
.main-footer {
  background-color: var(--gray-900);
}

.main-footer .footer-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 160px;
  padding-top: 32px;
  color: var(--gray-400);
}

.main-footer .footer-box .footer-link {
  display: flex;
  gap: 30px;
}

.main-footer .footer-box .footer-link a {
  color: var(--gray-200);
  cursor: pointer;
}

.main-footer .footer-box .footer-icon {
  display: flex;
  gap: 12px;
}

.main-footer .footer-box .footer-icon img {
  width: 20px;
  cursor: pointer;
}

/** 태블릿 반응형 */
@media (min-width: 768px) and (max-width: 1199px) {
  /** Navibation  */
  .main-nav {
    padding: 0 24px;
  }

  /** Hero Section  */
  .hero-section {
    height: 770px;
  }

  .hero-section .content {
    top: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-section .content p br {
    display: none;
  }

  .hero-section img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
  }

  /** Home Section */
  .home-section {
    height: fit-content;
    padding: 0;
  }

  .home-section .inner {
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 15px;
  }

  .home-section .inner img {
    width: 100%;
    padding: 0;
    border-radius: 12px;
  }

  .home-section .inner .content {
    padding: 24px 0 0;
  }

  .home-section .inner .content .title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 42px;
  }

  .home-section .inner .content .title br {
    display: none;
  }

  .home-section .inner .content .description {
    font-size: 18px;
    line-height: 26px;
  }

  /** Bottom Section */
  .bottom-section {
    height: 926px;
    margin-top: 32px;
  }

  .bottom-section p {
    top: 200px;
    text-align: center;
  }

  .bottom-section img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
  }

  /** Footter */
  .main-footer .footer-box {
    padding: 32px 104px 0;
  }
}

/** 모바일 반응형  */
@media (min-width: 375px) and (max-width: 767px) {
  /** Navibation  */
  .main-nav {
    padding: 0 12px;
  }

  .main-nav img {
    width: 102px;
    height: 35px;
    cursor: pointer;
  }

  /** Hero Section  */
  .hero-section {
    height: 540px;
    margin-bottom: 36px;
  }

  .hero-section .content {
    top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-section .content p {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 44px;
    text-align: center;
  }

  .hero-section a {
    width: 240px;
    height: 48px;
    font-size: 18px;
  }

  .hero-section img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120%;
    max-width: 450px;
  }

  /** Home Section */
  .home-section {
    height: fit-content;
    margin-bottom: 25px;
    padding: 0;
  }

  .home-section .inner {
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 15px;
  }

  .home-section .inner img {
    width: 100%;
    padding: 0;
    border-radius: 12px;
  }

  .home-section .inner .content {
    padding: 24px 0 0;
  }

  .home-section .inner .content .subtitle {
    margin-bottom: 8px;
  }

  .home-section .inner .content .title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
  }

  .home-section .inner .content .title br {
    display: none;
  }

  .home-section .inner .content .description {
    font-size: 16px;
    line-height: 26px;
  }

  /** Bottom Section */
  .bottom-section {
    height: 540px;
    margin-top: 42px;
  }

  .bottom-section p {
    top: 120px;
    text-align: center;
    font-size: 32px;
    line-height: 44px;
  }

  .bottom-section img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 450px;
  }

  /** Footter */
  .main-footer .footer-box {
    position: relative;
    padding: 32px 32px 0;
  }

  .main-footer .footer-box p {
    position: absolute;
    left: 32px;
    bottom: 32px;
  }
}
