@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  overflow: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 80px;
}

.menu ul {
  position: absolute;
  height: 100vh;
  top: 113px;
  right: -100%;
  width: 100%;
  background: #ffffff;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 100;
  color: #333;
}

.menu li {
  font-weight: 400;
  padding: 0 30px;
  text-decoration: none;
  display: inline-block;
}

.menu a {
  padding: 10px 15px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: #333;
}
.content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content__text {
  position: relative;
  max-width: 600px;
}

.content__text h2 {
  color: #333;
  font-size: 4em;
  line-height: 1.1em;
  font-weight: 500;
}

.content__text h2 span {
  color: #017143;
  font-size: 1.2em;
  font-weight: 900;
}

.content__text p {
  color: #333;
}

.content__text a {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #017143;
  color: #fff;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}

.content__img {
  width: 600px;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  margin-top: 50px;
}

.content__img img {
  max-width: 340px;
}

.thumb {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
}

.thumb li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  cursor: pointer;
  transition: 0.5s;
}

.thumb li:hover {
  transform: translateY(-15px);
}

.thumb li img {
  max-width: 60px;
}

.social {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  margin: 5px 0;
  transform: scale(0.6);
  filter: invert(1);
}

.circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0171425e;
  clip-path: circle(600px at right 800px);
}

@media (max-width: 1000px) {
  section {
    padding: 10px;
  }
  .menu {
    position: absolute;
    height: 100vh;
    top: 113px;
    right: -100%;
    width: 100%;
    background: #ffffff;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 100;
    display: flex;
    justify-content: start;
    flex-direction: column;
    text-align: center;
  }

  .hamburger {
    display: block;
    width: 40px;
    height: 35px;
  }
  .hamburger span {
    width: 33px;
    height: 2px;
    background: #1a1a1a;
    margin-top: 7px;
    display: block;
    transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .menu-open .hamburger span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .menu-open .hamburger span:nth-child(2) {
    transform: translateY(-4px) rotate(-46deg);
  }
  .menu-open .menu {
    right: 0;
    height: 100vh;
    z-index: 9999;
  }

  .content__text h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .content__text p {
    font-size: 0.9rem;
  }

  .social {
    top: 40%;
    right: 1%;
  }

  .social li a {
    margin: 0;
  }

  .thumb {
    bottom: 5px;
  }

  .content__img {
    position: absolute;
    top: 60%;
    right: 0;
    left: 0;
  }
}
