:root {
  --black: #000;
  --medium-blue: #3e3b8c;
  --white-smoke: #fafafa;
  --white: white;
  --pale-violet-red: #f56a89;
  --light-coral: #f88185;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

h1 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2em;
}

h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2em;
}

h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

h6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--black);
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px solid var(--medium-blue);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.heading-h3 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2em;
}

.button-primary {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #d2d914;
  background-clip: border-box;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 400;
  text-decoration: none;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease-in-out;
}

.button-primary:hover {
  transform: translate(0, -2px);
}

.divider {
  background-color: #000;
  height: 2px;
  margin-top: 40px;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #ff4040;
  border-radius: 10px;
  padding: 10px;
}

.radio-button {
  border: 1px solid #000;
  width: auto;
  min-width: 20px;
  height: auto;
  min-height: 20px;
  transition: border .3s ease-in-out;
}

.radio-button:focus {
  border-width: 5px;
  border-color: #001e2e;
}

.radio-button.w--redirected-checked {
  border-width: 5px;
  border-color: var(--medium-blue);
}

.radio-button.w--redirected-focus {
  box-shadow: none;
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.heading-h5 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.style-guide-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.color-box {
  border-radius: 10px;
  width: 150px;
  height: 150px;
}

.spacing-small {
  margin-top: 30px;
  margin-bottom: 30px;
}

.radio-button-label {
  padding-left: 6px;
}

.form-select {
  border: 0px solid var(--black);
  background-color: var(--white-smoke);
  color: #000;
  border-radius: 10px;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 18px;
  transition: border-color .3s ease-in-out;
}

.form-select:focus {
  border-width: 0;
}

.form-select::placeholder {
  color: #000;
  font-size: 18px;
}

.checkbox-label {
  padding-left: 6px;
}

.style-guide-title {
  margin-top: 30px;
  margin-bottom: 30px;
}

.style-guide-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.heading-h6 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

.page-title {
  margin-bottom: 30px;
}

.success-message {
  color: #fff;
  text-align: center;
  background-color: #5caa00;
  border-radius: 10px;
  padding: 10px;
}

.heading-h1 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2em;
}

.input-group {
  align-items: center;
  margin-bottom: 20px;
}

.heading-h4 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2em;
}

.heading-h2 {
  color: var(--black);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

.form-input {
  background-color: var(--white-smoke);
  color: var(--black);
  border: 0 solid #000;
  border-radius: 10px;
  height: 48px;
  padding: 15px;
  font-size: 18px;
  transition: border-color .3s ease-in-out;
}

.form-input::placeholder {
  color: #000;
  font-size: 18px;
}

.form-input.form-textarea {
  height: 200px;
}

.form-input.form-textarea:focus {
  color: #000;
}

.form-input.form-subscribe {
  background-color: #0000;
  margin-bottom: 0;
}

.form-input.footer-form {
  background-color: var(--white);
  box-shadow: 0 0 50px #1e517712;
}

.container-medium {
  max-width: 900px;
  padding-left: 30px;
  padding-right: 30px;
}

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

.checkbox {
  border-width: 1px;
  border-color: #000;
  width: auto;
  min-width: 20px;
  height: auto;
  min-height: 20px;
}

.checkbox.w--redirected-checked {
  border-width: 0;
  border-color: var(--medium-blue);
  background-color: #6f42c1;
  background-image: url('../images/check-white.svg');
  background-position: 50%;
  background-size: auto;
  border-radius: 3px;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
  border-color: #0a0909;
  transition: background-color .3s ease-in-out;
}

.lead-text {
  font-size: 24px;
  line-height: 1.4em;
}

.navbar {
  background-color: #0000;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  position: static;
}

.grid-navbar {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 2.25fr;
  align-items: center;
}

.nav-link {
  color: var(--black);
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: color .3s ease-in-out;
}

.nav-link:hover {
  color: var(--medium-blue);
}

.nav-link.w--current {
  color: var(--medium-blue);
  font-size: 16px;
}

.logo {
  height: 50px;
}

.hero-section {
  background-color: var(--black);
  background-image: url('../images/hero-image-02_1hero-image-02.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
}

.hero-section.text-center {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/Fondo.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
}

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

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-content-center {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--white);
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-hero-image-center {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 50px;
  margin-bottom: -150px;
}

.hero-image-center {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.hero-image-center.two {
  margin-top: 30px;
}

.client-section {
  padding-top: 280px;
  padding-bottom: 0;
}

.grid-client {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.client-image {
  height: 55px;
}

.identity.section-spacing {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.about-section.section-spacing-bottom {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-spacing-bottom {
  padding-bottom: 100px;
}

.grid-about {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.about-image-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  position: relative;
}

.about-content-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.button-dark {
  background-color: var(--black);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 20px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.button-dark:hover {
  transform: translate(0, -2px);
}

.button-dark.subscribe-button {
  position: absolute;
  inset: 10px 10px 10px auto;
}

.about-description {
  text-align: left;
}

.grid-service {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.service-item {
  background-color: var(--white);
  text-align: center;
  border-radius: 10px;
  padding: 60px 30px;
  box-shadow: 0 0 50px #131d4614;
}

.service-icon {
  border-radius: 10px;
  height: 70px;
  margin-bottom: 20px;
}

.accordion-icon {
  width: 14px;
}

.accordion-content {
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.accordion-description {
  margin-bottom: 20px;
}

.accordion-heading {
  cursor: pointer;
  justify-content: space-between;
  padding: 15px 20px;
  display: flex;
}

.accordion-title {
  color: var(--black);
  margin-bottom: 0;
  font-size: 20px;
}

.accordion-wrap {
  background-color: var(--white-smoke);
  border-radius: 10px;
  margin-bottom: 15px;
}

.footer {
  background-color: var(--white-smoke);
  padding-top: 100px;
  padding-bottom: 30px;
}

.grid-footer {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .4fr .4fr;
}

.footer-title {
  color: var(--black);
  margin-bottom: 20px;
}

.footer-link-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--black);
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 0;
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.footer-link:hover, .footer-link.w--current {
  color: var(--medium-blue);
}

.service-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.empty-state {
  background-color: var(--medium-blue);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
}

.project-item {
  text-decoration: none;
}

.project-image-wrap {
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.grid-project {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.project-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.project-meta {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.project-category {
  font-size: 16px;
}

.project-meta-divider {
  background-color: var(--black);
  opacity: .5;
  width: 2px;
  height: 12px;
}

.project-client {
  font-size: 16px;
}

.footer-divider {
  background-color: var(--black);
  opacity: .1;
  width: 100%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-copyright {
  color: var(--black);
}

.grid-features-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: auto;
  margin-bottom: 30px;
}

.feature-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-icon {
  height: 20px;
}

.grid-about-two {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--white);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 0 50px #3048a712;
}

.testimonial-content-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.contact-info-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.contact-info {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.instructions-section, .licenses-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.page-info-title {
  margin-top: 50px;
}

.about-info-link {
  color: var(--medium-blue);
  margin-top: 5px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  background-color: var(--white-smoke);
  text-align: center;
  flex-direction: column;
  width: 560px;
  padding: 60px 40px;
  display: flex;
}

.error-description {
  margin-bottom: 30px;
}

.error-title {
  font-size: 130px;
  line-height: 1em;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.changelog-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.changelog-version {
  background-color: var(--medium-blue);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  display: inline-block;
}

.contact-section {
  margin-top: 20px;
  margin-bottom: 100px;
}

.contact-section.section-spacing {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.grid-contact {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.contact-form {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 50px #0f1c3a12;
}

.contact-address-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.project-detail-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-project-detail {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 50px;
}

.project-category-primary {
  background-color: var(--medium-blue);
  color: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 6px 20px;
  display: inline-block;
}

.project-detail-image {
  border-radius: 10px;
}

.hero-inner {
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-inner-content {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  background-image: url('../images/Fondo.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 50px;
}

.hero-inner-title {
  color: var(--white);
  margin-bottom: 0;
}

.map {
  border-radius: 10px;
}

.project-client-detail {
  font-size: 16px;
}

.hero-title {
  color: var(--white);
}

.project-title {
  margin-bottom: 0;
  font-size: 24px;
}

.button-dark-sm {
  background-color: var(--medium-blue);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.button-dark-sm:hover {
  transform: translate(0, -2px);
}

.contact-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.about-hero-info {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.grid-about-hero {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  margin-top: 50px;
}

.about-hero-image {
  z-index: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 500px;
  position: relative;
}

.about-hero-list {
  margin-top: auto;
  margin-bottom: 0;
}

.about-hero-content {
  aspect-ratio: auto;
  flex-direction: column;
  padding-top: 20px;
  text-decoration: none;
  display: flex;
}

.hero-about-section {
  padding-top: 50px;
  padding-bottom: 100px;
}

.about-client-section.section-spacing-bottom {
  padding-top: 60px;
}

.grid-about-client {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  margin-top: 50px;
}

.about-info-description {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.about-block-quote {
  margin-bottom: 30px;
}

.testimonial-description {
  margin-bottom: 20px;
}

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

.grid-testimonial {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.testimonial-rating {
  height: 20px;
  margin-bottom: 15px;
}

.about-service-section.section-spacing-bottom {
  padding-top: 60px;
  padding-bottom: 60px;
}

.grid-our-step {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.step-icon-wrap {
  background-color: var(--white);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
  display: flex;
  box-shadow: 0 0 50px #0f193514;
}

.step-icon {
  height: 35px;
}

.more-templates {
  z-index: 1000;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #000;
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 30px;
  padding: 1px 10px 1px 2px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto auto 30px 30px;
}

.client-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 13px;
  grid-template: "."
                 "Area"
                 / 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.client-image-inline {
  width: auto;
  height: 50px;
}

.maintenance-icon {
  height: 150px;
}

.utility-page-maintenance {
  background-color: var(--white-smoke);
  text-align: center;
  border-radius: 10px;
  flex-direction: column;
  width: 800px;
  padding: 50px;
  display: flex;
}

.form-input-group {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 170px 10px 10px;
  box-shadow: 0 0 50px #1b406912;
}

.subscribe-form {
  align-items: flex-start;
  max-width: 80%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.project-divider {
  background-color: var(--black);
  opacity: .5;
  width: 20px;
  height: 2px;
}

.bg-black {
  background-color: var(--black);
}

.bg-medium-purple {
  background-color: var(--medium-blue);
}

.bg-white {
  background-color: var(--white);
}

.bg-white-smoke {
  background-color: var(--white-smoke);
}

.about-image-right {
  z-index: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-content {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  line-height: 1.4em;
}

.footer-bottom {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.button-small {
  background-color: var(--black);
  color: var(--white);
  background-image: linear-gradient(to right, #8f17a4, #1f23c9);
  border-radius: 10px;
  padding: 2px 15px;
  font-size: 14px;
}

.about-image-bg-grad {
  background-color: var(--medium-blue);
  background-image: url('../images/Fondo.webp'), linear-gradient(340deg, #dab14b, var(--pale-violet-red) 34%, var(--medium-blue) 70%);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto -30px -30px auto;
}

.bg-light-coral {
  background-color: var(--light-coral);
}

.bg-pale-violet-red {
  background-color: var(--pale-violet-red);
}

.about-hero-image-wrap {
  position: relative;
}

.about-hero-bg-grad {
  background-color: var(--medium-blue);
  background-image: url('../images/Fondo.webp'), linear-gradient(340deg, #dab14b, var(--pale-violet-red) 34%, var(--medium-blue) 70%);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto auto -30px -30px;
}

.social-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
  display: flex;
}

.social-item {
  justify-content: center;
  align-items: center;
}

.social-icon {
  height: 24px;
}

.project-meta-inline {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.logo_component-slider {
  z-index: auto;
  box-sizing: border-box;
  clear: left;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  object-fit: fill;
  flex-flow: row-reverse;
  flex: 0 auto;
  order: 1;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 0;
  min-width: 100%;
  max-width: 0;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.logo-slider-img {
  clear: none;
  width: 5%;
  max-width: 100%;
  height: auto;
  max-height: none;
  font-weight: 400;
  display: inline-flex;
  position: static;
}

.heading {
  text-align: center;
  margin-top: 78px;
}

.image {
  pointer-events: auto;
  transform-style: preserve-3d;
  transition: opacity .2s;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "Area";
}

.image-2 {
  outline-offset: 0px;
  mix-blend-mode: normal;
  outline: 3px #141414;
  transform: rotate(0);
}

.portafolio-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
  position: static;
  overflow: visible;
  transform: rotate(0);
}

.d-11-card-wrapper {
  z-index: 0;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  perspective: 1000px;
  perspective-origin: 50%;
  flex-flow: column;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  place-items: center stretch;
  display: block;
  position: relative;
  top: auto;
  transform: rotate(0);
}

.d-31-card-back {
  backface-visibility: hidden;
  color: var(--black);
  transform-style: preserve-3d;
  background-color: #9cdb9a;
  border-radius: 10px;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 250px;
  height: 300px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.d-31-card-front {
  opacity: 1;
  backface-visibility: hidden;
  color: var(--light-coral);
  mix-blend-mode: normal;
  background-image: url('../images/Merchandising.jpg');
  background-position: 50% 0;
  background-size: cover;
  border-radius: 10px;
  flex-flow: row;
  order: 0;
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 250px;
  height: 300px;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
}

.heading-2 {
  text-align: center;
  font-size: 25px;
  font-weight: 400;
}

.heading-3 {
  text-align: center;
  padding-top: 0;
  font-size: 25px;
  font-weight: 400;
}

.carousel-container {
  width: auto;
  height: auto;
  display: flex;
  overflow: hidden;
}

.image-3 {
  vertical-align: baseline;
  width: 350px;
  height: 500px;
  display: block;
  position: static;
  overflow: visible;
}

.div-block {
  color: var(--white);
  padding-top: 20px;
  padding-left: 20px;
  font-weight: 600;
  display: flex;
  position: static;
}

.title {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--white);
  order: -1;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding-top: 0;
  padding-left: 0;
  font-size: 30px;
  font-weight: 600;
  display: flex;
}

.text-block {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  border-radius: 10px;
  flex-flow: wrap;
  flex: 1;
  order: 1;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: auto;
  padding-top: 0;
  padding-left: 0;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: visible;
}

.heading-4 {
  margin-top: 40px;
  margin-bottom: 60px;
}

.bold-text {
  text-align: left;
  font-size: 35px;
}

.paragraph {
  text-align: left;
}

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

.paragraph-2 {
  font-size: 18px;
}

.heading-6 {
  margin-top: auto;
  display: block;
}

.client-section-copy {
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-link-copy {
  color: var(--black);
  margin-bottom: 20px;
  margin-left: 0;
  padding-left: 40px;
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.footer-link-copy:hover, .footer-link-copy.w--current {
  color: var(--medium-blue);
}

.heading-7 {
  display: flex;
}

.heading-8 {
  margin-top: 10px;
  margin-bottom: auto;
}

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

.card-back-heading {
  flex-flow: column;
  flex: 1;
  order: -1;
  align-self: flex-start;
  margin-top: 10px;
  margin-bottom: 0;
  display: flex;
  position: static;
}

.div-block-2 {
  perspective: 1000px;
}

.d-31-card-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: block;
  position: absolute;
  left: auto;
  right: auto;
}

.features-metrics {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.features-block {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.features-title-small {
  font-size: 24px;
  line-height: 32px;
}

.team-slider {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.flipsection {
  justify-content: center;
  align-items: center;
  height: 50vh;
  margin-bottom: 140px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.cardwrapper {
  perspective: 1000px;
  flex: 1;
  order: 0;
  align-self: auto;
  width: auto;
  height: auto;
  margin-bottom: 0;
  margin-right: 0;
  padding-bottom: 0;
  overflow: visible;
  transform: rotate(0);
}

.cardblock {
  width: auto;
  height: 250px;
  margin-bottom: 15px;
  position: relative;
}

.cardbfront {
  background-color: #302f33;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.cardbimage {
  backface-visibility: hidden;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: clip;
}

.cardbback {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  background-color: #333;
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-left: 0;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.cardh3 {
  color: var(--white);
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  margin-top: 20px;
  margin-left: 0;
  display: block;
}

.cardparagraph {
  color: var(--white);
  align-self: center;
  margin-left: 0;
  margin-right: 0;
  font-size: 16px;
}

.servicios, .bold-text-2 {
  display: block;
}

.servicegrid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: minmax(400px, auto);
  grid-template-columns: minmax(400px, auto) minmax(400px, auto) repeat(auto-fit, minmax(400px, auto));
  grid-auto-columns: minmax(100px, 1fr);
  place-content: space-around;
  place-items: center;
  width: auto;
  overflow: auto;
}

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-3 {
  width: auto;
  max-width: 1200px;
  margin: 20px auto 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-2 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper-2 {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-2 {
  width: 30%;
  margin-right: 5%;
}

.team-block-2 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-2 {
  margin-bottom: 18px;
}

.team-block-info-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-2 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-2 {
  display: none;
}

.team-slider-nav-2 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  margin-top: 0;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-member-name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
}

.team-circles-2 {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-3 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-3 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid-2 {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image-2 {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-member-name-2 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position-2 {
  margin-bottom: 24px;
}

.cardsection, .servicecard {
  justify-content: center;
  align-items: center;
  height: auto;
  display: block;
}

.team-slider-3 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.team-slider-wrapper-3 {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-3 {
  width: 30%;
  margin-right: 5%;
}

.team-block-3 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-3 {
  margin-bottom: 18px;
}

.team-block-info-3 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-3 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-3 {
  margin-bottom: 20px;
}

.text-link-arrow-3 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-3 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-3 {
  display: none;
}

.team-slider-nav-3 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.heading-10 {
  text-decoration: none;
}

.heading-11 {
  overflow: visible;
}

.div-block-3 {
  margin-top: 0;
  margin-bottom: 0;
  position: static;
}

.div-block-4 {
  margin-bottom: 15px;
  overflow: visible;
}

.quick-stack {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  padding: 0;
}

.cell, .cell-2 {
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1440px) {
  .about-section.section-spacing-bottom {
    padding-bottom: 60px;
  }

  .contact-section.section-spacing {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .button-dark-sm {
    background-color: var(--medium-blue);
  }

  .logo_component-slider {
    flex: none;
    min-width: 100%;
    overflow: visible;
  }

  .cardwrapper {
    backface-visibility: visible;
    margin-top: 0;
  }

  .cardblock {
    height: 250px;
    margin-bottom: 15px;
  }

  .cardbfront {
    backface-visibility: visible;
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
  }

  .cardbimage {
    flex: 0 auto;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: clip;
  }

  .cardbback {
    backface-visibility: hidden;
    object-fit: fill;
    background-color: #4b7310;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: none;
    height: auto;
    margin-top: -1px;
    margin-bottom: -1px;
    inset: 0%;
  }

  .cardparagraph {
    text-align: left;
    flex: 0 auto;
    width: 130px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
    line-height: 25px;
    display: block;
  }

  .container-3 {
    max-width: 1200px;
  }

  .team-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-auto-columns: auto;
    margin-top: 0;
  }

  .team-member-image, .team-member-image-2 {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .cardsection {
    display: block;
  }

  .div-block-4 {
    margin-top: 0;
    margin-bottom: 0;
    overflow: visible;
  }

  .quick-stack {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 0;
  }

  .cell {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .grid-navbar {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr .25fr;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-content-center {
    width: 100%;
  }

  .grid-hero-image-center {
    margin-bottom: 0;
  }

  .client-section {
    padding-top: 100px;
  }

  .grid-client {
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }

  .client-image {
    height: 50px;
  }

  .about-section.section-spacing-bottom {
    padding-top: 20px;
  }

  .section-spacing-bottom {
    padding-bottom: 80px;
  }

  .grid-about {
    grid-template-columns: 1fr;
  }

  .grid-service {
    grid-template: "."
                   "."
                   "."
                   / 1fr 1fr;
  }

  .grid-footer {
    grid-template-columns: 1fr 1fr;
  }

  .menu-button {
    background-color: var(--black);
    color: var(--white);
    border-radius: 5px;
  }

  .menu-button.w--open {
    background-color: var(--black);
  }

  .nav-menu {
    background-color: var(--white-smoke);
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .grid-about-two {
    grid-template-columns: 1fr;
  }

  .instructions-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .grid-contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-detail-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-inner-title, .hero-title {
    font-size: 45px;
  }

  .hero-about-section {
    padding-bottom: 80px;
  }

  .grid-about-client {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .grid-testimonial {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .grid-our-step {
    grid-template-columns: 1fr 1fr;
  }

  .client-image-inline {
    height: 50px;
  }

  .utility-page-maintenance {
    width: 650px;
  }

  .about-image-bg-grad {
    bottom: -20px;
    right: -20px;
  }

  .about-hero-bg-grad {
    bottom: -20px;
    left: -20px;
  }

  .logo_component-slider {
    box-sizing: border-box;
    clear: left;
    grid-column-gap: 3rem;
    word-break: normal;
    width: auto;
    min-width: 100%;
    max-width: 0;
  }

  .logo-slider-img {
    width: 10%;
  }

  .heading-3 {
    font-size: 18px;
  }

  ._100-margin-top {
    height: auto;
  }

  .carousel-container {
    width: auto;
    max-width: none;
    height: auto;
  }

  .heading-4 {
    font-size: 30px;
  }

  .client-section-copy {
    padding-top: 100px;
  }

  .footer-link-copy {
    padding-left: 40px;
  }

  .container-2 {
    max-width: 728px;
  }

  .features-wrapper {
    justify-content: space-between;
  }

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .servicegrid {
    grid-template-columns: minmax(200px, 1fr) repeat(auto-fit, minmax(200px, 1fr)) minmax(200px, 1fr);
  }

  .container-3 {
    max-width: 728px;
  }

  .team-slide-wrapper-2 {
    width: 47%;
    margin-right: 6%;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .container-4 {
    max-width: 728px;
  }

  .team-grid-2 {
    grid-column-gap: 40px;
  }

  .team-member-image-2 {
    width: 190px;
    height: 190px;
  }

  .team-slide-wrapper-3 {
    width: 47%;
    margin-right: 6%;
  }

  .bold-text-3 {
    font-size: 30px;
  }

  .heading-12, .bold-text-4, .heading-14 {
    font-size: 45px;
  }

  .bold-text-7, .bold-text-8, .heading-15 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
  }

  .heading-h3 {
    font-size: 38px;
  }

  .heading-h5 {
    font-size: 24px;
  }

  .style-guide-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .heading-h1 {
    font-size: 48px;
  }

  .heading-h4 {
    font-size: 34px;
  }

  .heading-h2 {
    font-size: 42px;
  }

  .container-medium {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-hero-image-center {
    grid-template-columns: 1fr 1fr;
    margin-bottom: -30px;
  }

  .section-spacing-bottom {
    padding-bottom: 60px;
  }

  .grid-service {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .service-item {
    padding: 32px 20px;
  }

  .footer {
    padding-top: 70px;
  }

  .grid-footer {
    grid-template-columns: 1fr;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  .grid-project {
    grid-template-columns: 1fr 1fr;
  }

  .grid-features-list {
    grid-template-columns: 1fr;
  }

  .grid-about-two {
    padding: 30px;
  }

  .instructions-section, .licenses-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .utility-page-wrap {
    width: 100%;
    height: auto;
  }

  .utility-page-content {
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .error-title {
    font-size: 100px;
  }

  .changelog-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .grid-contact {
    grid-template-columns: 1fr;
  }

  .project-detail-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .grid-project-detail {
    grid-template-columns: 1fr;
  }

  .hero-inner-content {
    padding: 30px;
  }

  .map {
    height: 300px;
  }

  .grid-about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    height: 400px;
  }

  .hero-about-section {
    padding-bottom: 60px;
  }

  .grid-about-client {
    grid-template-columns: 1fr;
  }

  .more-templates {
    bottom: 10px;
    right: 10px;
  }

  .maintenance-icon {
    height: 120px;
  }

  .utility-page-maintenance {
    border-width: 10px;
    width: 100%;
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px;
  }

  .subscribe-form {
    max-width: 100%;
  }

  .about-image-bg-grad {
    bottom: -15px;
    right: -15px;
  }

  .about-hero-bg-grad {
    bottom: -15px;
    left: -15px;
  }

  .logo_component-slider {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row-reverse;
    grid-template-columns: 1fr;
    justify-content: flex-end;
    align-items: center;
  }

  .logo-slider-img {
    width: 10%;
  }

  .features-metrics {
    padding: 60px 15px;
  }

  .features-wrapper {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .features-block {
    width: 50%;
    margin-bottom: 40px;
  }

  .team-slider {
    padding: 60px 15px;
  }

  .flipsection {
    display: flex;
  }

  .cardwrapper {
    box-sizing: border-box;
    object-fit: contain;
    overflow: auto;
  }

  .cardparagraph {
    font-size: 14px;
  }

  .servicegrid {
    grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-columns: minmax(200px, 1fr);
  }

  .team-slider-2, .team-circles {
    padding: 60px 15px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-circles-2 {
    padding: 60px 15px;
  }

  .team-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .team-slider-3 {
    padding: 60px 15px;
  }

  .bold-text-5, .bold-text-6 {
    font-size: 24px;
  }

  .paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6, .paragraph-7, .paragraph-8 {
    font-size: 16px;
    line-height: 1.3em;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
  }

  .heading-h3 {
    font-size: 30px;
  }

  .heading-h5 {
    font-size: 24px;
  }

  .style-guide-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .style-guide-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .heading-h1 {
    font-size: 40px;
  }

  .input-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .heading-h4 {
    font-size: 26px;
  }

  .heading-h2 {
    font-size: 34px;
  }

  .form-input {
    height: 50px;
  }

  .form-input.form-subscribe {
    padding-left: 0;
  }

  .container-medium {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grid-navbar {
    grid-template-columns: 1fr .5fr;
  }

  .nav-link {
    padding: 8px 15px;
  }

  .nav-right-menu {
    display: none;
  }

  .hero-section {
    background-position: 50%;
    background-size: cover;
  }

  .hero-section.text-center {
    padding-top: 30px;
  }

  .section-spacing {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .grid-hero-image-center {
    grid-template-columns: 1fr;
  }

  .hero-image-center {
    height: 200px;
  }

  .hero-image-center.two {
    margin-top: 0;
  }

  .grid-client {
    grid-template-columns: 1fr 1fr;
  }

  .section-spacing-bottom {
    padding-bottom: 45px;
  }

  .button-dark.subscribe-button {
    padding-left: 17px;
    padding-right: 17px;
    font-size: 14px;
  }

  .grid-service {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template: "Area" minmax(auto, 1fr)
    / minmax(250px, 1fr);
    grid-auto-columns: minmax(250px, 1fr);
    grid-auto-flow: row;
  }

  .service-item {
    padding: 15px;
  }

  .accordion-title {
    padding-right: 20px;
    font-size: 16px;
  }

  .footer {
    padding-top: 50px;
  }

  .grid-footer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .grid-project {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .grid-about-two {
    padding: 20px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .contact-info-wrap {
    grid-template-columns: 1fr;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .licenses-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .utility-page-content {
    padding: 30px 20px;
  }

  .error-title {
    font-size: 90px;
  }

  .changelog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-form {
    padding: 15px;
  }

  .project-detail-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-project-detail {
    margin-bottom: 20px;
  }

  .project-category-primary {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .hero-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-inner-content {
    padding: 20px 15px;
  }

  .hero-inner-title {
    font-size: 30px;
  }

  .map {
    height: 200px;
  }

  .hero-title {
    font-size: 30px;
  }

  .grid-about-hero {
    margin-top: 30px;
  }

  .about-hero-image {
    height: 300px;
  }

  .hero-about-section {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .brand {
    padding-left: 0;
  }

  .about-info-description {
    margin-bottom: 20px;
  }

  .grid-our-step {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .client-item-wrap {
    place-items: center start;
  }

  .maintenance-icon {
    height: 100px;
  }

  .utility-page-maintenance {
    border-width: 5px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }

  .form-input-group {
    padding-right: 100px;
  }

  .about-image-bg-grad {
    bottom: -10px;
    right: -10px;
  }

  .about-hero-bg-grad {
    bottom: -10px;
    left: -10px;
  }

  .logo_component-slider {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
    width: 0;
    min-width: 100%;
    max-width: 0;
    position: relative;
    overflow: visible;
  }

  .logo-slider-img {
    flex: 0 auto;
    width: 20%;
    max-width: none;
    display: block;
  }

  ._100-margin-top {
    overflow: hidden;
  }

  .carousel-container {
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    display: block;
    position: static;
  }

  .container-2 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .flipsection {
    margin-bottom: 220px;
    display: block;
  }

  .servicios {
    display: flex;
  }

  .servicegrid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template: "Area Area-2"
                   ". ." minmax(auto, 1fr)
                   / minmax(298px, .25fr) .25fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .container-3 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .team-slide-wrapper-2 {
    width: 100%;
    margin-right: 0%;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .container-4 {
    max-width: none;
  }

  .centered-heading-3 {
    margin-bottom: 24px;
  }

  .team-grid-2 {
    grid-template-columns: 1fr;
  }

  .team-slide-wrapper-3 {
    width: 100%;
    margin-right: 0%;
  }

  .heading-12 {
    font-size: 30px;
  }

  .bold-text-4 {
    font-size: 24px;
    line-height: 1em;
  }

  .heading-13 {
    font-size: 30px;
    line-height: 1em;
  }

  .heading-14 {
    font-size: 30px;
  }
}

#w-node-_6c1c0046-efa0-f42f-e594-e8b70091851e-43f31ebf, #w-node-e14abaf4-fe97-fb62-9543-3c6238a34671-43f31ebf, #w-node-_2cbc1085-e553-2427-79da-f4a36ff995f4-43f31ebf, #w-node-cd7e4c20-021f-4a5b-25f1-e57fbb9dbeea-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76eaa7d8-dd4b-bc03-2b49-9b6f93759d1a-43f31ebf {
  order: 0;
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fe9f06f9-1230-465f-6e59-192b34c31e92-43f31ebf {
  order: 0;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af4b-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af51-43f31ebf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af72-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af78-43f31ebf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af91-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af97-43f31ebf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afb0-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afb6-43f31ebf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afd0-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afd6-43f31ebf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afed-43f31ebf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db47d58f-3a3e-6e3e-0b90-5d929e71aff3-43f31ebf {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_1f53defc-57f7-aea5-7259-b17597f23e64-43f31ebf, #w-node-b20d7fbd-321b-0f16-a0e9-bd5b72c43f6a-43f31ebf, #w-node-_94d7d6ec-bbc6-7e76-0392-9455e8432bed-e8432bea, #w-node-_94d7d6ec-bbc6-7e76-0392-9455e8432bf2-e8432bea, #w-node-_94d7d6ec-bbc6-7e76-0392-9455e8432c0a-e8432bea, #w-node-_94d7d6ec-bbc6-7e76-0392-9455e8432bfe-e8432bea, #w-node-aa7d8a34-f0b3-d1c0-7d48-de3742af5de4-42af5de1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aa7d8a34-f0b3-d1c0-7d48-de3742af5de6-42af5de1 {
  justify-self: end;
}

#w-node-_40ae8c31-e0e4-4f32-b46f-c631362e5431-43f31ec2, #w-node-_798cedf3-1531-9b9c-1ca6-7898410b6330-43f31ec2, #w-node-_74bb2b12-b446-83c2-c379-4265ab196cea-43f31ec2, #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c28b-43f31ec2, #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c292-43f31ec2, #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c299-43f31ec2, #w-node-_51dd87c6-ef3e-dcc7-74db-f92fd76b3903-43f31ec2, #w-node-a051ad99-9e5b-dc0f-17f5-fad8610e11a3-43f31ec2, #w-node-eabfd689-2dec-c5a3-d8c7-e4394f9b84ee-43f31ec2, #w-node-_3a816cdd-5f0d-8d0a-8af8-659bd7e99a99-43f31ec2, #w-node-f7de8c09-0e4c-2206-7a31-6ef402aecba3-43f31ec2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1aed2a1-3bd7-3453-126d-94769be348a7-43f31ec2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1a62adc2-9c66-0bd1-d8cc-922ffc425e61-43f31ec2, #w-node-_1a62adc2-9c66-0bd1-d8cc-922ffc425e67-43f31ec2, #w-node-_1a62adc2-9c66-0bd1-d8cc-922ffc425e6d-43f31ec2, #w-node-_8bc4092f-760e-c162-6a19-46653b7cf059-43f31ec5, #w-node-_9367381f-31a0-d097-7f37-85eee70b382d-43f31ec5, #w-node-ec930cda-4c51-cbb7-14ef-0c0d6251a497-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6fe917b5-8fba-1e24-0b0f-a94b7c05106f-43f31ec8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ec930cda-4c51-cbb7-14ef-0c0d6251a482-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58ba5fa9-3ecd-8edc-4d91-c7e70fcd4dad-43f31ec8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ec930cda-4c51-cbb7-14ef-0c0d6251a48d-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f756e596-ff7a-b53c-4223-c22a5c0aca70-43f31ec8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_54b4cd44-875e-0eae-268e-4ddf0477bb26-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54b4cd44-875e-0eae-268e-4ddf0477bb2c-43f31ec8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e236946a-4037-fb5c-2e80-3d5e406db7c6-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e236946a-4037-fb5c-2e80-3d5e406db7cc-43f31ec8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a49923e5-250a-0548-de82-df821ee93d82-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a49923e5-250a-0548-de82-df821ee93d88-43f31ec8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_98fabd66-7c96-78f8-b534-835dc5301dd5-43f31ec8, #w-node-_98fabd66-7c96-78f8-b534-835dc5301de6-43f31ec8, #w-node-_4fad58fb-3804-d95a-9431-32d11c2bce87-43f31ec8, #w-node-ec930cda-4c51-cbb7-14ef-0c0d6251a4ab-43f31ec8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af4b-43f31ebf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af51-43f31ebf, #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af78-43f31ebf {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af91-43f31ebf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71af97-43f31ebf {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afb0-43f31ebf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afb6-43f31ebf {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afd0-43f31ebf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afd6-43f31ebf {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71afed-43f31ebf {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-db47d58f-3a3e-6e3e-0b90-5d929e71aff3-43f31ebf {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-ec930cda-4c51-cbb7-14ef-0c0d6251a497-43f31ec8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6fe917b5-8fba-1e24-0b0f-a94b7c05106f-43f31ec8, #w-node-_58ba5fa9-3ecd-8edc-4d91-c7e70fcd4dad-43f31ec8 {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-ec930cda-4c51-cbb7-14ef-0c0d6251a48d-43f31ec8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f756e596-ff7a-b53c-4223-c22a5c0aca70-43f31ec8 {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-_54b4cd44-875e-0eae-268e-4ddf0477bb26-43f31ec8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54b4cd44-875e-0eae-268e-4ddf0477bb2c-43f31ec8 {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-e236946a-4037-fb5c-2e80-3d5e406db7c6-43f31ec8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e236946a-4037-fb5c-2e80-3d5e406db7cc-43f31ec8 {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }

  #w-node-a49923e5-250a-0548-de82-df821ee93d82-43f31ec8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a49923e5-250a-0548-de82-df821ee93d88-43f31ec8 {
    grid-template-rows: auto;
    grid-template-columns: minmax(30px, 1fr) minmax(30px, 1fr);
  }
}

@media screen and (max-width: 991px) {
  #w-node-aa7d8a34-f0b3-d1c0-7d48-de3742af5df2-42af5de1 {
    justify-self: end;
  }

  #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c28b-43f31ec2, #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c292-43f31ec2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c28b-43f31ec2, #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c292-43f31ec2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f7de8c09-0e4c-2206-7a31-6ef402aecba3-43f31ec2 {
    order: -9999;
  }

  #w-node-_956fe079-e34e-57ee-bd78-b3358b55679a-43f31ec2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_38da3918-80e5-b77a-c046-78bcda4a01dc-43f31ec4 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-aa7d8a34-f0b3-d1c0-7d48-de3742af5df2-42af5de1 {
    justify-self: end;
  }

  #w-node-e8dac730-6459-bb46-d9fb-f2e2e204c28b-43f31ec2 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


