.breadcrumbarea {
    padding: 50px 0;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
  }
  
  .breadcrumbarea::before {
    content: '';
    background-color: rgb(0 0 0 / 46%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  
  .breadcrumbhead {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 410px;
    align-items: center;
  }
  
  .breadcrumbhead h1 {
    color: var(--color6);
    font-size: 64px;
    text-align: center;
  }

  .breadcrumbhead p{
    color: blanchedalmond;
    font-size: 36px;
    text-align: center;
  }

  .breadcrumb-cta {
    display: flex;
    padding: 10px 20px;
    background-color: var(--color6);
    color: #000;
    /* color: var(--color2); */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    margin: 40px 0 0;
    text-align: center;
    transition: all 0.5s ease;
  }

  .breadcrumb-cta:hover {
    background-color: var(--color2);
    color: var(--color6);
  }
  
  /* Responsive Styles */
  @media (min-width: 1441px) {
    .breadcrumbarea {
      height: 850px;
    }
    .breadcrumbhead {
      height: 600px;
    }
    .breadcrumbhead h1 {
      font-size: 72px;
      transform: translateY(-50px);
    }
    .breadcrumbhead p{
      font-size: 36px;
      text-align: center;
    }
    .breadcrumb-cta {
      padding: 10px 20px;
      font-size: 18px;
      /* font-weight: 500; */
    }
  }
  @media (max-width: 1200px) {
    .breadcrumbarea {
      height: 500px;
    }
    .breadcrumbhead {
      height: 400px;
    }
    .breadcrumbhead h1 {
      font-size: 48px;
    }
    .breadcrumbhead p{
      font-size: 32px;
      text-align: center;
    }
    .breadcrumb-cta {
      padding: 10px 20px;
      font-size: 18px;
      /* font-weight: 480; */
    }
  }
  
  @media (max-width: 992px) {
    .breadcrumbarea {
      padding: 40px 0;
      height: 400px;
    }
    .breadcrumbhead {
      height: 300px;
    }
    .breadcrumbhead h1 {
      font-size: 36px;
      text-align: center;
    }
    .breadcrumbhead p{
      font-size: 30px;
      text-align: center;
    }
    .breadcrumb-cta {
      padding: 18px 28px;
      font-size: 16px;
      /* font-weight: 480; */
    }
  }
  
  @media (max-width: 768px) {
    .breadcrumbarea {
      padding: 30px 0;
      height: 300px;
    }
    .breadcrumbhead {
      height: 250px;
      justify-content: center;
    }
    .breadcrumbhead h1 {
      font-size: 36px;
      text-align: center;
    }
    .breadcrumbhead p{
      font-size: 28px;
      text-align: center;
    }
    .breadcrumb-cta {
      padding: 10px 20px;
      font-size: 16px;
      /* font-weight: 480; */
      margin: 20px 0 0;
  }
  }
  
  @media (max-width: 576px) {
    .breadcrumbarea {
      padding: 20px 0;
      height: 250px;
    }
    .breadcrumbhead {
      height: 200px;
      justify-content: center;
    }
    .breadcrumbhead h1 {
      font-size: 32px;
      text-align: center;
    }
    .breadcrumbhead p{
      font-size: 22px;
      text-align: center;
    }
    .breadcrumb-cta {
      padding: 10px 20px;
      font-size: 18px;
      font-weight: 450;
      margin: 20px 0 0;
  }
}
