html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body.noscroll {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #508ABA;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#preloader.oculto {
  opacity: 0;
  pointer-events: none;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: white;
}





/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #508ABA;
  align-items: center;
  padding: 20px 40px;
  z-index: 1000;
  transition: transform 0.2s ease;
}

#logo {
  width: 200px;
}

#name {
  margin: 0;
  font-family: Morning memories;
  font-size: 34px;
}


#nav-tittles {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  font-family: "Rubik";
  font-weight: 400;
  font-size: 18px;
}

#nav-tittles li a {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  display: inline-block;
  transition: 0.2s ease-in;
  color: white;
}

#nav-tittles li a:hover {
  font-weight: 500;
  transform: translateY(-3px);
  transition: 0.2s ease-in;
}

.hamburger-icon {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Botón hamburguesa */
.hamburger-icon {
  color: white;
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Botón cerrar menú */
#close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
  display: none;
  /* oculto por defecto */
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}


/* Estilos responsive */
@media (max-width: 991px) {
  #navbar {
    padding: 20px 40px;
  }

  #contact-button {
    display: none;
  }

  .hamburger-icon {
    display: block;
  }

  #nav-tittles {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #60b7ffcd;
    /* blue with opacity */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    padding-top: 60px;
    backdrop-filter: blur(4px);
  }

  #nav-tittles.active {
    display: flex;
    top: 0px;
  }

  #nav-tittles.active li {
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 500;
  }

  #nav-tittles.active a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
  }

  /* Mostrar botón cerrar solo cuando el menú está activo */
  #nav-tittles.active #close-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  #navbar {
    padding: 20px 20px;
  }

  #logo {
    width: 180px;
  }
}

@media (max-width: 521px) {
  #navbar {
    padding: 20px 20px;
  }
}





/* Estilos generales*/
h1 {
  color: white;
  font-size: 3rem;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 521px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  color: white;
  font-size: 2rem;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 521px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: #508ABA;
}


@media screen and (max-width: 991px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 521px) {
  h3 {
    font-size: 1rem;
  }
}


p,
a {
  margin: 0;
  font-size: 18px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #4E4E4E;
  line-height: 150%;
}

@media screen and (max-width: 991px) {

  p,
  a {
    font-size: 18px;
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 767px) {

  p,
  a {
    font-size: 18px;
  }
}

@media screen and (max-width: 521px) {

  p,
  a {
    font-size: 16px;
  }
}

img {
  border-radius: 4px;
  object-fit: cover;
}

button {
  white-space: nowrap;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 2px solid #FFF;
  color: white;
  background-color: rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, color 0.2s ease;
  width: fit-content;
}

@media screen and (max-width: 991px) {
  button {
    font-size: 1.5rem;
    padding: 0.8rem 2.2rem;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  button {
    font-size: 1rem;
    padding: 0.8rem 2.5rem;
    gap: 10px;
  }
}

@media screen and (max-width: 521px) {
  button {
    font-size: 1rem;
    gap: 10px;
  }
}

button:hover {
  text-decoration: underline;
}


section {
  gap: 1rem;
}

.V-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media screen and (max-width: 521px) {
  .V-flex {
    gap: 0.5rem;
  }
}

.V-flex img {
  object-fit: contain;
  height: 140px;
}

@media screen and (max-width: 991px) {
  .V-flex img {
    object-fit: contain;
    width: auto;
    height: 50%;
  }
}







#hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-inline: 0px;
  padding: 120px 0px 0px 0px;
}

@media screen and (max-width: 1250px) {
  #hero-section {
    padding: 120px 0px 0px 0px;
  }
}

@media screen and (max-width: 991px) {
  #hero-section {
    padding: 120px 0px 0px 0px;
  }
}

#hero-section h3 {
  color: white;
}

#hero-content {
  background-image: url("Images/Hero section.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding: 200px;
}

@media screen and (max-width: 1250px) {
  #hero-content {
    padding: 120px 80px;
  }
}

@media screen and (max-width: 991px) {
  #hero-content {
    padding: 80px;
  }
}

@media screen and (max-width: 767px) {
  #hero-content {
    padding: 60px;
  }
}

@media screen and (max-width: 512px) {
  #hero-content {
    padding: 20px;
  }
}

#hero-text {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 2rem;
  align-items: start;
}

@media screen and (max-width: 1250px) {
  #hero-text {
    width: 60%;
    gap: 2rem;
  }
}

@media screen and (max-width: 991px) {
  #hero-text {
    width: 80%;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #hero-text {
    gap: 1rem;
  }
}


.button-icon {
  display: flex;
  flex-direction: row;
}

.img-icon {
  width: 25%;
}

@media screen and (max-width: 1250px) {
  .img-icon {
    width: 25%;
  }
}

@media screen and (max-width: 991px) {
  .img-icon {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .img-icon {
    width: 25%;
  }
}

@media screen and (max-width: 512px) {
  .img-icon {
    width: 25%;
  }
}





#About-us {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}

#About-us h2 {
  color: #508ABA;
}

.content {
  padding-inline: 220px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  text-align: start;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  .content {
    padding-inline: 120px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .content {
    padding-inline: 60px;
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .content {
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 521px) {
  .content {
    padding-inline: 20px;
    gap: 2rem;
  }
}

.content-img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .content-img {
    width: 50%;
    height: 100%;
    object-fit: contain;
  }
}



@media screen and (max-width: 521px) {
  .content-img {
    width: 80%;
    height: 100%;
    object-fit: contain;
  }
}


.text-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
  justify-content: center;
}

@media screen and (max-width: 1250px) {
  .text-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 50%;
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  .text-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 50%;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .text-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 521px) {
  .text-block {
    gap: 0.5rem;
  }
}

.rounded-image {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 40%;
  height: 40%;
  object-fit: cover;
}

@media screen and (max-width: 1250px) {
  .rounded-image {
    width: 40%;
    height: 40%;
  }
}

@media screen and (max-width: 991px) {
  .rounded-image {
    width: 40%;
    height: 40%;
  }
}

@media screen and (max-width: 767px) {
  .rounded-image {
    display: block;
    width: 50%;
    height: 50%;
  }
}

@media screen and (max-width: 521px) {
  .rounded-image {
    width: 80%;
    height: 80%;
  }
}







#Why-us {
  display: flex;
  flex-direction: column;
  padding: 3rem 220px;
  gap: 2rem;
  align-items: center;
  text-align: center;
  background-image: url("Images/Team-Image-1.webp");
  background-size: cover;
}


@media screen and (max-width: 991px) {
  #Why-us {
    display: flex;
    flex-direction: column;
    padding: 3rem 60px;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #Why-us {
    display: flex;
    flex-direction: column;
    padding: 3rem 20px;
    gap: 1rem;
  }
}

@media screen and (max-width: 521px) {
  #Why-us {
    display: flex;
    flex-direction: column;
    padding: 3rem 20px;
    gap: 1rem;
  }
}

#Why-us p {
  color: white;
}

#Why-us h2 {
  color: white;
}

#icons-row {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  #icons-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}






#services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-inline: 120px;
}

@media screen and (max-width: 1250px) {
  #services {
    gap: 2rem;
    padding-inline: 100px;
  }
}

@media screen and (max-width: 991px) {
  #services {
    gap: 2rem;
    padding-inline: 60px;
  }
}

@media screen and (max-width: 767px) {
  #services {
    gap: 1rem;
    padding-inline: 20px;
  }
}

@media screen and (max-width: 521px) {
  #services {
    padding-inline: 20px;
  }
}

#services p {
  color: #4e4e4e;
}

#services h2,
h3 {
  color: #508ABA;
}

.H-flex {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  align-items: stretch;
}

@media screen and (max-width: 1250px) {
  .H-flex {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .H-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .H-flex {
    gap: 1rem;
    width: 100%;
  }
}

@media screen and (max-width: 521px) {
  .H-flex {
    gap: 1rem;
    width: 100%;
  }
}

.H-flex img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  width: auto;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .H-flex img {
    width: 50%;
    height: 100%;
  }
}

.service-block {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  width: 100%;
  gap: 1rem;
}

@media screen and (max-width: 1250px) {
  .service-block {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 991px) {
  .service-block {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .service-block {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 521px) {
  .service-block {
    display: flex;
    flex-direction: column;
  }
}

#services .text-block {
  width: 100%;
  gap: 0.5rem;
}

@media screen and (max-width: 1250px) {
  #services .text-block {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  #services .text-block {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #services .text-block {
    width: 100%;
    gap: 1rem;
  }
}

@media screen and (max-width: 521px) {
  #services .text-block {
    width: 100%;
    gap: 1rem;
  }
}

.text-block-end {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: end;
}

@media screen and (max-width: 1250px) {
  .text-block-end {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: end;
  }
}

@media screen and (max-width: 991px) {
  .text-block-end {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: end;
  }
}

@media screen and (max-width: 767px) {
  .text-block-end {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: end;
  }
}

@media screen and (max-width: 521px) {
  .text-block-end {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: end;
  }
}

#services button {
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  transition: 0.2s ease-in;
}

@media screen and (max-width: 1250px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 521px) {}

#services button:hover {
  border: 1px solid #508ABA;
  transition: 0.2s ease-in;
  color: #508ABA;
}

#services img {
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  #services img {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  #services img {
    width: auto;
  }
}

@media screen and (max-width: 521px) {
  #services img {
    width: auto;
  }
}






#people {
  padding: 2rem 60px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #F9F9F9;
  align-items: center;
}

@media screen and (max-width: 991px) {
  #people {
    padding: 2rem 60px;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #people {
    padding: 2rem 40px;
    gap: 1rem;
  }
}

@media screen and (max-width: 521px) {
  #people {
    padding: 2rem 20px;
    gap: 1rem;
  }
}

#people h2 {
  color: #508ABA;
}

#people h3 {
  color: #1a1a1a;
}

#description .text-block {
  width: 50%;
}

@media screen and (max-width: 767px) {
  #description .text-block {
    width: 100%;
  }
}

#carrusel {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  white-space: nowrap;
  justify-content: space-evenly;
  overflow: visible;
}

@media screen and (max-width: 1250px) {
  #carrusel {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-evenly;
    overflow: visible;
  }
}

@media screen and (max-width: 991px) {
  #carrusel {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-evenly;
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  #carrusel {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-evenly;
    overflow: visible;
  }
}

@media screen and (max-width: 521px) {
  #carrusel {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-evenly;
    overflow: visible;
  }
}

#carrusel img {
  width: auto;
  height: 250px;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

@media screen and (max-width: 1250px) {
  #carrusel img {
    width: auto;
    height: 250px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
}

@media screen and (max-width: 991px) {
  #carrusel img {
    width: auto;
    height: 250px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  #carrusel img {
    width: auto;
    height: 250px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
}

@media screen and (max-width: 521px) {
  #carrusel img {
    width: auto;
    height: 250px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
}

#carrusel img:hover {
  transform: translateY(-10px);
}

#description {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

@media screen and (max-width: 1250px) {
  #description {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}

@media screen and (max-width: 991px) {
  #description {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  #description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 521px) {
  #description {
    gap: 1rem;
  }
}

#description img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  #description img {
    width: 100%;
  }
}

@media screen and (max-width: 521px) {
  #description img {
    width: 100%;
  }
}







#testimonials {
  padding: 2rem 120px;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  #testimonials {
    padding: 2rem 120px;
  }
}

@media screen and (max-width: 991px) {
  #testimonials {
    padding: 1rem 60px;
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  #testimonials {
    padding: 1rem 40px;
  }
}

@media screen and (max-width: 521px) {
  #testimonials {
    padding: 1rem 20px;
  }
}

#testimonials h2 {
  color: #508ABA;
}

.stars-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

#stars {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.V-flex2 {
  display: flex;
  flex-direction: column;
}







/* ---------------- #contact ---------------- */
#contact {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #F9F9F9;
  padding: 3rem 3rem 3rem 200px;
  gap: 2rem;
  align-items: center;
}

@media screen and (max-width: 1250px) {
  #contact {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 3rem 3rem 3rem 160px;
    gap: 2rem;
  }
}

@media screen and (max-width: 991px) {
  #contact {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 3rem 3rem 3rem 60px;
    gap: 2rem;
  }
}

@media screen and (max-width: 767px) {
  #contact {
    flex-direction: column;
    width: 100%;
    padding: 2rem 20px 2rem 20px;
    gap: 1rem;
  }
}

@media screen and (max-width: 512px) {
  #contact {
    padding: 1rem 20px 1rem 20px;
    width: 100%;
    gap: 1rem;
  }
}

#contact img {
  object-fit: contain;
  width: 50%;
}

@media screen and (max-width: 767px) {
  #contact img {
    width: 80%;
  }
}

#contact h2 {
  color: #508ABA;
}

form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

@media screen and (max-width: 767px) {
  form {
    width: 100%;
  }
}

#formularios {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

@media screen and (max-width: 991px) {
  #formulario-contacto {
    gap: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  #formulario-contacto {
    gap: 0.5rem;
  }
}

#nombre::placeholder {
  font-family: "Rubik";
  font-weight: 100;
}

#formulario-contacto input,
#formulario-contacto textarea {
  width: 100%;
  border: 2px solid #1a1a1a;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 100;
  border-radius: 4px;
  resize: vertical;
  color: #1a1a1a;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: white;
}

form textarea {
  height: 140px;
  resize: vertical;
}

@media screen and (max-width: 991px) {
  form textarea {
    height: 140px;
  }
}

@media screen and (max-width: 767px) {
  form textarea {
    height: 140px;
  }
}

#formulario-contacto button {
  width: 50%;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  #formulario-contacto button {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #formulario-contacto button {
    width: 100%;
  }
}

form button {
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  width: 100%;
  transition: 0.2s ease;
}

form button:hover {
  border-radius: 4px;
  border: 2px solid #1a1a1a;
  color: white;
  background-color: #508ABA;
  width: 100%;
  transition: 0.2s ease;
}

input::placeholder {
  color: #4e4e4e;
  font-family: "Rubik";
  font-weight: 100;
}






/* ---------------- .footer ---------------- */
.footer {
  padding: 4rem 4rem 2rem 4rem;
  width: auto;
  background-color: #508ABA;
  display: flex;
  flex-direction: row;
  color: white;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 2rem 2rem 1rem 2rem;
    flex-wrap: nowrap;
    gap: 1.5rem;
    flex-direction: column;
  }
}

@media (max-width: 521px) {
  .footer {
    padding: 1rem 1rem 1rem 1rem;
    flex-wrap: nowrap;
    gap: 1.5rem;
    flex-direction: column;
  }
}

/* ---------------- footer img ---------------- */
footer img {
  object-fit: contain;
  height: 100%;
  width: 200px;
}

@media (max-width: 991px) {
  .footer img {
    width: 150px;
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .footer img {
    display: none;
  }
}

.footer-logo {
  height: 100%;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 767px) {
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.footer h3 {
  color: white;
}

.footer ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin: 0;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.footer ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: space-between;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-block;
}

footer button {
  width: 100%;
}

@media (max-width: 767px) {
  footer button {
    width: 50%;
  }
}

@media (max-width: 521px) {
  footer button {
    width: 100%;
  }
}

footer button:hover {
  text-decoration: underline;
}

.btn-submit {
  padding: 0.7em 1.5em;
  font-size: 1.1em;
  border: 2px solid #088685;
  border-radius: 4px;
  cursor: pointer;
  background: none;
  color: #1a1a1a;
  transition: 0.2s;
}

.btn-submit:hover {
  background-color: #eee;
  font-weight: 600;
}

#final {
  display: flex;
  flex-direction: column;
  gap: 0;
}