/* --- HTML5 RESET --- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.8em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  overflow-x: hidden;
}

strong {
  font-weight: 700;
  line-height: 1em;
}

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

* {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-font-smoothing: antialiased;
}


@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');

/* --- PALETA DE COLORES --- */

:root {
  --main-color: #4A5E5F;
  --secondary-color: #94BBBD;
  --accent-color: #94BBBD;
  --success-color: #8ac242;

  --light-color: #f5ebe5;
  --grey-color: #e8d4c6;
  --dark-color: #262626;

  --darkgrey-color: #000000;

  --main-gr: linear-gradient(60deg, #94BBBD 40%, #4A5E5F 100%);
  --secondary-gr: linear-gradient(45deg, #4A5E5F 0%, #94BBBD 100%);
  --dark-gr: linear-gradient(45deg, #4A5E5F 0%, #94BBBD 100%);
  --hover-gr: linear-gradient(60deg, #4A5E5F 100%, #94BBBD 40%);
  --card-gr: linear-gradient(
    0deg,
    rgb(49 56 55) 0%,
    rgba(0, 161, 154, 0) 100%
  );

  --font-global: "Poppins", sans-serif;
  --font-secondary: "Paytone One", sans-serif;

  --font-w-regular: 400;
  --font-w-semibold: 600;

  --lh-title: 1em;
  --lh-text: 1.5em;
  --lh-mobile: 1.1em;
  --lh-small: 1.3em;

  --br-small: 6px;
  --br-normal: 20px;
  --br-big: 300px;

  --tr-normal: all 0.2s ease;

  --size-big-title: 70px;
  --size-section-title: 60px;
  --size-normal-text: 18px;
  --size-med-text: 36px;
  --size-mobile-title: 32px;
  --size-bigmobile-title: 38px;
  --size-tablet-title: 44px;
  --size-lead-text: 24px;
  --size-small-text: 14px;

  --space--gap: 3px;
  --space--small: 7.5px;
  --space--small2: 12px;
  --space--normal: 15px;
  --space--medium: 30px;
  --space--big: 45px;
  --space--extra: 60px;
  --space--extra-big: 90px;
  --space--header: 140px;
  --space--header-mobile: 140px;
  --space--footer: 130px;
}

/* --- COMUNES --- */
body {
  font-family: var(--font-global);
  font-weight: var(--font-w-regular);
  color: var(--dark-color);
  font-size: var(--size-normal-text);
  line-height: var(--lh-text);
  background: url(../images/bg-body.jpg) no-repeat center top;
}

body.no-bg {
  background: white;
  text-align: left;
}

a {
  text-decoration: none;
  color: #94BBBD;
  line-height: 1em;
  transition: var(--tr-normal);
  font-size: 18px;
  font-weight: bold;
}

a:hover {
  color: var(--secondary-color);
}

.link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.link:hover,
.link:active,
.linkfocus {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin-bottom: 1em;
  line-height: var(--lh-text);
  color: #666666;
}

small {
  line-height: var(--lh-text);
  font-size: var(--size-small-text);
}

ul li {
  margin-bottom: var(--space--normal);
}

ul li span {
  display: block;
  line-height: var(--lh-text);
}
.fondo-verde{
 background-image: linear-gradient(to bottom, #ebf5f5, #f0f7f9, #f6f9fc, #fbfcfe, #ffffff);
border-radius: 80px;
}

.combo-phone {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-right: solid 1px white;
  padding-right: 15px;
  align-items: center;
}
.telefono{
  font-size: 14px;
}

.telefono span {
  display: block;
  color: var(--main-color);
  font-size: 32px;
  text-align: left;
  font-family: 'Paytone One';
  margin: 0px;
  font-weight: 500;
}
.info{
  text-align: left;
    font-weight: 500;
    font-size: 18px;
    color: #566C6D;
    margin-top: -15px;
}

.lead {
  font-size: 22px;
  line-height: 30px;
  max-width: 600px;
  color: #666666;
  margin-bottom: 33px;
}
.lead2 {
  font-size: 20px;
  line-height: 30px;
  max-width: 555px;
  color: #666666;
  font-family: 'Paytone One', sans-serif;
  padding-left: 10px;
  margin-bottom: 30px;
}
.lead3 {
  font-size: 22px;
  line-height: 32px;
  max-width: 600px;
  color: #666666;
  font-family: 'Poppins', sans-serif;
  
}
.lead4 {
  font-size: 18px;
  line-height: 30px;
  max-width: 600px;
  color: #666666;
  font-family: 'Poppins', sans-serif;

}
.lead5 {
  font-size: 14px;
  line-height: 35px;
  max-width: 600px;
  color: #666666;
  font-family: 'Poppins', sans-serif;
 
}
.lead6 {
  font-size: 28px;
  line-height: 40px;
  max-width: 600px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
  margin-bottom: 35px;
}
.titulo2{
font-size: 28px;
  line-height: 40px;
  padding-left: 300px;
  padding-right: 300px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
}
.lead7 {
  font-size: 22px;
  line-height: 29px;
  max-width: 600px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
  padding-left: 80px;
}

.lead7::before {
  content: "";
  display: block;
  position: absolute;
  left: 705px;
  top: 176px;
  width: 59px;
  height: 59px;
  background: url(../images/1.png) center center no-repeat;
  background-size: contain;
}
.lead8 {
  font-size: 22px;
  line-height: 29px;
  max-width: 600px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
  padding-left: 85px;
}

.lead8::before {
  content: "";
  display: block;
  position: absolute;
  left: 705px;
  top: 423px;
  width: 59px;
  height: 59px;
  background: url(../images/2.png) center center no-repeat;
  background-size: contain;
}
.lead8 {
  font-size: 22px;
  line-height: 29px;
  max-width: 600px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
  padding-left: 70px;
}

.lead8::before {
  content: "";
  display: block;
  position: absolute;
  left: 700px;
  top: 423px;
  width: 59px;
  height: 59px;
  background: url(../images/2.png) center center no-repeat;
  background-size: contain;
}
.lead88 {
  font-size: 22px;
  line-height: 29px;
  max-width: 600px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
  padding-left: 56px;
}

.lead88::before {
  content: "";
  display: block;
  position: absolute;
  left: 700px;
  top: 528pxpx;
  width: 59px;
  height: 59px;
  background: url(../images/2.png) center center no-repeat;
  background-size: contain;
}
.lead9 {
  font-size: 18px;
  line-height: 30px;
  max-width: 700px;
  color: #666666;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0px;
 
}
.lead10 {
  font-size: 20px;
  line-height: 34px;
  color: #666666!important;
  font-family: 'Poppins', sans-serif;
  
}
.lead11{
    font-size: 30px;
  line-height: 39px;
  max-width: 900px;
  color: #ffff;
  font-family: 'Paytone One', sans-serif;
  text-align: center;
  

}
.lead12 {
  font-size: 22px;
  line-height: 29px;
  max-width: 600px;
  color: #566C6D;
  font-family: 'Paytone One', sans-serif;
  margin-bottom: 10px;
 
}
.lead13 {
     font-size: 20px;
    line-height: 25px;
    font-family: 'Poppins', sans-serif;
    color: var(--main-color);
    font-weight: 700;
}

a.legal.cboxElement{
font-size: 14px;
}
.verde-claro{
  color: var(--accent-color);
}

h1,
.h1 {
  font-size: 60px;
  font-weight: regular;
  line-height: 66px;
  margin-bottom: var(--space--medium);
  color: #566C6D;
  font-family: var(--font-secondary);

}

h2,
.h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: var(--space--normal);
  color: var(--secondary-color);
  font-family: var(--font-secondary);
  
}

h5,
.h5{
  font-size: 20px;
  font-weight: 500;
  color: var(--main-color);
  line-height: 25px;

}

p small {
  display: inline-block;
}

strong {
  font-weight: var(--font-w-semibold);
}

figure {
  line-height: 0;
  width: 100%;
}

figure img {
  max-width: 100%;
  height: auto;
}

.legal-footer{
border-top: solid 1px #CFCFCF;
padding-top: 20px;
}

ul.legal-list {
  display: flex;
  align-items: center;
  padding-left: 20px;
  gap: 3px;
}

ul.legal-list li {
  margin-bottom: 0;
}

ul.legal-list .link {
  background: transparent;
  border-color: transparent;
  color: var(--main-color);
  text-decoration: none;
  outline: none;
}

ul.legal-list .link:hover {
  text-decoration: underline;
}

ul.hero-feature {
  font-size: var(--size-small-text);
    display: flex;
    flex-direction: column;
    gap: var(--space--normal);
    justify-content: center;
    align-items: center;
}

ul.hero-feature li {
  transition: var(--tr-normal);
  line-height: var(--lh-small);
  font-size: 20px;
  font-weight: 500;
  text-align: center;

}

ul.hero-feature li span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-big);
  background: white;
  width: var(--space--extra);
  height: var(--space--extra);
  position: relative;
}

ul.hero-feature li span img {
  max-width: 50%;
}

ul.hero-feature li span::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  background: var(--main-gr);
  border-radius: var(--br-big);
  z-index: -1;
  transition: var(--tr-normal);
}

ul.hero-feature li:hover span::after {
  top: -8px;
  left: -8px;
  bottom: -8px;
  right: -8px;
  background-size: 200%;
}

.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: var(--space--normal);
}

.social-list li .list-social--link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: var(--space--big);
  height: var(--space--big);
  border-radius: var(--br-big);
  background: var(--main-color);
}

.social-list li .list-social--link:hover {
  background: var(--secondary-color);
}

.info-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: var(--space--normal);
}

.info-list li span,
.info-list li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

.info-list li span i,
.info-list li a i {
  width: var(--space--big);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
   font-weight: var(--font-w-semibold);
  font-size: var(--size-normal-text);
  background: transparent;
  color: var(--secondary-color);
  display: inline-flex;
  min-height: var(--space--extra);
  align-items: center;
  justify-content: center;
  padding: 6px var(--space--medium) 6px;
  gap: var(--space--small);
  border-radius: var(--br-big);
  border-color: transparent;
  transition: var(--tr-normal);
}

.btn-primary:hover{
  background: linear-gradient(60deg, #4A5E5F 100%, #94BBBD 40%);
}
img.whatsapp-movil:hover {
    opacity: 0.5;
}
a.telefono span:hover {
    color: var(--secondary-color);
}

a.legal.cboxElement:hover {
    text-decoration: underline;
}
.whatsapp{
  background-color: #566C6D;
    border-radius: 50px;
    border-radius: 300px;
    width: 60px;
    min-width: inherit;
    height: 60px;
}
a:hover{
  color: #212529;
}
.btn-whatsapp {
  position: fixed;
  color: white;
  z-index: 5;
  bottom: var(--space--medium);
  right: var(--space--medium);
  left: inherit;
  background: #25D366;
  width: var(--space--extra-big);
  height: var(--space--extra-big);
  font-size: var(--size-med-text);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 300px;
  box-shadow: 0px 0px 20px -6px var(--success-color);
}

.btn-primary {
  background: var(--main-color);
  background: var(--main-gr);
  color: white;
  
}

.btn-primary:hover {
  background-size: 200%;
  border-color: transparent;
  
}

.btn-transparent {
  background: transparent;
  border-color: transparent;
  outline: none;
  color: var(--secondary-color);
}

.btn-transparent:hover,
.btn-transparent:focus {
  color: var(--main-color);
  background: transparent;
  border-color: transparent;
}

.btn-secondary {
  background: var(--main-gr);
  color: white;
  border-color: white;
}

.btn-secondary:hover{
    background: linear-gradient(60deg, #4A5E5F 100%, #94BBBD 40%);
}

/* --- HEADER --- */
.header-box {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
  background: transparent;
  transition: all 0.1s ease;
}

.header-box .top-bar {
  padding: 0px;
  transition: var(--tr-normal);
}

.header-box .col-auto {
  line-height: 1em;
}

.header-box .logo {
  max-width: 300px;
  height: auto;
  transition: var(--tr-normal);
      max-height: 120px;
      padding-top: 10px;
}

.header-box .fixed-header {
  padding-top: var(--space--small);
  padding-bottom: var(--space--small);
      background-color: #ffff;
      box-shadow: -1px 2px 6px #0000001f;
}

.header-box .fixed-header .logo {
  max-width: 160px;
}

.header-box .btn-box {
  backdrop-filter: blur(10px);
  border-radius: var(--br-big);
  border: solid 1px white;
}

/* --- FIGURE --- */
.figure-combo {
  position: relative;
}

.figure-combo img {
  border-radius: var(--br-normal);
  max-width: 100%;
}

.figure-combo img.figure-combo--02 {
  position: absolute;
  z-index: 2;
  right: -20%;
  bottom: -10%;
  max-width: 60%;
}

.hero-figure {
  position: relative;
  height: 100%;
}

.hero-figure .hero-figure--img {
    position: absolute;
    left: -18%;
    top: -6px;
    width: 100%;
    max-width: inherit;
    z-index: 1;
}

.hero-figure .hero-figure--sticker {
  position: absolute;
  left: 5%;
  bottom: 20%;
  z-index: 2;
}

/* --- CARD --- */
.pro-card {
  border-radius: var(--br-normal);
  overflow: hidden;
  border-color: transparent;
  margin-bottom: var(--space--normal);
}

.pro-card .card-img-overlay {
  top: inherit;
  bottom: 0;
}

.pro-card .card-img-overlay {
  background: var(--card-gr);
  text-align: center;
}

.pro-card .card-img-overlay .card-title {
  color: white;
  font-size: 22px;
  font-weight: bold;
  line-height: var(--lh-small);
}
.card-text{
  color: white;
}
.card-img-overlay{
  padding: 2rem;
}

/* --- MODAL --- */
.modal .modal-header {
  border: none;
}

/* --- CONTENIDO  --- */
section {
  padding-top: var(--space--extra);
  padding-bottom: var(--space--extra);
  position: relative;
}

section .container {
  position: relative;
  z-index: 2;
}

/* --- HEROBANNER  --- */
.s-00 {
  padding-top: var(--space--header);
}

.s-00 .container {
  position: relative;
}

.s-00 .s-herobanner--title {
  padding-bottom: var(--space--big);
  position: relative;
  z-index: 2;
}

.s-00 .s-herobanner--figure {
  position: relative;
  z-index: 1;
}
#s-about{
  padding-top: 120px ;
}
#s-projects{
  margin-top: 60px ;
  padding-top: 80px;
}
/* --- FORMULARIOS  --- */
.fondo-formulario{
  background-color: #BDDBDC;
    padding: 40px;
    border-radius: 40px;
}
.form-label--display {
  display: none;
}

.form .form-group {
  margin-bottom: var(--space--normal);
}

.form-control,
.form-select {
  font-size: var(--size-normal-text);
  border-radius: 15px;
  border-color: none;
  font-weight: var(--font-w-semibold);
  padding: var(--space--normal) var(--space--normal);
  color: #666666;
}

.form-select {
  padding-right: var(--space--medium);
}

textarea.form-control {
  border-radius: var(--br-normal);
  min-height: 200px;
}

.form-control::placeholder,
.form-select::placeholder {
  color: var(--dark-color);
}

.form-check .form-check-label {
  font-size: var(--size-small-text);
}

.form-check a {
  color: var(--dark-color);
}

/* - Verificación formulario  - */
label.error {
  color: var(--accent-color);
  font-size: var(--size-small-text);
}

input.error {
  border-color: var(--accent-color);
}
/* --- FOOTER  --- */

footer .footer-top {
  padding-top: var(--space--medium);
  background-color: var(--main-color);
  color: #ffff;
}

footer .footer-top .container {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

footer .footer-body {
  padding-top: var(--space--extra);
  padding-bottom: var(--space--extra);
}

footer .footer-body h4 {
  color: var(--dark-color);
  font-size: 26px;
  font-weight: bold;
}

footer .footer-body p {
  color: var(--dark-color);
}
footer .footer-body ul {
  color: var(--dark-color);
}

ul.footer-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space--normal);
}
ul.footer-feature strong{
      display: block;
    line-height: var(--lh-small);
    text-transform: uppercase;
    font-weight: var(--font-w-regular);
    font-size: 24px;
}

footer .footer-bottom .container {
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  padding-top: var(--space--medium);
  padding-bottom: var(--space--normal);
}


.footer-bottom{
  background-image: linear-gradient(to bottom, #ebf5f5, #f0f7f9, #f6f9fc, #fbfcfe, #ffffff);
}
.s-herobanner--title{
  text-align: left;
}

/* - Firma Idento - */

.wrapper-idento {
  display: inline-block;
  vertical-align: middle;
}

.firma-idento {
  background: url(../images/idento.svg);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 53px;
  margin: 0;
  transition: width 0.3s;
  margin-top: 0px;
  vertical-align: middle;
}

.firma-idento.white {
  background-image: url(../images/idento_neg.svg);
}

.firma-idento:hover {
  width: 53px;
}

.firma-idento--box {
  background: white;
  display: inline-flex;
  padding: 3px;
  border-radius: var(--br-normal);
}

.d-mobile {
  display: none;
}

ul.footer-list li {
  margin-bottom: 0;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: left;
  color: #94BBBD;
}
ul.footer-list{
  margin-top: 1.3rem;
    padding-left: 1rem;
}

ul.footer-list li::before {
      content: "";
    display: block;
    position: absolute;
    left: -23px;
    top: -5px;
    width: 42px;
    height: 42px;
    background: url(../images/tick-sombra.png) center center no-repeat;
    background-size: contain;
}

ul.footer-list2 li {
     font-weight: 400;
    position: relative;
    padding-left: 19px;
    font-size: 16px;
    margin-bottom: 11px;
    margin-left: 94px;
    text-align: left;
    color: #666666;
}

ul.footer-list2 li::before {
content: "";
    display: block;
    position: absolute;
    left: -12px;
    top: 2px;
    width: 21px;
    height: 21px;
    background: url(../images/tick2.png) center center no-repeat;
    background-size: contain;
}
.icono-grupo{
  position: absolute;
        top: -51px;
    left: -41px;
}
.cuadrado{
  background: white;
  box-shadow: 0 2px 6px rgb(51 51 51 / 40%);
  padding: 15px;
  border-radius: 40px;
  
  display: flex;
  align-items: center;
  min-height: 180px;
}
.cuadrado-verde{
  background: #94BBBD;
  padding: 15px;
  border-radius: 20px;
  margin: 20px;
  display: flex;
  align-items: center;
  min-height: 180px;
}
.cuadrado-verde-claro{
  background: #BDDBDC;
  padding: 35px;
  border-radius: 20px;
  margin: 20px;
  display: flex;
  align-items: center;
  min-height: 180px;
  max-width: 480px;
  position: absolute;
  bottom: -16px;
  left: 171px;
}

.row.cuadrado-verde-claro.doulas-cuadro{
  background: #BDDBDC;
  padding: 35px;
  border-radius: 20px;
  margin: 20px;
  display: flex;
  align-items: center;
  min-height: 180px;
  max-width: 480px;
  position: absolute;
  bottom: -126px;
  left: 171px;
}

.cuadrado-header{
  background: white;
  box-shadow: 0 2px 6px rgb(51 51 51 / 40%);
  padding: 25px;
  border-radius: 20px;
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -2;
  max-width: 250px;
}

span{


 color: var(--main-color);

}

#includedContent{
  z-index: 6!important;

}
.btn-whatsapp:hover{
color: #ffff;
    bottom: 43px;
}
/* --- RESPONSIVE  --- */
main {
  overflow: hidden;
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

@media only screen and (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1400px) {
  h1,
  .h1,
  h2,
  .h2 {
    font-size: var(--size-tablet-title);
  }

  .hero-figure .hero-figure--img {
    top: -11px;
        left: 0%;
  }

  .lead7::before{
    left: 25px;
    top: 1110px;
  }
  .lead8::before{
    left: 10px;
    top: 1590px;
  }
  .cuadrado-verde-claro{
        bottom: 17px;
    left: 81px;
  }
  .verde-claro{
    line-height: 1.1em;
  }

  .s-04 img{
    margin-bottom: 2rem;
  }
  .form-check-input{
    width: 1.2em;
    height: 1.2em;
  }

  .form-check .form-check-label{
    text-align: left;

  }
  small {
      margin-bottom: 15px;
  }
  .form-check{
    margin-top: 1rem;
  }
  .movil-footer{
    justify-content: center!important;
  }
}

@media only screen and (max-width: 1200px) {
  ul.hero-feature {
    flex-direction: column;
    gap: 3px;
        width: 1.2em;
    height: 1.2em;
  }

  .hero-figure .hero-figure--img {
   top: 0px;
    left: 0%;
  }

  .hero-figure .hero-figure--sticker {
  max-width: 150px;
  left: 30%;
  }

  .lead7::before{
    left: 483px;
    top: 215px;
  }

  .cuadrado-verde-claro{
        bottom: 320px;
    left: -19px;
  }
  .lead8::before {
    left: 481px;
    top: 578px;
}
  .titulo2{
        padding-left: 100px;
    padding-right: 100px;
  }
}

@media only screen and (max-width: 991px) {
  ul.footer-feature strong{
    font-size: 22px;

  }
  ul.footer-list li::before{
    top: -5px;
    left: -5px;
  }
  footer .footer-body h4{
  font-size: 26PX;
    line-height: var(--lh-mobile);
    margin-bottom: 5px;

  }
  
  ul.footer-list li{
    font-size: 16px;
    padding-left: 39px;
    line-height: 20px;
  }
  .hero-figure .hero-figure--img {
    top: 0px;
    left: 0%;
  }
  .lead7::before {
    left: 404px;
    top: 210px;
}
.lead8::before {
    left: 401px;
    top: 596px;
}
  .cuadrado-verde-claro {
    bottom: 310px;
    left: -8px;
     max-width: 373px;
}
.icono-grupo {
    position: absolute;
    top: -70px;
    left: 5px;
}

  h1,
  .h1
   {
    font-size: 40px;
    line-height: 46px;
    text-align: center;
    margin-top: 5rem;
  }

  .boton-movil{
    display: flex;
    justify-content: center;
  }

  h2,
  .h2{
    font-size: 36px;
    line-height: 36px;
  }

  ul.hero-feature {
    text-align: center;
  }

  ul.hero-feature li span {
    margin: 0 auto;
  }

  body,
  .form-control,
  .form-select,
  .btn {
    font-size: var(--size-normal-text);
  }

  .btn {
    padding: 20px 20px;
    min-height: inherit;
  }

  .btn-whatsapp {
    right: var(--space--small);
    bottom: 40px;
    width: var(--space--extra);
    height: var(--space--extra);

  }
  .btn-whatsapp i{
    font-size: 25px;
  }

  .lead {
    font-size: var(--size-normal-text);
    line-height: var(--lh-small);
  }

  .s-02 p {
    max-width: 620px;
  }
  .lead11{
    font-size: 22px;
    line-height: 27px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .cta-movil{
    justify-content: center!important;
  }
}

@media only screen and (max-width: 767px) {
  .cuadrado-verde-claro{
    position: relative !important;
    left: 0px !important;
    bottom: 0px !important;
    margin-bottom: 50px !important;
  }
  .lead6{
        line-height: 32px;
  }
  .lead7{
    text-align: left;
  }
  .lead7::before{
        left: 25px;
        top: 1114px;
  }
  .lead8{
    text-align: left;
    padding-left: 70px;
  }
   .lead8::before{
        left: 20px;
        top: 1588px;
  }
  .firma-movil{
    justify-content: center!important;
  }
  .btn{
    margin-left: 0px!important;
  }
  .titulo2{
    padding: 0px;
  }
  .whatsapp{
    width: 40px;
    min-width: inherit;
    height: 40px;
  }
  .telefono span{
    display: block;
    color: var(--main-color);
    font-size: 24px;
    text-align: left;
    font-family: 'Paytone One';
    margin: 0px;
    font-weight: 500;
  }
  .info{
    font-size: 11px;
    margin-top: -10px;
  }
  .combo-phone{
    align-items: center;
  }
  
  .hero-figure .hero-figure--img {
  position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    width: 82%;
    margin-left: 0;
    margin-top: -8%;
    margin-bottom: -12%;
  }

  .hero-figure .hero-figure--sticker {
  max-width: 120px;
  left: inherit;
  right: 10%;
  bottom: 30%;
  }

  .form-check {
    margin-bottom: var(--space--medium);
  }
  .form-check .form-check-input {
    float: inherit;
  }

  .footer-body--form .btn {
    width: 100%;
    padding: var(--space--normal);
  }

  .footer-body--text {
    order: 1;
    margin-bottom: var(--space--normal);
  }

  .footer-body--form {
    order: 2;
  }
  .d-mobile {
    display: block;
  }

  .d-desktop {
    display: none;
  }

  .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .figure-combo {
    margin-bottom: var(--space--medium);
    text-align: left;
  }

  .figure-combo img.figure-combo--01 {
    max-width: 80%;
    margin-left: 0;
  }

  .figure-combo img.figure-combo--02 {
    right: 0;
    bottom: -10px;
    max-width: 40%;
  }

  .header-box .top-bar,
  .header-box .fixed-header {
    padding: 10px var(--space--small) var(--space--small);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--br-normal) var(--br-normal);
  }

  .header-box .logo,
  .header-box .fixed-header .logo {
    max-width: 130px;
  }
  .whatsapp-movil{
      max-width: 20px;
  }

  .header-box .btn.telefono {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    min-height: inherit;
    padding: 4px;
    font-size: var(--size-small-text);
    border-radius: 0;
  }

  ul.hero-feature {
    margin-bottom: var(--space--normal);
  }

  section {
    padding-top: var(--space--medium)!important;
    padding-bottom: var(--space--medium);
  
  }

  body.no-bg section {
  text-align: left;
  }

  h1,
  .h1, {
    font-size: var(--size-bigmobile-title);
    line-height: var(--lh-mobile);
    text-align: center;
    margin-bottom: 15px;
  }

   h2,
  .h2 {
    font-size: var(--size-mobile-title);
    line-height: var(--lh-mobile);
    text-align: left;
    margin-bottom: 15px;
  }

  footer .footer-body {
    padding-bottom: var(--space--medium);
    padding-top: var(--space--medium);
    text-align: center;
  }

  footer .footer-bottom .container {
    padding-bottom: var(--space--medium);
    padding-top: var(--space--medium);
    text-align: center;
  }

  footer .footer-bottom .footer-bottom--text {
    flex-direction: column;
  }

  footer .footer-bottom .logo {
    margin-bottom: var(--space--small);
  }

  ul.legal-list {
    flex-direction: column;
    gap: 0;
    padding: var(--space--small) 0;
  }

  ul.legal-list li {
    margin-bottom: 0;
  }

  ul.legal-list li .link {
    line-height: 1em;
  }

  .s-00 {
    padding-top: var(--space--header-mobile);
  }

  .social-list {
    justify-content: center;
  }

  .info-list li span,
  .info-list li a {
    justify-content: center;
  }
  .lead2{
    font-size: 14px;
    line-height: 20px;
    text-align: left;
   
  }
  .lead3{
    font-size: 18px;
    line-height: 29px;
  }
  .lead5{
        line-height: 23px;

  }
  .s-herobanner--title img{
    max-width: 40px;
         margin-top: -7px;

  }
}

@media only screen and (max-width: 520px) {
	.header-box .logo, .header-box .fixed-header .logo {
    max-width: 105px;
}
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0% !important;
  }
}
