body,
html {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: poppins;
  font-weight: bolder;
  color: #F9F9F9;
  text-align: center;
  font-size: 3.125rem;
}

h2 {
  color: #161B5E;
  font-size: 2.2rem;
  font-weight: bolder;
}

p {
  font-family: poppins;
  font-weight: 200;
}

span {
  color: #06BEE1;
}

body,
html {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: poppins;
  font-weight: bolder;
  color: #F9F9F9;
  text-align: center;
  font-size: 3.125rem;
}

h2 {
  color: #161B5E;
  font-size: 2.2rem;
  font-weight: bolder;
}

p {
  font-family: poppins;
  font-weight: 200;
}

span {
  color: #06BEE1;
}

.contac-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12.5rem;
  height: 5rem;
  border-radius: 10px;
  margin: 10px;
  background-color: #2E3192;
  border: none;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}

.contac-button img {
  width: 3.125rem;
  height: 3.125rem;
}

.contac-button:hover {
  background-color: #06BEE1;
  cursor: pointer;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

body,
html {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: poppins;
  font-weight: bolder;
  color: #F9F9F9;
  text-align: center;
  font-size: 3.125rem;
}

h2 {
  color: #161B5E;
  font-size: 2.2rem;
  font-weight: bolder;
}

p {
  font-family: poppins;
  font-weight: 200;
}

span {
  color: #06BEE1;
}

.service_item {
  max-width: 25ch;
  text-align: center;
  background: #F9F9F9;
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 15px;
  border: 2px solid #C4C4C4;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), -webkit-transform 0.15s ease;
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), -webkit-transform 0.15s ease;
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), transform 0.15s ease;
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), transform 0.15s ease, -webkit-transform 0.15s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  color: #161B5E;
}

.service_item > :not(span) {
  -webkit-transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}

.service_item > strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.service_item span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F9F9F9;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  top: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
  transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}

.service_item:hover {
  background: #2E3192;
}

.service_item:hover span {
  top: 0;
  font-size: 1.2em;
}

.service_item:hover > div,
.service_item:hover > strong {
  opacity: 0;
}

/*------------------------------------*\
    #Header styles
\*------------------------------------*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #161B5E;
  padding: 1.25rem;
}

header h1 {
  margin-bottom: 0rem;
  font-size: 2.5rem;
  text-align: center;
}

header img {
  width: 40vw;
  max-width: 200px;
  height: auto;
}

header p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #F9F9F9;
  text-align: center;
}

header .header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------------------------------*\
    #Main styles
\*------------------------------------*/
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}

main .services,
main .faq,
main .brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*------------------------------------*\
    #Services styles
\*------------------------------------*/
.services_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

/*------------------------------------*\
    #Brands styles
\*------------------------------------*/
.brand-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.brand-carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.brand-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8rem;
  height: 8rem;
  background: #F9F9F9;
  border-radius: 1rem;
  -webkit-box-shadow: 0 6px 16px rgba(44, 44, 44, 0.2);
          box-shadow: 0 6px 16px rgba(44, 44, 44, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  cursor: pointer;
}

.brand-card:hover {
  -webkit-transform: translateY(-6px) scale(1.05);
          transform: translateY(-6px) scale(1.05);
  -webkit-box-shadow: 0 12px 25px rgba(44, 44, 44, 0.2);
          box-shadow: 0 12px 25px rgba(44, 44, 44, 0.2);
}

.brand-card__logo {
  width: 110px;
  height: 140px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.brand-card__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.brand-card__info {
  text-align: center;
}

.brand-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: #2C2C2C;
}

.about_us {
  background-color: #D9D9D9;
  padding: 1% 5%;
  border-radius: 10px;
}

.about_us p {
  font-size: 25px;
  text-align: center;
}

/*------------------------------------*\
    #FAQ styles
\*------------------------------------*/
.faq {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}

.faq h2 {
  margin-bottom: 0;
}

.faq p {
  color: #C4C4C4;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: lexend deca;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

.faq .faq_item {
  margin-bottom: 0;
}

.faq .faq_item h3 {
  color: #161B5E;
  font-family: poppins;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0;
}

.faq .faq_item p {
  font-family: poppins;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: justify;
  margin-top: 0;
  margin-bottom: 0;
}

/*------------------------------------*\
    #Footer styles
\*------------------------------------*/
footer {
  background-color: #161B5E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem;
}

footer img {
  width: 20vw;
  max-width: 115px;
  height: auto;
  margin: .5rem 1rem;
}

footer .contact_inf {
  margin: .5rem 1rem;
}

footer .contact_inf h2 {
  color: #F9F9F9;
  font-family: poppins;
  font-weight: bolder;
  font-size: 2rem;
}

footer .contact_inf .contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .contact_inf .contact_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F9F9F9;
  font-family: poppins;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
}

footer .contact_inf .contact_list a img {
  width: 26px;
  height: 26px;
  margin-right: 0.5rem;
}

footer .contact_inf .contact_list a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #06BEE1;
}

footer .contact_inf p {
  color: #F9F9F9;
  cursor: default;
}

footer .contact_inf p a {
  text-decoration: none;
  color: #009E66;
}

footer .contact_inf p a:hover {
  cursor: url("imagenes/Ml.png") 0 0, pointer;
}

/*------------------------------------*\
    #Responsive styles
\*------------------------------------*/
@media (max-width: 900px) {
  .services_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .contact_inf {
    margin: 1rem 0;
  }
}

@media (max-width: 600px) {
  header img {
    width: 70vw;
    max-width: 150px;
  }
  .faq h2 {
    font-size: 2rem;
  }
  .faq .faq_item h3 {
    font-size: 1.1rem;
  }
  .faq .faq_item p {
    font-size: 1rem;
  }
  footer img {
    width: 40vw;
    max-width: 80px;
  }
  .contact_inf h2 {
    font-size: 1.2rem;
  }
  .contact_list a {
    font-size: 1rem;
  }
}
/*# sourceMappingURL=index.css.map */