* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #a700ff, #4d19db);
  padding-left: 8%;
  padding-right: 8%;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.logo {
  width: 150px;
}

nav ul {
  flex: 1;
  text-align: right;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 15px 0 15px;
}

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

.btn {
  border: 2px solid #fff;
  padding: 6px 25px;
  border-radius: 30px;
  margin-left: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10%;
  justify-content: space-between;
}

.col-1 {
  flex-basis: 40%;
  min-width: 300px;
  margin-bottom: 30px;
  position: relative;
}

.col-2 {
  flex-basis: 55%;
  min-width: 300px;
  margin-bottom: 30px;
}

.col-1 img {
  width: 100%;
}

.col-2 h1 {
  font-size: 62px;
  font-weight: 600;
}

.col-2 h1 span {
  color: yellow;
}

.col-2 p {
  margin: 20px 0 50px;
  max-width: 580px;
}

.col-2 .btn {
  margin-left: 0;
  margin-right: 30px;
  background: #fff;
  color: #4d19db;
  font-weight: 500;
}

.elements {
  position: absolute;
  left: 0;
  top: 0;
  animation: move 2.5s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-15px, 0px);
  }
  50% {
    transform: translate(0px, -15px);
  }
  100% {
    transform: translate(-15px, 0px);
  }
}

.triangle1 {
  position: absolute;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  width: 400px;
  z-index: -1;
  opacity: 0.7;
}

.triangle2 {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  z-index: -1;
  opacity: 0.7;
}
.circle {
  position: absolute;
  right: -100px;
  bottom: -300px;
  width: 500px;
  z-index: -1;
  opacity: 0.5;
}
