* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color:#72777f;
}

strong {
    font-weight: 600;
}

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

h1 {
    font-size: 52px;
    line-height: 58px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin: 10px 0;
}

h2, h3, h4 {
    font-weight: 400;
    letter-spacing: -1px;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 28px;
}

.container {
    max-width:1180px;
    margin:0 auto;
}

section {
    padding: 60px 0;
}

.button-wpp {
    background: var(--whatsapp-color);
    color:#fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding: 12px 32px;
    text-transform: uppercase;
    border-radius: 14px;
    transition: all ease-in-out 0.3s;
    text-decoration: none;
    margin-top: 15px;
}

.button-wpp .wrapper {
    display: flex;
    justify-content: center;
    max-height: 25px;
}

.button-wpp .text {
    flex-grow: 1;
    line-height: 25px;
    order:10;
}

.button-wpp .icon {
    flex-grow: 0;
    line-height: 25px;
    order:15;
} 

.button-wpp img {
    color:#fff;
    width: 20px;
    height: 24px;
}

.button-wpp:hover {
    background: #10d32e;
}

.button {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 25px;
    color: var(--primary-color);
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-color: var(--primary-color);
    border-radius: 14px;
    padding: 10px 24px;
    text-decoration: none;
    text-align: center;
    transition: all ease-in-out 0.2s;
    display: inline-block;
    width: 100%;
}

.button:hover {
    color:#fff;
    background-color: var(--primary-color);
}

.wpcf7-submit {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 25px;
    color: #FFFFFF;
    background-color: var(--primary-color);
    border-radius: 14px;
    padding: 10px 24px;
    text-decoration: none;
    text-align: center;
    transition: all ease-in-out 0.2s;
    display: inline-block;
    border:none;
    width: 100%;
    margin-top: 23px;
    cursor: pointer;
}

.wpcf7-submit:hover {
    color:#fff;
    background-color: var(--secondary-color);
}


.hero {
    background-size: cover;
    padding: 0;
}

header {
    height: 100px;
    padding: 10px 0;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    
    max-height: 80px;
}

.header-button {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-button .normal {
    display: inline-block;
    background: var(--primary-color);
    color:#fff;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 35px;
    text-transform: uppercase;
    border-radius: 14px;
    transition: all ease-in-out 0.3s;
    text-decoration: none;
}

.header-button .button-wpp {
    width: inherit;
}

.header-button .icon {
    margin-left: 10px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #FFF;
}

.hero-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
}

.hero-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
	min-height:550px;
}

.hero-picture {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.wave {
    width: calc(209% + 1.3px);
    height: 355px;
    transform: translateX(-40%) rotateY(160deg);
    position: absolute;
    bottom: -10px;
}

.wave path {
    fill: #FFF;
}

.services h2 {
    color:var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.services-text {
    color: var(--secondary-color);
    font-size: 22px;
    line-height: 33px;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    margin: 60px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap:30px;
}

.service {
    border:solid 2px var(--gray-helper);
    border-radius: 8px;
    padding: 32px;
    transition: all ease-in-out 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service:hover {
    border-color: var(--primary-color);
}

.service.highlight {
    border-color: var(--primary-color);
}

.service.wide {
    grid-row: span 2;
}

.service-button {
    margin-top: auto;
}

.service h4 {
    line-height: 33px;
    color:var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.service p:nth-last-child(2) {
    margin-bottom: 15px;
}

.service strong {
    color: var(--secondary-color);
}

.service img.icon {
    width: 3.5em;
    height: 3.5em;
    margin-bottom: 15px;
}

.wanted {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color:#FFF;
    border-radius: 0 4px 0 6px;
    padding: 8px 10px;
    font-weight: 600;
    font-size: 15px;
}

.about {
    background: var(--helper-color);
    color:#FFF;
    font-size: 20px;
}

.about h2 {
    text-align: center;
    margin-bottom: 60px;
}

.about img {
    border-radius: 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:60px;
}

.units {
    position: relative;
}

.unit-b {
    width: 85%;
    position: absolute;
    bottom: 0;
    margin: 0 0 0 7.6%;
    background: var(--helper-opacity);
    color:#FFF;
    padding: 15px;
    border-radius: 14px;
    border:solid 1px #fff;
    font-size: 18px;
}

.unit-box {
    position: absolute;
    bottom: 0;
    width: 85%;
    left:5%;
    background: var(--helper-opacity);
    color:#FFF;
    padding: 15px;
    border-radius: 14px;
    border:solid 1px #fff;
    font-size: 18px;
}

.unit-box h4 {
    font-size:22px;
    font-weight: 600;
    text-align: center;
}

.image {
    width: 100%;
    height: 520px;
    text-align: center;
  }
  .radio {
    display: none;
  }
  .images {
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: relative;
  }
  .images-inner {
    width: 500%;
    transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
  }
  .image-slide {
    width: 20%;
    float: left;
    transition: all 0.5s ease-out;
  } 
  
  /* Move slides overflowed container */
  #slide1:checked ~ .images .images-inner {
    margin-left: 0;
  }
  #slide2:checked ~ .images .images-inner {
    margin-left: -100%;
  }
  
  /* Calculate AUTOPLAY for SLIDES */
  @keyframes slide {
    0%, 25.203252032520325%	{ margin-left: 0; }
    33.333333333333336%, 58.53658536585366%	{ margin-left: -100%; }
  }
  
  .st-slider > #play1:checked ~ .images .images-inner {
    animation: slide 12300ms infinite;	
  }
  /* Calculate AUTOPLAY for SLIDES - END */
  

.phones {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-text {
    text-align: center;
    font-weight: 300;
}

.featured-text {
    margin-top: 30px;
}

.featured-text p {
    font-weight: 600;
    display: block;
    width: 100%;
}

.featured-text a {
    max-width: 300px;
    margin: 30px auto 0 auto;
}

.transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
    align-items: center;
    justify-content: center;
}

.transparency .text h3 {
    color: var(--primary-color);
    line-height: 44px;
    margin-bottom: 30px;
}

.transparency-box {
    background: var(--primary-color);
    color:#fff;
    padding: 40px;
    border-radius: 14px;
}

.transparency-box li {
    list-style:none;
}

/* CAROUSEL */

.socialproof {
    background: var(--gray-helper);
    margin-bottom: 60px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.social-text {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-text img {
    margin-top: 30px;
}

.socialproof h3 {
    color: var(--primary-color);
    line-height: 44px;
    margin-bottom: 60px;
    text-align: center;
}

.heading-text {
    color:var(--helper-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 28px;
}

.carousel-wrapper {
    height: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    }

.carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.carousel__item {
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    padding: 0 12px;
    opacity: 0;
    filter: drop-shadow(0 2px 2px #555);
    will-change: transform, opacity;
    -webkit-animation: carousel-animate-vertical 27s linear infinite;
            animation: carousel-animate-vertical 27s linear infinite;
}

.carousel__item:nth-child(1) {
    -webkit-animation-delay: calc(3s * -1);
        animation-delay: calc(3s * -1);
}

.carousel__item:nth-child(2) {
    -webkit-animation-delay: calc(3s * 0);
        animation-delay: calc(3s * 0);
}

.carousel__item:nth-child(3) {
    -webkit-animation-delay: calc(3s * 1);
        animation-delay: calc(3s * 1);
}

.carousel__item:nth-child(4) {
    -webkit-animation-delay: calc(3s * 2);
        animation-delay: calc(3s * 2);
}

.carousel__item:nth-child(5) {
    -webkit-animation-delay: calc(3s * 3);
        animation-delay: calc(3s * 3);
}

.carousel__item:nth-child(6) {
    -webkit-animation-delay: calc(3s * 4);
        animation-delay: calc(3s * 4);
}

.carousel__item:nth-child(7) {
    -webkit-animation-delay: calc(3s * 5);
        animation-delay: calc(3s * 5);
}

.carousel__item:nth-child(8) {
    -webkit-animation-delay: calc(3s * 6);
        animation-delay: calc(3s * 6);
}

.carousel__item:last-child {
    -webkit-animation-delay: calc(-3s * 2);
        animation-delay: calc(-3s * 2);
}

.carousel__item-head {
    border-radius: 50%;
    background-color: #d7f7fc;
    width: 90px;
    height: 90px;
    padding: 14px;
    position: relative;
    margin-right: -45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.carousel__item-head img {
    border-radius: 50%;
}

.carousel__item-body {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 20px 16px 70px;
}

.title {
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}

@-webkit-keyframes carousel-animate-vertical {
    0% {
        transform: translateY(100%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }
    3%, 11.1111111111% {
        transform: translateY(100%) scale(0.7);
        opacity: 0.4;
        visibility: visible;
    }
    14.1111111111%, 22.2222222222% {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }
    25.2222222222%, 33.3333333333% {
        transform: translateY(-100%) scale(0.7);
        opacity: 0.4;
        visibility: visible;
    }
    36.3333333333% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
        visibility: visible;
    }
    100% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes carousel-animate-vertical {
    0% {
        transform: translateY(100%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }
    3%, 11.1111111111% {
        transform: translateY(100%) scale(0.7);
        opacity: 0.4;
        visibility: visible;
    }
    14.1111111111%, 22.2222222222% {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }
    25.2222222222%, 33.3333333333% {
        transform: translateY(-100%) scale(0.7);
        opacity: 0.4;
        visibility: visible;
    }
    36.3333333333% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
        visibility: visible;
    }
    100% {
        transform: translateY(-100%) scale(0.5);
        opacity: 0;
        visibility: hidden;
    }
}

/* END CAROUSEL */

.blog h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:40px;
}

.card .c-image {
    border-radius: 8px;
    overflow: hidden;
    border:solid 1px var(--secondary-color);
    max-height: 230px;
}

.card a {
    text-decoration: none;
}

.card .img-noticia {
    display: block;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
}

.card .cardcategory {
    color:var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 15px;
}

.card h2 {
    font-size: 24px;
    line-height: 30px;
    margin-top: 15px;
}

.card h2 a {
    color:var(--footer-color);
    letter-spacing: -3.5%;
    font-weight: 600;
    line-height: 120%;
    transition: all ease .2s;
}

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

.calltoaction {
    max-width: 800px;
    margin: 0 auto;
    border-top:solid 1px var(--secondary-color);
    border-bottom:solid 1px var(--secondary-color);
    text-align: center;
    font-size: 20px;
}

.calltoaction h3 {
    line-height: 44px;
    color: var(--primary-color);
}

.calltoaction p {
    margin: 20px 0;
}

.wpp-container {
    max-width: 340px;
    margin: 0 auto;
}

.formarea {
    background: var(--gray-helper);
    margin-top: 60px;
    padding-bottom: 0;
}

.formarea h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.formarea-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: center;
}
.formarea-grid .image-area {
    display: flex;
    align-items: baseline;
}

.formarea-button {
    margin-top: 20px;
    background-color: var(--primary-color);
    color: #fff;
}

.formarea-button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.wpp-fixed {
    position:fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
}

footer {
    background: var(--footer-color);
    color: #FFF;
    padding: 60px 0;
    font-size: 14px;
}

footer img {
    max-width: 220px;
    height: auto;
}

footer h4 {
    font-size: 16px;
    color:var(--primary-color);
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 10px;
}

footer li {
    list-style-position: inside;
}

footer a {
    text-decoration: none;
    color: #FFF;
    font-weight: 300;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 30px;
}

.subfooter {
    background: var(--subfooter-color);
    padding: 20px 0;
    font-size:15px;
    color: #FFF;
    text-transform: uppercase;
}

.subfooter a {
    color: #FFF;
    text-decoration: none;
}

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

.subfooter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.subfooter .data {
    text-align: left;
}

.subfooter .who {
    text-align: right;
}

.modal {
    display: none;
    width: 100vw;
    height: 100vh;
    padding:20px;
    box-sizing: border-box;
    position:fixed;
    left: 0;
    top:0;
    background: var(--modal-opacity);
    z-index: 99;
    overflow-y: scroll;
}

.modal .close {
    color:#fff;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    border:solid 2px #FFF;
    position: absolute;
    right: 15px;
    top: 15px;
    text-align: center;
    line-height: 23px;
    font-weight: 600;
    cursor: pointer;
}

.modal-content {
    max-width:60%;
    margin: 0 auto;
    color:#FFF;
    padding: 40px;
}

.modal-content h2 {
    font-weight: 600;
}

.description {
    margin-bottom: 40px;
}

.calculadora {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.form-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}
.form-item input,
.form-item select {
    width: 100%;
    height: 40px;
    border-radius: 14px;
    padding: 5px 10px;
    border: solid 1px #FFF;
    background-color: var(--helper-opacity);
    color: #fff;
}
.form-item input:focus,
.form-item select:focus {
    border:solid 1px var(--primary-color);
    outline: none;
}
::-webkit-calendar-picker-indicator{
    background-color: #ffffff;
    padding: 5px;
    cursor: pointer;
    border-radius: 3px;
}

/* Pipeform Whatsapp Button */

#piperun-whatsapp-logo {
	border:solid 2px #FFFFFF;
	width:60px !important;
	height:60px !important;
	background-color:#25D366 !important;
	color:#FFFFFF !important;
}

#piperun-whatsapp-logo.bottom_right {
    right: 15px !important;
    bottom: 15px !important;
}

/* Large devices (desktops, less than 1200px) */

@media (max-width: 1440px) {}


/* OLD TABLETS */

@media (max-width: 1024px) {

}


/* Medium devices (tablets, less than 992px) */

@media (max-width: 992px) {}


/* Small devices (landscape phones, less than 768px) */

@media (max-width: 768px) {

}


/* Extra small devices (portrait phones, less than 576px) */

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
        line-height: 35px;
    }
    .logo {
        text-align: center;
        display: block;
    }
    .hero,
    .social-grid  {
        text-align: center;
    }
    .social-text {
        margin-bottom: 60px;
    }
    .header-button {
        display: none;
    }
    header {
        height: auto;
    }
    .header-grid,
    .hero-grid,
    .services-grid,
    .about-grid,
    .transparency-grid,
    .formarea-grid,
    .footer-grid,
    .subfooter-grid,
    .social-grid  {
        grid-template-columns: 1fr;
    }

    .transparency-grid {
        grid-gap: 30px;
    }

    .container {
        padding: 0 20px;
    }

    .button-wpp {
        padding:12px 22px;
    }

    .transparency-box,
    .formarea, .transparency,
    footer, .subfooter .data,
    .subfooter .who {
        text-align: center;
    }

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

    .mobile-phone {
        display: none;
    }

    .image {
       height: 360px;
    }

    .unit-b h4 {
        line-height: 28px;
        font-size: 24px;
        margin-bottom: 8px;
    }
    .phones {
        display: block;
        margin-top: 8px;
    }
    .modal-content {
        max-width: 100%;
        padding: 20px;
    }
    .modal-content h2 {
        font-size: 28px;
        line-height: 28px;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .calculadora {
        display: block;
    }
    .calculadora input,
    .calculadora select {
        margin-bottom: 20px;
    }
    .carousel-wrapper {
        height: 580px;
    }
    .carousel__item {
        padding: 0;
    }
    .carousel__item-body {
        padding:16px 20px 16px 40px;
    }
}