.header {
  position: relative;
  padding: 80px 0;
  background-color: var(--background-color);
}
@media (min-width: 1200px) {
  .header {
    padding: 0;
  }
}
.header .row {
  align-items: center;
}
.header .images {
  position: relative;
  z-index: 10;
}
.header .images .main {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.header .images .header-shape-01 {
  display: none;
}
@media (min-width: 1200px) {
  .header .images .header-shape-01 {
    display: block;
    position: absolute;
    top: -40px;
    left: -80px;
  }
  .header .images .header-shape-01 svg {
    height: 210px;
    width: 210px;
    transform: rotate(90deg);
  }
  .header .images .header-shape-01 svg path {
    stroke: white;
  }
}
.header .images .header-shape-02 {
  position: absolute;
  right: 20px;
  bottom: -172px;
}
.header .images .header-shape-02 svg {
  width: 80px;
}
@media (min-width: 1200px) {
  .header .images .header-shape-02 {
    right: -20px;
    bottom: -172px;
  }
}
.header .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 15;
}
@media (min-width: 1200px) {
  .header .content {
    align-items: flex-start;
    text-align: start;
    min-height: 520px;
  }
}
.header .content.has-bg {
  color: white;
}
.header .header-shape-03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
}
@media (min-width: 1200px) {
  .header .header-shape-03 {
    width: 220px;
  }
}
.header .header-shape-04 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
}
@media (min-width: 1200px) {
  .header .header-shape-04 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: unset;
  }
}