* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

nav {
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  padding: 30px 5% 0;
  z-index: 100;
}

.logo {
  width: 140px;
  cursor: pointer;
}

.menu {
  width: 30px;
  cursor: pointer;
}

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

nav ul li {
  display: inline-block;
  margin: 0 42px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.left-col {
  flex-basis: 62%;
  padding: 10% 5% 0;
}
.right-col {
  flex-basis: 38%;
  padding: 10% 3% 0;
  background: rgba(71, 0, 204, 0.6);
  position: relative;
}

.right-col .back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -100;
}

.left-col h1 {
  color: #444;
  font-size: 45px;
  padding-left: 60px;
  position: relative;
}

.left-col h1::before {
  content: "";
  background: #0011db;
  height: 80%;
  width: 8px;
  border-radius: 5px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.right-col h3 {
  color: #fff;
  font-weight: 500;
  padding-left: 50px;
  position: absolute;
  bottom: 120px;
}

.right-col h3::before {
  content: "";
  background: #fff;
  height: 100%;
  width: 6px;
  border-radius: 5px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.play-icon {
  width: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
}

.user-col {
  flex-basis: 27%;
  text-align: center;
  cursor: pointer;
  transition: transform 1s;
  position: relative;
}
.user-col img {
  width: 100%;
  border-radius: 10px;
}

.info {
  opacity: 0;
  transition: opacity 1s;
}

.info p {
  color: #555;
  font-weight: 600;
}

.user-col:hover .info {
  opacity: 1;
}

.user-col:hover {
  transform: translateY(-30px);
}

.user-col .arrow-icon {
  width: 50px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 1s;
}

.user-col:hover .arrow-icon {
  opacity: 0;
}

.white-menu {
  color: #fff;
}
