/* fonts */
/* colors */
/* landing-content */
#landing-content {
  /* fonts-util */
  font-family: "SST W01 Roman", Helvetica, Arial, sans-serif;
}
#landing-content .medium {
  font-family: "SST W01 Medium", Helvetica, Arial, sans-serif;
}
#landing-content .bold {
  font-family: "SST W01 Bold", Helvetica, Arial, sans-serif;
}
#landing-content .heavy {
  font-family: "SST W01 Heavy", Helvetica, Arial, sans-serif;
}
#landing-content .text-center {
  text-align: center;
}
#landing-content .text-left {
  text-align: left;
}
#landing-content .text-right {
  text-align: right;
}
#landing-content .white {
  color: #fff;
}
#landing-content .black {
  color: #2f353d;
}
#landing-content .orange {
  color: #F25529;
}
#landing-content .sup {
  display: inline-block;
  font-size: 10px;
  padding: 0.1rem;
  vertical-align: super;
}
#landing-content {
  /* buttons */
}
#landing-content .btn {
  padding: 11px 24px 9px;
  transition: all 0.2s linear;
}
@media (min-width: 768px) {
  #landing-content .btn {
    padding: 11px 24px 11px;
  }
}
#landing-content .btn.btn-orange {
  background-color: #f25529;
}
#landing-content .btn.btn-orange:hover {
  opacity: 0.8;
}
#landing-content {
  /* section-hero */
}
#landing-content .section-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: relative;
  background-color: #f1f5f9;
}
@media (min-width: 768px) {
  #landing-content .section-hero {
    flex-direction: row;
    height: 400px;
  }
}
#landing-content .section-hero .hero-image {
  width: 100%;
  height: 250px;
  background-color: #dddacb;
  background-image: url("../pics/hero-mobile.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 768px) {
  #landing-content .section-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-image: url("../pics/hero-desktop.jpg");
  }
}
#landing-content .section-hero .hero-caption {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  #landing-content .section-hero .hero-caption {
    text-align: left;
    max-width: 400px;
    padding: 0;
  }
  #landing-content .section-hero .hero-caption p {
    color: #2f353d;
  }
}
#landing-content .section-hero .hero-caption h1 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem;
  color: #2f353d;
}
#landing-content .section-hero .hero-caption p {
  margin-top: 0 !important;
  margin-bottom: 1rem;
}
#landing-content {
  /* section-why */
}
#landing-content .section-why {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  #landing-content .section-why {
    padding: 4rem 0;
  }
}
#landing-content .section-why .section-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 2rem;
}
#landing-content .section-why .section-grid .section-col-1 {
  width: 100%;
}
@media (min-width: 768px) {
  #landing-content .section-why .section-grid .section-col-1 {
    width: 40%;
  }
}
#landing-content .section-why .section-grid .section-col-1 .tile {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: stretch;
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.15s linear;
}
@media (min-width: 768px) {
  #landing-content .section-why .section-grid .section-col-1 .tile {
    height: calc(300px + 1rem);
    margin-bottom: 0;
  }
  #landing-content .section-why .section-grid .section-col-1 .tile:hover {
    transform: scale(1.02);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  }
}
#landing-content .section-why .section-grid .section-col-1 .tile .tile-image {
  width: calc(50% + 1rem);
  background-color: blue;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#landing-content .section-why .section-grid .section-col-1 .tile .tile-caption {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 1rem;
  padding-left: 0;
  width: calc(50% - 1rem);
  background-color: #f25529;
  position: relative;
}
#landing-content .section-why .section-grid .section-col-1 .tile .tile-caption h3 {
  margin-bottom: 0.5rem;
}
#landing-content .section-why .section-grid .section-col-1 .tile .tile-caption p {
  margin-bottom: 0;
}
#landing-content .section-why .section-grid .section-col-1 .tile .tile-caption:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.95rem;
  width: 1rem;
  height: 100%;
  background-color: #f25529;
  border-top-left-radius: 1rem;
}
#landing-content .section-why .section-grid .section-col-1 .tile .tile-caption:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url("../pics/icon-link.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  #landing-content .section-why .section-grid .section-col-1 .tile .tile-caption:after {
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }
}
#landing-content .section-why .section-grid .section-col-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  width: 100%;
}
@media (min-width: 768px) {
  #landing-content .section-why .section-grid .section-col-2 {
    width: 60%;
  }
}
#landing-content .section-why .section-grid .section-col-2 .tile {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: stretch;
  width: 100%;
  height: 100px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  #landing-content .section-why .section-grid .section-col-2 .tile {
    width: calc(50% - 1rem);
    height: 150px;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}
#landing-content .section-why .section-grid .section-col-2 .tile .tile-image {
  width: calc(50% + 1rem);
  background-color: blue;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#landing-content .section-why .section-grid .section-col-2 .tile .tile-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 1rem;
  padding-left: 0;
  width: calc(50% - 1rem);
  background-color: #f1f5f9;
  position: relative;
}
#landing-content .section-why .section-grid .section-col-2 .tile .tile-caption h3 {
  margin-bottom: 0.5rem;
}
#landing-content .section-why .section-grid .section-col-2 .tile .tile-caption p {
  margin-bottom: 0;
}
#landing-content .section-why .section-grid .section-col-2 .tile .tile-caption:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.95rem;
  width: 1rem;
  height: 100%;
  background-color: #f1f5f9;
  border-top-left-radius: 1rem;
}
#landing-content {
  /* section-what */
}
#landing-content .section-what {
  padding: 2rem 0;
  background-color: #f1f5f9;
}
@media (min-width: 768px) {
  #landing-content .section-what {
    padding: 4rem 0;
  }
}
#landing-content .section-what .section-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  #landing-content .section-what .section-grid {
    justify-content: center;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
}
#landing-content .section-what .section-grid .tile {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  width: calc(50% - 0.5rem);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.15s linear;
}
@media (min-width: 768px) {
  #landing-content .section-what .section-grid .tile {
    width: calc(33.3333333333% - 1rem);
    margin: 0.5rem;
    margin-bottom: 1rem;
  }
  #landing-content .section-what .section-grid .tile:hover {
    transform: scale(1.02);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 1200px) {
  #landing-content .section-what .section-grid .tile {
    width: calc(25% - 1rem);
    margin-bottom: 1rem;
  }
}
#landing-content .section-what .section-grid .tile .tile-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  padding-top: 0;
  padding-bottom: 1rem;
  width: 100%;
  background-color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  #landing-content .section-what .section-grid .tile .tile-caption {
    padding: 1.5rem 1rem;
    padding-top: 0.5rem;
  }
}
#landing-content .section-what .section-grid .tile .tile-caption h3 {
  margin-bottom: 0.5rem;
}
#landing-content .section-what .section-grid .tile .tile-caption p {
  margin-bottom: 0;
}
#landing-content .section-what .section-grid .tile .tile-caption:before {
  content: "";
  display: block;
  position: absolute;
  top: -0.95rem;
  left: 0;
  height: 1rem;
  width: 100%;
  background-color: #fff;
  border-top-right-radius: 1rem;
}
#landing-content {
  /* section-contact */
}
#landing-content .section-contact {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  #landing-content .section-contact {
    padding: 4rem 0;
  }
}
#landing-content .section-contact .section-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#landing-content .section-contact .section-grid .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin: 0.5rem;
  text-align: center;
  width: 40%;
}
@media (min-width: 768px) {
  #landing-content .section-contact .section-grid .contact {
    width: 180px;
  }
}
#landing-content .section-contact .section-grid .contact:hover {
  color: #2f353d;
}
#landing-content .section-contact .section-grid .contact:hover .contact-icon {
  background-color: #2f353d;
}
#landing-content .section-contact .section-grid .contact .contact-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #83838f;
  border-radius: 100%;
  margin-bottom: 0.5rem;
  transition: all 0.1s linear;
}
#landing-content .section-contact .section-grid .contact .contact-icon img {
  width: 32px;
  filter: invert(100%) sepia(0%) saturate(1306%) hue-rotate(20deg) brightness(119%) contrast(100%);
}
#landing-content {
  /* section-faq */
}
#landing-content .section-faq {
  padding: 2rem 0;
  background-color: #f1f5f9;
}
@media (min-width: 768px) {
  #landing-content .section-faq {
    padding: 4rem 0;
  }
}
#landing-content .section-faq .section-accordion .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#landing-content .section-faq .section-accordion .item a:focus {
  outline: none !important;
}
#landing-content .section-faq .section-accordion .item .content {
  display: none;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
}
#landing-content .section-faq .section-accordion .item .content ol {
  list-style: numbered;
}
#landing-content {
  /* section-legales */
}
#landing-content .section-legales {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  #landing-content .section-legales {
    padding: 4rem 0;
  }
}

/*# sourceMappingURL=landing.css.map */
