.details_thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;

  &::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(55, 60, 199, 0.267);
    z-index: -1;
  }

  .details_thum_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 100%;

    h2 {
      font-size: 42px;
      font-weight: 600;
      color: $white;
      line-height: 52px;
    }
  }
}

.details_content_section {
  padding: 30px 0 50px 0;

  .details_content_wrappper {
    .details_content_img {
      display: flex;
      justify-content: center;

      img {
        max-height: 500px;
        width: 100%;
        object-fit: contain;
      }
    }

    .details_content {
      padding-top: 15px;

      h2 {
        font-size: 38px;
        font-weight: 600;
        color: $black;
        line-height: 47px;
      }

      p {
        font-size: 14px;
        font-weight: 400;
        color: $text;
        line-height: 23px;
      }
    }
  }
}


.sub_section_heading {
  font-size: 30px;
  font-weight: 500;
  color: $white;
  text-align: center;
  margin-bottom: 20px;
}

.sub_section_heading span {
  position: relative;
  display: inline-block;
  padding: 10px 10px;
  border-radius: 10px;
  border-bottom: 2px solid rgb(255, 255, 255);
}

.sub_section_heading span:after {
  content: '';
  position: absolute;
  bottom: calc(-100% - 5px);
  margin-left: -10px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border-top: 2px solid rgb(255, 255, 255);
}

.contact {
  padding: 60px 0;

  .contact_wrapper {
    .contact_map {
      .map_wrapper {
        height: 400px;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
      }
    }

    .submit_btn {
      padding: 8px 30px;
      background-color: $primaryColor;
      border-radius: 8px;
      color: $white;
      margin-top: 15px;

      &:hover {
        background-color: #157263;
      }
    }
  }
}