@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body,
html {
  /* reset margin and padding so there's no gap between the nav and the screen edges */
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-behavior: smooth;
}

.content-wrapper {
  /* this is the main content wrapper, it will push the footer to the bottom of the page */
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none; /* Remove default border */
  outline: none; /* Remove focus outline */
}

.map-marker {
  font-weight: bold;
}

:root {
  --primary: rgb(42, 143, 206);
  --primaryLight: rgb(0, 182, 238);
  --secondary: rgb(125, 182, 19);
  --secondaryLight: rgb(200, 213, 42);
  --headerColor: #1a1a1a;
  --giroBlue: #191b48;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --gradient-color: #fefefe;
  --bg-color: #b9b9b9;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75em, 7.82vw, 6.25em) 1rem;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}
.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}
.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

.cs-text-important {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

.cs-button-solid {
  font-size: 1rem;
  /* 46px - 56px */
  line-height: clamp(2.875em, 5.5vw, 3.5em);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: #fff;
  min-width: 9.375rem;
  padding: 0 1.5rem;
  background-color: var(--secondary);
  border-radius: 0.25rem;
  display: inline-block;
  position: relative;
  z-index: 1;
  /* prevents padding from adding to the width */
  box-sizing: border-box;
}
.cs-button-solid:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  background: #000;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0.25rem;
  transition: width 0.3s;
}
.cs-button-solid:hover:before {
  width: 100%;
}
/* Mobile - 360px */

#list-825 {
  margin: 0 0 2rem 0;
  /* 16px - 20px */
  padding-left: clamp(1rem, 2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  /* 8px - 12px */
  gap: clamp(0.5rem, 1vw, 0.75rem);
}
#list-825 .cs-li {
  list-style: none;
  /* 14px - 18px */
  font-size: clamp(0.875rem, 1.3vw, 1.125rem);
  line-height: 1.5em;
  margin: 0;
  color: var(--bodyTextColor);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#list-825 .cs-number {
  /* 14px - 16px */
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  /* 24px - 28px */
  width: clamp(1.5rem, 2.9vw, 1.75rem);
  height: clamp(1.5rem, 2.9vw, 1.75rem);
  margin-right: 0.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;

  align-self: flex-start;
  /* prevents flexbox from squishing it */
  flex: none;
}

/* Google maps info box code */

.map_info {
  font-weight: bold;
  display: inline;
}

.web_link {
  color: var(--secondary);
  text-decoration: underline;
}

.web_link_blue {
  color: var(--primary);
}

.web_link_black {
  color: var(--headerColor);
  font-weight: bold;
}

.web_text_blue {
  color: var(--primary);
}

.required {
  color: red;
}

.cs-text-list-ul {
  font-size: var(--bodyFontSize);

  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  margin-top: -1rem;
  color: var(--bodyTextColor);
}

.cs-text-list {
  font-size: var(--bodyFontSize);
  margin-top: -10rem;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}
