section#experiences-header{
  background-color: var(--neon-purple);
  overflow: hidden;
  margin-top: 90px;
}
section#experiences-header .container{
  position: relative;
  min-height: 540px;
  max-width: 560px;
  color: #fff;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
}
section#experiences-header p{
  font-size: 18px;
  line-height: 26px;
}
section#experiences-header p a,
section#experiences-header p a:active,
section#experiences-header p a:visited,
section#experiences-header p a:focus{
  color: var(--secondary-yellow);
}
section#experiences-header p a:hover{
  filter: brightness(1.05);
}
section#experiences-header .btn{
  margin-top: 14px;
}
section#experiences-header .experiences{
  position: absolute;
  width: 100vw;
  top: 0;
}
section#experiences-header .experiences.left{
  right: 100%;
  flex-direction: row-reverse;
}
section#experiences-header .experiences.right{
  left: 100%;
  justify-content: initial;
}
section#experiences-header .experiences .column{
  position: relative;
}
section#experiences-header .experiences .column .clone{
  position: absolute;
  left: 0;
  bottom: 100%;
}
section#experiences-header .experiences.left .column{
  margin-right: 15px;
}
section#experiences-header .experiences.left.animated .column:nth-child(1){
  animation: move-experiences 80s linear infinite;
}
section#experiences-header .experiences.left.animated .column:nth-child(2){
  animation: move-experiences 100s linear infinite;
}
section#experiences-header .experiences.left.animated .column:nth-child(3){
  animation: move-experiences 60s linear infinite;
}
section#experiences-header .experiences.left .column:nth-child(2){
  margin-top: -40px;
}
section#experiences-header .experiences.right .column{
  margin-left: 15px;
}
section#experiences-header .experiences.right .column:nth-child(1){
  margin-top: -80px;
}
section#experiences-header .experiences.right .column:nth-child(2){
  margin-top: -20px;
}
section#experiences-header .experiences.right .column:nth-child(3){
  margin-top: -50px;
}
section#experiences-header .experiences.right.animated .column:nth-child(1){
  animation: move-experiences 100s linear infinite;
}
section#experiences-header .experiences.right.animated .column:nth-child(2){
  animation: move-experiences 60s linear infinite;
}
section#experiences-header .experiences.right.animated .column:nth-child(3){
  animation: move-experiences 80s linear infinite;
}
section#experiences-header .experiences	a{
  position: relative;
  display: block;
  width: 235px;
  height: 235px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 4px;
  border: solid 1px var(--neon-purple);
  transition: all 0.1s ease-out;
  color: transparent;
}
section#experiences-header .experiences	a:hover{
  filter: brightness(1.1);
  border: solid 1px #fff;
}
section#experiences-header .experiences	a:hover:after{
  opacity: 1;
}
section#experiences-header .experiences	a label{
    position: absolute;
    color: #fff;
    background: var(--main-orange);
    left: -45px;
    top: 15px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    width: 150px;
    text-align: center;
    padding: 7px 0;
    cursor: pointer;
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    transform: rotate(-40deg);
}
section#experiences-header .experiences	a label.subscription-only{
  left: -30px;
  top: 25px;
  background: var(--shadow-yellow);
}

@keyframes move-experiences {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/* Responsiveness ----------------------------------- */

@media (max-width: 800px) {
  section#experiences-header .container{
    padding-left: 25px;
    padding-right: 25px;
  }
  section#experiences-header .experiences{
    display: none;
  }
}

@media (max-width: 430px) {
  section#experiences-header{
    margin-top: 70px;
  }
}