body {
  font-family: 'Source Sans Pro', sans-serif;

  overflow-x: hidden;
}

.nav-link {
  transition: 100ms;
  color: rgb(47, 47, 47);
}

.nav-link:hover {
  transition: 300ms;
  color: #1417e6;
}

.navbar-nav .nav-link.active {
  color: #1417e6;
}

@media (max-width: 991.33px) {
  .navbar {
    text-align: center;
  }
  .navbar-brand {
    margin: auto;
  }
  .navbar-toggler {
    position: absolute;
    right: 0;
    margin-right: 20px;
    top: 0;
    margin-top: 20px;
  }
}

.cover-bg {
  min-width: 700px;
  filter: brightness(50%);
}

.map-bg {
  background-image: url('/resources/img/map-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

@media (max-width: 767.33px) {
  .about-col-rev-sm {
    flex-direction: column-reverse;
  }
}

.animation-css {
  /* padding-right: 9%; */
  opacity: 0;
}

/*services*/

.services-icon {
  background-color: #0d6efd;
  border-radius: 50%;
  padding: 5%;
  color: #fefeff;
}

/* serve flip image */

.flip-box {
  background-color: transparent;
  /* min-width: 80px;
  max-width: 300px; */
  width: 300px;
  height: 230px;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.flip-box-back {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  transform: rotateY(180deg);
}

/* Image Filter */

#gallery img {
  padding: 0 2%;
}

#buttons button.active {
  background-color: #0d6efd;
  color: rgb(255, 255, 255);
}
