:root {
  --grey-10: #f7f8fa;
  --grey-70: #5e5f69;
  --grey-60: #858794;
  --grey-80: #4d4e54;

  --black-12: rgba(0, 0, 0, 0.12);
  --black-80: rgba(0, 0, 0, 0.8);

  --blue-60: #3876f2;
  --blue-70: #0E4473;
  
  --white: #ffffff;
}

@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/NotoSansKRFIX14-Regular.otf");
}

@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/NotoSansKRFIX14-Medium.otf");
}

@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/NotoSansKRFIX14-Bold.otf");
}

* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}

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

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

html {
  font-family: 'Noto Sans', "Apple SD Gothic Neo","sans-serif" !important;
}

body {
  margin: 0;
  padding: 0;
  background-image: linear-gradient(102deg, #f2ffff -7%, #e9f7f8 78%, #d3e2ff 150%, #c5d8ff 182%);
}

footer {
  width: 100vw;
  background-color: var(--grey-70);
}

.container-wrapper {
  /* padding: 1.25rem 2.5rem 0 2.5rem; */
  width: 100vw;
  /* height: calc(100vh - 5rem); */
  overflow: hidden;
}

.content-image {
  position: absolute;
  top: 3.5rem;
  left: 3.3rem;
  height: 757px;
  width: 1268px;
  z-index: -9;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color:inherit;
}

img {
  width: 100%;
  height: 100%;
}

.header-container {
  max-width: 960px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  background-color: #F3F1ED;
}
.header-container--logo {
  width: 3rem;
  height: 3rem;
}

.header-container--detail, .header-container--menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  z-index: 10;
}

.header-container--menu {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.header-container--detail .detail-text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.54px;
  color: var(--grey-80);
  -webkit-text-fill-color: var(--grey-80);
}

.detail-text--incruit {
  margin-left: 2.5rem;
}

.woot-container {
  position: relative;
  padding: 8.75rem 2.5rem 0 2.5rem;
  height: 90vh;
}

.woot-wrapper {
  position: relative;
  margin: auto;
  max-width: 960px;
}

.content {
  z-index: 9;
}

.content-text {
  font-size: 3.265rem;
  font-weight: bold;
  line-height: 1.24;
  letter-spacing: -3.05px;
  color: var(--black-80);
  -webkit-text-fill-color: var(--black-80);
}

.content-text--blue {
  color: var(--blue-60);
  -webkit-text-fill-color: var(--blue-60);
}

.content-link {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content-link--icon {
  width: 8.125rem;
  height: 2.5rem;
}
.content-link--android {
  margin-left: 1.25rem;
}

.footer-wrapper {
  padding: 0 2.5rem;
}
.footer-container {
  margin: auto;
  padding: 4rem 0;
  max-width: 960px;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.42;
  
}
.company-desc {
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.41;
  margin-top: 1rem;
  display: flex;
}

.company-desc--item {
  margin-left: 1.5rem;
}
.company-desc--item:first-child {
  margin-left: 0;
}
.company-contact {
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.41;
  margin-top: 1rem;
}
.company-detail {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
}
.company-detail--link {
  display: flex;
  font-weight: bold;
}
.company-detail--intro {

}
.company-detail--divider {
  margin: 0 1.25rem;
  font-weight: normal;
}

/* from mobile */
@media screen and (max-width: 768px){
  body {
    height: 100vh;
  }

  .header-container--detail {
    display: none;
  }

  .header-container--menu {
    display: block;
  }

  .woot-container {
    /* padding-top: 2rem; */
    padding: 1.25rem 2.5rem 0 2.5rem;
    width: 100vw;
  }

  .content {
    margin-top: 10vh;
  }

  .content-text {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: -1.6px;
  }

  .content-link {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-link--android {
    margin-left: 0;
    margin-top: 1.25rem;
  }
  .content-image {
    top: 1rem;
    left: -45vh;
    width: 167vh;
    height: 100vh;
  }
  .company-desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    flex-direction: column;
    margin-top: 0.75rem;
  }
  .company-desc--item {
    margin-left: 0;
    margin-top: 0.75rem;
  }
  .company-desc--item:first-child {
    margin-top: 0;
  }
  .company-contact {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    flex-direction: column;
    margin-top: 12px;
  }
  .company-detail {
    margin-top: 1.875rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
  }
}

@media screen and (max-width: 512px){
  .content {
    margin-top: 4vh;
  }

  .content-image {
    top: 4vh;
    left: -50vh;
  }
}

/* toggled menu */
.menu-container {
  display: none;
  position: absolute;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
}
.close-button {
  position: absolute;
  right: 30px;
  top: 41px;
  width: 24px;
  height: 24px;
}

.menu-link {

}
.menu-link--item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--grey-80);
  -webkit-text-fill-color: var(--grey-80);
}
.menu-link--item:last-child {
  margin-top: 24px;
}
.menu-link--item img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}
