/* ========================================
   GAMEDEV REEL STYLES
   ======================================== */

/* ========================================
   REEL BUTTON
   ======================================== */
.div-reel
{
    display: flex; /* CONSTANT */
    position: fixed; /* CONSTANT */
    bottom: 0; /* CONSTANT */
    right: 0; /* CONSTANT */
    aspect-ratio: 1 / 1;/* CONSTANT */
    z-index: 100; /* CONSTANT */
}

.div-reel a {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
}

.reel {
  margin: 0;
  padding: 0;
  height: auto;
  width: 100%;
  margin-left: auto;
  z-index: 103;
}

.div-reel h2 {
  margin: 0;
  font-family: 'Secular One', Roboto, Helvetica, sans-serif;
  white-space: nowrap;
  font-size: 3vw;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid goldenrod;
  border-radius: 45px;
  padding: 0.2vh 1.5vh;
}



/* ========================================
   HERO SECTION
   ======================================== */
.content {
  margin-top: 6.6vh;
  display: flex;
  flex-direction: column;
}



.container {
  width: 100%;
  position: relative;
  display: flex;
  text-align: center;
  aspect-ratio: 1920/880;
}

#background-clip {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

.content-center {
  width: 15%;
  height: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-center a {
  transition: 0.3s;
}

.learn-more {
  margin-bottom: 50px;
  font-size: 0.8vw;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid goldenrod;
  padding: 6px 10px;
  border-radius: 45px;
  transition: 0.3s;
  z-index: 6;
  width: 136px;
  position: absolute;
  text-align: center;
  bottom: 0;
}

.learn-more:hover {
  background-color: goldenrod;
  border: 2px solid white;
  color: #000;
}

.arrowdown {
  margin-bottom: 5px;
  font-size: 1.6vw;
  color: goldenrod;
  padding: 8px 0;
  border-radius: 45px;
  transition: 0.3s;
  z-index: 6;
  position: absolute;
  bottom: 0;
}

.learn-more:hover + .arrowdown {
  color: white;
}

/* ========================================
   SPACER
   ======================================== */
#spacer {
  height: 6vh;
  width: 100%;
  background-color: #000;
}

/* ========================================
   COMMON STYLES
   ======================================== */




.divider {
  background: linear-gradient(to right, goldenrod, rgb(255, 225, 58), #ffffff, rgb(255, 225, 58), goldenrod);
  position: relative;
  margin: 0 -1vh 6vh -1vh;
  padding: 0 0.4vh;
}




.border {
  background-color: hsl(0, 0%, 13%);
  position: relative;
}

.sidetitle-left {
  position: absolute;
  height: 100%;
  left: -4.5vw;
  z-index: 10;
}

.sidetitle-right {
  position: absolute;
  height: 100%;
  right: -4.5vw;
  z-index: 10;
  transform: scaleX(-1);
}



.carousel-container {
  padding: 1vw 0;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.frames-right {
  display: flex;
  width: calc((30vw - 1.5vw) * 10);
  animation: slide-right 15s linear infinite;
  bottom: 0;
  position: relative;
  left: 11vw;
}

.frames-right img {
  width: 100%;
  object-fit: cover;
}

.frames-right button {
  width: 30vw;
  flex-shrink: 0;
  margin-right: -1.5vw;
  object-fit: cover;
}

@keyframes slide-right 
{
  0%, 10%   { transform: translateX(calc(-1 * (30vw - 1.5vw) * 5)); }
  20%, 30%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 4)); }
  40%, 50%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 3)); }
  60%, 70%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 2)); }
  80%, 90%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 1)); }
  100%      { transform: translateX(0); }
}
  
.frames-left {
  display: flex;
  width: calc((30vw - 1.5vw) * 10);
  animation: slide-left 15s linear infinite;
  bottom: 0;
  position: relative;
  right: 27vw;
}

.frames-left img {
  width: 100%;
  object-fit: cover;
}

.frames-left button {
  width: 30vw;
  flex-shrink: 0;
  margin-right: -1.5vw;
  object-fit: cover;
}

@keyframes slide-left 
{
  0%, 10%   { transform: translateX(0); }
  20%, 30%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 1)); }
  40%, 50%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 2)); }
  60%, 70%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 3)); }
  80%, 90%  { transform: translateX(calc(-1 * (30vw - 1.5vw) * 4)); }
  100%      { transform: translateX(calc(-1 * (30vw - 1.5vw) * 5)); }
}
  


/* ========================================
   LOGO STYLES
   ======================================== */
.logo-left {
  position: absolute;
  z-index: 15;
  top: 30%;
  transform: translateY(-50%);
}

.logo-right {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 15;
  top: 30%;
  transform: translateY(-50%);
  right: 0;
}

#imrxve-logo {
  margin: 0 0 0 1vw;
  width: 15vw;
  z-index: 6;
}

#mediavision-logo {
  width: 15vw;
  margin: 0 1vw 0 0;
}

#mages-logo {
  width: 12vw;
  margin: 0 0 0 1vw;
}

#eldergrounds-logo {
  height: 5vw;
  object-fit: contain;
  margin: 6vw 1vw 0 0;
}

#mos-logo {
  height: 6vw;
  object-fit: contain;
  margin: 1vw 0 0 0;
}

#seer-logo {
  height: 4vw;
  object-fit: contain;
  margin: 1vw 0 0 0;
}

.div-images 
{
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}

#display-image {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
html {
  scroll-behavior: smooth;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (min-aspect-ratio: 1001/1000) {
  .div-reel {
    height: 20vh;
    margin-bottom: 1%;
    margin-right: 1%;
  }
  
  .div-reel h2 {
    font-size: 1vw;
    border: 2px solid goldenrod;
    padding: 0.3vh 0 0.2vh 0;
    border-radius: 45px;
  }
}


  


