* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;

}


body,
html {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  width: 100%;
  background-color: #3d3d3df3;
}

section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s ease-in-out;
  will-change: transform;
  opacity: 0;
}

main .container{
  width: 100%;
}


.section-separator{
  height: 2px;
  background-color: #427536;
  margin: 3rem 1rem ;
  border-radius: 10px;
  border: none;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}


.scroll-down {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}

.chevron {
  position: absolute;
  width: 2.1rem;
  height: 0.48rem;
  opacity: 0;
  transform: scale(0.3);
  -webkit-animation: move-chevron 4s ease-out infinite;
  animation: move-chevron 4s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move-chevron 4s ease-out 2s infinite;
  animation: move-chevron 4s ease-out 2s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 4s ease-out 3s infinite;
  animation: move-chevron 4s ease-out 3s infinite;
}

.chevron:before,
.chevron:after {
  content: "";
  position: absolute;
  top: -1rem;
  height: 100%;
  width: 50%;
  background: #ffffff;
}

.chevron:before {
  left: 0;
  transform: skewY(30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-30deg);
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }

  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }

  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }

  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }

  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-content h2{
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.7rem;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

form input, form textarea {
  width: 100%;
  padding: 7px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form textarea{
  height: 90px;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #427536;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background-color: #71b503;
}


.actions-btns {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 0.5rem;
}

.actions-btns .know-more{
  border-color: #427536;
  background-color: #427536;
  box-shadow: 0 0 0 2px #427536;

}


.actions-btns .contact-btn{
  border-color: #71b503;
  background-color: #71b503;
  box-shadow: 0 0 0 2px #71b503;
}

.actions-btns .contact-btn:active{
  box-shadow: 0 0 0 4px #71b503;
}

.actions-btns .contact-btn .circle{
  background-color: #71b503;
}


.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 20px;
  border: 4px solid;
  font-size: 14px;
  border-radius: 100px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: 230px;

}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: rgba(255, 255, 255, 0.479);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 5px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #427536;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  border-radius: 50px;
  opacity: 1;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 5px;
}

.animated-button:hover .text {
  transform: translateX(20px);
}

.animated-button:hover svg {
  fill: #ffffff;
}

.animated-button:active {
  box-shadow: 0 0 0 4px #427536;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

