.inner-banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 150px 0 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  z-index: 1;
}
.inner-banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.0088410364) 100%);
}
.inner-banner .inner-banner-caption {
  text-align: center;
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.inner-banner .inner-banner-caption .inner-caption {
  background-color: rgba(255, 255, 255, 0.93);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 5px 60px;
  border-radius: 3px;
}
.inner-banner .inner-banner-caption h1 {
  font-size: 3.5rem;
  line-height: 4.5rem;
  color: #111;
  font-weight: 500;
  text-transform: capitalize;
}
.inner-banner .inner-banner-caption h5 {
  font-size: 2.2rem;
  color: #666e74;
  margin-top: 2rem;
  line-height: 3rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 3px;
}

/******* contact **********/
.contact-block .form-wrap {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.1);
}
.contact-block .each-address-wrap {
  display: flex;
  align-items: center;
  background-color: #f6f7fb;
  padding: 20px;
  margin: 0 0 15px;
}
.contact-block .each-address-wrap:not(:last-child) {
  margin-bottom: 20px;
}
.contact-block .each-address-wrap .contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  background-color: #08548c;
  color: #fff;
  font-size: 2rem;
  line-height: 3rem;
  border-radius: 5px;
}
.contact-block .each-address-wrap .contact-desc h3 {
  color: #222;
}
.contact-block .each-address-wrap .contact-desc a {
  color: #222;
}
.contact-block .each-address-wrap .contact-desc p {
  margin-bottom: 0;
  color: #222;
}

.color-bg {
  background-color: #b8050a;
}

.img-block {
  border: 2px solid #08548c;
  padding: 15px;
}
.img-block.left {
  border-radius: 0px 40px 40px 0px;
}
.img-block.right {
  border-radius: 40px 0px 0px 40px;
}

@media (max-width: 767px) {
  .inner-banner {
    padding: 80px 0;
  }
  .inner-banner .inner-banner-caption {
    padding-top: 0;
  }
  .inner-banner .inner-banner-caption h1 {
    font-size: 22px;
    line-height: 32px;
  }
  .inner-banner .inner-banner-caption .inner-caption {
    padding: 5px 15px;
  }
}