@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Questrial", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 12vh 0 0 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
  z-index: 1;
}
body #scrollTop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background: #FFC32A;
  height: 3rem;
  width: 3rem;
  border-radius: 10rem;
  border: none;
  outline: none;
  position: fixed;
  bottom: 6.5rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 5px 20px);
  z-index: 3;
}
body #scrollTop ion-icon {
  font-size: 1.5rem;
  color: #ffffff;
}
body .icon-whatsapp {
  position: fixed;
  height: 3.3rem;
  width: 3.3rem;
  right: 1rem;
  bottom: 2rem;
  z-index: 3;
  display: none;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 5px 20px);
}
body .icon-whatsapp picture img {
  width: 100%;
  height: 100%;
}
body .overlay {
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 6;
  display: none;
}
body #success-popup {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background-color: #ffffff;
  position: fixed;
  top: 15%;
  width: 24%;
  height: auto;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
  z-index: 10;
  display: none;
}
body #success-popup .message-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  font-size: 4rem;
  color: #7980F2;
}
body #success-popup .message-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
body #success-popup .message-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e1e1e;
}
body #success-popup .message-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #4f4f4f;
  opacity: 0.8;
}
body #success-popup.flex {
  display: flex;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  gap: 0;
  background-color: #ffffff;
  width: 100%;
  height: 12vh;
  position: fixed;
  left: 0;
  z-index: 3;
  padding: 0 2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
}
nav .logo {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: rw;
  gap: 0.5rem;
  min-width: auto;
  height: 100%;
  text-decoration: none;
}
nav .logo picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 7.5rem;
  height: 7.5rem;
}
nav .logo picture img {
  width: 100%;
  height: 100%;
}
nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .menu li {
  position: relative;
}
nav .menu li a,
nav .menu li .dropbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.2rem;
  color: #1e1e1e;
  padding: 1rem 0;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}
nav .menu li a:hover,
nav .menu li .dropbtn:hover {
  text-decoration: underline;
  color: #20ACEA;
  transition: color 0.3s ease-in-out;
}
nav .menu li .btn-contact {
  background-color: #1e1e1e;
  color: #ffffff;
  border-radius: 2rem;
  padding: 0.7rem 2rem;
}
nav .menu li .btn-contact:hover {
  color: #ffffff;
}
nav .menu li .dropdown-content {
  background-color: #ffffff;
  display: none;
  position: absolute;
  top: 10vh;
  min-width: 180px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
  z-index: 1;
  list-style: none;
}
nav .menu li .dropdown-content li a {
  color: #1e1e1e;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
nav .menu li .dropdown-content li a:hover {
  text-decoration: underline;
  color: #20ACEA;
}
nav .menu li.active .dropdown-content {
  display: block;
}
nav .open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background: transparent;
  color: #1e1e1e;
  height: auto;
  width: auto;
  font-size: 3rem;
  border: none;
  cursor: pointer;
  display: none;
}
nav .menu-mobile {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
  background-color: #FFF9F4;
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  padding: 0 0 0 30rem;
  z-index: 4;
  list-style: none;
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
nav .menu-mobile li {
  position: relative;
}
nav .menu-mobile li a,
nav .menu-mobile li .dropbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.2rem;
  color: #1e1e1e;
  padding: 1rem 0;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}
nav .menu-mobile li a:hover,
nav .menu-mobile li .dropbtn:hover {
  text-decoration: underline;
}
nav .menu-mobile li .btn-contact {
  background-color: #1e1e1e;
  color: #ffffff;
  border-radius: 3rem;
  padding: 0.7rem 2rem;
}
nav .menu-mobile li .dropdown-content {
  background-color: #ffffff;
  display: none;
  position: absolute;
  top: 10vh;
  min-width: 180px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
  z-index: 1;
  list-style: none;
}
nav .menu-mobile li .dropdown-content li a {
  color: #1e1e1e;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
nav .menu-mobile li .dropdown-content li a:hover {
  text-decoration: underline;
}
nav .menu-mobile li.active .dropdown-content {
  display: block;
}
nav .menu-mobile .close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background: transparent;
  color: #1e1e1e;
  height: auto;
  width: auto;
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  border: none;
  cursor: pointer;
}
nav.show {
  display: flex;
}

.show {
  display: flex;
}

.hero-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: #FFF9F4;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-carousel .carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.hero-carousel .carousel-viewport .carousel-track {
  display: flex;
  transition: transform 500ms ease-in-out;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row;
  gap: 0;
  flex: 0 0 100%;
  box-sizing: border-box;
  background-color: #FEFBF7;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 35%;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content .slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content .slide-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content .cta-button {
  background-color: #F44158;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(244, 65, 88, 0.4);
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-image {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 50%;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 500px;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide:nth-child(2) .slide-content .cta-button {
  background-color: #FFC32A;
  color: #1e1e1e;
}
.hero-carousel .carousel-viewport .carousel-track .carousel-slide:nth-child(3) .slide-content .cta-button {
  background-color: #7980F2;
  color: #fff;
}
.hero-carousel .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #d1d1d1;
  font-size: 3rem;
  cursor: pointer;
  padding: 0 20px;
  z-index: 10;
  transition: color 0.3s ease;
}
.hero-carousel .carousel-button:hover {
  color: #2c2c2c;
}
.hero-carousel .carousel-button.prev {
  left: 0;
}
.hero-carousel .carousel-button.next {
  right: 0;
}
.hero-carousel .carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-carousel .nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d1d1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-carousel .nav-dot.active {
  background-color: hsl(0, 0%, 20%);
  transform: scale(1.3);
}

#aboutus_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: #ffffff;
  width: 100%;
  height: 100vh;
}
#aboutus_container .about_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
}
#aboutus_container .about_content .carousel-image {
  position: relative;
  width: 450px;
}
#aboutus_container .about_content .carousel-image .carousel-viewport {
  overflow: hidden;
  width: 100%;
}
#aboutus_container .about_content .carousel-image .carousel-viewport .carousel-track {
  display: flex;
  transition: transform 500ms ease-in-out;
}
#aboutus_container .about_content .carousel-image .carousel-viewport .carousel-track .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  background-color: transparent;
  flex: 0 0 100%;
  text-align: center;
  height: auto;
}
#aboutus_container .about_content .carousel-image .carousel-viewport .carousel-track .carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#aboutus_container .about_content .carousel-image .carousel-button {
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #20ACEA;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  display: none;
}
#aboutus_container .about_content .carousel-image .carousel-button.prev {
  left: 0;
}
#aboutus_container .about_content .carousel-image .carousel-button.next {
  right: 0;
}
#aboutus_container .about_content .carousel-image .carousel-nav {
  text-align: center;
  margin-top: 1rem;
}
#aboutus_container .about_content .carousel-image .nav-dot {
  height: 0.5rem;
  width: 0.5rem;
  margin: 0 0.25rem;
  background-color: rgba(127, 191, 218, 0.3882352941);
  border-radius: 50%;
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#aboutus_container .about_content .carousel-image .nav-dot:hover {
  transform: scale(1.2);
}
#aboutus_container .about_content .carousel-image .nav-dot.active {
  background-color: #20ACEA;
}
#aboutus_container .about_content .about_text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
#aboutus_container .about_content .about_text h2 {
  width: 100%;
  font-size: 2.5rem;
  color: #1e1e1e;
  text-align: start;
  font-weight: 700;
}
#aboutus_container .about_content .about_text p {
  font-size: 1.4rem;
  color: #4f4f4f;
  text-indent: 1rem;
  text-align: justify;
}

#experts_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.2rem;
  background-color: #F44158;
  width: 100%;
  height: auto;
  position: relative;
}
#experts_container .experts_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}
#experts_container .experts_title h2 {
  color: #ffffff;
  font-weight: 500;
  font-size: 2.5rem;
  text-align: center;
}
#experts_container .experts_title p {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 300;
}
#experts_container .experts_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 100%;
  z-index: 1;
}
#experts_container .experts_content .experts_card {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  max-width: 300px;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
  border-radius: 1rem;
  overflow: hidden;
}
#experts_container .experts_content .experts_card picture {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  background-color: #FFF9F4;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem 1rem 0 0;
  z-index: 2;
}
#experts_container .experts_content .experts_card picture img {
  width: 100%;
  height: 100%;
  border-radius: 1rem 1rem 0 0;
}
#experts_container .experts_content .experts_card .card_content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background-color: #ffffff;
  width: 100%;
  z-index: 1;
  padding: 2rem;
  border-radius: 0 0 1rem 1rem;
}
#experts_container .experts_content .experts_card .card_content h3 {
  color: #1e1e1e;
  font-size: 1.8rem;
  font-weight: 700;
}
#experts_container .experts_content .experts_card .card_content p {
  font-size: 1.2rem;
  color: #4f4f4f;
  text-align: justify;
}
#experts_container .experts_content .experts_card:nth-child(1) picture img {
  max-height: 370px;
}
#experts_container .illustration-yellow {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 95%;
  height: auto;
  z-index: 0;
}
#experts_container .illustration-blue {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 50%;
  height: auto;
  z-index: 0;
}

#services_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
#services_container h2 {
  color: #1e1e1e;
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
}
#services_container .services_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 5rem;
  width: 80%;
  flex-wrap: wrap;
}
#services_container .services_content .services_card:nth-child(1),
#services_container .services_content .services_card:nth-child(2),
#services_container .services_content .services_card:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  border: none;
  outline: none;
  position: relative;
  width: 300px;
  min-height: 190px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
}
#services_container .services_content .services_card:nth-child(1) .card_content,
#services_container .services_content .services_card:nth-child(2) .card_content,
#services_container .services_content .services_card:nth-child(3) .card_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-height: 110px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  padding: 1.5rem;
  border-radius: 1rem;
}
#services_container .services_content .services_card:nth-child(1) .card_content h3,
#services_container .services_content .services_card:nth-child(2) .card_content h3,
#services_container .services_content .services_card:nth-child(3) .card_content h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
#services_container .services_content .services_card:nth-child(1) .card_content p,
#services_container .services_content .services_card:nth-child(2) .card_content p,
#services_container .services_content .services_card:nth-child(3) .card_content p {
  background-color: transparent;
  font-size: 1.2rem;
  color: #4f4f4f;
  font-weight: 300;
  display: none;
  text-align: center;
}
#services_container .services_content .services_card:nth-child(1) .card_content p strong,
#services_container .services_content .services_card:nth-child(2) .card_content p strong,
#services_container .services_content .services_card:nth-child(3) .card_content p strong {
  font-weight: 600;
}
#services_container .services_content .services_card:nth-child(1) .illustration,
#services_container .services_content .services_card:nth-child(2) .illustration,
#services_container .services_content .services_card:nth-child(3) .illustration {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 35%;
  z-index: 2;
}
#services_container .services_content .services_card:nth-child(1).is-active::before,
#services_container .services_content .services_card:nth-child(2).is-active::before,
#services_container .services_content .services_card:nth-child(3).is-active::before {
  display: none;
}
#services_container .services_content .services_card:nth-child(1).is-active .card_content,
#services_container .services_content .services_card:nth-child(2).is-active .card_content,
#services_container .services_content .services_card:nth-child(3).is-active .card_content {
  background-color: #ffffff;
}
#services_container .services_content .services_card:nth-child(1).is-active p,
#services_container .services_content .services_card:nth-child(2).is-active p,
#services_container .services_content .services_card:nth-child(3).is-active p {
  display: block;
}
#services_container .services_content .services_card:nth-child(1).is-active h3,
#services_container .services_content .services_card:nth-child(2).is-active h3,
#services_container .services_content .services_card:nth-child(3).is-active h3 {
  color: #7980F2;
}
#services_container .services_content .services_card:nth-child(1)::before {
  content: "";
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  background-color: #eee;
}
#services_container .services_content .services_card:nth-child(1).lazy-load-bg::before {
  opacity: 1;
}
#services_container .services_content .services_card:nth-child(2)::before {
  content: "";
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  background-color: #eee;
}
#services_container .services_content .services_card:nth-child(2).lazy-load-bg::before {
  opacity: 1;
}
#services_container .services_content .services_card:nth-child(3)::before {
  content: "";
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  background-color: #eee;
}
#services_container .services_content .services_card:nth-child(3).lazy-load-bg::before {
  opacity: 1;
}
#services_container .services_content .services_card:nth-child(4)::before {
  content: "";
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  background-color: #eee;
}
#services_container .services_content .services_card:nth-child(4).lazy-load-bg::before {
  opacity: 1;
}
#services_container .services_content .services_card:nth-child(5)::before {
  content: "";
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  background-color: #eee;
}
#services_container .services_content .services_card:nth-child(5).lazy-load-bg::before {
  opacity: 1;
}
#services_container .services_content .services_card:nth-child(6)::before {
  content: "";
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  background-color: #eee;
}
#services_container .services_content .services_card:nth-child(6).lazy-load-bg::before {
  opacity: 1;
}
#services_container .services_content .services_card:nth-child(4),
#services_container .services_content .services_card:nth-child(5),
#services_container .services_content .services_card:nth-child(6) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  background-color: transparent;
  border: none;
  outline: none;
  position: relative;
  width: 300px;
  min-height: 190px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 5px 20px;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#services_container .services_content .services_card:nth-child(4) .card_content,
#services_container .services_content .services_card:nth-child(5) .card_content,
#services_container .services_content .services_card:nth-child(6) .card_content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  min-height: 110px;
  height: auto;
  z-index: 1;
  border-radius: 1rem;
  padding: 2rem;
}
#services_container .services_content .services_card:nth-child(4) .card_content h3,
#services_container .services_content .services_card:nth-child(5) .card_content h3,
#services_container .services_content .services_card:nth-child(6) .card_content h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
#services_container .services_content .services_card:nth-child(4) .card_content p,
#services_container .services_content .services_card:nth-child(5) .card_content p,
#services_container .services_content .services_card:nth-child(6) .card_content p {
  background-color: transparent;
  font-size: 1.2rem;
  color: #4f4f4f;
  font-weight: 300;
  text-align: center;
  display: none;
}
#services_container .services_content .services_card:nth-child(4) .card_content p strong,
#services_container .services_content .services_card:nth-child(5) .card_content p strong,
#services_container .services_content .services_card:nth-child(6) .card_content p strong {
  font-weight: 600;
}
#services_container .services_content .services_card:nth-child(4) .illustration,
#services_container .services_content .services_card:nth-child(5) .illustration,
#services_container .services_content .services_card:nth-child(6) .illustration {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 30%;
  z-index: 2;
}
#services_container .services_content .services_card:nth-child(4).is-active::before,
#services_container .services_content .services_card:nth-child(5).is-active::before,
#services_container .services_content .services_card:nth-child(6).is-active::before {
  display: none;
}
#services_container .services_content .services_card:nth-child(4).is-active .card_content,
#services_container .services_content .services_card:nth-child(5).is-active .card_content,
#services_container .services_content .services_card:nth-child(6).is-active .card_content {
  background-color: #ffffff;
}
#services_container .services_content .services_card:nth-child(4).is-active p,
#services_container .services_content .services_card:nth-child(5).is-active p,
#services_container .services_content .services_card:nth-child(6).is-active p {
  display: block;
}
#services_container .services_content .services_card:nth-child(4).is-active h3,
#services_container .services_content .services_card:nth-child(5).is-active h3,
#services_container .services_content .services_card:nth-child(6).is-active h3 {
  color: #F44158;
}

#articles_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  background-color: #20ACEA;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}
#articles_container h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
}
#articles_container .illustration {
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 20%;
  z-index: 2;
  rotate: 10deg;
}
#articles_container .articles_content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  flex-wrap: wrap;
}
#articles_container .articles_content .article_card:nth-child(1),
#articles_container .articles_content .article_card:nth-child(2),
#articles_container .articles_content .article_card:nth-child(3),
#articles_container .articles_content .article_card:nth-child(4) {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  background-color: transparent;
  border-radius: 1rem;
  padding: 0;
  width: 25%;
  min-height: auto;
}
#articles_container .articles_content .article_card:nth-child(1) .article_image,
#articles_container .articles_content .article_card:nth-child(2) .article_image,
#articles_container .articles_content .article_card:nth-child(3) .article_image,
#articles_container .articles_content .article_card:nth-child(4) .article_image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 10rem;
  border-radius: 1rem;
}
#articles_container .articles_content .article_card:nth-child(1) .article_image img,
#articles_container .articles_content .article_card:nth-child(2) .article_image img,
#articles_container .articles_content .article_card:nth-child(3) .article_image img,
#articles_container .articles_content .article_card:nth-child(4) .article_image img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#articles_container .articles_content .article_card:nth-child(1) .article_text,
#articles_container .articles_content .article_card:nth-child(2) .article_text,
#articles_container .articles_content .article_card:nth-child(3) .article_text,
#articles_container .articles_content .article_card:nth-child(4) .article_text {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#articles_container .articles_content .article_card:nth-child(1) .article_text h3,
#articles_container .articles_content .article_card:nth-child(2) .article_text h3,
#articles_container .articles_content .article_card:nth-child(3) .article_text h3,
#articles_container .articles_content .article_card:nth-child(4) .article_text h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: justify;
}
#articles_container .articles_content .article_card:nth-child(1) .article_text p,
#articles_container .articles_content .article_card:nth-child(2) .article_text p,
#articles_container .articles_content .article_card:nth-child(3) .article_text p,
#articles_container .articles_content .article_card:nth-child(4) .article_text p {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 300;
  text-align: justify;
}
#articles_container .articles_content .article_card:nth-child(1) .link-article,
#articles_container .articles_content .article_card:nth-child(2) .link-article,
#articles_container .articles_content .article_card:nth-child(3) .link-article,
#articles_container .articles_content .article_card:nth-child(4) .link-article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  cursor: pointer;
  padding: 0;
}
#articles_container .articles_content .article_card:nth-child(1) .link-article a,
#articles_container .articles_content .article_card:nth-child(2) .link-article a,
#articles_container .articles_content .article_card:nth-child(3) .link-article a,
#articles_container .articles_content .article_card:nth-child(4) .link-article a {
  background-color: #ffffff;
  color: #20ACEA;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
}
#articles_container .articles_content .article_card:nth-child(1) .link-article a:hover,
#articles_container .articles_content .article_card:nth-child(2) .link-article a:hover,
#articles_container .articles_content .article_card:nth-child(3) .link-article a:hover,
#articles_container .articles_content .article_card:nth-child(4) .link-article a:hover {
  text-decoration: underline;
}

#section_article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  background-color: #FFF9F4;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
}
#section_article picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 20rem;
}
#section_article picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% 30%;
     object-position: 10% 30%;
  border-radius: 0.5rem;
}
#section_article h1 {
  color: #1e1e1e;
  font-weight: 900;
  font-size: 2.5rem;
}
#section_article h3 {
  color: #1e1e1e;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
#section_article ul {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
#section_article ul li {
  font-size: 1.2rem;
}
#section_article p {
  font-size: 1.2rem;
  color: #4f4f4f;
  text-align: justify;
}
#section_article .line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  background-color: #4f4f4f;
  width: 100%;
  height: 0.1rem;
  opacity: 0.2;
}

#doubts_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
#doubts_container h2 {
  font-size: 2.5rem;
  color: #1e1e1e;
  font-weight: 900;
}
#doubts_container .accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
  background-color: transparent;
  width: 300px;
  height: 3rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  outline: none;
  transition: 0.4s;
  cursor: pointer;
  text-align: start;
  color: #1e1e1e;
}
#doubts_container .accordion::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 500;
  color: #20ACEA;
}
#doubts_container .active::after {
  content: "−";
  color: #7fbeda;
}
#doubts_container .panel {
  background-color: transparent;
  max-height: 0;
  width: 300px;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
#doubts_container .panel p {
  font-size: 1.3rem;
  text-align: center;
  color: #4f4f4f;
}
#doubts_container .panel p strong {
  color: #1e1e1e;
}

#testimonials_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  background-color: #7980F2;
  width: 100%;
  height: auto;
  padding: 2rem 0;
  z-index: 2;
}
#testimonials_container h2 {
  color: #ffffff;
  font-weight: 900;
  font-size: 2.5rem;
}
#testimonials_container .testimonial-carousel {
  position: relative;
  width: 400px;
}
#testimonials_container .testimonial-carousel .carousel-viewport {
  overflow: hidden;
  width: 100%;
}
#testimonials_container .testimonial-carousel .carousel-viewport .carousel-track {
  display: flex;
  transition: transform 500ms ease-in-out;
}
#testimonials_container .testimonial-carousel .carousel-viewport .carousel-track .carousel-slide {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  background-color: transparent;
  flex: 0 0 100%;
  text-align: center;
  height: auto;
}
#testimonials_container .testimonial-carousel .carousel-viewport .carousel-track .carousel-slide p {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#testimonials_container .testimonial-carousel .carousel-viewport .carousel-track .carousel-slide p strong {
  font-weight: 700;
}
#testimonials_container .testimonial-carousel .carousel-viewport .carousel-track .carousel-slide span {
  color: #FFBA2C;
  font-size: 1.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#testimonials_container .testimonial-carousel .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}
#testimonials_container .testimonial-carousel .carousel-button.prev {
  left: 0;
}
#testimonials_container .testimonial-carousel .carousel-button.next {
  right: 0;
}
#testimonials_container .testimonial-carousel .carousel-nav {
  text-align: center;
  margin-top: 20px;
}
#testimonials_container .testimonial-carousel .nav-dot {
  height: 0.5rem;
  width: 0.5rem;
  margin: 0 0.25rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#testimonials_container .testimonial-carousel .nav-dot:hover {
  transform: scale(1.2);
}
#testimonials_container .testimonial-carousel .nav-dot.active {
  background-color: #FFBA2C;
}

#contact_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
#contact_container .contact_content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
#contact_container .contact_content .contact_text {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#contact_container .contact_content .contact_text span {
  background-color: #F44158;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 300;
  padding: 0.4rem 1.2rem;
  border-radius: 1rem;
}
#contact_container .contact_content .contact_text h2 {
  font-size: 2.5rem;
  color: #1e1e1e;
  font-weight: 900;
}
#contact_container .contact_content .contact_link {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}
#contact_container .contact_content .contact_link a {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
#contact_container .contact_content .contact_link a h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 700;
}
#contact_container .contact_content .contact_link a h3 ion-icon {
  color: #FFBA2C;
  font-size: 2rem;
}
#contact_container .contact_content .contact_link a span {
  color: #4f4f4f;
  font-size: 1.3rem;
  font-weight: 500;
}
#contact_container .contact_content .contact_link iframe {
  width: 100%;
  height: 15rem;
  border: none;
  border-radius: 0.5rem;
}
#contact_container .contact_content .contact_link .link-form:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  color: #1e1e1e;
}
#contact_container .contact_content .contact_link .link-form:nth-child(1) ion-icon {
  color: #7980F2;
  font-size: 1.8rem;
}
#contact_container .contact_content .contact_link .link-form:nth-child(4) {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
#contact_container .contact_content .contact_link .link-form:nth-child(4) h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 600;
}
#contact_container .contact_content .contact_link .link-form:nth-child(4) h3 ion-icon {
  color: #1BC570;
  font-size: 1.8rem;
}
#contact_container .contact_content .contact_link .link-form:nth-child(4) span {
  color: #4f4f4f;
  font-size: 1.3rem;
  font-weight: 500;
}
#contact_container .form-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: #FFBA2C;
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}
#contact_container .form-content .label {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 0.55rem;
  width: 30%;
}
#contact_container .form-content .label input {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  outline: none;
}
#contact_container .form-content .label input::-moz-placeholder {
  color: #4f4f4f;
  opacity: 0.7;
  font-size: 0.9rem;
  font-weight: 300;
}
#contact_container .form-content .label input::placeholder {
  color: #4f4f4f;
  opacity: 0.7;
  font-size: 0.9rem;
  font-weight: 300;
}
#contact_container .form-content .label input:focus {
  border: 1px solid #77C5B8;
}
#contact_container .form-content .label textarea {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 100%;
  height: 7rem;
  border: none;
  color: #4f4f4f;
  padding: 1rem;
  border-radius: 0.5rem;
  outline: none;
}
#contact_container .form-content .label textarea::-moz-placeholder {
  color: #1e1e1e;
  opacity: 0.7;
  font-size: 0.9rem;
  font-weight: 300;
}
#contact_container .form-content .label textarea::placeholder {
  color: #1e1e1e;
  opacity: 0.7;
  font-size: 0.9rem;
  font-weight: 300;
}
#contact_container .form-content .label textarea:focus {
  border: 1px solid #77C5B8;
}
#contact_container .form-content .label[for=message] {
  width: 100%;
}
#contact_container .form-content section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
}
#contact_container .form-content section .form-divisor2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
#contact_container .form-content section .form-divisor2 label:nth-child(1) {
  width: 100%;
}
#contact_container .form-content section .form-divisor2 label:nth-child(2) {
  width: 100%;
}
#contact_container .form-content .link-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  background-color: #20ACEA;
  color: #ffffff;
  width: 30%;
  height: 3rem;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
}
#contact_container .form-content .form-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  background-color: #4f4f4f;
  width: 100%;
  height: 0.1rem;
  opacity: 0.7;
}
#contact_container .form-content .form-job-opportunity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#contact_container .form-content .form-job-opportunity h3 {
  color: #1e1e1e;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}
#contact_container .form-content .form-job-opportunity a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  color: #1e1e1e;
  text-decoration: underline;
  font-size: 1.1rem;
  font-weight: 500;
}
#contact_container picture {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
#contact_container picture .illustration {
  width: 7rem;
  z-index: 2;
}
#contact_container picture .illustration-blue {
  width: 7rem;
  z-index: 2;
}

footer {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8rem;
  background-color: #1BC570;
  width: 100%;
  padding: 4rem 0;
}
footer .section-form {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
  height: auto;
}
footer .section-form .form-links {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}
footer .section-form .form-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}
footer .section-form .form-links li a:hover {
  text-decoration: underline;
}
footer .section-form .form-links li button {
  background: #ffffff;
  color: #1e1e1e;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  border: none;
  outline: none;
  cursor: pointer;
}
footer .line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
  background-color: #ffffff;
  width: 100%;
  height: 0.1rem;
  opacity: 0.7;
}
footer .contact__copy {
  width: 80%;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 300;
  opacity: 0.81;
}
footer .contact__copy a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

::-moz-selection {
  background-color: #20ACEA;
  color: #ffffff;
}

::selection {
  background-color: #20ACEA;
  color: #ffffff;
}

@media (min-width: 1200px) {
  body #scrollTop {
    bottom: 2rem;
    right: 2rem;
  }
  body #success-popup {
    width: 50%;
  }
  body #success-popup .message-image {
    font-size: 3.3rem;
  }
  body #success-popup .message-content h2 {
    font-size: 2rem;
  }
  body #success-popup .message-content p {
    font-size: 1.15rem;
  }
  body #success-popup .message-back-button {
    height: 2.5rem;
    font-size: 0.9rem;
  }
  #home_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: 100vh;
    padding: 4rem 0;
  }
  #home_container .home_content {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    gap: 10rem;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  #home_container .home_content .content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    width: 30%;
    z-index: 2;
  }
  #home_container .home_content .home_image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 40%;
    height: auto;
  }
  #home_container .home_content .home_image img {
    width: 100%;
    height: 100%;
  }
  #aboutus_container {
    height: auto;
    padding: 3rem 2rem;
  }
  #aboutus_container .about_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 5rem;
    width: 100%;
  }
  #aboutus_container .about_content .carousel-image {
    width: 350px;
  }
  #aboutus_container .about_content .carousel-image .carousel-button {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
  }
  #aboutus_container .about_content .carousel-image .carousel-button.prev {
    left: -4rem;
  }
  #aboutus_container .about_content .carousel-image .carousel-button.next {
    right: -4rem;
  }
  #aboutus_container .about_content .about_text {
    width: 500px;
  }
  #aboutus_container .about_content .about_text h2 {
    font-size: 2.5rem;
  }
  #aboutus_container .about_content .about_text p {
    font-size: 1.2rem;
  }
  #experts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #experts_container .experts_title {
    width: 50%;
  }
  #experts_container .experts_title h2 {
    width: 100%;
    font-size: 2.5rem;
  }
  #experts_container .experts_title p {
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
  }
  #experts_container .experts_content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 5rem;
    width: 50%;
  }
  #experts_container .experts_content .experts_card {
    min-width: 300px;
  }
  #experts_container .experts_content .experts_card picture {
    height: auto;
  }
  #experts_container .experts_content .card_content h3 {
    font-size: 1.5rem;
  }
  #experts_container .experts_content .card_content p {
    font-size: 1.2rem;
  }
  #experts_container .illustration-yellow {
    position: absolute;
    width: 28%;
  }
  #experts_container .illustration-blue {
    position: absolute;
    width: 18%;
    bottom: 3rem;
  }
  #services_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #services_container h2 {
    font-size: 2.5rem;
    width: 50%;
  }
  #services_container .services_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    width: 70%;
  }
  #services_container .services_content .services_card:nth-child(1),
  #services_container .services_content .services_card:nth-child(2),
  #services_container .services_content .services_card:nth-child(3) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(1) .card_content h3,
  #services_container .services_content .services_card:nth-child(2) .card_content h3,
  #services_container .services_content .services_card:nth-child(3) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(1) .card_content p,
  #services_container .services_content .services_card:nth-child(2) .card_content p,
  #services_container .services_content .services_card:nth-child(3) .card_content p {
    font-size: 1.1rem;
    width: 50%;
  }
  #services_container .services_content .services_card:nth-child(1) .illustration,
  #services_container .services_content .services_card:nth-child(2) .illustration,
  #services_container .services_content .services_card:nth-child(3) .illustration {
    bottom: 0;
    left: -2rem;
    width: 24%;
  }
  #services_container .services_content .services_card:nth-child(4),
  #services_container .services_content .services_card:nth-child(5),
  #services_container .services_content .services_card:nth-child(6) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(4) .card_content h3,
  #services_container .services_content .services_card:nth-child(5) .card_content h3,
  #services_container .services_content .services_card:nth-child(6) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(4) .card_content p,
  #services_container .services_content .services_card:nth-child(5) .card_content p,
  #services_container .services_content .services_card:nth-child(6) .card_content p {
    font-size: 1.1rem;
    width: 50%;
  }
  #services_container .services_content .services_card:nth-child(4) .illustration,
  #services_container .services_content .services_card:nth-child(5) .illustration,
  #services_container .services_content .services_card:nth-child(6) .illustration {
    bottom: 0;
    right: -2rem;
    width: 15%;
  }
  #articles_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: auto;
    padding: 3.3rem 2rem;
  }
  #articles_container h2 {
    font-size: 2.5rem;
  }
  #articles_container .illustration {
    top: -2.5rem;
    left: 25%;
    width: 5%;
    transform: translateY(0%);
  }
  #articles_container .articles_content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 5rem 2rem;
    width: 50%;
  }
  #articles_container .articles_content .article_card:nth-child(1),
  #articles_container .articles_content .article_card:nth-child(2),
  #articles_container .articles_content .article_card:nth-child(3),
  #articles_container .articles_content .article_card:nth-child(4) {
    width: 40%;
    min-height: auto;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(2) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(3) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(4) .article_text H3 {
    font-size: 1.3rem;
    text-align: start;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text span,
  #articles_container .articles_content .article_card:nth-child(2) .article_text span,
  #articles_container .articles_content .article_card:nth-child(3) .article_text span,
  #articles_container .articles_content .article_card:nth-child(4) .article_text span {
    font-size: 1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text p,
  #articles_container .articles_content .article_card:nth-child(2) .article_text p,
  #articles_container .articles_content .article_card:nth-child(3) .article_text p,
  #articles_container .articles_content .article_card:nth-child(4) .article_text p {
    font-size: 1.1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .link-article a,
  #articles_container .articles_content .article_card:nth-child(2) .link-article a,
  #articles_container .articles_content .article_card:nth-child(3) .link-article a,
  #articles_container .articles_content .article_card:nth-child(4) .link-article a {
    font-size: 1.2rem;
  }
  #section_article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    padding: 8rem 2rem 3.3rem 2rem;
  }
  #section_article h1 {
    width: 50%;
  }
  #section_article h2 {
    width: 50%;
  }
  #section_article h3 {
    width: 50%;
  }
  #section_article p {
    width: 50%;
  }
  #section_article .line {
    width: 50%;
  }
  #section_article ul {
    width: 50%;
  }
  #doubts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.7rem;
    height: auto;
    padding: 3rem 2rem;
  }
  #doubts_container h2 {
    font-size: 3rem;
    text-align: center;
    width: 50%;
  }
  #doubts_container p {
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
  }
  #doubts_container .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
    width: 50%;
    height: 4rem;
    font-size: 1.4rem;
  }
  #doubts_container .accordion::after {
    font-size: 2.2rem;
  }
  #doubts_container .accordion:nth-child(12) {
    height: 5rem;
  }
  #doubts_container .panel {
    width: 50%;
  }
  #doubts_container .panel p {
    font-size: 1.4rem;
    text-align: start;
  }
  #testimonials_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 1rem;
  }
  #testimonials_container h2 {
    font-size: 2.5rem;
  }
  #testimonials_container .testimonial-carousel {
    width: 600px;
  }
  #testimonials_container .testimonial-carousel .carousel-button {
    position: absolute;
    top: 50%;
  }
  #testimonials_container .testimonial-carousel .carousel-button.prev {
    left: -5rem;
  }
  #testimonials_container .testimonial-carousel .carousel-button.next {
    right: -5rem;
  }
  #contact_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    height: auto;
    padding: 3.3rem 2rem 8rem 2rem;
  }
  #contact_container .contact_content {
    width: 30%;
  }
  #contact_container .contact_content .contact_text {
    width: 100%;
  }
  #contact_container .contact_content .contact_text span {
    font-size: 1rem;
  }
  #contact_container .contact_content .contact_text h2 {
    font-size: 2.5rem;
    text-align: start;
  }
  #contact_container .contact_content .contact_link {
    width: 100%;
  }
  #contact_container .contact_content .contact_link a h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link a h3 ion-icon {
    font-size: 2.2rem;
  }
  #contact_container .contact_content .contact_link a span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .contact_content .contact_link iframe {
    width: 100%;
    height: 10rem;
    border: none;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 35%;
  }
  #contact_container .form-content .label {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(1) {
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(2) {
    width: 100%;
  }
  #contact_container .form-content .link-form {
    width: 100%;
  }
  #contact_container picture {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
    position: absolute;
    bottom: 0;
  }
  #contact_container picture .illustration {
    width: 4.2rem;
  }
  #contact_container picture .illustration-blue {
    width: 4.2rem;
  }
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    height: auto;
    padding: 3rem 2rem;
  }
  footer .section-form {
    width: 50%;
  }
  footer .line {
    width: 50%;
  }
  footer .contact__copy {
    width: 50%;
    text-align: center;
  }
}
@media (1000px <= width <= 1199px) {
  body #scrollTop {
    bottom: 2rem;
    right: 2rem;
  }
  body #success-popup {
    width: 50%;
  }
  body #success-popup .message-image {
    font-size: 3.3rem;
  }
  body #success-popup .message-content h2 {
    font-size: 2rem;
  }
  body #success-popup .message-content p {
    font-size: 1.15rem;
  }
  body #success-popup .message-back-button {
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 90vh;
    padding: 3rem 2rem;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 4rem;
    width: auto;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content {
    width: 35%;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-image {
    width: 35%;
  }
  #aboutus_container {
    height: auto;
    padding: 3rem 2rem;
  }
  #aboutus_container .about_content {
    width: 70%;
  }
  #aboutus_container .about_content .about_img {
    width: 100%;
    height: 100%;
  }
  #aboutus_container .about_content .about_img img {
    width: 40%;
  }
  #aboutus_container .about_content .about_text h2 {
    font-size: 2.5rem;
  }
  #aboutus_container .about_content .about_text p {
    font-size: 1.4rem;
  }
  #experts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #experts_container .experts_title {
    width: 50%;
  }
  #experts_container .experts_title h2 {
    width: 100%;
    font-size: 2.5rem;
  }
  #experts_container .experts_title p {
    width: 100%;
    font-size: 1.3rem;
  }
  #experts_container .experts_content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    width: 50%;
  }
  #experts_container .experts_content .experts_card {
    min-width: 300px;
  }
  #experts_container .experts_content .experts_card picture {
    height: auto;
  }
  #experts_container .experts_content .card_content h3 {
    font-size: 1.5rem;
  }
  #experts_container .experts_content .card_content p {
    font-size: 1.2rem;
  }
  #experts_container .illustration-yellow {
    position: absolute;
    width: 28%;
  }
  #experts_container .illustration-blue {
    position: absolute;
    width: 18%;
    bottom: 3rem;
  }
  #services_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #services_container h2 {
    font-size: 2.5rem;
    width: 50%;
  }
  #services_container .services_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 50%;
  }
  #services_container .services_content .services_card:nth-child(1),
  #services_container .services_content .services_card:nth-child(2),
  #services_container .services_content .services_card:nth-child(3) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(1) .card_content h3,
  #services_container .services_content .services_card:nth-child(2) .card_content h3,
  #services_container .services_content .services_card:nth-child(3) .card_content h3 {
    font-size: 1.55rem;
  }
  #services_container .services_content .services_card:nth-child(1) .illustration,
  #services_container .services_content .services_card:nth-child(2) .illustration,
  #services_container .services_content .services_card:nth-child(3) .illustration {
    bottom: -1rem;
    left: -1rem;
    width: 18%;
  }
  #services_container .services_content .services_card:nth-child(4),
  #services_container .services_content .services_card:nth-child(5),
  #services_container .services_content .services_card:nth-child(6) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(4) .card_content h3,
  #services_container .services_content .services_card:nth-child(5) .card_content h3,
  #services_container .services_content .services_card:nth-child(6) .card_content h3 {
    font-size: 1.55rem;
  }
  #services_container .services_content .services_card:nth-child(4) .illustration,
  #services_container .services_content .services_card:nth-child(5) .illustration,
  #services_container .services_content .services_card:nth-child(6) .illustration {
    bottom: -2.2rem;
    right: -1rem;
    width: 15%;
  }
  #articles_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: auto;
    padding: 3.3rem 2rem;
  }
  #articles_container h2 {
    font-size: 2.5rem;
  }
  #articles_container .illustration {
    top: -2.5rem;
    left: 5rem;
    width: 9%;
  }
  #articles_container .articles_content {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    width: 65%;
  }
  #articles_container .articles_content .article_card:nth-child(1),
  #articles_container .articles_content .article_card:nth-child(2),
  #articles_container .articles_content .article_card:nth-child(3),
  #articles_container .articles_content .article_card:nth-child(4) {
    width: 40%;
    min-height: auto;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(2) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(3) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(4) .article_text H3 {
    font-size: 1.5rem;
    text-align: start;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text span,
  #articles_container .articles_content .article_card:nth-child(2) .article_text span,
  #articles_container .articles_content .article_card:nth-child(3) .article_text span,
  #articles_container .articles_content .article_card:nth-child(4) .article_text span {
    font-size: 1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text p,
  #articles_container .articles_content .article_card:nth-child(2) .article_text p,
  #articles_container .articles_content .article_card:nth-child(3) .article_text p,
  #articles_container .articles_content .article_card:nth-child(4) .article_text p {
    font-size: 1.1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .link-article a,
  #articles_container .articles_content .article_card:nth-child(2) .link-article a,
  #articles_container .articles_content .article_card:nth-child(3) .link-article a,
  #articles_container .articles_content .article_card:nth-child(4) .link-article a {
    font-size: 1.2rem;
  }
  #section_article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    padding: 8rem 2rem 3.3rem 2rem;
  }
  #section_article h1 {
    width: 50%;
    font-size: 2.5rem;
    text-align: start;
  }
  #section_article h2 {
    width: 50%;
    font-size: 2rem;
    text-align: start;
  }
  #section_article h3 {
    width: 50%;
    font-size: 1.5rem;
    text-align: start;
  }
  #section_article p {
    width: 50%;
    font-size: 1.1rem;
    text-align: start;
  }
  #section_article .line {
    width: 50%;
  }
  #section_article ul {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    width: 50%;
  }
  #section_article ul li {
    font-size: 1.2rem;
    text-align: start;
  }
  #doubts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.7rem;
    height: auto;
    padding: 3rem 2rem;
  }
  #doubts_container h2 {
    font-size: 3rem;
    text-align: start;
    width: 50%;
  }
  #doubts_container p {
    font-size: 1.4rem;
    text-align: start;
    width: 50%;
  }
  #doubts_container .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 1rem;
    width: 50%;
    height: 4rem;
    font-size: 1.4rem;
  }
  #doubts_container .accordion::after {
    font-size: 2.2rem;
  }
  #doubts_container .accordion:nth-child(12) {
    height: 5rem;
  }
  #doubts_container .panel {
    width: 50%;
  }
  #doubts_container .panel p {
    font-size: 1.4rem;
    text-align: start;
  }
  #testimonials_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 3.3rem 1rem;
  }
  #testimonials_container h2 {
    font-size: 2.5rem;
  }
  #testimonials_container .testimonial-carousel {
    width: 450px;
  }
  #testimonials_container .testimonial-carousel .carousel-button {
    position: absolute;
    top: 100%;
  }
  #contact_container {
    height: auto;
    padding: 3.3rem 2rem 0 2rem;
  }
  #contact_container .contact_content {
    width: 50%;
  }
  #contact_container .contact_content .contact_text {
    width: 100%;
  }
  #contact_container .contact_content .contact_text span {
    font-size: 1rem;
  }
  #contact_container .contact_content .contact_text h2 {
    font-size: 2.5rem;
    text-align: start;
  }
  #contact_container .contact_content .contact_text p {
    font-size: 1.3rem;
  }
  #contact_container .contact_content .contact_link {
    width: 100%;
  }
  #contact_container .contact_content .contact_link a h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link a h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link a span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .contact_content .contact_link iframe {
    width: 100%;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
  }
  #contact_container .form-content .label {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(1) {
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(2) {
    width: 100%;
  }
  #contact_container .form-content .link-form {
    width: 100%;
  }
  #contact_container picture {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
  }
  #contact_container picture .illustration {
    width: 4.2rem;
  }
  #contact_container picture .illustration-blue {
    width: 4.2rem;
  }
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    height: auto;
    padding: 3rem 2rem;
  }
  footer .section-form {
    width: 50%;
  }
  footer .line {
    width: 50%;
  }
  footer .contact__copy {
    width: 50%;
    text-align: center;
  }
}
@media (780px <= width <= 999px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    padding: 0 3.3rem;
  }
  nav .menu {
    display: flex;
  }
  nav .open {
    display: none;
  }
  nav .menu-mobile {
    display: none;
  }
  body #scrollTop {
    bottom: 2rem;
    right: 2rem;
  }
  body #success-popup {
    width: 60%;
  }
  body #success-popup .message-image {
    font-size: 3.3rem;
  }
  body #success-popup .message-content h2 {
    font-size: 2rem;
  }
  body #success-popup .message-content p {
    font-size: 1.15rem;
  }
  body #success-popup .message-back-button {
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
    padding: 7rem 0 5rem 0;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
    width: auto;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content {
    width: 70%;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-image {
    width: 70%;
  }
  #aboutus_container {
    height: auto;
    padding: 3rem 2rem;
  }
  #aboutus_container .about_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 2rem;
    width: 55%;
  }
  #aboutus_container .about_content .carousel-image {
    width: 450px;
  }
  #aboutus_container .about_content .carousel-image .carousel-button {
    position: absolute;
    top: 100%;
  }
  #aboutus_container .about_content .about_text h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  #aboutus_container .about_content .about_text p {
    font-size: 1.3rem;
  }
  #experts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #experts_container .experts_title h2 {
    width: 55%;
    font-size: 2.5rem;
  }
  #experts_container .experts_title p {
    width: 55%;
    font-size: 1.3rem;
  }
  #experts_container .experts_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 80%;
  }
  #experts_container .experts_content .experts_card {
    max-width: 350px;
  }
  #experts_container .experts_content .experts_card picture {
    height: auto;
  }
  #experts_container .experts_content .card_content h3 {
    font-size: 1.5rem;
  }
  #experts_container .experts_content .card_content p {
    font-size: 1.2rem;
  }
  #experts_container .illustration-yellow {
    position: absolute;
    width: 35%;
  }
  #experts_container .illustration-blue {
    position: absolute;
    width: 14%;
  }
  #services_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #services_container h2 {
    font-size: 2.5rem;
    width: auto;
  }
  #services_container .services_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 55%;
  }
  #services_container .services_content .services_card:nth-child(1),
  #services_container .services_content .services_card:nth-child(2),
  #services_container .services_content .services_card:nth-child(3) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(1) .card_content h3,
  #services_container .services_content .services_card:nth-child(2) .card_content h3,
  #services_container .services_content .services_card:nth-child(3) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(1) .illustration,
  #services_container .services_content .services_card:nth-child(2) .illustration,
  #services_container .services_content .services_card:nth-child(3) .illustration {
    bottom: -1.4rem;
    left: -1.4rem;
    width: 18%;
  }
  #services_container .services_content .services_card:nth-child(4),
  #services_container .services_content .services_card:nth-child(5),
  #services_container .services_content .services_card:nth-child(6) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(4) .card_content h3,
  #services_container .services_content .services_card:nth-child(5) .card_content h3,
  #services_container .services_content .services_card:nth-child(6) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(4) .illustration,
  #services_container .services_content .services_card:nth-child(5) .illustration,
  #services_container .services_content .services_card:nth-child(6) .illustration {
    bottom: -2.2rem;
    right: -2rem;
    width: 16%;
  }
  #articles_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: auto;
    padding: 3.3rem 2rem;
  }
  #articles_container h2 {
    font-size: 2.5rem;
  }
  #articles_container .illustration {
    top: -2.5rem;
    left: 1rem;
    width: 10%;
  }
  #articles_container .articles_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    width: 70%;
  }
  #articles_container .articles_content .article_card:nth-child(1),
  #articles_container .articles_content .article_card:nth-child(2),
  #articles_container .articles_content .article_card:nth-child(3),
  #articles_container .articles_content .article_card:nth-child(4) {
    width: 50%;
    min-height: auto;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(2) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(3) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(4) .article_text H3 {
    font-size: 1.5rem;
    text-align: start;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text span,
  #articles_container .articles_content .article_card:nth-child(2) .article_text span,
  #articles_container .articles_content .article_card:nth-child(3) .article_text span,
  #articles_container .articles_content .article_card:nth-child(4) .article_text span {
    font-size: 1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text p,
  #articles_container .articles_content .article_card:nth-child(2) .article_text p,
  #articles_container .articles_content .article_card:nth-child(3) .article_text p,
  #articles_container .articles_content .article_card:nth-child(4) .article_text p {
    font-size: 1.1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .link-article a,
  #articles_container .articles_content .article_card:nth-child(2) .link-article a,
  #articles_container .articles_content .article_card:nth-child(3) .link-article a,
  #articles_container .articles_content .article_card:nth-child(4) .link-article a {
    font-size: 1.2rem;
  }
  #section_article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    padding: 8rem 2rem 3.3rem 2rem;
  }
  #section_article h1 {
    width: 55%;
    font-size: 2.5rem;
    text-align: start;
  }
  #section_article h2 {
    width: 55%;
    font-size: 2rem;
    text-align: start;
  }
  #section_article h3 {
    width: 55%;
    font-size: 1.5rem;
    text-align: start;
  }
  #section_article p {
    width: 55%;
    font-size: 1.2rem;
    text-align: start;
  }
  #section_article .line {
    width: 55%;
  }
  #section_article ul {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    width: 55%;
  }
  #section_article ul li {
    font-size: 1.2rem;
    text-align: start;
  }
  #doubts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    padding: 3rem 2rem;
  }
  #doubts_container h2 {
    font-size: 2.5rem;
    text-align: start;
    width: 55%;
  }
  #doubts_container p {
    font-size: 1.3rem;
    width: 55%;
  }
  #doubts_container .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.4rem;
    width: 55%;
    height: 4rem;
    font-size: 1.3rem;
  }
  #doubts_container .accordion:nth-child(12) {
    height: 5rem;
  }
  #doubts_container .panel {
    width: 55%;
  }
  #doubts_container .panel p {
    font-size: 1.3rem;
    text-align: start;
  }
  #testimonials_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 3.3rem 1rem;
  }
  #testimonials_container h2 {
    font-size: 2.5rem;
  }
  #testimonials_container .testimonial-carousel {
    width: 450px;
  }
  #testimonials_container .testimonial-carousel .carousel-button {
    position: absolute;
    top: 100%;
  }
  #contact_container {
    height: auto;
    padding: 3.3rem 2rem 0 2rem;
  }
  #contact_container .contact_content {
    width: 55%;
  }
  #contact_container .contact_content .contact_text {
    width: 100%;
  }
  #contact_container .contact_content .contact_text span {
    font-size: 1rem;
  }
  #contact_container .contact_content .contact_text h2 {
    font-size: 2.5rem;
    text-align: start;
  }
  #contact_container .contact_content .contact_text p {
    font-size: 1.3rem;
  }
  #contact_container .contact_content .contact_link {
    width: 100%;
  }
  #contact_container .contact_content .contact_link a h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link a h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link a span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .contact_content .contact_link iframe {
    width: 100%;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 55%;
  }
  #contact_container .form-content .label {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(1) {
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(2) {
    width: 100%;
  }
  #contact_container .form-content .link-form {
    width: 100%;
  }
  #contact_container picture {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
  }
  #contact_container picture .illustration {
    width: 4.2rem;
  }
  #contact_container picture .illustration-blue {
    width: 4.2rem;
  }
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    height: auto;
    padding: 3rem 2rem;
  }
  footer .section-form {
    width: 55%;
  }
  footer .section-form .form-links {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
  }
  footer .section-form .form-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
  }
  footer .section-form .form-links li a:hover {
    text-decoration: underline;
  }
  footer .section-form .form-links li button {
    background: #ffffff;
    color: #1e1e1e;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    border: none;
    outline: none;
    cursor: pointer;
  }
  footer .line {
    width: 55%;
  }
  footer .contact__copy {
    width: 55%;
    text-align: center;
  }
}
@media (430px <= width <= 779px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    padding: 0;
  }
  nav .logo {
    padding: 0 0 0 4.4rem;
  }
  nav .menu {
    display: none;
  }
  nav .open {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    padding: 0 2rem 0 0;
  }
  nav .menu-mobile {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 3.5rem;
    padding: 6rem 0 0 5rem;
    display: none;
  }
  body .icon-whatsapp {
    display: flex;
  }
  body #success-popup {
    width: 80%;
  }
  body #success-popup .message-image {
    font-size: 3.3rem;
  }
  body #success-popup .message-content h2 {
    font-size: 2rem;
  }
  body #success-popup .message-content p {
    font-size: 1.15rem;
  }
  body #success-popup .message-back-button {
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
    padding: 7rem 0 5rem 0;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
    width: auto;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content {
    width: 70%;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content .slide-title {
    font-size: 1.75rem;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-image {
    width: 70%;
  }
  #aboutus_container {
    height: auto;
    padding: 3rem 2rem;
  }
  #aboutus_container .about_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 2rem;
    width: 80%;
  }
  #aboutus_container .about_content .carousel-image {
    max-width: 430px;
  }
  #aboutus_container .about_content .carousel-image .carousel-button {
    position: absolute;
    top: 100%;
  }
  #aboutus_container .about_content .about_text {
    width: 100%;
  }
  #aboutus_container .about_content .about_text h2 {
    font-size: 2rem;
  }
  #aboutus_container .about_content .about_text p {
    font-size: 1.2rem;
  }
  #experts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.2rem;
    height: auto;
    padding: 3rem 2rem;
  }
  #experts_container .experts_title h2 {
    width: 80%;
    font-size: 2.2rem;
  }
  #experts_container .experts_title p {
    width: 80%;
    font-size: 1.2rem;
  }
  #experts_container .experts_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 80%;
  }
  #experts_container .experts_content .experts_card {
    max-width: 330px;
  }
  #experts_container .experts_content .experts_card picture {
    height: auto;
  }
  #experts_container .experts_content .card_content h3 {
    font-size: 1.3rem;
  }
  #experts_container .experts_content .card_content p {
    font-size: 1.1rem;
  }
  #experts_container .illustration-yellow {
    position: absolute;
    width: 50%;
  }
  #experts_container .illustration-blue {
    position: absolute;
    width: 20%;
  }
  #services_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 4rem 2rem;
  }
  #services_container h2 {
    font-size: 2.5rem;
    width: auto;
  }
  #services_container .services_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 80%;
  }
  #services_container .services_content .services_card:nth-child(1),
  #services_container .services_content .services_card:nth-child(2),
  #services_container .services_content .services_card:nth-child(3) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(1) .card_content h3,
  #services_container .services_content .services_card:nth-child(2) .card_content h3,
  #services_container .services_content .services_card:nth-child(3) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(1) .illustration,
  #services_container .services_content .services_card:nth-child(2) .illustration,
  #services_container .services_content .services_card:nth-child(3) .illustration {
    bottom: -1rem;
    left: -1rem;
    width: 18%;
  }
  #services_container .services_content .services_card:nth-child(4),
  #services_container .services_content .services_card:nth-child(5),
  #services_container .services_content .services_card:nth-child(6) {
    width: auto;
    min-height: 110px;
  }
  #services_container .services_content .services_card:nth-child(4) .card_content h3,
  #services_container .services_content .services_card:nth-child(5) .card_content h3,
  #services_container .services_content .services_card:nth-child(6) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(4) .illustration,
  #services_container .services_content .services_card:nth-child(5) .illustration,
  #services_container .services_content .services_card:nth-child(6) .illustration {
    bottom: -2.2rem;
    right: -2.5rem;
    width: 18%;
  }
  #articles_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: auto;
    padding: 3.3rem 2rem;
  }
  #articles_container h2 {
    font-size: 2.2rem;
  }
  #articles_container .illustration {
    top: -2.5rem;
    left: 1rem;
    width: 15%;
  }
  #articles_container .articles_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem 2rem;
  }
  #articles_container .articles_content .article_card:nth-child(1),
  #articles_container .articles_content .article_card:nth-child(2),
  #articles_container .articles_content .article_card:nth-child(3),
  #articles_container .articles_content .article_card:nth-child(4) {
    width: 65%;
    min-height: auto;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_image,
  #articles_container .articles_content .article_card:nth-child(2) .article_image,
  #articles_container .articles_content .article_card:nth-child(3) .article_image,
  #articles_container .articles_content .article_card:nth-child(4) .article_image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 10rem;
    border-radius: 1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_image img,
  #articles_container .articles_content .article_card:nth-child(2) .article_image img,
  #articles_container .articles_content .article_card:nth-child(3) .article_image img,
  #articles_container .articles_content .article_card:nth-child(4) .article_image img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(2) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(3) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(4) .article_text H3 {
    font-size: 1.2rem;
    text-align: start;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text span,
  #articles_container .articles_content .article_card:nth-child(2) .article_text span,
  #articles_container .articles_content .article_card:nth-child(3) .article_text span,
  #articles_container .articles_content .article_card:nth-child(4) .article_text span {
    font-size: 1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text p,
  #articles_container .articles_content .article_card:nth-child(2) .article_text p,
  #articles_container .articles_content .article_card:nth-child(3) .article_text p,
  #articles_container .articles_content .article_card:nth-child(4) .article_text p {
    font-size: 1.2rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .link-article a,
  #articles_container .articles_content .article_card:nth-child(2) .link-article a,
  #articles_container .articles_content .article_card:nth-child(3) .link-article a,
  #articles_container .articles_content .article_card:nth-child(4) .link-article a {
    font-size: 1.2rem;
    border-radius: 0.7rem;
  }
  #section_article {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
    padding: 8rem 2rem 3.3rem 2rem;
  }
  #section_article h1 {
    width: 80%;
    font-size: 2.5rem;
    text-align: start;
  }
  #section_article h2 {
    width: 80%;
    font-size: 2rem;
    text-align: start;
  }
  #section_article h3 {
    width: 80%;
    font-size: 1.5rem;
    text-align: start;
  }
  #section_article p {
    width: 80%;
    font-size: 1.2rem;
    text-align: start;
  }
  #section_article .line {
    width: 80%;
  }
  #section_article ul {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    width: 80%;
  }
  #section_article ul li {
    font-size: 1.2rem;
    text-align: start;
  }
  #doubts_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: auto;
    padding: 3rem 2rem;
  }
  #doubts_container h2 {
    width: 80%;
    font-size: 2.5rem;
  }
  #doubts_container p {
    width: 80%;
    font-size: 1.2rem;
  }
  #doubts_container .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.4rem;
    width: 80%;
    height: 7rem;
    font-size: 1.3rem;
  }
  #doubts_container .accordion:nth-child(12) {
    height: 12rem;
  }
  #doubts_container .panel {
    width: 80%;
  }
  #doubts_container .panel p {
    font-size: 1.2rem;
    text-align: start;
  }
  #testimonials_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 3.3rem 1rem;
  }
  #testimonials_container h2 {
    font-size: 2.2rem;
  }
  #testimonials_container .testimonial-carousel {
    max-width: 430px;
  }
  #testimonials_container .testimonial-carousel .carousel-button {
    position: absolute;
    top: 100%;
  }
  #contact_container {
    height: auto;
    padding: 3.3rem 2rem 0 2rem;
  }
  #contact_container .contact_content {
    width: 80%;
  }
  #contact_container .contact_content .contact_text span {
    font-size: 1rem;
  }
  #contact_container .contact_content .contact_text h2 {
    font-size: 2.2rem;
    text-align: start;
  }
  #contact_container .contact_content .contact_text p {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link {
    width: 100%;
  }
  #contact_container .contact_content .contact_link a h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link a h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link a span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .contact_content .contact_link iframe {
    width: 100%;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
  }
  #contact_container .form-content .label {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(1) {
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(2) {
    width: 100%;
  }
  #contact_container .form-content .link-form {
    width: 100%;
  }
  #contact_container picture {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
  }
  #contact_container picture .illustration {
    width: 5rem;
  }
  #contact_container picture .illustration-blue {
    width: 5rem;
  }
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8rem;
    height: auto;
    padding: 3rem 2rem;
  }
  footer .section-form {
    width: 70%;
  }
  footer .section-form .form-links {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
  }
  footer .section-form .form-links li a {
    font-size: 1rem;
  }
  footer .section-form .form-links li button {
    font-size: 1rem;
    padding: 0.8rem auto;
    cursor: pointer;
  }
  footer .line {
    width: 70%;
  }
  footer .contact__copy {
    width: 70%;
    opacity: 0.9;
    text-align: start;
  }
}
@media (max-width: 429px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    padding: 0;
  }
  nav .logo {
    padding: 0 0 0 3.3rem;
  }
  nav .menu {
    display: none;
  }
  nav .open {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    padding: 0 2rem 0 0;
  }
  nav .menu-mobile {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 3.5rem;
    padding: 6rem 0 0 5rem;
    display: none;
  }
  body .icon-whatsapp {
    display: flex;
  }
  body #success-popup {
    width: 85%;
  }
  body #success-popup .message-image {
    font-size: 3.3rem;
  }
  body #success-popup .message-content h2 {
    font-size: 2rem;
  }
  body #success-popup .message-content p {
    font-size: 1.15rem;
  }
  body #success-popup .message-back-button {
    height: 2.5rem;
    font-size: 0.9rem;
  }
  .hero-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: auto;
    padding: 8rem 0 5rem 0;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    width: auto;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content {
    width: 70%;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-content .slide-title {
    font-size: 1.6rem;
  }
  .hero-carousel .carousel-viewport .carousel-track .carousel-slide .slide-image {
    width: 70%;
  }
  #experts_container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 2.2rem;
    height: auto;
    padding: 3.3rem;
  }
  #experts_container .experts_title h2 {
    width: 100%;
    font-size: 2.2rem;
    text-align: start;
  }
  #experts_container .experts_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
  }
  #experts_container .experts_content .experts_card {
    max-width: 330px;
  }
  #experts_container .experts_content .experts_card picture {
    height: auto;
  }
  #experts_container .experts_content .card_content h3 {
    font-size: 1.2rem;
  }
  #experts_container .experts_content .card_content p {
    font-size: 1.1rem;
  }
  #services_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    height: auto;
    padding: 3.3rem;
  }
  #services_container h2 {
    font-size: 2.2rem;
    width: 100%;
    text-align: start;
  }
  #services_container .services_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    width: 100%;
  }
  #services_container .services_content .services_card:nth-child(1),
  #services_container .services_content .services_card:nth-child(2),
  #services_container .services_content .services_card:nth-child(3) {
    width: auto;
    min-height: auto;
  }
  #services_container .services_content .services_card:nth-child(1) .card_content h3,
  #services_container .services_content .services_card:nth-child(2) .card_content h3,
  #services_container .services_content .services_card:nth-child(3) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(1) .illustration,
  #services_container .services_content .services_card:nth-child(2) .illustration,
  #services_container .services_content .services_card:nth-child(3) .illustration {
    bottom: -2rem;
    left: -2rem;
    width: 20%;
  }
  #services_container .services_content .services_card:nth-child(4),
  #services_container .services_content .services_card:nth-child(5),
  #services_container .services_content .services_card:nth-child(6) {
    width: auto;
    min-height: auto;
  }
  #services_container .services_content .services_card:nth-child(4) .card_content h3,
  #services_container .services_content .services_card:nth-child(5) .card_content h3,
  #services_container .services_content .services_card:nth-child(6) .card_content h3 {
    font-size: 1.4rem;
  }
  #services_container .services_content .services_card:nth-child(4) .illustration,
  #services_container .services_content .services_card:nth-child(5) .illustration,
  #services_container .services_content .services_card:nth-child(6) .illustration {
    bottom: -1.5rem;
    right: -1.5rem;
    width: 18%;
  }
  #articles_container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    height: auto;
    padding: 3.3rem;
  }
  #articles_container h2 {
    font-size: 2.2rem;
    text-align: start;
  }
  #articles_container .articles_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5.5rem 2rem;
  }
  #articles_container .articles_content .article_card:nth-child(1),
  #articles_container .articles_content .article_card:nth-child(2),
  #articles_container .articles_content .article_card:nth-child(3),
  #articles_container .articles_content .article_card:nth-child(4) {
    width: 100%;
    min-height: auto;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(2) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(3) .article_text H3,
  #articles_container .articles_content .article_card:nth-child(4) .article_text H3 {
    font-size: 1.2rem;
    text-align: start;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text span,
  #articles_container .articles_content .article_card:nth-child(2) .article_text span,
  #articles_container .articles_content .article_card:nth-child(3) .article_text span,
  #articles_container .articles_content .article_card:nth-child(4) .article_text span {
    font-size: 1rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .article_text p,
  #articles_container .articles_content .article_card:nth-child(2) .article_text p,
  #articles_container .articles_content .article_card:nth-child(3) .article_text p,
  #articles_container .articles_content .article_card:nth-child(4) .article_text p {
    font-size: 1.2rem;
  }
  #articles_container .articles_content .article_card:nth-child(1) .link-article a,
  #articles_container .articles_content .article_card:nth-child(2) .link-article a,
  #articles_container .articles_content .article_card:nth-child(3) .link-article a,
  #articles_container .articles_content .article_card:nth-child(4) .link-article a {
    font-size: 1.2rem;
    border-radius: 0.7rem;
  }
  #section_article {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: auto;
    padding: 8rem 3.3rem 3.3rem 3.3rem;
  }
  #section_article h1 {
    font-size: 2.5rem;
    text-align: start;
  }
  #section_article h2 {
    font-size: 2rem;
    text-align: start;
  }
  #section_article h3 {
    font-size: 1.5rem;
    text-align: start;
  }
  #section_article p {
    font-size: 1.2rem;
    text-align: start;
  }
  #section_article ul {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  #section_article ul li {
    font-size: 1.2rem;
  }
  #doubts_container {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    height: auto;
    padding: 3.3rem;
  }
  #doubts_container h2 {
    font-size: 2.2rem;
  }
  #doubts_container .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0.4rem;
    width: 100%;
    height: 7rem;
    font-size: 1.2rem;
  }
  #doubts_container .accordion:nth-child(12) {
    height: 12rem;
  }
  #doubts_container .panel {
    width: 100%;
  }
  #doubts_container .panel p {
    font-size: 1.2rem;
    text-align: start;
  }
  #aboutus_container {
    height: auto;
    padding: 3.3rem;
  }
  #aboutus_container .about_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 2rem;
    width: 100%;
  }
  #aboutus_container .about_content .carousel-image {
    max-width: 300px;
  }
  #aboutus_container .about_content .carousel-image .carousel-button {
    position: absolute;
    top: 100%;
  }
  #aboutus_container .about_content .about_text h2 {
    font-size: 2.2rem;
    text-align: start;
  }
  #aboutus_container .about_content .about_text p {
    font-size: 1.2rem;
  }
  #testimonials_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 1rem 3.3rem 1rem;
  }
  #testimonials_container h2 {
    font-size: 2.2rem;
    text-align: start;
  }
  #testimonials_container .testimonial-carousel {
    max-width: 300px;
  }
  #testimonials_container .testimonial-carousel .carousel-button {
    position: absolute;
    top: 100%;
  }
  #contact_container {
    height: auto;
    padding: 3.3rem 3.3rem 0 3.3rem;
  }
  #contact_container .contact_content .contact_text span {
    font-size: 1rem;
  }
  #contact_container .contact_content .contact_text h2 {
    font-size: 2.2rem;
    text-align: start;
  }
  #contact_container .contact_content .contact_text p {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link {
    width: 100%;
  }
  #contact_container .contact_content .contact_link a h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link a h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link a span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .contact_content .contact_link iframe {
    width: 100%;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 {
    font-size: 1.2rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) h3 ion-icon {
    font-size: 1.8rem;
  }
  #contact_container .contact_content .contact_link .link-form:nth-child(4) span {
    font-size: 1rem;
    padding: 0 0 0 2.2rem;
  }
  #contact_container .form-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content .label {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(1) {
    width: 100%;
  }
  #contact_container .form-content section .form-divisor2 label:nth-child(2) {
    width: 100%;
  }
  #contact_container .form-content .link-form {
    width: 100%;
  }
  #contact_container picture {
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
  }
  #contact_container picture .illustration {
    width: 5rem;
  }
  #contact_container picture .illustration-blue {
    width: 5rem;
  }
  footer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
    height: auto;
    padding: 3.3rem;
  }
  footer .section-form {
    width: 100%;
  }
  footer .section-form .form-links {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
  }
  footer .section-form .form-links li a {
    font-size: 1rem;
  }
  footer .section-form .form-links li button {
    font-size: 1rem;
    padding: 0.8rem auto;
    cursor: pointer;
  }
  footer .contact__copy {
    width: 90%;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 300;
    opacity: 0.95;
    text-align: start;
  }
}
@media (max-width: 414px) {
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
    padding: 0;
  }
  nav .logo {
    padding: 0 0 0 2rem;
  }
  nav .menu {
    display: none;
  }
  nav .open {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 0;
    padding: 0 2rem 0 0;
  }
  nav .menu-mobile {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 3.5rem;
    padding: 6rem 0 0 5rem;
    display: none;
  }
  body #success-popup {
    width: 90%;
    padding: 2rem 1rem 2rem 1rem;
  }
  body #success-popup .message-image {
    font-size: 2.5rem;
  }
  body #success-popup .message-content h2 {
    font-size: 1.5rem;
  }
  body #success-popup .message-content p {
    font-size: 1rem;
  }
  body #success-popup .message-back-button {
    height: 2.5rem;
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=styles.css.map */