@keyframes slideInleft {
  from {
    transform: translateX(-300px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInright {
  from {
    transform: translateX(300px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(300px);
  }
  to {
    transform: translateY(0);
  }
}
.slide .bg {
  animation-name: slideInleft;
  animation-duration: 0.6s;
  animation-timing-function: ease-in;
  animation-delay: 0;
  animation-iteration-count: 1;
}
.slide .slide-text {
  animation-name: slideInright;
  animation-duration: 0.7s;
  animation-timing-function: ease-in;
  animation-delay: 0;
  animation-iteration-count: 1;
}

.grid {
  animation-name: slideUp;
  animation-duration: 0.8s;
  animation-timing-function: ease-in;
  animation-delay: 0;
  animation-iteration-count: 1;
}

.grid {
  display: flex;
}
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
  }
}

.grid-1 img {
  width: 29.17vw;
}
@media (max-width: 768px) {
  .grid-1 img {
    width: 100vw;
    height: 50vw;
  }
}

.grid-2 {
  width: 40.28vw;
  padding: 2.43vw;
}
.grid-2 h1 {
  letter-spacing: 0.56vw;
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  margin: 1.04vw 0;
}
.grid-2 p {
  font-size: clamp(0.75rem, 1.1vw, 1.2rem);
  color: var(--Grey-500);
}
@media (max-width: 768px) {
  .grid-2 {
    width: 100vw;
  }
}

.grid-3 img {
  width: 30.56vw;
}
@media (max-width: 768px) {
  .grid-3 img {
    width: 100vw;
    height: 50vw;
  }
}

.desktop {
  display: flex;
}
@media (max-width: 768px) {
  .desktop {
    display: none;
  }
}

.mobile {
  padding: 0;
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: flex;
  }
}

.logo img {
  width: 150px;
  padding: 30px;
}
@media (max-width: 768px) {
  .logo img {
    margin-left: 25vw;
    display: flex;
  }
}

nav {
  padding: 2.08vw 0;
  display: flex;
  align-items: center;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--White);
  padding: 0.69vw 1.74vw;
  text-transform: lowercase;
}

.close {
  display: none;
}

.hamburger {
  display: none;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    padding: 30;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
    width: 100vw;
    padding: 30px;
    background: var(--White);
    left: 0;
  }
}

.close {
  margin-right: 16vw;
}

.list-item:hover {
  border-bottom: 1px solid var(--White);
}
@media (max-width: 768px) {
  .list-item {
    color: var(--Black);
    font-weight: 700;
  }
}

.slides {
  position: relative;
}
.slides nav {
  position: absolute;
}

.slide {
  display: none;
}
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }
}
.slide .bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 36.94vw;
  width: 58.33vw;
}
@media (max-width: 768px) {
  .slide .bg {
    width: 100vw;
    height: 50vw;
  }
}
.slide .slide-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6.25vw;
  width: 41.67vw;
}
.slide .slide-text h1 {
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  font-weight: 600;
}
.slide .slide-text p {
  margin: 1.74vw 0;
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  color: var(--Grey-500);
}
.slide .slide-text span {
  letter-spacing: 0.69vw;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
}
.slide .slide-text span:hover {
  cursor: pointer;
  color: var(--Grey-500);
}
@media (max-width: 768px) {
  .slide .slide-text {
    width: 100vw;
    padding: 4vw;
  }
}
.slide.slide-3 .bg {
  background-image: var(--image-hero-desktop-3);
}
@media (max-width: 768px) {
  .slide.slide-3 .bg {
    background-image: var(--image-hero-mobile-3);
  }
}
.slide.slide-2 .bg {
  background-image: var(--image-hero-desktop-2);
}
@media (max-width: 768px) {
  .slide.slide-2 .bg {
    background-image: var(--image-hero-mobile-2);
  }
}
.slide.slide-1 .bg {
  background-image: var(--image-hero-desktop-1);
}
@media (max-width: 768px) {
  .slide.slide-1 .bg {
    background-image: var(--image-hero-mobile-1);
  }
}
.slide.active {
  display: flex;
}

.arrow {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: calc(100% - 5.2vw);
  width: 9.72vw;
  margin: 0.69vw;
  right: 31.3vw;
  transform: translateY(0);
}
.arrow .previous,
.arrow .next {
  cursor: pointer;
  padding: 1.39vw 2.29vw;
  background: var(--Black);
}
.arrow .previous:hover,
.arrow .next:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .arrow {
    transform: translateY(-180px);
    right: 22px;
  }
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "League Spartan", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.animation {
  max-width: 100%;
  width: 100vw;
}

:root {
  --White: hsl(0, 100%, 100%);
  --Grey-500: hsl(0, 0%, 63%);
  --Grey-800: hsl(0, 0%, 27%);
  --Black: hsl(0, 0%, 0%);
  --image-hero-mobile-1: url(/images/mobile-image-hero-1.jpg);
  --image-hero-desktop-1: url(/images/desktop-image-hero-1.jpg);
  --image-hero-mobile-2: url(/images/mobile-image-hero-2.jpg);
  --image-hero-desktop-2: url(/images/desktop-image-hero-2.jpg);
  --image-hero-mobile-3: url(/images/mobile-image-hero-3.jpg);
  --image-hero-desktop-3: url(/images/desktop-image-hero-3.jpg);
}

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