@import url("https://fonts.googleapis.com/css2?family=Sigmar&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;

  min-height: 100vh;
  background-color: #fff;
}

.hero {
  position: relative;
  z-index: 1;
  background-color: #fff;
  min-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1240px;
  gap: 20%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.content {
  margin-top: 20%;
  width: 40%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.contentBg {
  background-image: url("./lumber-84678_1920.jpg");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -4;
}

.content::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -3;
  width: 100%;
  min-height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.content::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  top: 0;
  right: 75%;
  width: 10000px;
  min-height: 100vh;
  background-color: #fff;
  transform-origin: bottom right;
  transform: skewX(156deg);
}

.contact {
  width: 40%;
  color: #555;
  padding-left: 20px;
  padding-right: 20px;
}

.contact__wrapp {
  display: flex;
  flex-direction: column;
}

.title {
  font-family: "Sigmar", cursive;
  letter-spacing: 2px;
  color: #57b846;
  text-align: left;
  font-size: 4rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.subtitle {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

a {
  transition: all 0.3 ease;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #57b846;
}

.desc {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.bold {
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    flex-direction: column;
    gap: 0;
  }

  .contact {
    width: 100%;
    padding-bottom: 50px;
  }

  .content {
    margin-top: 0;
    position: relative;
    width: 100%;
    padding-top: 50px;
  }

  .content::before {
    top: 0;
    right: 0;
    transform: none;
    z-index: -2;
    min-height: 300vh;
  }

  .content::after {
    bottom: 100%;
    top: auto;
    transform: none;
    width: 100%;
    z-index: -3;
    right: 0;
  }
}
