* {
  margin: 0;
}

body, html {
  font-family: commuters-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  color: #334342;
}

.content {
  margin: 0 auto;
  max-width: 1200px;
  width: calc(100% - 2rem);
  position: relative;
  z-index: 1;
}

.cols {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
}

.cols > div {
  width: 50%;
}

header {
  width: 100%;
  position: fixed;
  background-color: transparent;
  transition: background-color .3s ease;
  z-index: 10;
  padding: 2rem 0;
}

header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: block;
  width: 405px;
  height: 118px;
  background: url(../i/logo.svg) no-repeat center/cover;
  transition: all .3s ease;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

header nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  transition: all .3s ease;
}

header nav ul li a:hover {
  opacity: 0.7;
}

header.scroll {
  background-color: #fff;
  padding: 1rem 0;
}

header.scroll .logo {
  background-image: url(../i/logo-color.svg);
  width: 320px;
  height: 93px;
}

header.scroll nav ul li a {
  color: #334342;
}

.s1 {
  position: relative;
  width: 100%;
  height: 100vh;
}

.s1 .splide__list {
  height: 100vh;
}

.s1 .splide__slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.s1 .one {
  background-image: url(../i/Brazil.jpg);
}

.s1 .two {
  background-image: url(../i/Korea.jpg);
}

.s1 .three {
  background-image: url(../i/Taiwan.jpg);
}

.s1 .four {
  background-image: url(../i/Mexico.jpg);
}

.s1 .bottom {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

.s1 .bottom h1 {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.3em;
  font-weight: 200;
  color: #fff;
  max-width: 870px;
}

.s1 .bottom h1::after {
  content: "";
  width: 1px;
  height: 160px;
  background: #E6C67E;
  position: absolute;
  top: 110%;
  left: 0;
}

.s1 .top {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.s1 .top .logo {
  display: block;
  max-width: 405px;
}

.s2 {
  background: url(../i/footer.png) no-repeat center/cover;
  position: relative;
}

.s2 .top {
  padding: 5rem 0;
}

.s2 .top h3 {
  font-size: 1.6rem;
  line-height: 1.3em;
  font-weight: 300;
}

.s2 .top p {
  font-size: 0.9rem;
  line-height: 1.5em;
  margin-bottom: 1rem;
}

.s2 .top p:last-of-type {
  margin-bottom: 0;
}

.s2 .footer {
  padding: 3rem 0;
  position: relative;
}

.s2 .footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1A2A26;
  mix-blend-mode: multiply;
}

.s2 .footer .logo {
  display: block;
  max-width: 335px;
  margin-bottom: 4.5rem;
}

.s2 .footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
}

.s2 .footer .wrapper > div h4 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 1.6px;
  color: #fff;
  margin-bottom: 8px;
}

.s2 .footer .wrapper > div p {
  font-size: 0.9rem;
  line-height: 1.3em;
  color: #fff;
  font-weight: 200;
}

.s2 .footer .wrapper > div p a {
  color: #E6C67E;
  text-decoration: none;
  transition: opacity .5s ease;
  cursor: pointer;
}

.s2 .footer .wrapper > div p a:hover {
  opacity: 0.7;
}

.s2 .footer .wrapper .copy {
  font-size: 12px;
  font-weight: 200;
  color: #fff;
}

@media screen and (max-width: 980px) {
  .cols {
    flex-direction: column;
  }
  .cols > div {
    width: 100%;
  }
  .s1 .bottom h1 {
    font-size: 2.3rem;
  }
  .s1 .bottom h1::after {
    height: 150px;
  }
  .s2 .footer .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
  .cols {
    gap: 1.5rem;
  }
  header {
    padding: 1rem 0;
  }
  header .logo {
    width: 170px;
    height: 49px;
  }
  header nav ul {
    gap: 1rem;
  }
  header nav ul li a {
    font-size: 14px;
  }
  header.scroll .logo {
    width: 170px;
    height: 49px;
  }
  .s1 .top .logo {
    max-width: 250px;
  }
  .s1 .bottom h1 {
    font-size: 1.6rem;
  }
  .s1 .bottom h1::after {
    height: 110px;
  }
  .s1 .four {
    background-position: 83%;
  }
  .s2 .top h3 {
    font-size: 1.3rem;
  }
  .s2 .footer .logo {
    max-width: 200px;
  }
  .s2 .footer .wrapper > div h4 {
    font-size: 0.7rem;
  }
}
