.opening-section {
  display: flex;
  flex-wrap: wrap;
  height: calc(65vh - 70px);
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .opening-section {
    height: calc(85vh - 70px);
  }
}
.opening-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/images/about-us-banner.jpg");
  background-size: cover;
  background-position-x: 60%;
}
.opening-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.opening-section h1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: #F2F2F2;
  font-size: 36px;
  text-align: center;
  width: 85%;
  z-index: 99;
}

.floating-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1366px;
  z-index: 99;
  flex-direction: column;
  gap: 2rem;
  background: #F2F2F2;
  padding: 24px;
  text-align: justify;
  -moz-box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  margin-top: -40%;
  z-index: 99;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .floating-section {
    margin-top: -20%;
    padding: 48px;
  }
}
.floating-section h1 {
  color: white;
  font-size: 36px;
  text-align: center;
  width: 85%;
}
.floating-section .btn {
  height: 48px;
  padding: 0 24px;
  width: 40%;
  line-height: 48px;
}

.service-section {
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .service-section {
    max-width: 1366px;
  }
}
.service-section .service-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.service-section .service-wrapper .service {
  background: #F2F2F2;
  -moz-box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px;
}
@media screen and (min-width: 1024px) {
  .service-section .service-wrapper .service {
    padding: 36px;
  }
}
.service-section .service-wrapper .service .icon {
  color: #C30808;
  font-size: 36px;
  display: inline-flex;
  font-weight: 700;
}
.service-section .service-wrapper .service .content {
  display: inline-flex;
  flex-wrap: wrap;
  flex: 0 0 75%;
}
@media screen and (min-width: 1024px) {
  .service-section .service-wrapper .service .content {
    flex: 1;
  }
}
.service-section .service-wrapper .service .content h4 {
  width: 100%;
  margin-bottom: 0.5rem;
}
.service-section .service-wrapper .service a {
  width: 100%;
  margin-top: 14px;
  text-align: right;
  color: #C30808;
  text-decoration: underline;
  font-weight: 700;
}
.service-section .service-wrapper .service a .icon {
  font-size: 12px;
}
