/**
 * @file
 * Section styles
 */

.section {
  position: relative;
}
.section--color_secondary_2 {
  background-color: var(--color-secondary--2);
}
.section--90_crop_top {
  background: var(--color-secondary--2);
  background: linear-gradient(0deg,var(--color-secondary--2) 87%, var(--color-white) 87%);
}
.section--90_crop_bottom {
  background: var(--color-secondary--2);
  background: linear-gradient(180deg,var(--color-secondary--2) 87%, var(--color-white) 87%);
}
.section__title {
  margin-bottom: 2.5rem;
}
.section--title-right .section__title {
  display: flex;
  justify-content: end;
}
.section--large_amphora::after {
  content: none;
  position: absolute;
  width: 302px;
  height: 374px;
  background-image: url('../../images/decorations/large-amphora.png');
  width: 529px;
  height: 656px;
  display: block;
  top: 0;
  right: 0;
}
@media all and (min-width: 1000px) {
  .section--large_amphora::after {
    content: '';
    width: 529px;
    height: 656px;
    top: -3rem;
    right: -8rem;
    transform: rotate(-17.59deg);
  }
}
