.breadcrumb_img img {
  width: 100%;
}
.breadcrumb_img {
  position: relative;
}
.breadcrumb_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.breadcrumb_content {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  width: 100%;
  transform: translate(-50%, -50%);
}

.breadcrumb_wrapper {
  position: relative;
  color: var(--white-color);
}
.breadcrumb_wrapper h1 {
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
}
.breadcrumb_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 10px;
}
.breadcrumb_menu a,
.breadcrumb_menu p {
  color: var(--white-color);
  text-transform: capitalize;
  font-size: 18px;
}
.breadcrumb_menu p {
  color: var(--text-color);
}

/* project */
.mysection {
  padding: 80px 0;
}
.project--box-img img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  transition: 0.9s ease;
}
.project--box-img {
  position: relative;
  overflow: hidden;
  transition: 0.9s ease;
}
.project--box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
}
.project--box-img:hover {
  transform: scale(1.1);
  transition: 0.9s ease;
}
.project--box-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px;
  color: var(--white-color);
}
.project--box-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: capitalize;
}
.project--box-content p {
  text-transform: capitalize;
}

.project--box-img::before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.89) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* cta_wrapper */
.cta_wrapper {
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/parralex.jpg"); */
  background-color: var(--text-color);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  background-attachment: fixed;
  color: var(--white-color);
  position: relative;
  text-align: center;
}
.cta_wrapper__content h3 {
  text-transform: capitalize;
  font-size: 32px;
  font-weight: 700;
}
.cta_wrapper__content p {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 1rem;
  font-size: 18px;
}

@media (max-width: 768px) {
  .breadcrumb_img img {
    width: 100%;
    height: 219px;
    object-fit: cover;
  }
  .breadcrumb_wrapper h1 {
    font-size: 30px;
  }
  .breadcrumb_menu a,
  .breadcrumb_menu p {
    font-size: 16px;
  }
  .breadcrumb_menu {
    margin-top: 10px;
  }
  .mysection {
    padding: 50px 0;
  }
  .project--box-img img {
    height: 360px;
  }
  .project--box {
    margin-bottom: 12px;
  }
  .project--box-content h3 {
    font-size: 20px;
  }
  .project--box-content p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .breadcrumb_img img {
    height: 200px;
  }
  .breadcrumb_wrapper h1 {
    font-size: 24px;
  }
  .breadcrumb_menu a,
  .breadcrumb_menu p {
    font-size: 14px;
  }
  .breadcrumb_menu {
    gap: 8px;
  }
}
