/**************************
@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-list .container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1024px) {
  #raven-list .container {
    max-width: 1024px;
    padding-inline: 40px;
  }
}
@media (max-width: 600px) {
  #raven-list .container {
    max-width: 600px;
    padding-inline: 16px;
  }
}
#raven-list .raven-list-content__entry {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
#raven-list .raven-list-content__image-frame {
  display: none;
  position: absolute;
  transition: all .3s ease;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  max-width: 309px;
  padding-right: 25.5px;
}
@media screen and (min-width: 1024px) {
  #raven-list .raven-list-content__image-frame {
    display: block;
    opacity: 0;
  }
}
#raven-list .raven-list-content__image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#raven-list .raven-list-content__info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0;
  gap: 24px;
  border-bottom: 1px solid #252525;
  transition: all .2s ease;
  width: 100%;
}
#raven-list .raven-list-content__info-wrapper:hover {
  background: #1d1d1d;
}
@media screen and (min-width: 1024px) {
  #raven-list .raven-list-content__info-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    width: 80%;
  }
}
#raven-list .raven-list-content__info-wrapper .headline {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  #raven-list .raven-list-content__info-wrapper .headline {
    gap: 24px;
  }
}
#raven-list .raven-list-content__info-wrapper .headline .number {
  font-family: 'Roboto', Arial;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 130%;
  letter-spacing: 0.28px;
  color: #f1b946;
  text-align: right;
  order: 1;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #raven-list .raven-list-content__info-wrapper .headline .number {
    order: 0;
    top: -8px;
  }
}
#raven-list .raven-list-content__info-wrapper .headline .title {
  width: 100%;
  font-family: 'Agency FB', Arial;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: optional;
}
@media screen and (min-width: 1024px) {
  #raven-list .raven-list-content__info-wrapper .headline .title {
    font-family: 'Agency FB', Arial;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 3rem;
    line-height: 48px;
    letter-spacing: optional;
  }
}
#raven-list .raven-list-content__info-wrapper .description {
  font-family: 'Roboto', Arial;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 130%;
  letter-spacing: .32px;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #raven-list .raven-list-content__info-wrapper .description {
    max-width: 277px;
  }
}
