:root {
  --color-first:#17c73d;
  --color-border:#DFE0E0;
  --color-alert: #FF3C32;
  --color-buttons:#8BAE2A;
  --color-jade:#698911;
  --color-leenet:#a9ca4b;
  --color-secon:#1c3643;
  --color-background:#F0F0F0;
}

:root {
  --z-back:-10;
  --z-normal:1;
  --z-tooltip:10;
  --z-fixed:100;
  --z-modal:1000;
}

:root {
  --h1-font-size:2rem;
  --h2-font-size:1.5rem;
  --h3-font-size:1.25rem;
  --body-font-size:.9rem;
  --small-font-size:.75rem;
}
@media screen and (min-width: 960px) {
  :root {
    --h1-font-size:2.5rem;
    --h2-font-size:1.85rem;
    --h3-font-size:1.5rem;
    --body-font-size:1rem;
    --small-font-size:.8rem;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: var(--body-font-size);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

.main-header {
  height: 4rem;
  border-bottom: 1px solid #ccc;
  background: #FFF;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: var(--z-fixed);
}

.main-header__block {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.main-logo {
  height: 2rem;
}

.main-menu {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
@media screen and (min-width: 960px) {
  .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu__item {
  padding: 1rem;
}

.main-menu__link {
  color: #ccc;
  margin-left: 1rem;
}
@media screen and (min-width: 960px) {
  .main-menu__link {
    color: #53575A;
  }
}

.main-nav {
  position: fixed;
  height: calc(100vh - 4rem);
  width: 80vw;
  background: #343a40;
  top: 4rem;
  right: -80vw;
  -webkit-transition: right 0.3s;
  -o-transition: right 0.3s;
  transition: right 0.3s;
  padding-top: 1rem;
  z-index: var(--z-fixed);
}
@media screen and (min-width: 960px) {
  .main-nav {
    position: static;
    background: transparent;
    padding-top: 0;
    height: auto;
    width: auto;
  }
}
.main-nav.show {
  right: 0;
}

.main-menu-toggle {
  width: 2.2rem;
  height: 1.6rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #343a40), color-stop(20%, transparent), color-stop(40%, transparent), color-stop(40%, #343a40), color-stop(60%, #343a40), color-stop(60%, transparent), color-stop(80%, transparent), color-stop(80%, #343a40));
  background: -o-linear-gradient(#343a40 20%, transparent 20%, transparent 40%, #343a40 40%, #343a40 60%, transparent 60%, transparent 80%, #343a40 80%);
  background: linear-gradient(#343a40 20%, transparent 20%, transparent 40%, #343a40 40%, #343a40 60%, transparent 60%, transparent 80%, #343a40 80%);
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .main-menu-toggle {
    display: none;
  }
}

.main-banner {
  --padding:5rem 1rem 5.5rem;
  --logo-height:4rem;
  padding: var(--padding);
  background: var(--color-first);
  color: #FFF;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
  position: relative;
}
@media screen and (min-width: 960px) {
  .main-banner {
    --padding:7rem 1rem 9rem;
    --logo-height:5rem;
  }
}
.main-banner__content {
  position: relative;
}
.main-banner__logo {
  height: var(--logo-height);
  display: block;
  margin: 0 auto 0.5rem;
}
.main-banner__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.3;
}

.banner-soluciones {
  padding: 5rem 1rem 1rem;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.one {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  grid-row: 1;
}

.two {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}

.card {
  margin-bottom: 2rem;
  border: 1px solid var(--color-border);
}
.card__img img {
  display: block;
}
.card__content {
  padding: 1rem;
  background: #FFF;
}
.card__precio {
  color: var(--color-alert);
  font-weight: bold;
}
.card__subtitle {
  margin-top: -0.1rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.card__footer {
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cards-four--titulo {
  margin-bottom: 1rem;
}

@media screen and (min-width: 960px) {
  .cards-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 960px) {
  .cards-four {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    margin-top: 1.5rem;
  }
  .cards-four--titulo {
    margin-bottom: 1.5rem;
  }
}

.button {
  color: var(--color-first);
  display: inline-block;
  border: 1px solid;
  padding: 0.5em 1em;
  border-radius: 0.25rem;
}
.button:hover {
  background: var(--color-first);
  color: #FFF;
}

[class*=icon-]::before {
  content: "";
  display: inline-block;
  margin-right: 0.15rem;
  width: 1em;
  height: 1em;
}

.icon-location::before {
  background: url(../img/icon-pin.svg);
}

.main-footer {
  background: var(--color-secon);
  color: #FFF;
  padding: 1rem;
  text-align: center;
}

.main-footer__sociales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.main-footer__link {
  color: #FFF;
  font-size: 2rem;
  margin: 0.5rem;
  opacity: 0.7;
}

.l-container {
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-section {
  margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
  .l-section {
    margin-bottom: 4rem;
  }
}
.l-section--diagonal {
  position: relative;
}
.l-section--diagonal:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  z-index: var(--z-back);
  -webkit-transform: skewY(-1deg) scaleY(1.025);
      -ms-transform: skewY(-1deg) scaleY(1.025);
          transform: skewY(-1deg) scaleY(1.025);
}
@media screen and (min-width: 960px) {
  .l-section--diagonal:before {
    -webkit-transform: skewY(-2deg) scaleY(1.1);
        -ms-transform: skewY(-2deg) scaleY(1.1);
            transform: skewY(-2deg) scaleY(1.1);
  }
}
.l-section--base {
  background: var(--color-secon);
  color: #FFF;
  padding: 4rem;
}

.s-5 {
  width: 5%;
}

.s-10 {
  width: 10%;
}

.s-15 {
  width: 15%;
}

.s-20 {
  width: 20%;
}

.s-25 {
  width: 25%;
}

.s-30 {
  width: 30%;
}

.s-35 {
  width: 35%;
}

.s-40 {
  width: 40%;
}

.s-45 {
  width: 45%;
}

.s-50 {
  width: 50%;
}

.s-55 {
  width: 55%;
}

.s-60 {
  width: 60%;
}

.s-65 {
  width: 65%;
}

.s-70 {
  width: 70%;
}

.s-75 {
  width: 75%;
}

.s-80 {
  width: 80%;
}

.s-85 {
  width: 85%;
}

.s-90 {
  width: 90%;
}

.s-95 {
  width: 95%;
}

.s-100 {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .l-5 {
    width: 5%;
  }

  .l-10 {
    width: 10%;
  }

  .l-15 {
    width: 15%;
  }

  .l-20 {
    width: 20%;
  }

  .l-25 {
    width: 25%;
  }

  .l-30 {
    width: 30%;
  }

  .l-35 {
    width: 35%;
  }

  .l-40 {
    width: 40%;
  }

  .l-45 {
    width: 45%;
  }

  .l-50 {
    width: 50%;
  }

  .l-55 {
    width: 55%;
  }

  .l-60 {
    width: 60%;
  }

  .l-65 {
    width: 65%;
  }

  .l-70 {
    width: 70%;
  }

  .l-75 {
    width: 75%;
  }

  .l-80 {
    width: 80%;
  }

  .l-85 {
    width: 85%;
  }

  .l-90 {
    width: 90%;
  }

  .l-95 {
    width: 95%;
  }

  .l-100 {
    width: 100%;
  }
}
.center-block {
  margin-left: auto;
  margin-right: auto;
}

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

.display3 {
  font-size: 1.85rem;
  color: #6c757d;
}

.display4 {
  font-size: 3rem;
  color: #6c757d;
}
.display4--titulo {
  color: #FFF;
}