* {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

body {
  pointer-events: none;
  user-select: none;
  background-color: #161735;
}

button{
  user-select: none;
  cursor: pointer;
  pointer-events: all;
}

a{
  text-decoration: none;
  color: rgb(13, 201, 214);
  user-select: none;
  cursor: pointer;
  pointer-events: all;
}

nav {
  width: 100vw;
  height: 55px;
  background-color: #161735;
  position: fixed;
  z-index: 1;
  overflow-y: hidden;
}

.right img {
  width: 200px;
  padding-left: 20px;
}

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

.left {
  display: flex;
  align-items: center;
}

.left ul {
  overflow-y: hidden;
}

.left ul li {
  display: inline;
  padding: 25px;
  color: white;
  overflow-y: hidden;
}

.left ul li a {
  text-decoration: none;
  color: white;
  overflow-y: hidden;
}

.left ul li a:hover {
  color: #36197F;
  font-size: 17px;
}

.button {
  display: none;
}

.button button {
  background-color: #161735;
  border: none;
  padding: 10px;
  margin-right: 20px;
}

.button button i {
  font-weight: 900;
  font-size: 40px;
}

main {
  margin-top: 55px;
  width: 100vw;
  background-color: #161735;
}

.block-1 {
  position: relative;
  width: 100%;
  height: 100vh;
}

.block-1-image img {
  width: 100vw;
  height: auto;
  display: block;
}

.block-1-text {
  position: absolute;
  top: 40%;
  left: 28%;
  transform: translate(-50%, -50%);
  text-align: start;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.typing-container {
  font-family: 'Courier New', Courier, monospace;
  font-size: 45px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 0;
  border-right: 3px solid #161735;
  animation: typing 2s steps(30) 0.1ms forwards, blink-caret 0.25s step-end;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }

  100% {
    border-color: black;
  }
}

.line-1 {
  animation-delay: 0s;
}

.line-2 {
  animation-delay: 2s;
}

.line-3 {
  animation-delay: 4s;
}

.line-4 {
  animation-delay: 6s;
}

.mob {
  display: none;
}

.block-2 {
  width: 100%;
  position: relative;
}

.block-2-image img {
  width: 100vw;
  opacity: 0.1;
  height: auto;
  display: block;
}

.block-2-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.block-2-box {
  width: 700px;
  height: 350px;
  padding: 10px;
  border-radius: 50px;
  background-color: transparent;
  box-shadow: 0px 0px 2px 3px rgba(159, 158, 158, 0.3);
}

.block-2-box h3 {
  font-size: 20px;
  padding: 20px;
  font-weight: lighter;
  text-align: justify;
}

.block-3 {
  margin-bottom: 30px;
  height: 100vh;
  width: 100%;
  position: relative;
}

.block-3-image img {
  object-fit: contain;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
  display: block;
  position: absolute;
}

.block-3-text {
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
}

.block-3-heading {
  border: 2px solid rgb(222, 204, 250);
  border-radius: 20%;
  background-color: transparent;
  margin-top: 20px;
}

.block-3-heading h1 {
  padding: 10px;
}

.box {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.container {
  width: 350px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 0 8px rgba(249, 243, 243, 0.4);
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: none;
}

.slider-image.active {
  display: block;
}

.controls {
  position: absolute;
  top: 30%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.controls button {
  background-color: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
  opacity: 1;
}

.controls button:hover {
  opacity: 1;
}

.controls button img {
  width: 35px;
}

.info {
  padding-top: 10px;
}

.info p {
  margin-top: 2px;
  font-size: 15px;
  font-weight: lighter;
}

.info h5 {
  font-size: 20px;
}

.footer {
  position: relative;
  background-color: black;
}

.wavy-border {
  width: 100vw;
  height: 200px;
  background-color: #040404;
  position: relative;
  clip-path: polygon(0 20%,
      10% 25%,
      20% 15%,
      30% 25%,
      40% 20%,
      50% 25%,
      60% 15%,
      70% 25%,
      80% 20%,
      90% 25%,
      100% 15%,
      100% 100%,
      0 100%);
}

.footer-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-img img {
  padding-top: 10px;
  top: 25%;
  position: absolute;
  width: 200px;
}

.connects {
  display: flex;
  align-items: center;
  justify-content: center;
}

.connects ul {
  top: 50%;
  position: absolute;
  display: flex;
}

.end {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 80%;
  color: white;
}

@media screen and (max-width: 400px) {
  .mob {
    font-size: 35px;
  }

  .block-2 {
    height: 800px;
  }

  .block-2-box {
    width: 750px;
    height: 750px;
  }

  .container {
    width: 280px;
  }
}

@media screen and (max-width: 1024px) {

  .block-1-image img {
    margin-top: 150px;
    width: 100vw;
    height: auto;
    display: block;
  }

  .block-1-text {
    position: absolute;
    top: 40%;
    left: 38%;
    transform: translate(-50%, -50%);
    text-align: start;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .block-2-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .block-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  .block-3 {
    height: auto;
  }

  .block-3-image img {
    height: auto;
  }

  .block-3-text {
    font-size: 20px;
    margin-top: 30px;
  }

  .box {
    width: 100%;
    gap: 15px;
  }

  .container {
    width: 350px;
    height: 400px;
  }

  .slider-image {
    height: 180px;
  }

  .controls {
    top: 50%;
    padding: 0 10px;
    top: 20%;
  }

  .info p {
    font-size: 14px;
    padding: 10px;
  }
}

@media screen and (max-width: 800px) {

  .button {
    display: inline;
  }

  .left ul {
    display: flex;
    flex-direction: column;
  }

  nav {
    height: 250px;
  }

  .left {
    position: absolute;
    top: 25%;
    width: 100vw;
    display: flex;
    justify-content: center;
  }

  .left ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .left ul li {
    padding: 10px;
  }

  .pc {
    display: none;
  }

  .mob {
    display: block;
  }

  .block-1-image img {
    margin-top: 250px;
    width: 100vw;
    height: auto;
    display: block;
  }

  .block-1-text {
    line-height: 70px;
    text-align: center;
    left: 50%;
  }

  .block-2-image img {
    height: 70vh;
  }

  .block-2-box {
    margin-top: 20px;
    width: 75vw;
    height: auto;
  }

  .block-3 {
    height: auto;
  }

  .block-3-image img {
    height: auto;
  }

  .block-3-text {
    font-size: 18px;
    margin-top: 20px;
  }


  .box {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .container {
    margin-top: 20px;
    width: 350px;
    height: 400px;
  }

  .slider-image {
    width: 100%;
    height: 240px;
  }

  .controls {
    top: 30%;
  }

  .controls button {
    padding: 5px;
  }

  .info p {
    font-size: 13px;
  }

  .block-3-heading h1 {
    padding: 10px;
    font-size: 18px;
  }

}