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

* {
  font-family: "Poppins", sans-serif, "Roboto", sans-serif;
  color: var(--secondary);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100vw;
}

::before,
::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--title-color);
  font-weight: var(--button-weight);
}

p {
  font-size: var(--text-size);
  font-weight: var(--text-weight);
}

button {
  background-color: transparent;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

form {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

input,
select,
textarea {
  background: transparent;
  border: solid 1px #313247;
  border-radius: 10px;
  padding: 15px;
  outline: none;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  transition: 0.3s ease-in-out all;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
  transform: translateY(-2px);
}

:root {
  /* COLORS */

  --primary: #1dae81;
  --secondary: #252156;

  --linear: linear-gradient(
    90deg,
    rgba(45, 165, 116, 1) 0%,
    rgba(17, 57, 120, 1) 100%
  );

  /* FONT SIZES */

  --page-category-title-size: 107px;
  --page-title-size: 40px;
  --subtitle-size: 35px;
  --text-size: 16px;

  /* FONT WEIGHTS */

  --page-title-weight: 700;
  --text-weight: 500;
  --button-weight: 700;
}

/* STATIC STYLES */

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 19px;
}

.responsive-nav {
  display: none;
  z-index: 99999;
}

.mobile-burger {
  padding: 20px 50px;
  z-index: 5;
}

.colored {
  color: var(--primary);
}

.burger-menu {
  display: flex;
  flex-direction: column;
  transform: rotate(-360deg);
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
}

.burger-bar {
  background-color: var(--secondary);
  height: 4px;
  border-radius: 100px;
}
#bar-1 {
  transition: 0.3s ease-in-out all;
  width: 30px;
}

#bar-3 {
  transition: 0.3s ease-in-out all;
  width: 30px;
  transform: rotate(90deg) translateX(-4px);
}

.white-logo {
  width: 128px;
  height: 158px;
  display: none;
}

.bar-1-active {
  background-color: white;
  transition: 0.3s ease-in-out all;
  transform: translateY(-10px);
}

.bar-3-active {
  background-color: white;
  transition: 0.3s ease-in-out all;
  transform: rotate(0deg) !important;
}

.mobile-menu {
  position: fixed;
  z-index: 4;
  top: -150%;
  background: var(--secondary);
  width: 100vw;
  height: 100vh;
  opacity: 0;
}

.mobile-menu .button {
  color: white;
  border: solid 2px white;
}

.mobile-menu-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu-container .nav-leaf {
  position: absolute;
}

.mobile-menu-container .nav-leaf:first-of-type {
  left: -20%;
  top: 0%;
  animation: leafMoving1 infinite ease-in-out 5s;
}

.mobile-menu-container .nav-leaf:nth-of-type(2) {
  right: 5%;
  top: -5%;
  transform: rotate(-90deg);
  animation: leafMoving2 infinite ease-in-out 5s;
}

.mobile-menu-container .nav-leaf:last-of-type {
  right: -20%;
  top: 25%;
  animation: leafMoving3 infinite ease-in-out 5s;
}

.contact-btn {
  display: flex;
  font-size: 20px;
  align-items: center;
  gap: 10px;
}

.contact-btn img {
  transition: 0.3s ease-in-out;
}

.contact-btn:hover > img {
  transform: translateX(10px);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
  z-index: 5;
  margin-top: 150px;
}

.mobile-menu-list .button {
  font-size: 32px;
}

.mobile-menu-list-link {
  display: flex;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  border: none;
}
.visible {
  transition: 0.5s ease-in-out all;
  opacity: 1;
  top: 0%;
}

.invisible {
  transition: 0.5s ease-in-out all;
  opacity: 0;
  top: -150%;
}

#section-our-partner,
#section-our-mission,
.homepage-header-row {
  position: relative;
}

#section-our-mission
.header-leaf,
#section-our-partner .header-leaf,
.homepage-header-row .header-leaf{
  position: absolute;
  left: -300px;
  top: -150px;
  width: 30%;
}

.homepage-header-row .header-leaf {
  left: -200px;
}

@keyframes leafMoving1 {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(10px) rotate(6deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes leafMoving2 {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(-10px) rotate(-6deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes leafMoving3 {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(19px) rotate(12deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.button {
  background-color: transparent;
  border: 2px solid var(--secondary);
  width: fit-content;
  padding: 20px 40px;
  transition: 0.5s;
  border-radius: 4px;
}

.italic {
  font-style: italic;
}

.button:hover {
  background-color: var(--secondary);
  color: white;
}

.green-button,
.green-button-fill-hover {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  width: fit-content;
  padding: 20px 40px;
  transition: 0.5s;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.green-button-fill {
  background-color: var(--primary);
  border: 2px solid transparent;
  color: white;
  width: fit-content;
  padding: 20px 40px;
  transition: 0.5s;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.green-button-fill:hover {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.green-button-fill-hover:hover {
  background-color: var(--primary);
  color: white;
}

.triangle {
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 2px solid var(--primary);
  border-width: 10px;
  transform: rotate(90deg);
  transition: 0.3s ease-in-out all;
}

.bold {
  font-weight: 700;
}

.green-button:hover > .triangle {
  transform: rotate(180deg);
}

.paragraph-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
nav .img-wrapper {
  padding-left: 140px;
}
.button-wrapper {
  padding-right: 140px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  color: var(--title-color);
  font-weight: 700;
}

.nav-list-item {
  position: relative;
  font-size: 20px;
}

.nav-list-item::before {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--title-color);
  transition: all ease-in-out 0.2s;
}

.nav-list-item:hover::before {
  width: 100%;
}

.row {
  display: flex;
  align-items: center;
  gap: 114px;
  color: var(--text-color);
}

.row-reverse {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 114px;
  color: var(--text-color);
}

.page-title {
  color: var(--primary);
  font-size: 40px;
}

.page-subtitle {
  font-size: 35px;
}
#section-contact-neo-process {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 61px;
  width: 90%;
  height: 514px;
  border-radius: 16px;
  margin: 208px auto auto auto;
  background: var(--linear);
  overflow: hidden;
}

/* .swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

#section-steps {
  position: relative;
  width: 100%;
  margin: 282px auto auto auto;
}

#section-steps .section-title {
  font-size: 67px;
  width: 90%;
  margin: auto;
}

.steps-container {
  position: relative;
  width: 100%;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--linear);
  z-index: -1;
}

.steps-wrapper {
  margin: 156px auto auto auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 90%;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  align-items: center;
}

.step-number-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: solid 2px #313247;
  background-color: white;
  z-index: 2;
}

.steps-number {
  font-size: 62px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-text-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.steps-title {
  font-size: 20px;
  font-weight: 700;
}

.steps-details {
  font-size: var(--text-size);
}

#section-contact-neo-process .section-text {
  text-align: center;
  color: white;
  font-size: 35px;
  width: 50%;
}

#section-contact-neo-process .button {
  z-index: 2;
}

#section-contact-neo-process .leaf:first-of-type {
  position: absolute;
  left: -5%;
}

#section-contact-neo-process .leaf:nth-of-type(2) {
  position: absolute;
  left: 35%;
  top: -50%;
}

#section-contact-neo-process .leaf:last-of-type {
  position: absolute;
  left: 45%;
  bottom: -10%;
}

#footer {
  width: 100%;
  margin: 186px auto auto auto;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: #f8f8f8;
  padding: 100px 0 0 0;
}

.top-content-footer,
.bottom-content-footer {
  padding: 0 140px;
}
.top-content-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-neo-process-informations {
  display: flex;
  align-items: center;
  gap: 53px;
}

.footer-neo-process-informations .text-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: fit-content;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-right: 125px;
}

.footer-nav-title,
.footer-follow-title {
  font-size: 20px;
}

.footer-nav-item a {
  position: relative;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
}

.footer-nav-item a::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--text-color);
  transition: all ease-in-out 0.2s;
}

.footer-nav-item a:hover::before {
  width: 100%;
}

.footer-nav-list,
.footer-follow-list {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--tex-color);
}

.footer-follow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-follow-title {
  display: flex;
  justify-content: flex-end;
}

.bottom-content-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
}

.footer-text {
  font-size: 16px;
}

.footer-text:first-of-type {
  font-weight: 500;
}

.copyright,
.legal-mention {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 50px;
}

.legal-mention a {
  color: var(--text-color);
}

/*-------------------------MEDIA SCREEN-----------------------------*/

@media screen and (min-width: 2000px) {
  .nav-list-item .link {
    font-size: 28px;
  }
}

@media screen and (max-width: 1533px) {
  #section-contact-neo-process .leaf:nth-of-type(2) {
    left: 45%;
  }
  #section-contact-neo-process .leaf:last-of-type {
    left: 55%;
  }
}

@media screen and (max-width: 1396px) {
  .top-content-footer {
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
  }
  .footer-follow-title {
    justify-content: center;
  }
  .footer-nav {
    padding: 0;
  }
}

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

  .steps-container::before {
    height: 100%;
    width: 10px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    opacity: 5%;
  }

  .steps {
    align-items: center;
  }
}

@media screen and (max-width: 1257px) {
  #section-contact-neo-process .leaf:first-of-type {
    left: -30%;
  }
  #section-contact-neo-process .leaf:nth-of-type(2) {
    left: 65%;
  }
  #section-contact-neo-process .leaf:last-of-type {
    left: 6 5%;
  }
  #nav .img-wrapper {
    padding-left: 50px;
  }
  #nav .button-wrapper {
    padding-right: 50px;
  }
}

@media screen and (max-width: 1000px) {
  #section-contact-neo-process .section-text {
    font-size: 28px;
    width: 75%;
  }
}

@media screen and (max-width: 925px) {
  #section-steps .section-title {
    font-size: 45px;
  }
}

@media screen and (max-width: 914px) {
  #nav {
    display: none;
  }
  .responsive-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 784px) {
  #section-contact-neo-process .leaf {
    width: 50%;
  }
  #section-contact-neo-process .leaf:first-of-type {
    left: -10%;
    top: 15%;
  }
  #section-contact-neo-process .leaf:nth-of-type(2) {
    left: 45%;
    top: -10%;
  }
  #section-contact-neo-process .leaf:last-of-type {
    left: 55%;
    top: 45%;
  }
}

@media screen and (max-width: 731px) {
  .top-content-footer {
    flex-direction: column;
    gap: 50px;
  }
  .footer-neo-process-informations {
    flex-direction: column;
    gap: 45px;
  }
  .footer-neo-process-informations .text-container {
    text-align: center;
  }
  .bottom-content-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 703px) {
  .nav-leaf {
    width: 50%;
  }

  .mobile-menu .nav-leaf:first-of-type {
    top: 25%;
  }

  .mobile-menu .nav-leaf:first-of-type {
    top: 25%;
  }

  .mobile-menu .nav-leaf:last-of-type {
    top: 55%;
  }
}

@media screen and (max-width: 598px) {
  .top-content-footer,
  .bottom-content-footer {
    padding: 0 10px;
  }
}
@media screen and (max-width: 529px) {
  .mobile-menu-list-link {
    font-size: 24px;
  }

  .mobile-menu-list .button {
    font-size: 24px;
  }
}

@media screen and (max-width: 484px) {
  #section-contact-neo-process .section-text {
    font-size: 20px;
  }
  #section-contact-neo-process .leaf {
    width: 75%;
  }
  #section-contact-neo-process .leaf:first-of-type {
    left: -30%;
    top: 15%;
  }
  #section-contact-neo-process .leaf:nth-of-type(2) {
    left: 45%;
    top: -10%;
  }
  #section-contact-neo-process .leaf:last-of-type {
    left: 55%;
    top: 45%;
  }
}

@media screen and (max-width: 347px) {
  .mobile-menu-list-link {
    font-size: 18px;
  }

  .mobile-menu-list .button {
    font-size: 18px;
  }
}
