@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
/*******************************************************************
DIN NEXT Font
*******************************************************************/
.section-header {
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  margin: 30px auto 30px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
}
.noise-gif {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: .17;
  background-image: url('../../../../../../../../../../content/dam/atvi/callofduty/cod-touchui/kronos/home/common/noise-gif-square-anim.gif');
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}
@keyframes arrow {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }
  25% {
    opacity: 1;
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    -ms-transform: translate(0, 2px);
    -o-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, 8px);
    -moz-transform: translate(0, 8px);
    -ms-transform: translate(0, 8px);
    -o-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  75%,
  100% {
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
    opacity: 0;
  }
}
#leadership .inner-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#leadership .inner-container:after {
  content: "";
  flex: 1 0 calc((100% - 90px) / 4);
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #leadership .inner-container:after {
    flex: 1 0 calc((100% - 30px) / 2);
  }
}
#leadership .leadership-entry {
  position: relative;
  overflow: hidden;
  flex: 1 0 calc((100% - 90px) / 4);
  /* 3 gaps of 30px between 4 items = 60px */
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #leadership .leadership-entry {
    flex: 1 0 calc((100% - 30px) / 2);
    /* 1 gap of 30px between 2 items */
  }
}
#leadership .leadership-entry:hover .leadership-img img {
  scale: 1.1;
}
#leadership .leadership-entry:hover .leadership-description {
  translate: 0 0;
}
#leadership .leadership-entry .leadership-img {
  position: relative;
  height: 100%;
}
#leadership .leadership-entry .leadership-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center center;
  object-fit: cover;
  transition: 0.25s all;
}
#leadership .leadership-entry .leadership-description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  bottom: -2px;
  right: -2px;
  transition: 0.25s all;
  background: rgba(0, 0, 0, 0.8);
  translate: 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0px;
  padding-inline: 10px;
}
#leadership .leadership-entry .leadership-description p:first-of-type {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 400px) {
  #leadership .leadership-entry .leadership-description p:first-of-type {
    font-size: 16px;
  }
  #leadership .leadership-entry .leadership-description p {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
