/**************************
@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;
  }
}
#raven-tiles .container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) {
  #raven-tiles .container {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #raven-tiles .container {
    max-width: 600px;
    padding-inline: 16px;
  }
}
@media screen and (min-width: 768px) {
  #raven-tiles .container {
    padding-bottom: 120px;
  }
}
#raven-tiles .raven-tiles-content__tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  #raven-tiles .raven-tiles-content__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1440px) {
  #raven-tiles .raven-tiles-content__tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}
#raven-tiles .raven-tiles-content__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  border: 1px solid #252525;
  background: linear-gradient(134deg, rgba(241, 185, 70, 0) 0%, rgba(241, 185, 70, 0.08) 100%);
}
@media screen and (min-width: 768px) {
  #raven-tiles .raven-tiles-content__tile {
    gap: 48px;
  }
}
@media screen and (min-width: 1440px) {
  #raven-tiles .raven-tiles-content__tile {
    gap: 80px;
  }
}
#raven-tiles .raven-tiles-content__tile .corner {
  position: absolute;
  background: #f1b946;
  width: 8px;
  height: 8px;
  aspect-ratio: 1;
}
#raven-tiles .raven-tiles-content__tile .corner--top-left {
  top: 0;
  left: 0;
}
#raven-tiles .raven-tiles-content__tile .corner--top-right {
  top: 0;
  right: 0;
}
#raven-tiles .raven-tiles-content__tile .corner--bottom-left {
  bottom: 0;
  left: 0;
}
#raven-tiles .raven-tiles-content__tile .corner--bottom-right {
  bottom: 0;
  right: 0;
}
#raven-tiles .raven-tiles-content__title {
  display: flex;
  gap: 8px;
  color: #f1b946;
}
#raven-tiles .raven-tiles-content__title .symbol {
  font-family: 'Agency FB', Arial;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: optional;
}
#raven-tiles .raven-tiles-content__title .headline {
  display: flex;
  align-items: center;
  gap: 16px;
}
#raven-tiles .raven-tiles-content__title .headline .number {
  font-family: 'Agency FB', Arial;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 5rem;
  line-height: 80px;
  letter-spacing: optional;
}
#raven-tiles .raven-tiles-content__title .headline .quantifier {
  font-family: 'Agency FB', Arial;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: optional;
}
#raven-tiles .raven-tiles-content__description {
  font-family: 'Roboto', Arial;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 130%;
  letter-spacing: .32px;
  text-transform: uppercase;
}
#raven-tiles .raven-tiles-content__description .locations {
  font-family: 'Agency FB', Arial;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: optional;
  color: #f1b946;
}
