:root {
  /* FONTS */
  --main-font: 'Roboto', sans-serif;
  /* FONTS COLORS */
  --primary-color: black;
  --dark-blue:#0A2360;
  --light-blue:black;
  --black-color:#021450;
  --white-color:#ffffff;
}
header {
  border-bottom:1px solid rgb(236, 236, 236);
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
  width: 100%;
  background-color: white;
  background: black;
  position: sticky;
  top: 0;
  z-index: 100;
}
.width-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.logo-header {
  height: 120px;
}
.logo-letters {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  color: var(--primary-color);
}
.social-networks-wrapper {
  display: flex;
  gap: 12px;
}
.social-networks-wrapper i {
  font-size: 30px;
  color: var(--primary-color);
  color: white;
}
/* GENERIC LAYOUT CLASSES */
img {
  display: block;
}
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
}
.flex-row {
  display: flex;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.align-items-center{
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.p-large {
  padding-top: 100px;
  padding-bottom: 100px;
}
.p-medium {
  padding-top: 50px;
  padding-bottom: 50px;
}
.col-half {
  width: 50%;
}
.col-gap-m {
  gap: 30px;
}
.row-gap-m {
  gap: 24px;
}
/* FONTS */
.text {
  /* font-family: 'Open Sans', sans-serif; */
  font-family: var(--main-font);
}
.text-blue {
  color: var(--primary-color);
  /* color: var(--dark-blue); */
}
.text-dark {
  color: black;
}
.text-red {
  color: #ff2946;
}
.text-white {
  color: white;
}
.text-center {
  text-align: center;
}
.headline {
  font-size: 38px;
  line-height: 40px;
  font-weight: 900;
}
.sub-title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--light-blue);
}
.cta {
  padding: 12px 24px;
  background-color: var(--primary-color);
  /* background-color: #ff2946; */
  border-radius: 8px;
  color: white;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .1em;
  width: fit-content;
}
.cta-icon {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-icon i {
  font-size: 20px;
}
.cta-whatsapp {}
/* Hero Section */
.hero-image {
  border-radius: .25em;
  width: 100%;
}
/* ============== SECTIONS */
.benefits-cards,
.testimonials {
  padding: 50px 0;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
}
.section-header .sub-title {
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -.02em;
  color: #ff2946
}
.section-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: 900;
  color: black;
  margin-bottom: 16px;
}
/* ========================= BENEFITS CAROUSEL */
/* ==================== SWIPER JS BENEFITS CAROUSEL */
.benefits-swiper--wrapper {
  /* border: 1px solid black; */
  /* min-height: 100vh; */
  width: 100%;
  margin: 0 auto;
  /* padding: 16px; */
  display: flex;
  align-items: center;
}
.benefits-swiper-container {
  /* border: 1px solid black; */
  padding: 8px;
  /* max-width: 1000px; */
  width: 85%;
  flex: 1;
}
.benefits-swiper {
  width: 100%;
  /* height: 100%; */
}

/* .testimonials-cards {
  border: 1px solid red;
  height: 100%;
} */
.benefits-slide {
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 16px;

  /* max-width: 390px; */
  /* width: 100%; */
  /* height: auto; */
  /* padding: 16px; */
  background-color: white;
  box-shadow: 0 1px 16px rgb(0 0 0 / 20%);
  border-radius: 5px;
}

.benefits-slide img {
  display: block;
  width: 100%;
  /* height: 50%;
  height: 220px; */
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 16px;
}
.card-body {
  display: flex;
  flex-direction: column;
  /* padding: 16px 0; */
}
.card-body p {
  font-family: var(--primary-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 16px;
}
.card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 100%; */
  padding: 6px 12px;
  background-color: white;
  border:1px solid #dadada;
  border-radius: 8px;
  cursor: pointer;
}
.card-cta:hover {
  background-color: rgb(233, 233, 233);
}
.card-cta span {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 500;
  /* color: grey; */
}
.card-cta i {
  /* padding: 10px; */
  font-size: 30px;
}
.swiper-pagination {
  position: relative;
  margin-top: 16px;
  /* text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10; */
}
.carousel-control {
  cursor: pointer;
}
.carousel-control i {
  font-size: 50px;
  /* border: 1px solid red; */
}
@media screen and (max-width: 640px) {
  /* .benefits-swiper-container {
    width: 60%;
  } */
  .carousel-control i {
    display: none;
  }
  .benefits-slide img {
    aspect-ratio: 3 / 2;
  }
}

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

/* ============== CARDS */
/* .cards-carrousel {
  display: flex;
  gap: 20px;
  height: auto;
}
.card {
  display: flex;
  flex-direction: column;
  max-width: 390px;
  width: 100%;
  height: auto;
  padding: 16px;
  background-color: white;
  box-shadow: 0 1px 16px rgb(0 0 0 / 20%);
  border-radius: 5px;
}
.card-img {
  width: 100%;
}
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin-top: 12px;
  justify-content: space-between;

}
.card-title {
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: grey;
}
.card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.card-cta span {
  font-family: var(--main-font);
  font-size: 12px;
  color: #384B8C;
}
.card-cta i {
  padding: 10px;
  background-color: white;
  border:1px solid #dadada;
  border-radius: 50%;
  font-size: 30px;
} */

/* ====================== MicroCards */
.micro-cards-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}
.microcard {
  --micro-card-size: 84px;
  width: var(--micro-card-size);
  height: var(--micro-card-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 6px 1px rgb(0 0 0 / 15%);
  border-radius: 8px;
  cursor: pointer;
  transition: all .5s;
}
.microcard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
}
/* BANNER 1 */
section {
  width: 100%;
}
.container-box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.cta-banner-1 {
  --padding-tb:130px;
  width: 50%;
  padding-top: var(--padding-tb);
  padding-bottom: var(--padding-tb);
  /* border: 1px solid red; */
}
.container-wide {
  width: 100%;
  position: relative;
} 

.bkg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.cta-banner-1 h2 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 52px;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner-1 p {
  font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: -.02em;
    color: #fff;
  margin-bottom: 36px;
}
.cta-banner-1 .cta-whatsapp {
  padding: 12px 20px;
  width: fit-content;
  width: 246px;
    height: 44px;
    background: #ff2946;
    border-radius: 5px;
    color: #fff;
    transition: all .5s;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}
/* IMAGE TEXT - CARDS */
.simple-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: auto;
}
.simple-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 365px;
  width: 100%;
  height: 100%;
  box-shadow: 0 1px 16px rgb(0 0 0 / 20%);
  border-radius: 5px;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  padding: 16px;
}
.simple-card img {
  width: 100px;
}
.simple-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: -.02em;
  color: #696969;
  padding-left: 1.25rem;
  padding-bottom: 0;
  margin-bottom: 0;
}
/* @media screen and (max-width: 840px) {
  .simple-cards {
    flex-direction: column;
  }
} */
.banner-content {

}
.bkg-wrapper {
  background-color: #ff2946;
  padding: 30px;
  /* margin-right: 30px; */
}
.align-left {
  align-items: flex-end;
}
.banner-content .cta-whatsapp {
  background-color: gray;
}
/* ==================== SECTION TESTIMONIALS */
.testimonials {
  padding: 50px 0;
  /* border: 1px solid black; */
}
.section-padding {
  padding: 50px 0;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 8px;
  padding-bottom: 24px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
.section-header .sub-title {
  font-weight: 400;
  font-size: 25px;
  letter-spacing: -.02em;
  color: #ff2946
}
.section-title {
  font-size: 35px;
  line-height: 42px;
  font-weight: 900;
  color: black;
  margin-bottom: 16px;
}
/* ==================== SWIPER JS CAROUSEL */
.container-boxed {
  /* border: 1px solid rgb(39, 39, 39); */
  /* padding: 0 16px; */
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.swiper-container {
  /* border: 1px solid saddlebrown; */
  padding: 16px 50px;
  position: relative;
}
.swiper {
  /* border: 1px solid green; */
  width: 100%;
  padding: 10px 10px;
  position: relative;
}
.testimonials-swiper {}

.swiper-wrapper {
  /* border: 1px solid red; */
  height: auto;
  /* padding: 10px 0px; */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

/* ================== TESTIMONIAL CARDS */
.testimonial-card {
  height: 100%;
  padding: 30px;
  box-shadow: 0 1px 16px rgb(0 0 0 / 20%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tcard-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -.02em;
  color: #878787;
  word-spacing: 2px;
  text-align: left;
}
.testimonial-persona {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
}
.testimonial-persona img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.testimonial-reference {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.testimonial-reference p:nth-child(1) {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: black;
}
.testimonial-reference p:nth-child(2) {
  font-size: 10px;
  color: grey;
  text-transform: uppercase;
}
/* =========================== SWIPER CAROUSEL CONTROLS */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.testimonial-control-left {
  left: 0px;
}
.testimonial-control-right {
  right: 0px;
}
.carousel-control i {
  font-size: 38px;
  color: #303030;
  /* padding: 6px; */
  border: 1px solid #303030;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-control:hover i {
  /* color: #ffffff; */
  background-color: #e4e4e4;
}
.testimonial-pagination {
  /* border: 1px solid red; */
  padding: 24px;
  /* position: relative; */
  display: flex;
  justify-content: center;
  /* margin-top: 16px; */
}
@media screen and (max-width: 640px) {
  .testimonials {
    padding: 50px 0;
  }
  .section-header {
    /* align-items: flex-start; */
  }
  .swiper-container {
    padding: 0 16px;
  }
  .carousel-control i {
    display: none;
  }
}

/* TESTIMONIALS CARDS */
/* .testimonials-cards {
  display: flex;
  gap: 16px;
}
.testimonial-card {
  max-width: 230px;
  box-shadow: 0 1px 16px rgb(0 0 0 / 20%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
.tcard-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -.02em;
  color: #878787;
  word-spacing: 2px;
}
.testimonial-persona {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
}
.testimonial-persona img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.testimonial-reference {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-reference p:nth-child(1) {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: black;
}
.testimonial-reference p:nth-child(2) {
  font-size: 10px;
  color: grey;
  text-transform: uppercase;
} */


/* ========================== FOOTER */
footer {
  position: relative;
  padding: 100px 24px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  color: var(black);
  font-family: var(--main-font);
}
.section-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  background-color: #f2f6f9;
  background: gray;
  color: white;
  z-index: -1;
}
.contact_section_title {
  z-index: 0;
  margin-bottom: 50px;
  font-size: 35px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  color: #042231;
  color: white;
}
.footer-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.map-wrapper {
  width: 50%;
}
.map-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--black-color);
  color: white;
}
.googleMaps {
  width: 100%;
  height: 420px;
}
.flex_order-1 {
  order: 1;
}

/* CONTACT INFO BOX */
.contact-info-wrapper {
  flex:1;
}
.directions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact_info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  margin-bottom: 24px;
  color: white;
}
.h4-subTitle {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact_info-text {
  color: white;
  font-family: var(--main-font);
  font-size: 16px;
  line-height: 1.8;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-email-icon {
  font-size: 20px;
  color: var(--black-color);
  color: white;
}
.email_adress-text {
  margin: 0;
}
.social-net-wrapper {
  display: flex;
  gap: 8px;
}
.social-net-icon {
  font-size: 28px;
  color: var(--black-color);
  color: white;
}
.social-net-icon:hover {
  color: rgb(64, 64, 255);
  color: white;
  transition: .5s;
}
.hrs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.horarios-title {
  margin: 0;
}
.time-icon {
  font-size: 20px;
  font-weight: 400;
}
footer i {
  color: var(--black-color);
  color: white;
}

@media (max-width: 450px) {
  /* Header */
  .logo-wrapper {
    gap: 6px;
    padding: 18px 0;
  }
  .logo-header {
    height: 24px;
  }
  .logo-letters {
    font-size: 16px;
    font-weight: 700;
  }
  .social-networks-wrapper {
    gap: 8px;
  }
  .social-networks-wrapper i {
    color: grey;
    font-size: 24px;
  }
  /* == */
  main {
    /* overflow: hidden; */
  }
  .container-1200 {
    --padding-tb:20px;
    padding-left: var(--padding-tb);
    padding-right: var(--padding-tb);
  }
  .width-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flex-row{
    flex-direction: column;
  }
  .col-half {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-large {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .section-content {
    width: 100%;
  }
  .headline {
    font-size: 38px;
    line-height: 40px;
    font-weight: 900;
  }
  .text-center-m {
    text-align: center;
  }
  .micro-cards-wrapper {
    justify-content: space-between;
  }
  /* CARDS */
  .testimonials-cards,
  .simple-cards,
  .cards-carrousel {
    overflow: hidden;
    overflow-x: scroll;
    width: 100%;
    padding: 0px 0;
  }
  
  .simple-card,
  .card {
    min-width: 350px;
    width: 100%;
    /* padding: 16px 0; */
  }
  .testimonial-card {
    min-width: 230px;
    width: 100%;
  }
  .margin-left-m {
    margin-left: 20px;
  }
  .padding-right-m {
    margin-right: 20px;
  }
  .section-content-m {
    width: 110%;
    margin-left: -16px;
  }
  /* Banners */
  .align-left {
    align-items: center;
  }
  .banner-m {
    padding: 24px;
  }
  .cta-banner-1 {
    width: 100%;
    padding: 24px;
  }
  .bkg-wrapper {
    background-color: #ff2946a6;
  }
  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

  }
  /* Footer */
  .contact_section_title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.1;
    text-align: start;
  }
  .footer-content {
    flex-direction: column;
  }
  .map-wrapper {
    width: 100%;
  }
  .contact-info-wrapper {
    width: 100%;
  }
  .flex_order-1 {
    /* order: 0; */
  }
  .googleMaps {
    height: 220px;
  }
}