.services {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 800px) {
  .services {
    width: 100%;
  }
}
.services > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: calc(25% - 50px);
  max-width: 400px;
}
@media (max-width: 1200px) {
  .services > div {
    flex-basis: calc(50% - 50px);
  }
}
@media (max-width: 800px) {
  .services > div {
    flex-basis: 100%;
  }
}
.services > div h3, .services > div div {
  padding: 0 25px;
}
.services > div h3 {
  display: flex;
  text-align: center;
  margin: 25px 0;
  font-size: 50px;
  font-weight: normal;
  font-family: "Benedict", serif;
  color: #335470;
  min-height: 150px;
  align-items: center;
}
.services > div > div {
  padding: 25px 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  background: #eff4f6;
  justify-content: space-between;
}
.services > div > div div {
  list-style: none;
  display: grid;
  grid-auto-rows: minmax(min-content, max-content);
}
.services > div > div div span {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 8px;
}
.services > div > div div span:not(:last-child) {
  position: relative;
}
.services > div > div div span:not(:last-child)::after {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 0;
  content: "";
  border-radius: 2px;
  border: solid #335470 1px;
  transition: opacity 0.2s, width 0.2s;
  bottom: -4px;
}
.services > div > div div span:not(:last-child)::after {
  width: 30%;
}

.services-cta {
  padding-top: 0 !important;
  display: flex;
  justify-content: center;
}
.services-cta a {
  font-size: 25px;
  background: #335470;
  border: none;
  color: #e5f0f2;
  display: inline-block;
  margin-top: 10px;
}

.testimonials {
  background: #335470;
  color: #fff;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .testimonials {
    padding: 12.5px;
  }
}
.testimonials .content {
  font-size: 25px;
  text-align: center;
  width: 80vw;
}
.testimonials .content blockquote {
  line-height: 1.5;
}
.testimonials .content .by-line {
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 10px 0;
}
.testimonials a {
  font-size: 22px;
}

.nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.nav-wrapper .nav {
  background: rgba(229, 240, 242, 0.7);
}
.nav-wrapper .top-banner {
  background: rgba(51, 84, 112, 0.7);
}
.nav-wrapper .logo img {
  opacity: 0.85;
}

.main-slider .main-slider-inner {
  position: relative;
  height: 100vh;
}
.main-slider .main-slider-inner .slider {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.main-slider .main-slider-inner .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}
.main-slider .main-slider-inner .slider .slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.main-slider .main-slider-inner .slider .slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.main-slider .main-slider-inner .slider .slide .slide-text {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(rgba(229, 240, 242, 0.6), rgba(229, 240, 242, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  color: #335470;
}
@media (max-width: 800px) {
  .main-slider .main-slider-inner .slider {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .main-slider .main-slider-inner .slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.5s;
    opacity: 0;
    pointer-events: none;
  }
  .main-slider .main-slider-inner .slider .slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .main-slider .main-slider-inner .slider .slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .main-slider .main-slider-inner .slider .slide .slide-text {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(rgba(229, 240, 242, 0.6), rgba(229, 240, 242, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    color: #335470;
  }
}
.main-slider .main-slider-inner .slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.about {
  background: #335470;
  color: #e5f0f2;
  position: relative;
}
.about > div {
  width: 80vw;
  text-align: center;
  margin: 0 auto;
  font-size: 33px;
  line-height: 1.5;
  padding: 1px !important;
}
.about > div a {
  font-size: 22px;
}

.desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: var(--header-background);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  font-family: Raleway, sans-serif;
}
.desc div {
  width: 80%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #335470;
  font-size: 45px;
  font-weight: normal;
  background: linear-gradient(rgba(229, 240, 242, 0.8), rgba(229, 240, 242, 0.8));
}
@media (max-width: 800px) {
  .desc div {
    width: 100%;
  }
}
.desc div h3 {
  font-size: 30px;
  margin: 20px;
  text-transform: uppercase;
  font-weight: normal;
}
.desc div p {
  font-size: 25px;
  max-width: 1100px;
  margin: 12.5px 0;
}
.desc div .button {
  font-family: "Baskerville", serif;
}

.as-seen-on {
  background: #335470;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Raleway", sans-serif;
}
.as-seen-on h2 {
  margin-top: 0;
  color: #e5f0f2;
}
.as-seen-on > div {
  width: 80vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  justify-content: space-evenly;
  align-items: center;
  grid-gap: 25px;
}

/*# sourceMappingURL=home.css.map */
