@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
[data-theme=light] {
  --primary-color:#1c1c1c;
  --secondary-color: #fff;
  --background-color:#F4F7F8;
  --arrow-color:#BABABA;
  --dark-gray:#505050;
}

[data-theme=dark] {
  --primary-color:#f2f2f2;
  --secondary-color: #000;
  --background-color:#1c1c1c;
  --arrow-color:#BABABA;
  --dark-gray:#d5d5d5;
}

* {
  scroll-behavior: smooth;
}

body {
  align-items: center;
  background: var(--background-color);
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
}

/*--checkbox start here---*/
.theme-switch {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: var(--primary-color);
  width: 2.4rem;
  height: 1rem;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fa-moon {
  color: #f1c40f;
  width: 18px !important;
}

.fa-sun {
  color: #f39c12;
  width: 18px !important;
}

.checkbox-label .ball {
  background-color: var(--secondary-color);
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 6px;
  top: 5px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
  transform: translateX(24px);
  left: 5px;
}

/*--checkbox ends here---*/
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.chevron {
  position: absolute;
  width: 3.5rem;
  height: 0.5rem;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--arrow-color);
}

.chevron:before {
  left: 0;
  transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
    transform: translateY(3.8rem);
  }
  66.6% {
    opacity: 1;
    transform: translateY(5.2rem);
  }
  100% {
    opacity: 0;
    transform: translateY(8rem) scale(0.5);
  }
}
section.hero {
  width: 100vw;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.hero .title-contents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: auto;
  align-items: center;
  padding: 2rem;
  position: relative;
  height: auto;
  top: -4rem;
}
section.hero .title-contents .title {
  font-size: 4rem;
  font-size: 64px;
  line-height: 78px;
  /* identical to box height */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark-gray);
  font-weight: 300;
  margin: 0 auto;
}
section.hero .title-contents .title span {
  font-weight: 600;
}
section.hero .title-contents .link {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-decoration: underline;
  letter-spacing: 0.25rem;
}
section.hero .title-contents .arrow {
  display: inline-flex;
  width: 3.5rem;
  height: 5rem;
  position: relative;
  left: -5px;
}
section.hero .title-contents .desc {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.16rem;
  text-align: center;
  line-height: 3.5rem;
  max-width: 860px;
  color: var(--dark-gray);
  padding: 0 1rem;
}
section.hero .slider-wrap {
  position: absolute;
  width: 100vw;
  overflow: hidden;
  height: 400px;
  bottom: 0;
  z-index: -1;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
section.hero .slider-wrap .slider {
  position: absolute;
  width: 100vw;
  top: 50%;
  transform: rotate(5deg);
}
section.hero .slider-wrap .slider .slide-track {
  display: flex;
  height: 3rem;
  position: absolute;
  right: 100%;
  white-space: nowrap;
  animation: scroll2 30s infinite linear;
  width: 100%;
}
section.hero .slider-wrap .slider .slide-track .slide {
  background-color: var(--secondary-color);
  padding: 1rem;
}
section.hero .slider-wrap .slider2 {
  position: absolute;
  width: 100vw;
  top: 50%;
  transform: rotate(-5deg);
}
section.hero .slider-wrap .slider2 .slide-track2 {
  display: flex;
  height: 3rem;
  position: relative;
  left: 0;
  top: 100%;
  white-space: nowrap;
  animation: scroll 30s infinite linear;
}
section.hero .slider-wrap .slider2 .slide-track2 .slide {
  background-color: var(--secondary-color);
  padding: 1rem;
}

section {
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section .title-contents-a {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1180px;
  margin: auto;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}
section .title-contents-a .title {
  font-size: 2rem;
  line-height: 78px;
  /* identical to box height */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--dark-gray);
  font-weight: 600;
  margin: 0 auto;
  padding: 0 1rem;
}
section .title-contents-a .title span {
  font-weight: 600;
}
section .title-contents-a .arrow {
  display: inline-flex;
  width: 3.5rem;
  height: 10rem;
  position: relative;
  left: -5px;
}
section .title-contents-a .arrow.rotate {
  transform: rotate(180deg);
}
section .title-contents-a .link {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-decoration: underline;
  letter-spacing: 0.25rem;
}
section .title-contents-a .desc {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.16rem;
  text-align: center;
  line-height: 3.5rem;
  max-width: 1000px;
  color: var(--dark-gray);
  margin: 0 auto;
  padding: 0 1rem;
}
section .title-contents-a .desc span {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  section.hero .title-contents {
    gap: 1rem;
    padding: 0;
  }
  section.hero .title-contents .logo {
    max-width: 150px;
    display: inline-block;
  }
  section.hero .title-contents .logo img {
    width: 100%;
  }
  section.hero .title-contents .title {
    font-size: 2rem;
    letter-spacing: 0.75rem;
    line-height: 3rem;
  }
  section.hero .title-contents .title span {
    display: block;
  }
  section.hero .title-contents .desc {
    line-height: 2rem;
    font-size: 1rem;
  }
  section.hero .title-contents .link {
    font-size: 1rem;
  }
  section.hero .slider-wrap {
    height: 200px;
  }
  section.hero .slider-wrap .slider {
    transform: rotate(10deg);
    box-shadow: 0px 14px 64px rgba(0, 0, 0, 0.2) !important;
  }
  section.hero .slider-wrap .slider .slide-track {
    height: 2.2rem;
  }
  section.hero .slider-wrap .slider .slide-track .slide {
    padding: 0.5rem 0 !important;
  }
  section.hero .slider-wrap .slider .slide-track .slide img {
    transform: scale(0.8);
  }
  section.hero .slider-wrap .slider2 {
    transform: rotate(-10deg);
    box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.02) !important;
  }
  section.hero .slider-wrap .slider2 .slide-track2 {
    box-shadow: none !important;
    height: 2.2rem;
  }
  section.hero .slider-wrap .slider2 .slide-track2 .slide {
    padding: 0.5rem 0 !important;
  }
  section.hero .slider-wrap .slider2 .slide-track2 .slide img {
    transform: scale(0.8);
  }
  section .title-contents-a {
    gap: 2rem;
    padding: 4rem 0;
  }
  section .title-contents-a .logo {
    max-width: 80px;
    display: inline-block;
  }
  section .title-contents-a .logo img {
    width: 100%;
  }
  section .title-contents-a .title {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 0.2rem;
  }
  section .title-contents-a .desc {
    line-height: 2rem;
    font-size: 1rem;
  }
  section .title-contents-a .link {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */