/* 헤더부분 */

nav {
  align-items: center;
  height: 60px;
  width: 100%;
  position: fixed;
  background-color: #ffffff;
  z-index: var(--z-dropdown);
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1520px;
  padding: 0 200px;
  margin: 0 auto;
  width: 100%;
}

.logo-img {
  height: 50px;
  width: auto;
}

.hero-section {
  background-color: #cfe5ff;
  height: 400px;
}

.hero-main-img {
  height: 250px;
  width: auto;
  position: relative;
  top: 75px;
}

.hero-container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: auto;
  position: relative;
}

.hero-img {
  position: relative;
  bottom: 0;
}

.hero-container .hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-button {
  width: 100%;
}

.look-button {
  border-radius: 50px;
}

.section2-div .part1,
.section2-div .part3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.subImage {
  height: 300px;
  width: auto;
}

.subTitle {
  width: 250px;
}

.subTitle1 {
  font-size: 12px;
  font-weight: 1000;
  color: #3692ff;
  margin-bottom: 20px;
}

.subTitle2 {
  font-size: 25px;
  font-weight: 1000;
  margin-bottom: 20px;
}

.section2-div .part2 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}

.right {
  text-align: right;
}

footer .section2 {
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 200px;
  padding-top: 50px;
}

footer .section2 div {
  text-align: center;
}

.licence {
  color: #ffffff;
}

.privacy,
.FAQ {
  margin: 0;
  padding: 0;
  background-color: #000000;
  margin-left: 20px;
  color: #ffffff;
  text-decoration: none;
}

.social-icon img {
  height: 20px;
  width: auto;
  margin-left: 10px;
}

/* 테블릿 사이즈 적용시 반응형 CSS 스타일 적용 */
@media(max-width : 1199px) {
  .navbar {
    padding: 0 24px;
  }

  .hero-section {
    height: 560px;
  }

  .hero-container {
    height: 600px;
    flex-direction: column;
  }

  .hero-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-button .btn {
    width: 200px
  }

  main .hero-container .hero-text-block .text {
    display: flex;
    flex-direction: row;
    gap: 5px
  }

  .section2 {
    padding: 0 16px;
    margin-bottom: 50px
  }

  .section2-div .part1,
  .section2-div .part2,
  .section2-div .part3 {
    flex-direction: column;
  }

  .section2-div .part1,
  .section2-div .part3 {
    align-items: self-start;
    /* justify-content: center; */
  }

  .section2-div .part2 {
    align-items: self-end;
  }

  .subImage {
    height: auto;
    width: 100%;
  }



}

/* 모바일 사이즈 적용시 반응형 CSS 스타일 적용 */
@media(max-width : 767px) {
  main .hero-container .hero-text-block .text {
    flex-direction: column;
    text-align: center;
  }

  footer .section2 {
    background-color: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 200px;
    padding-top: 50px;
  }

  footer .section2 .licence {
    grid-column: 1;
    grid-row: 2;
  }



}
