body {
  background-color: #f9f7f2;
  color: #545456;
  font-family: "Oswald", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
}

h1 {
  color: black;
  font-family: "Oswald", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
  font-size: 3em;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  color: black;
  font-family: "Oswald", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
  font-size: 2em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2em;
  padding: 8px 0;
}

h3 {
  color: #085aa6;
  font-family: "Oswald", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
  font-size: 2em;
  font-weight: 400;
  padding: 1em 0 0.5em 0;
}

h4 {
  color: black;
  font-family: "PT Sans Narrow";
  font-size: 1.75em;
  font-weight: bolder;
  text-align: center;
}

h6 {
  color: rgb(66, 66, 66);
  font-size: 1.5em;
}

a {
  text-decoration: none;
}

p,
li {
  color: #545456;
  font-family: "PT Sans Narrow";
  font-size: 1.5em;
  padding-bottom: 10px;
}

.center {
  text-align: center;
}

.center-white {
  color: white;
  text-align: center;
}

.line {
  border-top: 2px solid #512e46;
}

/* Containers */

.container-fluid {
  padding: 3% 5%;
}

.full-width {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

/* Sections */
.cream-section {
  background-color: #f9f7f2;
}

.deepv-section {
  background-color: #4882b4;
}

.lightb-section {
  background-color: #aad1f5;
}

.lightg {
  background-color: #f0f0f0;
}

/* Navigation */

.navbar {
  background-color: transparent;
  width: 100%;
  padding: 0.3% 7% 0.3% 7%;
}
.navbar-brand {
  color: black;
  font-size: 1.75em;
  padding: 2px 7px;
}

.nav-link {
  color: black;
  font-size: 1.1em;
  margin-right: 10px;
}

.navbar-toggler-icon {
  color: black;
}

.navbar .navbar-nav .nav-link:hover {
  background-color: #085aa6;
  color: #fff;
}

/* BUTTONS */

.home-btn {
  background-color: #568e97;
  color: white;
  border-color: #6ace98;
}

.btn-outline-violet {
  color: #6ace98;
  border-color: #6ace98;
}

.home-btn:hover {
  background-color: rgb(250, 195, 146);
  border-color: #568e97;
}

/* HOME */

.home-card {
  max-width: 100%;
  margin-bottom: 5px;
  background-color: #fff;
  border-radius: 20px;
}

.home-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
}

.home-p {
  color: #545456;
  font-family: "PT Sans Narrow";
  font-size: 1.35em;
  padding-bottom: 3px;
}

.contact-p {
  text-align: center;
  margin-bottom: 0;
}

.home-services {
  padding: 0 3em 3em 3em;
}

/* ======= FOOTER ======= */
.footer {
  background-color: #085aa6;
  color: white;
  text-align: center;
  padding-bottom: 1em;
  padding-top: 1em;
}

/* ======= HOME CAROUSEL ======= */

.carousel-control-prev,
.carousel-control-next {
  background-color: white;
  width: 4vh;
  height: 4vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  #carouselExampleControls .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  #carouselExampleControls .carousel-inner {
    display: flex;
  }
}

.carousel-item .img-fluid {
  width: 100%;
  height: 100%;
}

.card .img-wrapper {
  max-width: 100%;
  height: 13em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card img {
  max-height: 100%;
}
@media (max-width: 767px) {
  .card .img-wrapper {
    height: 17em;
  }
}

/* === CIRCLE CARDS === */

.card-link {
  text-decoration: none;
  color: #fff;
}
.card-circle {
  text-align: center;
  margin-top: 10px;
  margin-right: 1.5em;
  background: #27496d;
  border: 10px solid transparent;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  width: 250px;
  height: 250px;
}
.card-circle .card-title {
  font-weight: 600;
  font-size: 26px;
}
.card-circle .card-text {
  font-weight: 400;
}
.card-circle .card-icon i {
  font-size: 60px;
  display: block;
}
.card-circle:hover .btn {
  background: #00a8cc;
  color: #fff;
  border: 1px solid transparent;
}
.card-circle .btn:hover {
  transform: scale(1.1);
}
.card-circle:hover {
  border: 10px solid #00a8cc;
}
.card-circle:hover i {
  text-shadow: 0px -1px 10px #00a8cc;
  transform: scale(1.2) rotate(20deg);
}
