@charset "UTF-8";
@import url("reset.css");
@import url("normalize.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;600;700;800;900&family=Noto+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/**
 * * 기본 스타일
 * */
body {
  background-color: #00A1E9;
  font-family: "Noto Sans KR", sans-serif;
  padding-top: 96px;
}
@media (max-width: 990px) {
  body {
    padding-top: 65px;
  }
}

a {
  text-decoration: none;
}

section {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.bg-gray {
  background-color: #F8F8F8;
}
section.bg-white {
  background-color: #F9FDFF;
}

img {
  max-width: 100%;
}
img.base {
  display: block;
}
@media (max-width: 990px) {
  img.base {
    display: none;
  }
}
img.mobile {
  display: none;
}
@media (max-width: 990px) {
  img.mobile {
    display: block;
  }
}

.wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrap.wrap-justify-center {
  justify-content: center;
}
.wrap.wrap-flex-direction-column {
  flex-direction: column;
}
@media (max-width: 599px) {
  .wrap {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  .wrap {
    flex-wrap: wrap;
    width: 1024px;
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .wrap {
    width: 1220px;
    padding: 0 1rem;
  }
}
@media (min-width: 1440px) {
  .wrap {
    width: 1440px;
  }
}

/**
 * * 헤더 영역
 * */
header {
  background-color: #00A1E9;
  color: #fff;
  height: 96px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  header {
    height: 65px;
  }
}
header .mobile-menu-toggle {
  display: none;
  background-color: transparent;
  border: none;
  width: 25px;
  height: 25px;
  padding: 0;
  margin-right: 17px;
  background-image: url("img/mobile-menu-toggle.svg");
  background-repeat: no-repeat;
}
@media (max-width: 990px) {
  header .mobile-menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header .mobile-menu-toggle.active {
  background-image: url("img/mobile-menu-close.svg");
}
header h1 {
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
}
header h1 img {
  height: 39px;
}
@media (max-width: 990px) {
  header h1 img {
    height: 20px;
  }
}
@media (max-width: 990px) {
  header nav {
    position: fixed;
    top: 65px;
    left: 0;
    background: #00A1E9;
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
  }
  header nav.active {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
  }
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 990px) {
  header nav ul {
    flex-direction: column;
    width: 100vw;
  }
}
header nav ul li {
  list-style: none;
  margin-left: 1rem;
}
@media (max-width: 990px) {
  header nav ul li {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
header nav ul li a {
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.1px;
  color: #fff;
}
@media (max-width: 990px) {
  header nav ul li a {
    display: block;
    padding: 1rem 0;
    width: 100vw;
    background-color: #00A1E9;
    color: #fff;
  }
  header nav ul li a:hover {
    background-color: #F9FDFF;
    color: #00A1E9;
  }
}

/**
 * * 메인 비쥬얼 영역
 * */
section#section01 {
  background-color: #00A1E9;
  height: 850px;
}
section#section01 .titles {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.6px;
}
section#section01 .titles img {
  margin-bottom: 98px;
}
section#section01 .character {
  align-self: flex-start;
}
@media (max-width: 599px) {
  section#section01 {
    flex-wrap: wrap;
    height: auto;
    padding: 2rem 1rem;
  }
  section#section01 .titles {
    width: 100%;
    margin-bottom: 4rem;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  section#section01 {
    flex-wrap: wrap;
    height: auto;
    padding: 2rem 1rem;
  }
  section#section01 .titles {
    width: 100%;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  section#section01 {
    padding: 0 1rem;
  }
  section#section01 .titles {
    width: 50%;
  }
}
@media (min-width: 1440px) {
  section#section01 .titles {
    width: 50%;
  }
}

section#section02 {
  padding-top: 100px;
}
section#section02 img {
  margin-bottom: -25px;
}

section#section03 {
  padding-top: 100px;
}
section#section03 img {
  margin-bottom: -25px;
}

section#section04 {
  padding-top: 100px;
}
section#section04 img {
  margin-bottom: -25px;
}

section#section05 {
  padding-top: 50px;
}

section#section06 {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 990px) {
  section#section06 {
    padding-bottom: 0;
  }
}
section#section06 img.mobile {
  margin-bottom: -25px;
}

section#section07 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 599px) {
  section#section07 .wrap {
    justify-content: center;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  section#section07 .wrap {
    justify-content: center;
  }
}
@media (max-width: 599px) {
  section#section07 .title {
    margin-bottom: 5rem;
  }
}
section#section07 .buttons {
  display: flex;
}
section#section07 .buttons a {
  display: block;
  margin: 0 10px;
}
@media (max-width: 599px) {
  section#section07 .buttons {
    flex-direction: column;
  }
  section#section07 .buttons a {
    margin: 10px 0;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  section#section07 .buttons {
    flex-direction: column;
  }
  section#section07 .buttons a {
    margin: 10px 0;
  }
}

footer {
  background-color: #F9FDFF;
  display: flex;
  justify-content: center;
}
footer #social-buttons {
  width: 100%;
  padding: 40px 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-end;
  border-bottom: rgba(0, 161, 233, 0.5019607843) 1px solid;
}
footer #social-buttons a {
  display: block;
  margin-left: 20px;
}
footer #social-buttons a:first-child {
  margin-left: 0;
}
@media (max-width: 599px) {
  footer #social-buttons {
    justify-content: center;
  }
}
footer #copyright {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  footer #copyright .logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  footer #copyright {
    flex-direction: column;
  }
}
footer #copyright ul {
  margin-left: 40px;
}
@media (max-width: 599px) {
  footer #copyright ul {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
footer #copyright ul li {
  margin-bottom: 7px;
  color: #A1A1A1;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
}
footer #copyright ul li:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
