/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000; 

@accent-color    : @green;
**************************/
/*****************************************************************************************

*IMPORT FONTS IN CORE FONTS.LESS file 
*Only create mixins of font families in here

.roboto(){ font-family: "Roboto", sans-serif; font-style: normal;}
******************************************************************************************/
@keyframes popIn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes popOut {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes progressRing {
  from {
    stroke-dashoffset: 339;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cycle1 {
  0% {
    top: 0px;
  }
  15% {
    top: 0px;
  }
  20% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  32% {
    top: 38.4px;
    opacity: 0;
    z-index: 0;
  }
  43% {
    top: -38.4px;
    opacity: 0;
    z-index: -1;
  }
  74% {
    top: -38.4px;
    opacity: 0;
    z-index: 0;
  }
  88% {
    top: -38.4px;
    opacity: 0;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@keyframes cycle2 {
  0% {
    top: -38.4px;
    opacity: 0;
  }
  15% {
    top: -38.4px;
    opacity: 0;
  }
  20% {
    top: -38.4px;
    opacity: 0;
  }
  32% {
    top: 0px;
    opacity: 1;
  }
  43% {
    top: 0px;
    opacity: 1;
  }
  51% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  66% {
    top: 38.4px;
    opacity: 0;
    z-index: 0;
  }
  96% {
    top: -38.4px;
    opacity: 0;
    z-index: -1;
  }
  100% {
    top: -38.4px;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes cycle3 {
  0% {
    top: -38.4px;
    opacity: 0;
  }
  43% {
    top: -38.4px;
    opacity: 0;
  }
  51% {
    top: -38.4px;
    opacity: 0;
  }
  61% {
    top: 0px;
    opacity: 1;
  }
  76% {
    top: 0px;
    opacity: 1;
  }
  88% {
    top: 0px;
    opacity: 1;
    z-index: 0;
  }
  100% {
    top: 38.4px;
    opacity: 0;
    z-index: 0;
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes radar {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.statement {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.statement .statement-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
.statement .statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statement .statement-bg::after {
  content: "";
  background: linear-gradient(180deg, #161616 10%, rgba(22, 22, 22, 0.8) 30%, rgba(22, 22, 22, 0.6) 50%, rgba(22, 22, 22, 0.8) 70%, #161616 90%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.statement .container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 16px;
  position: relative;
  z-index: 1;
  max-width: 1500px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  .statement .container {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  .statement .container {
    max-width: 600px;
    padding-inline: 16px;
  }
}
.statement .container h2,
.statement .container .details {
  font-family: 'Agency FB';
  font-weight: 700;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.statement .container h2 {
  font-size: 48px;
  line-height: 80px;
}
.statement .container .details {
  padding: 48px 0px;
  font-size: 32px;
  line-height: 130%;
}
.statement .container .details p {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
}
.statement .container .details span {
  background: radial-gradient(circle, #f9e14d 0%, #ca8d24 100%);
  background-size: 200%;
  color: transparent;
  background-clip: text;
  animation: textAnimation 1.7s linear infinite;
}
@keyframes textAnimation {
  to {
    background-position: 200% center;
  }
}
@media screen and (min-width: 1024px) {
  .statement .container {
    padding: 120px 64px 0;
  }
  .statement .container h2 {
    font-size: 80px;
  }
  .statement .container .details {
    padding: 200px 80px;
    font-size: 48px;
  }
}
