:root {
  --font-family: 'Oswald', sans-serif;
  --black-bg: #313434;
  --white-bg: #ffffff;
  --red-bg: #f03a37;
}

.parallax-slider {
  font-family: var(--font-family);
  height: 100vh;
}

.parallax-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.parallax-slider .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-size: cover;
}

.parallax-slider .img-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.parallax-slider .swiper-slide .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  z-index: 2;
  margin-left: 70px;
  margin-top: -80px;
}

.parallax-slider .content {
  color: var(--white-bg);
  text-align: left;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.parallax-slider .content.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.parallax-slider .content .title {
  z-index: 2;
  text-transform: uppercase; 
  color: rgb(255, 255, 255); 
  text-decoration: none; 
  white-space: normal;
  text-align: inherit; 
  line-height: 90px; 
  letter-spacing: 0px; 
  font-weight: 500; 
  font-size: 70px;
  max-width: 572px;
}

.parallax-slider .content .title .title-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.layerust
{
  z-index: 2;
}

.parallax-slider .content .description {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: Poppins; 
  text-decoration: none; 
  white-space: normal; 
  max-width: 764px; 
  text-align: inherit; 
  line-height: 36px; 
  letter-spacing: 0px; 
  font-weight: 300; 
  font-size: 21px;
}

/*nav controls*/
.parallax-slider .swiper-nav-ctrl {
  background-image: none;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.5rem;
  color: var(--white-bg);
  width: 30px;
  outline: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.parallax-slider .swiper-nav-ctrl.next-ctrl {
  right: 0;
}

.parallax-slider .swiper-nav-ctrl i
{
  background-color: #000000a4;
  padding: 5px 10px;
}

.parallax-slider .swiper-nav-ctrl.prev-ctrl {
  left: 0;
}

.parallax-slider .pagination-ctrl {
  max-width: calc(100% - 60px);
  left: 0;
  right: 0;
  margin: auto;
}

.parallax-slider .pagination-ctrl .swiper-pagination-bullet {
  background-color: var(--white);
}

.parallax-slider .img-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}




.layerbg
{
  width: 500px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgb(35, 39, 42);
}

@media (max-width: 768px)
{
  .layerbg
  {
    width: 150px;
  }

  .parallax-slider .swiper-slide .content
  {
    margin-left: 0px;
    margin-top: 0px;
  }

  .parallax-slider .content .title .title-wrapper {
    margin-top: 150px;
  }

  .parallax-slider .content .title 
  {
    width: 281px;
    line-height: 65px;
    font-size: 50px;
  }
  
  .parallax-slider .content .description 
  {
    width: 281px;
    line-height: 30px;
    font-size: 16px;
  }
}