html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  background: #ffffff;
  color: #000;
}

.spacer {
  height: 164px;
}

@media (min-width: 576px) {
  .spacer {
    height: 167px;
  }
}

@media (min-width: 768px) {
  .spacer {
    height: 164px;
  }
}

@media (min-width: 992px) {
  .spacer {
    height: 198px;
  }
}

/* Text Styling */

.text-theme {
  color: #006510;
}

.text-tighten {
  letter-spacing: -.1px;
}

.no-break-space {
  white-space: nowrap;
  display: inline-block!important;
}

.no-break-space::after {
  content: "\00a0";
}

p {
  font-size: 18px;
  text-align: justify;
  hyphens: auto;
}

.no-hyphens {
  hyphens: none;
}

a {
  color: #00a31a;
  text-decoration: none;
  text-shadow: none;
}

a:hover {
  color: #008c16;
  text-decoration: none;
  text-shadow: none;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: solid 2px #007800;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.3;
}

.intro-hp {
  font-family: 'Nothing You Could Do', serif;
  font-size: calc(18px + 3vw);
  line-height: 1.3;
}

@media (min-width: 576px) {
  .intro-hp {
    font-size: 38px;
  }
}

@media (min-width: 768px) {
  .intro-hp {
    font-size: 35px;
  }
}

@media (min-width: 991px) {
  .intro-hp {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .intro-hp {
    font-size: 52px;
  }
}

.signature {
  font-size: calc(22px + 1vw);
  font-family: 'Nothing You Could Do';
}

@media (min-width: 1400px) {
  .signature {
    font-size: 36px;
  }
}

.list-services {
  line-height: 1.4;
  padding-left: 80px;
}

@media (min-width: 360px) {
  .list-services {
    line-height: 1.4;
    column-gap: calc(-25px + 14vw);
    padding-left: calc(-32px + 16vw);
  }
}

@media (min-width: 360px) {
  .list-services {
    column-count: 2;
  }
}

@media (min-width: 576px) {
  .list-services {
    padding-left: 68px;
    column-gap: 30px;
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .list-services {
    column-count: 3;
  }
}

@media (min-width: 992px) {
  .list-services {
    font-size: 22px;
    margin-left: calc(0px + 3vw);
  }
}

@media (min-width: 1200px) {
  .list-services {
    column-count: 4;
  }
}

/* Misc Styling */

.img-shadow {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 1));
}

.bg-theme {
  background: #d2d2d2;
}

.ratio-9x16 {
  --bs-aspect-ratio: calc(16 / 9 * 100%);
  max-width: 380px;
}

.s-margin {
  scroll-margin: 60px;
}

@media (min-width: 768px) {
  .s-margin {
    scroll-margin: 180px;
  }
}

@media (min-width: 992px) {
  .s-margin {
    scroll-margin: 210px;
  }
}

/* Button Styling */

.btn:not(:disabled):not(.disabled) {
  background-color: #007800;
  box-shadow: none;
  border-width: 0px;
  text-shadow: 1px 1px 1px #000;
}

.btn:not(:disabled):not(.disabled):hover {
  background-color: #006510;
  transition: all .5s;
}

.signup-but {
  font-size: calc(16px + 2.2vw);
  line-height: 1.4;
  font-style: italic;
  font-weight: 700;
  border-radius: 5px !important;
  transition: all .7s !important;
  border: none;
  background-color: #007800;
  padding: 6px 20px;
}

@media (min-width: 1400px) {
  .signup-but {
    font-size: 47px;
  }
}

.signup-but:hover {
  background-color: #006510 !important;
  transition: all .7s !important;
  transform: scale(1.05,1.05) !important;
}

