@import url(style.css);


.interviews {
  min-height: 75rem;
  overflow: hidden;
}
.interviews .heading {
  margin-bottom: 7rem;
}
.interview-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.interview-row {
  position: relative;
  width: 100%;
}
.interview-column {
  position: absolute;
  visibility: hidden;
  width: 23%;
  transition: 0s !important;
}
.interviews.show-animate .interview-column {
  visibility: visible;
  top: 0;
}
.interview-photo {
  position: relative;
  transition: .15s;
}
.triangle {
  position: absolute;
  background: url("play.png");
  background-position: center;
  background-size: cover;
  top: 40%;
  left: 40%;
  width: 20%;
  height: 20%;
    
}
.interview-photo a img {
  width: 100%;
  min-width: 15rem;
  border-radius: 2rem;
  border: .2rem solid var(--main-color);
  padding: .1rem;
  margin-bottom: 2rem;
}
.interview-photo:hover {
  transform: scale(1.05);
}
.interview-column span {
  color: var(--main-color);
  font-size: 2.2rem;
}
.interview-column h1 {
  font-size: 1.7rem;
  font-weight: 600;
}
.interview-column p {
  font-size: 1.4rem;
}
.interviews.show-animate .int-move-1 {
  top: 0;
  left: 1%;
  height: 100%;
  animation: int-move-1 1.3s linear forwards;
}
.interviews.show-animate .int-move-2 {
  top: 0;
  left: 26%;
  height: 100%;
  animation: int-move-2 .8s linear forwards;
}
.interviews.show-animate .int-move-3 {
  top: 0;
  right: 26%;
  height: 100%;
  animation: int-move-3 .8s linear forwards;
}
.interviews.show-animate .int-move-4 {
  top: 0;
  right: 1%;
  height: 100%;
  animation: int-move-4 1.3s linear forwards;
}
.re-interview {
  position: relative;
}

/* media screens */
@media (max-width: 813px) {
  .interview-column span {
    font-size: 2rem;
  }
  .interview-column h1 {
    font-size: 1.5rem;
  }
 }
 @media (max-width: 768px) {
  .interview-row {
    height: 55rem;
  }
  .interview-column {
    position: absolute;
    width: 40%;
  }
  .interviews.show-animate .int-move-1 {
    left: 10%;
    animation: int-move-11 .5s linear forwards !important;
  }
  .interviews.show-animate .int-move-2 {
    left: 55%;
    animation: int-move-12 1.1s linear forwards !important;
  }
  .interviews.show-animate .int-move-3 {
    top: 29rem;
    left: 10%;
    animation: int-move-11 .5s linear forwards !important;
  }
  .interviews.show-animate .int-move-4 {
    top: 29rem;
    left: 55%;
    animation: int-move-12 1.1s linear forwards !important;
  }
 }
 @media (max-width: 462px) {
  .interviews .heading {
    font-size: 4.5rem;
    margin-bottom: -3rem;
  }
  .interview-row {
    width: 100%;
    height: auto;
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  .interview-column {
    position: unset;
    animation-name: none;
    width: 100%;
  }
  .interview-photo a img {
    margin-bottom: 0;
  }
  .interview-text {
    padding: 0 0 2rem 2rem;
  }
 }

 /* Animations */

 @keyframes int-move-1 {
  0%,
  80% {
  visibility: hidden;
  left: -30%;
  }
  97% {
    left: 0%;
  }
  100% {
    left: 1%;
  }
}
 @keyframes int-move-2 {
  0%,
  60% {
    left: -9%;
    visibility: hidden;
    }
    97% {
      visibility: visible;
      left: 24%;
    }
    100% {
      left: 26%;
    }
}
 @keyframes int-move-3 {
  0%,
  60% {
    right: -9%;
    visibility: hidden;
    }
    97% {
      visibility: visible;
      right: 24%;
    }
    100% {
      right: 26%;
    }
}
 @keyframes int-move-4 {
  0%,
  80% {
    visibility: hidden;
    right: -30%;
    }
    97% {
      right: 0%;
    }
    100% {
      right: 1%;
    }
}

@keyframes int-move-11 {
  0%,
  55% {
    visibility: hidden;
    left: -30%;
    }
    56% {
      visibility: visible;
    }
    97% {
      visibility: visible;
      left: 9%;
    }
    100% {
      left: 10%;
    }
  }
@keyframes int-move-12 {
  0%,
  55% {
    visibility: hidden;
    left: -30%;
    }
    56% {
      visibility: visible;
    }
    97% {
      visibility: visible;
      left: 54%;
    }
    100% {
      left: 55%;
    }
  }
  
