/**************************
@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-image-cards {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  .raven-image-cards {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  .raven-image-cards {
    max-width: 600px;
    padding-inline: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .raven-image-cards {
    padding: 120px 64px;
  }
}
.raven-image-cards h2 {
  font-family: 'Agency FB';
  font-weight: 700;
  font-size: 48px;
  color: white;
  text-align: center;
  line-height: 80px;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards h2 {
    font-size: 80px;
  }
}
.raven-image-cards p {
  font-family: 'Roboto', Arial;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 130%;
  letter-spacing: .32px;
  text-transform: uppercase;
  margin-top: 24px;
}
.raven-image-cards .raven-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards .raven-cards {
    gap: 96px;
    margin-top: 96px;
  }
}
.raven-image-cards .raven-cards .card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards .raven-cards .card {
    gap: 96px;
    flex-direction: row;
  }
  .raven-image-cards .raven-cards .card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .raven-image-cards .raven-cards .card:nth-child(even) .card-content {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .raven-image-cards .raven-cards .card:nth-child(even) .card-content {
    padding-right: 96px;
  }
}
.raven-image-cards .raven-cards .card .card-image {
  height: clamp(229.814px, 100%, 400px);
  aspect-ratio: 1.61;
  position: relative;
}
.raven-image-cards .raven-cards .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.raven-image-cards .raven-cards .card .card-image::before,
.raven-image-cards .raven-cards .card .card-image::after {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.raven-image-cards .raven-cards .card .card-image::before {
  content: url("../../../../../../../../content/dam/atvi/Raven/raven-2025/common/frame-top.svg");
  top: -1px;
}
.raven-image-cards .raven-cards .card .card-image::after {
  content: url("../../../../../../../../content/dam/atvi/Raven/raven-2025/common/frame-bottom.svg");
  bottom: -4px;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards .raven-cards .card .card-image {
    border: 4px solid #f1b946;
    max-height: 400px;
    width: 50%;
  }
  .raven-image-cards .raven-cards .card .card-image::before,
  .raven-image-cards .raven-cards .card .card-image::after {
    display: block;
  }
}
.raven-image-cards .raven-cards .card .card-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.raven-image-cards .raven-cards .card .card-content .card-title {
  font-family: 'Agency FB';
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards .raven-cards .card .card-content .card-title {
    align-items: flex-start;
  }
}
.raven-image-cards .raven-cards .card .card-content .card-title::before {
  content: "";
  background-image: url("../../../../../../../../content/dam/atvi/Raven/raven-2025/common/decoration.svg");
  width: 43px;
  height: 28px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards .raven-cards .card .card-content .card-title::before {
    background-size: contain;
  }
}
.raven-image-cards .raven-cards .card .card-content .card-description {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #b3b8b8;
  text-transform: none;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .raven-image-cards .raven-cards .card .card-content {
    width: 50%;
  }
  .raven-image-cards .raven-cards .card .card-content .card-title {
    font-size: 48px;
  }
  .raven-image-cards .raven-cards .card .card-content .card-title::before {
    width: 62px;
    height: 58px;
  }
}
@media screen and (min-width: 1440px) {
  .raven-image-cards .raven-cards .card .card-content {
    padding-left: 96px;
  }
}
