/**************** LANDING ****************/
.landing-sec::before {
  background-image: url("../media/services_landing.webp");
  background-position: bottom;
}


/**************** INFOBOX ****************/
.service-list a {
  text-decoration: none;
}
.info-box {
  position: relative;
  width: 100%;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 1em;
  margin-top: 1em;
  -moz-box-shadow: 0 0 15px #aaa;
  -webkit-box-shadow: 0 0 15px #aaa;
  box-shadow: 0 0 15px #aaa;
}
.img-sec {
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  /* border: solid 2px #588157; */
  border-bottom: 0;
}
.img-sec img {
  width: 100%;
  object-fit: cover;
  height: 200px;
  transition: transform .5s ease;
}
.title-sec {
  text-align: center;
  padding: 0.5em;
  letter-spacing: 0.1em;
  font-size: 22px;
  font-weight: bold;
  /* color: #007bff; */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: .5s ease;
  /* border: solid 3px #588157; */
}
.info-box:hover .img-sec img {
  transform: scale(1.25);
}
.info-box:hover .title-sec {
  background-color: #007bff;
  color: #fff;
  letter-spacing: 0.25em;
}




/**************** INFOBOX ****************/
.modal-header {
  background-color: #007bff;
  color: #fff;
}
.modal-header i {
  color: #fff;
  margin-right: 0.3em;
}
.modal-header h2 {
  font-weight: bold;
}
.modal-header .close {
  text-shadow: 0 1px 0 #fff;
  color: #fff;
}