@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
  --color-paleblue: #6bbac1;
  --color-lightblue: #8cb9bd;
  --color-gold: #a97c3d;
  --color-dark: #363636;
  --color-verydark: #0c0c0c;
  --color-darkgray: #515151;
  --color-gray: #727272;
  --color-lightgray: #acacac;
  --color-venue-card-dark: #505050ff;
  --color-venue-card-light: #e6e4e3ff;
  --color-testimonials-bg: #2d2c2c;
  --font-main: "Oswald", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
}

.finder {
  border: .01em solid red;
}

.fitpage {
  border: .01em solid transparent;
}

.container {
  padding-right: var(--bs-gutter-x, 0.65rem);
  padding-left: var(--bs-gutter-x, 0.65rem);
  margin-right: auto;
  margin-left: auto;
}

/* Max-width changes by breakpoint */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

  /* #region Gobal Style Home Page*/
  .section-format {
    padding: 4em 0;
  }

  .section-format h2 {
    margin-top: 0;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.8em;
  }

  .section-format h2 span {
    border-bottom: .3em solid var(--underline-color, transparent);
  }

  .section-blue {
    color: white;
    background-color: var(--color-lightblue);
    --underline-color: var(--color-gold);
  }

  .section-white {
    --underline-color: var(--color-paleblue);
  }

  .section-gray {
    --underline-color: var(--color-paleblue);
    background-color: #3a3a3a;
    color: white;
  }

  .section-dark {
    --underline-color: var(--color-paleblue);
    background-color: var(--color-verydark);
    color: white;
  }

  .section-cta {
    text-decoration: none;
    color: black;
    display: block;
    font-weight: bold;
    border: .1em solid black;
    border-radius: 1em;
    padding: .5em;
    text-align: center;
    text-transform: uppercase;
  }

  @media (min-width: 992px) {
    .section-format h2 {
      font-size: 2.5em;
    }

    .section-cta {
      font-size: 1.2em;
      letter-spacing: .2em;
      text-align: center;
      border: none;
      background-color: transparent !important;

      
    }
  }
  /* #endregion */

/* #region global style single pages */
.single-page-format {
  padding: 7em 0;
}

.single-page-format a {
  color: var(--color-paleblue);
  text-decoration: none;

}

.single-page-format h1 {
  margin-bottom: 1.5em;
}

.single-page-format span {
  border-bottom: .3em solid var(--underline-color);
}

@media (min-width: 992px) {
  .single-page-format {
    padding: 7em 0;
    font-size: 1.5em;
  }

  .single-page-format p {
    width: 70%;
  }

}
/* #endregion */

/* #region global style testimonials */
blockquote {
  margin: 0;
}

.testimonials {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-bottom: 1em;
}

.testimonial {
  position: relative;
  border-radius: 1em;
  padding: 1em;
  background-color: var(--color-testimonials-bg);
}

.bi-quote {
  position: absolute;
  top: -.7em;
  font-size: 2.5em;
  left: 0%;
}

@media (min-width: 992px) {
  .testimonial p {
    width: unset;
  }
}
/* #endregion */