* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.header {
  width: 100%;
  height: 100vh;
  background: #000;
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding-top: 10px;
  padding-left: 10%;
}

.nav-links {
  text-align: right;
  background: #ff1616;
  padding: 10px 30px;
  border-bottom-left-radius: 18px;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 10px 25px;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.left-sidebar {
  width: 20%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ff1616;
}

.row {
  padding: 0 10%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  margin-top: 5%;
}

.left-col {
  flex-basis: 40%;
}

.right-col {
  flex-basis: 55%;
}

.left-col img {
  width: 80%;
  cursor: pointer;
  filter: grayscale(0);
  transition: filter 1s;
}

.left-col img:hover {
  filter: grayscale(1);
}

.right-col h1 {
  font-size: 55px;
  font-weight: 600;
}

.right-col p {
  color: #777;
  margin: 20px 0 70px;
}

.social-media {
  display: flex;
  margin-top: 30px;
}

.icon {
  width: 100px;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s;
}

.icon img {
  width: 28px;
}

.icon a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ff1616;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.icon a:hover{
  opacity: 1;
}

.icon:hover{
  transform: translateY(-5px);
}