#introvideo {
  position: relative;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  height: 100vh;
}
#introvideo video {
  width: 1920px;
  height: 1080px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#introvideo .title_wrap {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fafafa;
  background-color: rgba(0, 0, 0, 0.3);
}
#introvideo .title_wrap .title {
  margin-top: -10%;
}
#introvideo .title_wrap .title h1 {
  font-weight: bold;
}
#introvideo .title_wrap .title h2 {
  animation-delay: 0.5s;
  font-size: 18px;
}
@media (max-width: 767px) {
  #introvideo .title_wrap .title {
    zoom: 0.7;
  }
}

body {
  font-family: "Roboto", sans-serif;
}

section#viaggio .far, section#viaggio .fas {
  width: 50px;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.5em;
}

.single-day {
  padding-top: 40px;
  padding-bottom: 40px;
}
.single-day h1 {
  font-size: 2rem;
  margin-left: -3px;
}
.single-day h1 .daynum, .single-day h1 .divider {
  position: absolute;
}
.single-day h1 .daynum {
  margin-left: -60px;
}
.single-day h1 .divider {
  margin-left: -10px;
  height: 56px;
  border-left: 3px solid red;
  transform: rotate(20deg);
  top: 15px;
  margin-top: -23px;
}
@media (max-width: 767px) {
  .single-day h1 {
    width: 100%;
    margin-left: 60px;
    margin-bottom: 25px;
  }
}
.single-day .ytvideo {
  margin-top: 10px;
}
.single-day:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05);
}
.single-day:nth-child(2n) .day-content {
  flex-direction: row-reverse;
}

.ytsubscribe > div {
  display: block !important;
  margin: 0px auto !important;
}
@media (max-width: 767px) {
  .ytsubscribe > div, .ytsubscribe > div > iframe {
    width: 160px !important;
    height: 40px !important;
  }
}

.arrow {
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.arrow span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #fafafa;
  border-right: 5px solid #fafafa;
  border-radius: 5px;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 3s infinite;
  animation-delay: 2s;
  opacity: 0;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-30px, -30px);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
}
