* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", 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: #ffff;
  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: 10px;
  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-size: 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: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.icons li a:hover {
  background: #e51e2a;
  transform: translateY(-10px);
}

.icons li a ion-icon {
 color: #fff;
}

.boxImg {
  position: absolute;
  right: 0;
  bottom: -40px;
}

.boxImg img {
  width: 200px;
}

.boxImg .img1{
    transform: rotate(-15deg)
}
.boxImg .img2{
    transform: rotate(5deg)
}
.boxImg .img3{
    transform: rotate(15deg)
}
.boxImg .img4{
    transform: rotate(-15deg)
}
