/* Header */
.header {
  display: flex;
  background: linear-gradient(
    to right,
    var(--color-primary-dark),
    var(--color-primary)
  );
  position: relative;
  overflow: hidden;
  height: 150px;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding: 0 7%;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.header h1 {
  font-weight: 400;
  animation: fadeInLeft 1s ease;
  white-space: nowrap;
}

.logo {
  display: flex;
  position: absolute;
  height: 600px;
  left: -100px;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border-radius: 50%;
  align-items: center;
  justify-content: flex-end;
}

.logo img {
  height: 80px;
}

.logo a {
  transform: translateX(-30%);
}

/* Breadcrumb */
.breadcrumb {
  background-color: var(--color-white);
  margin-bottom: 20px;
  padding: 15px 25px;
  box-shadow: var(--shadow-lg)
}

@media (max-width: 1440px) {
  .header h1 {
    font-size: var(--fs-xl);
  }

  .logo {
    left: -240px;
  }

  .logo img {
    height: 65px;
  }

  .logo a {
    transform: translateX(-20%);
  }
}

@media (max-width: 1024px) {

  .header h1 {
    font-size: var(--fs-lg);
  }

  .header{
    padding-right: 30px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    box-shadow: var(--shadow-md);
  }

  .breadcrumb {
    box-shadow: var(--shadow-md);
  }

  .header h1 {
    padding: 10px;
  }

  .logo {
    position: relative;
    width: 200%;
    left: 0;
    justify-content: center;
    align-items: end;
  }

  .logo img {
    height: 60px;
  }

  .logo a {
    transform: translate(0, -25px);
  }
}

@media (max-width: 512px) {
  .header h1 {
    font-size: var(--fs-xs);
  }

  .logo {
    width: 300%;
  }


}