body {
  position: relative;
}

.mw {
  max-width: 2000px;
  padding: 0 5rem 0 5rem;
  margin: 0 auto;
}

.fade-left {
  opacity: 0;
}

.fade-in-img {
  animation: fadeInRight;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1s;
  opacity: 1;
  /* don't forget to set a duration! */
}

.fade-in-left {
  animation: fadeInLeft;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 1s;
  opacity: 1;
  /* don't forget to set a duration! */
}

.bounce-in-left {
  animation: bounceInLeft;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s;
  /* don't forget to set a duration! */
}

.cta-btn {
  background-color: #2C5BF9;
}

#home {
  padding-top: 120px;
}

#message,
#message-contact {
  height: 100px;
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.container {
  /* max-width: 1200px; */
}

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

.section-container {
  padding-top: 115px;
}

.pricing-header {
  max-width: 700px;
}

#hero-content {
  /* overflow: auto; */
  /* position: relative; */
  min-height: 670px;
}



#hero-content::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: block;
  background: rgba(0, 0, 0, .8) url('/public/images/hero.webp');
  background-size: cover;
  background-blend-mode: darken;
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  -o-filter: blur(1px);
  -ms-filter: blur(1px);
  filter: blur(1px);
}


.loginContainer {
  padding-top: 120px;
}

.legalContainer {
  padding-top: 120px;
}

.neg-margin {
  /* padding-top: 70px; */
}


main {
  /* padding-top: 70px; */
  min-height: 500px;
}

.top-toggler {
  opacity: 1;
}

.line-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}

/* rtl:end:ignore */


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0;
  /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
  max-width: 1200px;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 26%;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {



  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }

  #hero-header {
    height: 100vh;
  }



  main {
    padding-top: 0px;
  }
}

@media (orientation: landscape) and (max-width: 670px) {
  main {
    /* padding-top: 71px; */
  }
}

@media (max-width: 336px) {
  main {
    /* display: none; */
    /* padding-top: 71px; */
  }

  #home {
    padding-top: 0px;
  }


}

@media (max-width: 575.98px) {
  .contactForm {
    display: none;
  }




}

@media (max-height: 500px) {
  main {
    /* padding-top: 71px; */
  }
}

@media (min-width: 992px) {
  #home {
    padding-top: 0;
  }

  #hero-header {
    min-height: 1100px;
  }
}