body {
  background-color: #fafafa;
}

.content-padding {
  padding-left: 5%;
  padding-right: 5%;
}

h1 {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 40px;
}

h2 {
  color: #fafafa;
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-family: "Playfair Display";
  font-weight: 500;
  font-size: 24px;
}

h6 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

p {
  font-family: "Heebo";
  font-weight: 400;
  font-size: 16px;
}

.nav-link {
  font-size: 16px;
}

.search-box {
  border-radius: 12px;
}

li,
a.quick-link {
  font-size: 16px;
  color: #fafafa;
}

.navbar {
  background-color: #ffffff;
  padding-left: 5%;
  padding-right: 5%;
}

.blue-box {
  background-color: #01a7d7;
  color: #ffffff;
  min-height: 20px;
}

.nav-black {
  color: #171717 !important;
}

.blue-icon {
  color: #01baef;
}

.custom-button {
  border-radius: 12px;
}

.search-button {
  margin-right: 10px;
}

footer {
  background-color: rgb(0, 91, 117);
}

div.row {
  margin: 0;
}

.footer-top {
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-logo {
  padding-bottom: 20px;
}

.search-button {
  background-color: #e65c4f;
}
.search-button:active {
  background-color: #e65c4f !important;
  border-color: #e65c4f !important;
}
.search-button:hover {
  background-color: #f46355;
  border-color: #f46355;
}

.contact-button {
  border-color: #e65c4f !important;
  color: #e65c4f;
  border-radius: 12px;
}

.contact-button:hover {
  background-color: #e65c4f;
  border-color: #e65c4f;
}

.contact-button:active {
  background-color: #e65c4f !important;
  border-color: #e65c4f;
}

.nav-black:hover {
  color: #01a7d7 !important;
}

.dropdown-menu a:focus {
  background-color: #e65c4f !important;
}

.hero .bg-image {
  border-radius: 32px;
  /* margin-top: 24px; */
  height: 300px;
}

.animated {
  animation: rainbow 5s ease infinite;
}

@keyframes rainbow {
  25% {
    color: rgb(255, 255, 255);
  }
  50% {
    color: #bfe5ef;
  }
  75% {
    color: #01a7d7;
  }
  100% {
    color: #e35447;
  }
}


/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: rgba(0, 91, 117, 0.95); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #ccc;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #fff;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}