/*
******************************
** Statement Styles
******************************
*/
/*
******************************
** Media Query Mixin
******************************
*/
.statement {
  gap: 0;
}
.statement .col-1 {
  background: var(--color-highlight);
  color: var(--color-minor);
  padding: 50px 50px 30px 30px;
  position: relative;
}
.statement .col-1:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 40px;
  border-color: transparent;
  border-top-color: var(--color-highlight);
  position: absolute;
  bottom: -38px;
  left: 30px;
  z-index: 5;
}
@media screen and (min-width: 1021px) {
  .statement .col-1:after {
    border-width: 70px 0 70px 70px;
    border-color: transparent;
    border-left-color: var(--color-highlight);
    left: auto;
    right: -70px;
    bottom: auto;
    top: 50%;
    margin-top: -70px;
  }
}
@media screen and (min-width: 1650px) {
  .statement .col-1 {
    padding-top: 100px;
    padding-right: 300px;
    padding-left: calc((100vw - 1570px) / 2);
    padding-bottom: 50px;
  }
}
.statement .col-1 .text {
  position: relative;
}
.statement .col-1 .text:before {
  content: "";
  background: url("../Images/quotes-white.png") no-repeat;
  background-size: contain;
  position: absolute;
  left: -12px;
  top: -50px;
  width: 55px;
  height: 38px;
}
@media screen and (min-width: 1650px) {
  .statement .col-1 .text:before {
    left: -32px;
  }
}
.statement .col-1 .text h2 {
  color: var(--color-minor);
}
.statement .col-1 .link--box-complement,
.statement .col-1 .link--box-highlight {
  margin-top: 20px;
}
.statement .col-2 {
  height: 300px;
  background-size: cover;
  background-position: top center;
}
@media screen and (min-width:650px) {
  .statement .col-2 {
    height: 400px;
  }
}
@media screen and (min-width:768px) {
  .statement .col-2 {
    height: 500px;
  }
}
@media screen and (min-width: 1021px) {
  .statement .col-2 {
    height: auto;
    background-position: center;
  }
}