:root {
  --main-font: 'Cairo', sans-serif;
}

body {
  font-family:var(--main-font);
}

h1 {
  text-align: center;
}

#mainBannerCarousel {
  max-height: 600px;

  .carousel-item img {
    max-height: 600px;
    object-fit: fill;
  }
}

.site-logo {
  max-width: 100%;
  height: 60px;
}

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

a:hover {
  color: black;
  text-decoration: none;
}

.breadcrumb {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: medium;
  text-transform: none;
  color: white;
  h4 {
    font-weight: 600;
    margin-top: 7px;
  }
  a {
    color: #000;
  }
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  border-bottom: solid thin lightgray;
}

.breadcrumb .page-heading {
  color: white;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
}

.breadcrumb ol {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.breadcrumb li {
  color: white;
  list-style: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: small;
}

.breadcrumb-item+.breadcrumb-item {
  padding-right: 0px;
  padding-left: 0px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #000;
  padding: 0px 3px;
}

.breadcrumb li:after {
  margin: 0 10px;
}

.breadcrumb li:last-child:after {
  margin: 0;
}

.card-img-top {
  height: 250px;
  max-width: 100%;
  object-fit: contain;
}

.post-img img {
  height: 400px;
  object-fit: contain;
}

.post-cover-img img {
  height: 200px;
  object-fit: contain;
}

.fa-check {
  color: green;
}

.fa-times {
  color: red;
}

.posts-indicators {
  bottom: -70px;
  filter: invert(100%);
  margin-bottom: 50px;
}

.posts-carousel {
  height: 320px;
}

.google-map {
  iframe {
    width: 100%;
    height: 400px;
  }
}

.contact-us {
  background-color: #104f955e;
  border: 1px solid #104f955c;
}

.post-card {
  width: fit-content;
}

@media (max-width: 800px) {
  .card-img-top {
    height: 150px;
  }

  .posts-carousel {
    height: 230px;
  }

  .posts-indicators {
    bottom: -90px;
    filter: invert(100%);
    margin-bottom: 50px;
  }

  .post-img img {
    height: 200px;
  }
}