* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(#111, #222);
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #e80202;
  position: absolute;
  clip-path: circle(40% at right 70%);
}
.container {
  width: 80%;
  height: 80%;
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 20px auto;
}
header .logo {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
  text-decoration: none;
  color: white;
}
header ul li {
  display: inline-block;
  margin: 0px 10px;
}
header ul li a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: 0.6s ease;
}
header ul li a:hover {
  color: #e80202;
}
.section {
  width: 80%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content {
  width: 40%;
  color: white;
}
.content h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  /* line-height: 40px; */
}
.content p {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 20px;
}
.iamge {
  width: 40%;
}
.iamge img {
  width: 400px;
}
.span_heading {
  color: #e80202;
}

@media (min-width: 950px) and (max-width: 1150px) {
  .iamge img {
    width: 300px;
  }
}

@media (max-width: 950px) {
  .section {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .content,
  .iamge {
    width: 100%;
  }
  .iamge img {
    margin-bottom: 70px;
  }
  header {
    display: flex;
    flex-direction: column;
  }
  header .logo {
    margin-top: 20px;
  }
  body::after {
    clip-path: circle(50% at bottom);
  }
}
