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

html {
  font-size: 10px;
}

body {
  font-family: 'Chivo', sans-serif;
  font-size: 1.6rem;
  color: #000000;
  background-color: #F9F9F9;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000000;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  max-width: 100%;
}

#map {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

section {
  padding: 5rem 0;
}

.container {
  width: 100%;
  padding: 0 1.5rem;
  max-width: 144rem;
  margin: 0 auto;
}

.w-120 {
  max-width: 120rem;
}

.w-105 {
  max-width: 105rem;
}

.btn {
  border-radius: .5rem;
  padding: 1.2rem;
}

/*Header */
header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.header__nav {
  padding: 2rem 1.5rem;
  margin: auto;
  display: flex;
  align-items: center;
}

.header__logo {
  flex: 2;
}

.header__logo img {
  max-width: 12rem;
}

.header__nav__content {
  flex: 8;
  display: flex;
  align-items: center;
}

.header__nav__content.open {
  transform: translateX(0);
}

.header__menu {
  flex: 4;
  display: flex;
  grid-gap: 2.5rem;
}

.menu__link {
  cursor: pointer;
  transition: .2s all;
}

.menu__link:hover {
  color: #E74C3C;
}

.menu__link.active {
  color: #E74C3C;
  font-weight: bold;
}

.header__signup {
  flex: 4;
  display: flex;
  justify-content: flex-end;
}

.btn__signup {
  border: 1px solid #ffffff;
  font-size: 1.6rem;
  color: #ffffff;
  /*
    Button hover effect resource
    https://codepen.io/alticreation/pen/zBZwOP
    */
  display: inline-block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn__signup:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}

.btn__signup:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #E74C3C;
  transition: all .3s;
  z-index: -1;
}

.btn__signup:hover {
  color: #ffffff;
}

.btn__signup:hover:before {
  width: 100%;
}

.hamburger-menu-wrap {
  position: absolute;
  top: 3rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.hamburger-menu {
  width: 2rem;
  height: 2rem;
  display: flex;
  grid-row-gap: .2rem;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.hamburger-menu .line {
  background-color: #E74C3C;
  height: .3rem;
  width: 100%;
  transition: all 0.3s;
}

.nav-close-icon {
  position: relative;
  padding: 3rem 2rem;
  height: 2.5rem;
  cursor: pointer;
  display: none;
}

.nav-close-icon:before, .nav-close-icon:after {
  position: absolute;
  content: '';
  width: 4px;
  right: 4rem;
  height: 40%;
  background-color: #ffffff;
}

.nav-close-icon:before {
  transform: rotateZ(45deg) translate(0.5rem, -1rem);
}

.nav-close-icon:after {
  transform: rotateZ(-45deg) translate(1rem, 0.5rem);
}

/*End Header */
/*End Hero */
.hero {
  margin: auto;
}

.hero__content {
  display: flex;
  height: 100vh;
}

.hero__text {
  margin-top: 10rem;
  max-width: 60rem;
}

.hero__title {
  font-size: 4.6rem;
}

.hero__description {
  font-size: 1.8rem;
  margin: 2.5rem 0 3rem;
  color: #263238;
  text-align: justify;
}

.btn__hero {
  border: 1px solid #E74C3C;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 1px 10px 30px -10px #E74C3C;
  /*
    Button hover effect resource
    https://codepen.io/alticreation/pen/zBZwOP
    */
  display: inline-block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn__hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E74C3C;
  z-index: -2;
}

.btn__hero:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff;
  transition: all .3s;
  z-index: -1;
}

.btn__hero:hover {
  color: #E74C3C;
}

.btn__hero:hover:before {
  width: 100%;
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.hero__img img {
  max-height: 100vh;
  width: initial;
}

.hero--contact {
  margin-bottom: 6rem;
}

.hero--contact .hero__content {
  min-height: 70vh;
  padding-top: 14rem;
  padding-bottom: 8rem;
  align-items: center;
  grid-column-gap: 6rem;
  height: auto;
}

.hero__content--contact {
  align-items: center;
}

.hero--contact .hero__text {
  margin-top: 0;
}

.hero--contact .hero__img {
  position: static;
  max-width: 42rem;
}

.hero--contact .hero__img img {
  max-height: initial;
  width: 100%;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 1.5rem;
  align-items: center;
}

.btn__hero--outline {
  border: 1px solid #E74C3C;
  background-color: transparent;
  color: #E74C3C;
  box-shadow: none;
}

.btn__hero--outline:after {
  background-color: transparent;
}

.btn__hero--outline:before {
  background-color: #E74C3C;
}

.btn__hero--outline:hover {
  color: #ffffff;
}

.contact-info-list {
  margin-top: 3rem;
  display: grid;
  grid-row-gap: 1.2rem;
  color: #455A64;
  text-align: left;
}

.contact-info-list i {
  color: #E74C3C;
  margin-right: 1rem;
}

.contact-info-list a {
  color: inherit;
  font-weight: 700;
}

.contact-details {
  padding: 6rem 0 4rem;
}

.contact-details__head {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 4rem;
}

.contact-details__title {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
}

.contact-details__description {
  font-size: 1.8rem;
  color: #546E7A;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 3rem;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 25px 60px -35px rgba(38, 50, 56, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  grid-row-gap: 1.5rem;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px -40px rgba(231, 76, 60, 0.55);
}

.contact-card__icon {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
  font-size: 2.4rem;
}

.contact-card__title {
  font-size: 2.2rem;
}

.contact-card__description {
  color: #455A64;
  flex: 1;
}

.contact-card__link {
  font-weight: 700;
  color: #E74C3C;
}

.contact-form-section {
  background: linear-gradient(180deg, rgba(231, 76, 60, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 6rem 0;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 4.5rem 4rem;
  box-shadow: 0 35px 80px -45px rgba(38, 50, 56, 0.5);
  display: grid;
  grid-row-gap: 3rem;
}

.contact-form__intro {
  max-width: 70rem;
}

.contact-form__title {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.contact-form__description {
  color: #455A64;
  font-size: 1.8rem;
}

.contact-form__alert {
  align-items: center;
  border-radius: 1rem;
  border: 1px solid transparent;
  display: flex;
  font-weight: 700;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 1.2rem 1.6rem;
}

.contact-form__alert--success {
  background-color: #e8f5e9;
  border-color: #a5d6a7;
  color: #2e7d32;
}

.contact-form__alert--error {
  background-color: #ffebee;
  border-color: #ef9a9a;
  color: #c62828;
}

.contact-form__form {
  display: grid;
  grid-row-gap: 2.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 2rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  grid-row-gap: 1rem;
}

.contact-form__field label {
  font-weight: 700;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  border: 1px solid #CFD8DC;
  border-radius: 0.8rem;
  padding: 1.4rem 1.6rem;
  font-family: inherit;
  font-size: 1.6rem;
  color: #263238;
  background-color: #FDFDFD;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #E74C3C;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 16rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  grid-row-gap: 1.5rem;
}

.contact-form__note {
  font-size: 1.4rem;
  color: #607D8B;
}

.contact-map {
  padding: 6rem 0 8rem;
}

.contact-map__content {
  display: flex;
  align-items: stretch;
  grid-column-gap: 4rem;
}

.contact-map__text {
  flex: 1;
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: 0 30px 80px -45px rgba(38, 50, 56, 0.4);
  display: grid;
  grid-row-gap: 2rem;
}

.contact-map__title {
  font-size: 3.2rem;
}

.contact-map__description {
  color: #455A64;
  font-size: 1.8rem;
}

.contact-map__list {
  display: grid;
  grid-row-gap: 1rem;
  color: #455A64;
}

.contact-map__list i {
  color: #E74C3C;
  margin-right: 1rem;
}

.contact-map__frame {
  flex: 1;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px -45px rgba(38, 50, 56, 0.45);
  min-height: 38rem;
}

.contact-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*End Hero */
/*Opportunities*/
.opportunities {
  position: relative;
}

.opportunities__img {
  position: absolute;
  left: -1.5rem;
  top: -16rem;
  z-index: -1;
}

.opportunities__img img {
  max-height: 55rem;
  max-width: 16rem;
}

.opportunities__content {
  margin: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
  border-bottom: 2px solid #f7f7f7;
  margin-bottom: 4rem;
}

.opportunities__head {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 10rem;
}

.opportunities__title {
  font-size: 3.6rem;
  color: #000000;
}

.opportunities__description {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: #263238;
}

.opportunities__body {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2.5rem;
  align-self: baseline;
}

.opportunity {
  width: 30%;
  background-color: #ffffff;
  border-radius: .5rem;
  filter: drop-shadow(0 0 0.75rem rgba(27, 31, 35, 0.15));
  padding: 5rem 2.5rem 2.5rem;
  transition: all 0.3s ease-out;
}

.opportunity.active {
  background-color: #E74C3C;
}

.opportunity.active .opportunity__title,
.opportunity.active .opportunity__description {
  color: #ffffff;
}

.opportunity:hover {
  transform: translateY(-2rem);
}

.opportunity__icon {
  max-height: 5.6rem;
  width: initial;
}

.opportunity__title {
  font-size: 1.8rem;
  color: #263238;
  margin: 2.5rem 0;
}

.opportunity__description {
  font-size: 1.6rem;
  font-weight: 400;
  color: #263238;
}

/*End Opportunities*/
/* Invest*/
.invest {
  margin: auto;
}

.invest__head {
  max-width: 70rem;
}

.invest__title {
  font-size: 3.6rem;
}

.invest__description {
  margin-top: 1.5rem;
  color: #324148;
  font-size: 1.8rem;
}

.invest__body {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40rem, 1fr));
  grid-gap: 2.5rem;
}

.invest__item {
  padding: 2.5rem;
}

.invest__item:nth-child(1) {
  background: url("../img/investments/invest-1.png") no-repeat center/cover;
}

.invest__item:nth-child(2) {
  background: url("../img/investments/invest-2.png") no-repeat center/cover;
}

.invest__item__subtitle {
  color: #E74C3C;
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
}

.invest__item__subtitle::after {
  position: absolute;
  content: '';
  top: 3rem;
  left: 0;
  width: 5.6rem;
  height: 4px;
  background-color: #ffffff;
}

.invest__item__body {
  margin: 5rem 0 2.5rem;
}

.invest__item__title {
  color: #ffffff;
  font-size: 3.1rem;
  max-width: 30rem;
}

.invest__item_description {
  font-size: 1.6rem;
  color: #ffffff;
  max-width: 30rem;
}

.btn__invest {
  color: #E74C3C;
  display: inline-block;
  width: 20rem;
  text-align: center;
  box-shadow: 1px 10px 30px -10px #E74C3C;
  /*
    Button hover effect resource
    https://codepen.io/alticreation/pen/zBZwOP
    */
  display: inline-block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn__invest:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -2;
}

.btn__invest:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #E74C3C;
  transition: all .3s;
  z-index: -1;
}

.btn__invest:hover {
  color: #ffffff;
}

.btn__invest:hover:before {
  width: 100%;
}

/*End Invest*/
/*End How Is Works*/
.how-is-works {
  background: url("../img/how-is-works-bg.png") no-repeat;
  background-color: #E74C3C;
  margin: auto;
}

.works__content {
  max-width: 70rem;
  margin: auto;
  color: #ffffff;
  padding: 0 1.5rem;
}

.works__head {
  text-align: center;
}

.works__title {
  font-size: 3.6rem;
}

.works__description {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3rem;
}

.works__body {
  margin: 5rem 0 10rem;
  justify-content: center;
  display: flex;
}

.form_progressbar {
  display: flex;
  grid-column-gap: 13rem;
}

.progressbar__step {
  cursor: pointer;
  border-radius: 50%;
  width: 7.2rem;
  height: 7.2rem;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progressbar__step.active {
  background-color: #ffffff;
  color: #E74C3C;
}

.progressbar__step.active:not(:first-child)::after {
  height: 5px;
  transform: scaleX(0);
  transform-origin: left;
  animation: progressBarStepAnimate 0.5s linear forwards;
}

.progressbar__step:not(:first-child)::before, .progressbar__step:not(:first-child)::after {
  position: absolute;
  content: '';
  right: 100%;
  width: 13rem;
  height: 1px;
  background-color: #ffffff;
  pointer-events: none;
}

@keyframes progressBarStepAnimate {
  100% {
    transform: scaleX(1);
  }
}

.works__footer {
  display: flex;
  overflow: hidden;
}

.works__step__content {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  grid-gap: 2.5rem;
  transition: .5s all linear;
  padding: 3rem;
  position: relative;
  align-items: center;
}

.works__step__content::before {
  position: absolute;
  content: '';
  left: 1.5rem;
  top: 1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  box-shadow: 0 1px 6px black;
  border-radius: .8rem;
}

.works__step_title {
  font-size: 2.4rem;
  flex: 5;
}

.works__step_description {
  flex: 6;
  font-size: 1.6rem;
  font-weight: 400;
}

/*End How Is Works*/
/*Testimonials*/
.testimonials {
  margin-top: 20rem;
}

.testimonials__head {
  position: relative;
  margin: auto;
}

.testimonials__quote {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 11rem;
  width: auto;
}

.testimonials__title {
  font-size: 3.6rem;
  max-width: 45rem;
}

.testimonials__body {
  margin: 8rem auto 4rem;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.testimonials__body::before, .testimonials__body::after {
  position: absolute;
  content: '';
  top: 0;
  width: 10%;
  background-color: #ffffff;
  opacity: .5;
  height: 100%;
  z-index: 1;
}

.testimonials__body::before {
  left: 0;
  filter: drop-shadow(5rem 0 4rem #ffffff);
}

.testimonials__body::after {
  right: 0;
  filter: drop-shadow(-5rem 0 4rem #ffffff);
}

.testimonials__list {
  display: flex;
  grid-gap: 2.5rem;
  position: relative;
}

.testimonial {
  flex-shrink: 0;
  width: 33%;
  padding: 2.5rem;
  background-color: #ffffff;
  filter: drop-shadow(0 0 0.75rem rgba(27, 31, 35, 0.15));
  transition: transform .3s ease;
}

.testimonial:hover {
  transform: scale(1.1);
  z-index: 1;
}

.testimonial__profile {
  display: flex;
  grid-gap: 2.5rem;
  align-items: center;
  font-size: 1.8rem;
}

.testimonial__img {
  filter: drop-shadow(0 0 0.5rem #E74C3C);
  width: 7.2rem;
  height: 7.2rem;
}

.testimonial__img img {
  width: initial;
  max-width: initial;
}

.testimonial__name {
  color: #E74C3C;
}

.testimonial__title {
  color: #263238;
}

.testimonial__description {
  margin-top: 5rem;
  font-size: 1.8rem;
  color: #324148;
}

.testimonials__footer {
  margin: auto;
}

.testimonials__directions {
  display: flex;
  grid-gap: 1.5rem;
}

.btn__testimonials {
  border-radius: 50%;
  cursor: pointer;
  padding: 1.5rem;
  outline: none;
  border: none;
  background-color: #E74C3C;
  color: #ffffff;
  box-shadow: 1px 10px 30px -10px #E74C3C;
}

.btn__testimonials.disable {
  background-color: #ffffff;
  color: #263238;
}

/*End Testimonials*/
/*Farm Invest */
.farm-invest {
  margin: auto;
  padding: 5rem 2.5rem;
  text-align: center;
  background-color: #ffffff;
  filter: drop-shadow(0 0 0.75rem rgba(27, 31, 35, 0.15));
  margin-bottom: 10rem;
}

.farm-invest__title {
  font-size: 3.6rem;
}

.farm-invest__title span {
  color: #E74C3C;
}

.btn__farm--invest {
  border: 1px solid #E74C3C;
  color: #ffffff;
  display: inline-block;
  min-width: 25rem;
  margin-top: 4rem;
  box-shadow: 1px 10px 30px -10px #E74C3C;
  /*
    Button hover effect resource
    https://codepen.io/alticreation/pen/zBZwOP
    */
  display: inline-block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn__farm--invest:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E74C3C;
  z-index: -2;
}

.btn__farm--invest:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff;
  transition: all .3s;
  z-index: -1;
}

.btn__farm--invest:hover {
  color: #E74C3C;
}

.btn__farm--invest:hover:before {
  width: 100%;
}

/*End Farm Invest*/
/*Footer*/
footer {
  position: relative; /* ou static */
  width: 100%;
}

.footer {
  position: relative;
}

.footer__body {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2.5rem;
  align-items: baseline;
  padding-bottom: 5rem;
  border-bottom: 2px solid #f7f7f7;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  /* flex: 9 2 auto; */
  grid-row-gap: 2.5rem;
}

.footer__logo {
  width: 64px;
}

.footer_nav__menu {
  flex-basis: 33%;
}

.footer_nav__item {
  padding: 1rem 2.5rem;
}

.footer_nav__menu__title {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.footer_nav__link {
  font-size: 1.6rem;
  color: #607D8B;
  transition: .2s all;
}

.footer_nav__link:hover {
  color: #E74C3C;
}

.footer__contact {
  flex: 1 0 28rem;
  background-color: #E74C3C;
  padding: 5rem 5rem 10rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer__contact > * {
  /* max-width: 16rem; */
}

.footer__contact__title {
  margin-bottom: 1.5rem;
}

.email {
  color: #ffffff;
}

.btn__signin {
  margin-top: 1.5rem;
  border: 1px solid #ffffff;
  color: #E74C3C;
  /*
    Button hover effect resource
    https://codepen.io/alticreation/pen/zBZwOP
    */
  display: inline-block;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn__signin:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -2;
}

.btn__signin:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #E74C3C;
  transition: all .3s;
  z-index: -1;
}

.btn__signin:hover {
  color: #ffffff;
}

.btn__signin:hover:before {
  width: 100%;
}

.footer__bottom__content {
  margin-top: 5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 5rem auto 0;
  padding-bottom: 10rem;
}

.footer_copyright {
  color: #607D8B;
  font-size: 1.4rem;
  text-align: center;
}

.footer_img {
  position: absolute;
  bottom: 0;
  right: -1.5rem;
  max-width: 50rem;
}

/*End Footer*/
@media screen and (max-width: 950px) {
  /*Header */
  .hamburger-menu-wrap,
  .nav-close-icon {
    display: block;
  }
  .header__nav__content {
    flex: initial;
    align-items: initial;
    position: fixed;
    top: 0;
    right: 0;
    width: 30rem;
    height: 100vh;
    background-color: #E74C3C;
    z-index: 2;
    flex-direction: column;
    transform: translateX(40rem);
    transition: transform 0.3s ease-in-out;
    grid-gap: 2.5rem;
  }
  .header__menu {
    flex-direction: column;
    flex: initial;
    align-items: center;
  }
  .menu__link {
    color: #ffffff;
  }
  .menu__link:hover, .menu__link.active {
    color: #ffffff;
  }
  .header__signup {
    flex: initial;
    justify-content: center;
  }
  /*End Header */
  /*Hero */
  .hero__content {
    justify-content: center;
    text-align: center;
  }
  .hero__img {
    display: none;
  }
  .hero--contact .hero__content {
    padding-top: 12rem;
    padding-bottom: 6rem;
    text-align: center;
  }
  .hero--contact .hero__img {
    display: block;
    max-width: 28rem;
    margin: 0 auto;
  }
  .hero--contact .hero__img img {
    width: 100%;
  }
  .contact-cta {
    justify-content: center;
  }
  .contact-info-list {
    justify-items: center;
  }
  .contact-details__grid {
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-map__content {
    flex-direction: column;
    grid-row-gap: 3rem;
  }
  .contact-map__frame {
    min-height: 32rem;
  }
  /*End Hero */
  /*Testimonials*/
  .testimonial {
    width: 50%;
  }
  /*End Testimonials*/
}

@media screen and (max-width: 768px) {
  /* Opportunities*/
  .opportunity {
    width: 100%;
  }
  /*End Opportunities*/
  /*How Is Works*/
  .form_progressbar {
    grid-column-gap: 7rem;
    justify-content: center;
  }
  .progressbar__step {
    width: 4.8rem;
    height: 4.8rem;
  }
  .progressbar__step:not(:first-child)::before, .progressbar__step:not(:first-child)::after {
    width: 7rem;
  }
  .works__step__content {
    flex-direction: column;
  }
  .works__step_title {
    font-size: 2rem;
    text-align: center;
  }
  /*End How Is Works*/
  /*Testimonials*/
  .testimonials__body::before, .testimonials__body::after {
    background-color: transparent;
  }
  .testimonials__list {
    padding-left: 1.5rem;
  }
  .testimonial {
    width: calc(100% - 3rem);
    word-wrap: break-word;
  }
  .testimonial:hover {
    transform: initial;
  }
  /*End Testimonials*/
  /*Footer*/
  .footer_nav__menu {
    text-align: center;
  }
  .footer__bottom__content {
    flex-direction: column;
    grid-row-gap: 4.5rem;
    align-items: center;
  }
  .contact-form {
    padding: 3.5rem 2.5rem;
  }
  .contact-map__text {
    padding: 3rem;
  }
  /*end Footer*/
}

@media screen and (max-width: 500px) {
  /*Global*/
  .opportunities__title,
  .invest__title,
  .works__title,
  .testimonials__title,
  .farm-invest__title {
    font-size: 3rem;
  }
  .invest__description,
  .works__description {
    font-size: 1.6rem;
  }
  /*End Global*/
  /*Hero*/
  .hero__title {
    font-size: 3.2rem;
  }
  /*End Hero*/
  /*Opportunities*/
  .opportunities__img {
    top: -8rem;
  }
  .opportunities__img img {
    max-height: 40rem;
    max-width: 10rem;
  }

  /* TODO FIX BUG RESPONSIVE
  .opportunity__icon {
    width: inherit;
  } */
  /*End Opportunities*/
  /*Invest Section*/
  .invest__body {
    grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
  }
  .invest__item__title {
    font-size: 2.4rem;
  }
  /*End Invest Section*/
  /*How Is Works*/
  .form_progressbar {
    grid-column-gap: 4rem;
    justify-content: center;
  }
  .progressbar__step {
    width: 4.8rem;
    height: 4.8rem;
  }
  .progressbar__step:not(:first-child)::before, .progressbar__step:not(:first-child)::after {
    width: 4rem;
  }
  .works__step_title {
    font-size: 1.8rem;
  }
  /*End How Is Works*/
  /*Testimonials*/
  .testimonials {
    margin-top: 10rem;
  }
  /*End Testimonials*/
  /*Footer*/
  .footer_nav__menu {
    text-align: left;
  }
  .footer__contact {
    width: 100%;
  }
  .contact-details__title,
  .contact-form__title,
  .contact-map__title {
    font-size: 2.8rem;
  }
  .contact-details__description,
  .contact-form__description,
  .contact-map__description {
    font-size: 1.6rem;
  }
  .contact-form {
    padding: 3rem 2rem;
  }
  .contact-map__text {
    padding: 2.5rem;
  }
  .contact-map__frame {
    min-height: 28rem;
  }
  /*End Footer*/
}

@media screen and (max-width: 360px) {
  /*Invest Section*/
  .invest__body {
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  }
  /*End Invest Section*/
  /*How Is Works*/
  .progressbar__step {
    width: 4rem;
    height: 4rem;
  }
  /*End How Is Works*/
  /*Testimonials */
  .testimonial__profile {
    flex-direction: column;
    text-align: center;
  }
  /*End Testimonials*/
  /*Farm Invest*/
  .btn__farm--invest {
    width: 80%;
    min-width: initial;
  }
  /*End Farm Invest*/
}
/*# sourceMappingURL=main.css.map */

/* --- Portfolio section --- */
.hero__portfolio {
  display: block;
}

.portfolio {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #C0392B;
}

/* --- Grid layout --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* --- Each portfolio block --- */
.portfolio-item {
  background: #F9F9F9;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.thumbnail {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: block;
}

.thumbnail:focus {
  outline: 2px solid #C0392B;
  outline-offset: 4px;
}

.thumbnail__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .thumbnail__image {
  transform: scale(1.03);
}

.compare-preview {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.compare-preview__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: clip-path 0.3s ease;
}

.compare-preview__image--before {
  filter: grayscale(40%);
}

.compare-preview__image--after {
  clip-path: inset(0 0 0 50%);
}

.portfolio-item--compare:hover .compare-preview__image--after {
  clip-path: inset(0 0 0 0);
}

.compare-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.8);
  transition: opacity 0.3s ease;
}

.portfolio-item--compare:hover .compare-preview::after {
  opacity: 0;
}

.compare-preview__label {
  position: absolute;
  top: 12px;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px;
}

.compare-preview__label--before {
  left: 12px;
}

.compare-preview__label--after {
  right: 12px;
}

/* --- Caption --- */
.caption {
  font-size: 1rem;
  color: #2F2F2F;
  padding: 15px;
  background: #ECF0F1;
  border-top: 1px solid #ddd;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox__inner {
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lightbox-single img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  object-fit: contain;
  animation: fadeIn 0.3s ease;
}

.lightbox-compare {
  width: min(90vw, 900px);
}


.lightbox-compare__wrapper {
  position: relative;
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,255,255,0.25);
  cursor: ew-resize;
  touch-action: none;
}

.lightbox-compare__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lightbox-compare__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

.lightbox-compare__overlay::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
  z-index: 2;
}

.lightbox-compare__overlay .lightbox-compare__image {
  animation: fadeIn 0.3s ease;
}

.lightbox-compare__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: ew-resize;
  z-index: 3;
  background: transparent;
  pointer-events: none;
}

.lightbox-compare__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  border: none;
  background: transparent;
}

.lightbox-compare__slider::-moz-range-thumb {
  width: 0;
  height: 0;
  border: none;
  background: transparent;
}

.lightbox-compare__slider::-webkit-slider-runnable-track {
  background: transparent;
}

.lightbox-compare__slider::-moz-range-track {
  background: transparent;
}

.lightbox-compare__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 4;
  transition: box-shadow 0.2s ease;
}

.lightbox-compare__slider:focus + .lightbox-compare__handle {
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.45);
}

.lightbox-compare__handle-bar {
  position: absolute;
  width: 3px;
  height: 60%;
  border-radius: 2px;
  background: rgba(255,255,255,0.9);
}

.lightbox-compare__handle-arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.lightbox-compare__handle-arrow--left {
  border-right: 10px solid #ffffff;
  margin-right: 6px;
}

.lightbox-compare__handle-arrow--right {
  border-left: 10px solid #ffffff;
  margin-left: 6px;
}

.lightbox-compare__label {
  position: absolute;
  top: 16px;
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px;
  z-index: 5;
  pointer-events: none;
}

.lightbox-compare__label--before {
  left: 16px;
}

.lightbox-compare__label--after {
  right: 16px;
}

.lightbox__caption {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  max-width: 80ch;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

.no-scroll {
  overflow: hidden;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* --- Responsive --- */
@media (max-width: 700px) {
  .thumbnail__image,
  .compare-preview {
    height: auto;
  }

  .lightbox-single img,
  .lightbox-compare {
    max-width: 95vw;
  }

  .lightbox .close {
    top: 16px;
    right: 20px;
  }
}