/* 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: 14px 24px 13px;
  }
}
#landing-content .btn.btn-orange {
  background-color: #f25529;
}
#landing-content .btn.btn-orange:hover {
  opacity: 0.8;
}
#landing-content .btn:focus {
  outline: none;
}
#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-copy */
}
#landing-content .section-copy {
  padding: 2rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  #landing-content .section-copy {
    padding: 4rem 0;
  }
}
#landing-content .section-copy h1 {
  margin-top: 0 !important;
  margin-bottom: 0.5rem;
  color: #2f353d;
}
#landing-content .section-copy h1 span {
  display: inline-block;
}
#landing-content .section-copy p {
  margin-bottom: 2rem;
}
#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 */
