@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: "Chango";
  src: url(./assets/Chango-Regular.ttf) format("truetype");
}

* {
  box-sizing: border-box;
  font-family: "Chango", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

section {
  align-items: center;
  background: #1f2148;
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
  padding: 100px;
  position: relative;
  width: 100%;
}

section .circle {
  background-position: center;
  background-size: cover;
  background: url("./img/stars.png");
  clip-path: circle(70% at right -20%);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 40px 100px;
  position: absolute;
  top: 0;
  width: 100%;
}

header .logo {
  left: 60px;
  max-width: 250px;
  position: absolute;
  top: 0;
}

header .navigation {
  display: flex;
  position: relative;
}

header .navigation li {
  list-style: none;
}

header .navigation li a {
  color: #ffed00;
  display: inline-block;
  font-size: 1.5em;
  font-weight: 500;
  margin-left: 40px;
  text-decoration: none;
}

.content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.content .textBox {
  margin-right: 20px;
  max-width: 600px;
  position: relative;
}

.content .textBox h2 {
  color: #fff;
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 10px;
}

.content .textBox p {
  color: #fff;
  line-height: 2em;
}

.content .textBox span {
  color: #ffed00;
  font-weight: 500;
}

.content .textBox a {
  background: #e95d0f;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 20px;
  padding: 8px 20px;
  text-decoration: none;
}

.sci {
  align-items: center;
  bottom: 40px;
  display: flex;
  justify-content: center;
  left: 100px;
  position: absolute;
}

.sci li {
  list-style: none;
}

.sci li a {
  align-items: center;
  border-radius: 50%;
  display: flex;
  display: inline-block;
  height: 50px;
  justify-content: center;
  margin-left: 15px;
  transition: 0.2s ease-in-out;
  width: 50px;
}

.sci li a:hover {
  background: #e95d0f;
  transform: translateY(-10px);
}

.sci li a img {
  filter: invert(1);
  transform: scale(0.5);
}

.copy {
  bottom: 40px;
  color: #fff;
  font-size: 0.8em;
  position: absolute;
  right: 100px;
}

.copy a {
  color: #fff;
  text-decoration: none;
}

.copy a:hover {
  color: #e95d0f;
}

/* ! Swiper.js */
.swiper-container {
  padding-bottom: 50px;
  padding-top: 50px;
  width: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  display: flex;
  height: 460px;
  justify-content: center;
  width: 200px;
}

.content .imgBox {
  display: flex;
  justify-content: flex-end;
  width: 75%;
}

.content .imgBox img {
  max-width: 250px;
}

.swiper-slide img {
  bottom: 0;
  max-height: 100%;
  position: absolute;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: none;
}

/* * Media Query */
@media (max-width: 991px) {
  header {
    padding: 40px;
  }

  section {
    padding: 150px 40px;
  }

  .sci {
    left: 40px;
  }

  .content {
    flex-direction: column;
  }

  .content .textBox {
    max-width: 100%;
  }

  .content .imgBox {
    width: 100%;
  }

  .swiper-slide {
    height: 300px;
  }

  header .logo {
    left: 10px;
    max-width: 150px;
  }

  header .navigation {
    display: none;
  }

  header .navigation.active {
    align-items: center;
    background: #e95d0f;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }

  header .navigation li a {
    font-size: 1.5em;
    font-weight: 300;
    margin: 10px 0;
  }

  .copy {
    bottom: 10px;
    right: 100px;
  }

  .toggle {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
    background: url(./img/menu.png);
    cursor: pointer;
    height: 30px;
    position: relative;
    width: 30px;
    z-index: 10000;
  }

  .toggle.active {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    background: url(./img/close.png);
    position: fixed;
    right: 40px;
  }
}
