.breadcrumb {
  width: 100%;
  height: 150px;
  background-color: #edb010;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px; /* Height of the angle */
  background-color: #27ae60;
  transform: skewY(-5deg); /* Creates the angled effect */
  transform-origin: top right;
}
.breadcrumb .title {
  font-size: 25px;
  font-weight: 500;
}
.breadcrumb .desc {
  margin: 0 10%;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
}
.contact-page {
  display: flex;
  width: 100%;
  height: 100vh;
  gap: 50px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  margin-top: 50px;
}
.contact-page .google-map {
  flex: 0.75;
}

.contact-page .contact-info {
  flex: 0.25;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: start;
  text-align: start;
}

.logo img {
  width: 240px;
  height: 70px;
  object-fit: contain;
}

.color-black {
  color: #000 !important;
}

.t-l {
  text-transform: lowercase;
}

.social-media {
  margin-top: 20px;
}

.color-green {
  color: #25d366;
}

.p-t-12 {
  padding-bottom: 18px;
}

@media screen and (max-width: 600px) {
  .contact-page {
    flex-direction: column;
    height: unset;
  }
  .contact-page .contact-info {
    padding: 20px;
  }
}
