/* Move down content because we have a fixed navbar that is 3.5rem tall */
body {
  background-repeat: no-repeat;
  background-size: cover;
}

.jumbotron {
  background-image: url(../assets/headerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
}

#myBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #00a44b;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
}

#myBtn:hover {
  background-color: #555;
  /* Add a dark-grey background on hover */
}

h5 {
  font-weight: bolder;
}

h1 {
  font-weight: bolder;
}

.card {
  background-color: transparent;
  border: none;
}

.display-3 {
  font-size: 3.5rem;
  font-weight: bolder;
}

.clogo {
  width: inherit;
}

.example-seven {
  border-radius: 50%;
  background: radial-gradient(#ffffff, #1b69b1);
  height: 195px;
  width: 195px;
  text-align: center;
  vertical-align: middle;
}

img.example-seven:hover {
  border-radius: 50%;
  background: radial-gradient(#ffffff, #002e58);
  height: 195px;
  width: 195px;
  text-align: center;
  vertical-align: middle;
}

.example-eight {
  height: 122px;
  width: 195px;
}

.our-services {
  padding-top: 20px;
}

.our-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.our-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.our-services .card-title a {
  color: #222222;
}

.our-services .card-text {
  color: #5e5e5e;
}

.our-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.our-services .read-more a:hover {
  text-decoration: underline;
}

.our-services .card:hover .card-body {
  background: #00a44b;
}

.our-services .card:hover .read-more a, .our-services .card:hover .card-title, .our-services .card:hover .card-title a, .our-services .card:hover .card-text {
  color: #fff;
}