body {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 18px;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: "Sorts Mill Goudy", serif;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.3rem;
}

a, a:visited {
  color: #1e90ff;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

a:hover {
  opacity: 0.7;
}

a.btn {
  background-color: #1e90ff;
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  transition: background-color 0.3s ease-in-out;
  margin-top: 1.5rem;
}
a.btn:hover {
  opacity: 1;
  background-color: rgba(30, 144, 255, 0.7);
  color: #1e1e1e;
}

.bgBlue {
  background-color: #1e90ff;
  color: #ffffff;
}
.bgBlue a, .bgBlue a:visited {
  color: #ffffff;
}
.bgBlue a.btn {
  background-color: #1e1e1e;
  color: #ffffff;
}
.bgBlue a.btn:hover {
  background-color: #ffffff;
  color: #1e1e1e;
}

.vertical-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .inner a.brand img {
  width: 200px;
  height: auto;
}
#header .inner .cta {
  text-align: right;
}
#header .inner .cta .copy {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
  font-weight: bold;
}
#header .inner .cta a.phone {
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

#slider #slider-container .slick-slide div, #slider #slider-container .slide {
  width: 100%;
  height: 70vh;
}
#slider #slider-container .slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#slider #slider-container.slick-dotted.slick-slider {
  margin-bottom: 0;
}
#slider .slick-dots {
  bottom: 1rem;
}
#slider .slick-dots li {
  width: 60px;
  height: 8px;
}
#slider .slick-dots li button {
  width: 60px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
}
#slider .slick-dots li button:before {
  content: "";
  width: 60px;
  height: 8px;
}
#slider .slick-dots li.slick-active button:before {
  background-color: #ffffff;
  width: 60px;
  height: 8px;
  content: "";
}

#about {
  text-align: center;
}

#services .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
#services .card-grid .card {
  flex: 0 0 calc(33.3333% - 1rem);
  border-radius: 0.5rem;
}
#services .card-grid .card .img {
  height: 23vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
#services .card-grid .card .copy h3 {
  color: #1e90ff;
}
#services .card-grid .card .copy .inner {
  padding: 0.5rem 1rem;
}

#footer {
  color: #666666;
  text-align: center;
  font-size: 0.8rem;
}

/* MEDIUM */
@media only screen and (max-width: 1300px) {
  #services .card-grid {
    gap: 1rem;
  }
  #services .card-grid .card {
    flex: 0 0 calc(50% - 1rem);
  }
}
/* SMALL */
@media only screen and (max-width: 767px) {
  #header {
    padding: 0.5rem;
  }
  #header .inner a.brand img {
    width: 125px;
  }
  #header .inner .cta {
    text-align: right;
  }
  #header .inner .cta .copy {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 1.1rem;
    font-weight: bold;
  }
  #header .inner .cta a.phone {
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: bold;
  }
  #services .card-grid {
    gap: 1rem;
  }
  #services .card-grid .card {
    flex: 0 0 calc(100% - 1rem);
  }
}/*# sourceMappingURL=main.css.map */