@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e51e2a;
  clip-path: circle(50% at bottom right);
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.logo {
  position: relative;
  max-width: 150px;
}
header .navigation ul {
  position: relative;
  display: flex;
}
header .navigation li {
  list-style: none;
}
header .navigation li a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  font-size: 19px;
  margin-left: 100px;
}
.container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container .text {
  position: relative;
  max-width: 600px;
  margin-right: 20px;
}

.container .text h2 {
  color: #fff;
  font-size: 3em;
  margin-bottom: 3px;
  line-height: 2.5em;
  font-weight: 700;
}
.container .text h2 span {
  font-size: 3.5em;
  color: #e51e2a;
}

.container .text p {
  color: #fff;
}

.container .text a {
  display: inline-block;
  margin-top: 50px;
  padding: 10px 25px;
  background: #e51e2a;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 40px;
  transition: 0.3s ease-in-out;
}

.container .text a:hover {
  transform: translateY(-10px);
}
.icons {
  position: absolute;
  bottom: 40px;
  left: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icons li {
  list-style: none;
}

.icons li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #222;
  margin-left: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.icons li a:hover {
  background: #e51e2a;
  transform: translateY(-5px);
}

.icons li a img {
  transform: scale(0.7);
  filter: invert(1);
}
.boxImg {
  position: absolute;
  right: 0;
  bottom: -40px;
}
.boxImg img {
  width: 200px;
}
.boxImg .img1 {
  transform: rotate(-15deg);
  transition: 1s;
}
.boxImg .img1:hover {
  transform: translateY(-50px);
}
.boxImg .img2 {
  transform: rotate(5deg);
  transition: 1s ease-in-out;
}
.boxImg .img2:hover {
  transform: translateY(-50px);
}
.boxImg .img3 {
  transform: rotate(15deg);
  transition: 1s ease-in-out;
}
.boxImg .img3:hover {
  transform: translateY(-50px);
}
.boxImg .img4 {
  transform: rotate(-15deg);
  transition: 1s ease-in-out;
}
.boxImg .img4:hover {
  transform: translateY(-50px);
}
