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

.wrapper {
  max-width: 1257px;
  margin: 0 auto;
}

p:last-of-type {
  margin-bottom: 0;
}
section.banner {
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

section.banner h1 {
  margin-bottom: 0;
}

section.banner h1:has(+p) {
  margin-bottom: 24px;
}

section.banner a {
  text-decoration: none !important;
  text-transform: uppercase;
  font-weight: 800;
  font-family: Montserrat;
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  top: 100px;
  left: 100px;
  transition: 0.3s;
}

section.banner a span:hover {
  color: #05E364;
}

section.banner a:hover path {
  fill: #05E364;
}

section.banner * {
  color: #fff;
}

section.banner .content {
  max-width: 936px;
  text-align: center;
  padding: 0;
}

section.banner .content p {
  max-width: 458px;
  margin: 0 auto;
}

section.content-page img {
  width: 100%;
}
section.content-page p:has(img) {
  margin: 50px 0;
}

.share-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 100px;
}

.share-links span {
  color: #212121;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
}

.share-links a {
  position: relative;
}

.share-links #copy-toast {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(-10px, -70%);
  background: #01411c;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.4s ease;
  z-index: 9999;
}

.share-links #copy-toast.show {
  opacity: 1;
  transform: translate(0, -70%);
}

@media (max-width: 1199px) {
  .share-links {
    margin-top: 70px;
  }
  section.banner a {
    left: 30px;
  }
}

@media (max-width: 767px) {
  .share-links {
    margin-top: 30px;
  }
  section.banner a {
    left: 20px;
  }
}
