/* Typography */
@font-face {
  font-family: "Gilroy-Medium";
  src: url(../Assets/Fonts/Gilroy-Medium.eot) format("embeddedopentype");
  src: url(../Assets/Fonts/Gilroy-Medium.ttf) format("truetype");
  src: url(../Assets/Fonts/Gilroy-Medium.woff) format("webopenfontformat");
  src: url(../Assets/Fonts/Gilroy-Medium.woff2) format("webopenfontformat");
  src: url(../Assets/Fonts/Gilroy-Medium.otf) format("opentype");
}
h2 {
  font-family: Gilroy-Medium, Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none !important;
  font-size: 1.1rem;
  font-weight: 600;
}
h2 a {
  text-decoration: none !important;
  color: #ffffff !important;
  line-height: 2.1rem;
  font-weight: 500;
}
h2 a:hover {
  text-decoration: underline !important;
}
h2 a:active {
  text-decoration: underline !important;
}

/* Carousel */
#myCarousel,
.carousel-inner,
.carousel-item,
.carousel-item.active {
  height: 100vh;
}

.carousel-item:nth-child(1) {
  background-image: url("../assets/images/1_DT.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.carousel-item:nth-child(2) {
  background-image: url("../assets/images/2_DT.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.carousel-item:nth-child(3) {
  background-image: url("../assets/images/3_DT.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


.carousel {
  opacity: 0;
  animation: fadeIn 4s;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.75;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-opacity: 0;
  }
  100% {
    -webkit-opacity: 0.75;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
  }
}
.carousel-item {
  animation: scale 4.5s ease-in infinite;
  -webkit-animation: scale 4.5s ease-in infinite;
}

/* Body */
body {
  background-color: black;
  overflow: hidden;
}

.l1 {
  z-index: 1;
  width: 100vw;
  height: 100vh;
}

.l2 {
  z-index: 2;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 0;
  flex-direction: column;
}

.l3 {
  padding: 4vh;
  flex-direction: column;
}

.vl {
  border-left: 2px solid white;
  height: 100%;
}

.vl1 {
  border-left: 2px solid white;
  height: 100%;
}

.vl2 {
  border-left: 2px solid white;
  height: 100%;
  margin-left: -1rem;
}

.container {
  max-width: 100%;
  height: 100%;
}

.tagline {
  margin-top: -6rem;
  padding-left: 3.5rem;
  width: 400px;
  left: 4vh;
  top: 54vh;
  position: absolute;
}

.up {
  margin-top: -0.5rem;
  padding-left: 3.5rem;
  left: 4vh;
  position: absolute;
}

.down {
  padding-left: 3.5rem;
  width: 260px;
  left: 4vh;
  position: absolute;
  bottom: 4vh;
}

.logo {
  width: 337px;
  height: 337px;
}

/* Animation */
.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1366px) {
  .l3 {
    padding-bottom: 12vh;
  }

  .down {
    bottom: 12vh;
  }
}
@media (max-width: 1024px) {
  .tagline {
    width: 280px;
    top: 56vh;
  }

  .logo {
    height: 250px;
    width: 250px;
  }

  .vl2 {
    margin-left: 0;
  }

  .down {
    width: 250px;
    bottom: 8vh;
  }

  h2 {
    font-family: Gilroy-Medium, Arial, Helvetica, sans-serif;
    font-size: 1rem;
  }
  h2 a {
    line-height: 1.7rem;
  }
}
@media (max-width: 640px) {
  #introCarousel {
    margin-top: -58.59px;
  }

  .vl {
    border: none;
  }

  .vl1 {
    border: none;
  }

  .vl2 {
    border: none !important;
  }

  .tagline {
    padding-left: 0rem;
    width: 250px;
  }

  .logo {
    height: 85px;
    width: 46px;
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
  }

  .up {
    top: 4vh;
    padding-left: 0rem;
  }

  .down {
    padding-left: 0rem;
    margin-top: 3rem !important;
    width: 240px;
    bottom: 42vh;
  }

  h2 {
    font-family: Gilroy-Medium, Arial, Helvetica, sans-serif;
    font-size: 1rem;
  }
  h2 a {
    line-height: 1.7rem;
  }
}