/* Bootstrap overrides */

:root {
  /* --font-family-sans-serif: "Poppins", Arial, sans-serif, Roboto; */
  /* --font-family-sans-serif: "Open Sans", sans-serif; */
}

html {
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  /* color: #03363d; */
  /* color: #ddd; */
  /* color: #000; */
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.25rem;
}

/**********************/
/* H1 Media Queries */
/**********************/
/* Small Devices  */
h1,
.h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
@media (min-width: 576px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}
/*Desktop*/
@media (min-width: 992px) {
  h1,
  .h1 {
    font-size: 3.5rem;
  }
}
/* XL Desktop*/
@media (min-width: 1400px) {
  h1,
  .h1 {
    font-size: 2.75rem;
  }
}

/**********************/
/* H2 Media Queries */
/**********************/
/* Small Devices  */
h2,
.h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
@media (min-width: 576px) {
  h2,
  .h2 {
    font-size: 2.5rem;
  }
}
/*Desktop*/
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 3rem;
  }
}
/* XL Desktop*/
@media (min-width: 1400px) {
  h2,
  .h2 {
    font-size: 3.25rem;
  }
}

/**********************/
/* H3 Media Queries */
/**********************/
/* Small Devices  */
h3,
.h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
@media (min-width: 576px) {
  h3,
  .h3 {
    font-size: 1.5rem;
  }
}
/*Desktop*/
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
/* XL Desktop*/
@media (min-width: 1400px) {
  h3,
  .h3 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

h4,
.h4 {
  font-size: 2rem;
  letter-spacing: 0.1px;
}

/* h5,
.h5 {
  font-size: 0.875rem;
  line-height: 1.42;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0;
} */

/* h6,
.h6 {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0;
} */

/* .lead {
  font-size: 1.00125rem;
  font-weight: 400;
}
@media (min-width: 992px) {
  .lead {
    font-size: 1.125rem;
  }
} */

.lead {
  font-size: 1.25rem;
  /* font-weight: 500; */
}

@media (max-width: 991.98px) {
  .lead {
    font-size: 1.2rem;
  }
}

.display-1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.07;
  margin-bottom: 1.5rem;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.07;
  margin-bottom: 1.5rem;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.07;
  margin-bottom: 1.5rem;
}

.display-4 {
  font-size: 1.9985rem;
  font-weight: 700;
  line-height: 1.07;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .display-4 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.feature-subheading {
  font-size: 1.8rem;
}

.container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

.nav-link {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.modal-body {
  padding: 2rem;
}
.modal-header {
  padding: 0px;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-backdrop {
  background-color: darkslategrey;
}

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}
