.slider{
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
}

.slides{
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}

.slider .slider-container img, .slider .slider-container video {
    object-fit: cover;
    width: 100vw !important;
    height: 100vh;
    pointer-events: none;
}

.slider-container{
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.main-slider{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.main-slider-bkg{
  height: 100%;
}

.slider-content{
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  z-index: 999;
}

#slider-dots{
  position: absolute;
  top: 230px;
  left: 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}

.slider-dots{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slider-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
  position: relative;
}

.slider-dots li button:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transform-origin: center;
  display: block;
  width: 5px;
  height: 5px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  border: 1px solid transparent;
  transition: .3s ease;
}

.slider-dots li.slick-active button:before{
  height: 12.5px;
  width: 12.5px;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
}

.slider-prev-arrow g,
.slider-next-arrow g{
  fill: var(--white);
}

.slider-arrows{
  position: absolute;
  top: 50%;
  right: 15vw;
  width: 150px;
  height: 35px;
  display: flex;
  flex-direction: row;
  z-index: 10;
}

.slider-prev-arrow,
.slider-next-arrow{
  cursor: pointer;
  z-index: 5;
  width: 35px;
  height: 35px;
  margin: auto;
  opacity: .6;
  transition: .3s ease;
}

.slider-prev-arrow:hover,
.slider-next-arrow:hover{
  opacity: 1;
}
.slider-prev-arrow:hover{
  transform: translate(-5px, 0);
}
.slider-next-arrow:hover{
  transform: translate(5px, 0);
}

.arrows-separator{
  height: 100%;
  width: 1px;
  background-color: white;
}

.slider-prev-arrow svg{
  transform: rotate(-180deg) translateY(-2px);
}

.main-content-slider{
  position: relative;
  top: 35%;
  z-index: 4;

}

.slider-btns{
  position: relative;
  z-index: 8;
  pointer-events: all;
}

.title-object h2,
.title-object h3{
  color: var(--white);
  font-weight: 600;

}

.title-object h2{
  font-size: 8vw;
  letter-spacing: 10px;
}

.slide-index{
  position: absolute;
  left: 15vw;
  bottom: 0;
  display: inline-flex;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  font-weight: 600;
  font-size: 20vw;
  line-height: .5;
  transform: translate(-50%, 20%);
}
.slide-index p{
  font-size: 20vw;
}

.slide-index p{
  animation: upLetter 0.65s ease forwards;
  transform: translateX(80px);
  opacity: 0;
}

.slide-index p:nth-child(2){
  animation-delay: 0.15s;
}

@keyframes upLetter {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {



}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {



}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {



}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {



}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {


}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

  .slider{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .slider > img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }

  .site-title-mobile{
    position: relative;
    z-index: 10;
    font-size: 2.7rem;
  }

}
