@import url("https://fonts.googleapis.com/css?family=Montserrat:600,700|Roboto:300,400,700");
html, body {
  background-color: #fff;
  color: rgb(0, 0, 0);
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  font-weight: 500;
}

* {
  margin: 0;
}

.font-weight-400 {
  font-weight: 400;
}

.main-nav {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13pt;
  position: sticky;
  z-index: 200;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  height: 50px !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#landing-section {
  position: relative;
}

.content-2 {
  z-index: 10;
  position: relative;
  padding-top: 50px;
}
.content-2 h1 {
  text-align: center;
  color: rgb(0, 0, 0);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 25pt;
  margin-bottom: 15px;
}

.content-3 {
  z-index: 10;
  position: relative;
  padding-top: 50px;
}
.content-3 h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 25pt;
  margin-bottom: 15px;
}

.content-3 {
  padding-top: 50px !important;
}

.content {
  z-index: 10;
  position: relative;
  padding-top: 100px;
}
.content h1 {
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30pt;
  margin-bottom: 15px;
}
.content h2 {
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 25pt;
  margin-bottom: 15px;
}
.content .cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.content .cards .info-card {
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  margin: 45px;
  width: 25%;
  box-shadow: 10px 5px 22px 0px rgba(0, 0, 0, 0.61);
  text-decoration: none;
  color: #333; /* Replace with your $text-primary value */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content .cards .info-card img {
  height: 166px;
  margin: 15px;
  transition: transform 0.3s ease;
}
.content .cards .info-card .card-title {
  font-family: "Roboto", sans-serif;
  font-size: 20pt;
  font-weight: 300;
}
.content .cards .info-card .card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 14pt;
  font-weight: 300;
}
.content .cards .info-card .card-desc.smaller-text {
  font-size: 13pt;
}
.content .cards .info-card:hover {
  box-shadow: 10px 5px 30px 0px rgba(0, 0, 0, 0.75);
}
.content .cards .info-card:active {
  box-shadow: 10px 5px 15px 0px rgba(0, 0, 0, 0.5);
}

.text-more {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20pt;
  color: #fff;
  line-height: 0;
}
.text-more img {
  margin-top: -15px;
  width: 53px;
  fill: #fff;
}

.text-roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 12pt;
}

.rounded-img {
  border-radius: 18px;
  box-shadow: 2px 3px 17px 0px rgba(0, 0, 0, 0.44);
}

.red-background {
  z-index: 1;
}

.red-background::before {
  content: "\a";
  background: url("/static-assets/images/background.jpg");
  background-size: 100%;
  filter: blur(2px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.red-background::after {
  content: "\a";
  background-color: rgba(255, 37, 37, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
}

.inner-section {
  position: relative;
}

.page-section {
  margin-bottom: 1em;
}

.footer {
  text-align: center;
}

.alternative-price {
  color: rgb(192, 192, 192);
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column !important;
  }
  .info-card {
    width: 95% !important;
    margin: 10px !important;
    box-shadow: none !important;
  }
  .info-card .card-desc {
    display: none;
  }
  .red-background::before {
    filter: none !important;
    background: none;
  }
}
@media (max-width: 992px) {
  .main-nav li > a {
    text-align: center;
  }
  .main-nav li:first-child > a {
    margin-top: 1em;
  }
}
@media (min-width: 992px) {
  .main-nav {
    height: 50px;
  }
  .main-nav li {
    padding-right: 2em;
  }
}/*# sourceMappingURL=app.css.map */