@charset "utf-8";
/* CSS Document */
section {
  width: 100%;
  height: 100vh;
}

.swiper-container {
  width: 100%;
  height: 86%;
	padding-top: 40px;
}

.slide {
  display: block;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #000;
  overflow: hidden;
}
.slide-image {
  position: absolute;
  top: 0px;
  left: -200px;
  width: calc(100% + 400px);
  height: calc(49% + 400px);
  background-position: 50% 50%;
  background-size: cover;
	display: block;
  overflow: hidden;
}
.slide-title {
  font-size: 4rem;
  line-height: 0;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  color: #FFF;
  z-index: 100;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: normal;
	display: block;
	position: relative
}

.slide-title h1{
	margin: 0;
	font-size: 40px;
}

.slide-title h2{
	margin: 0;
  font-size: 40px;
}

.insid-para{
	width: 100%;
    display: block;
    z-index: 99;
    position: relative;
	color: #FFF;
	padding-bottom: 20px;
}


.text-back {
    display: block;
    /* background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);  */
    z-index: 9;
    position: relative;
    width: 70%;
    margin: auto;
    top: 77px;
    padding: 30px 20px 30px;
    border-radius: 10px;
}


.btn-cta a.primary-btn:hover{
	
	color: #FFF;
	
}


.text-back::before {
    content: "";
    position: absolute;
    top: -322px;
    left: 0;
    background:url("../images/services/For-web-Black-bg-text1.png");
	background-repeat: no-repeat;
    width: 100%;
    height: 93vh;
}

@media (min-width: 45em) {
  .slide-title {
    font-size: 7vw;
    max-width: none;
	  position: relative;
  }
}


.slide-title span {
  white-space: pre;
  display: inline-block;
  opacity: 0;
}

.slideshow {
  position: relative;
}
.slideshow-pagination {
  position: absolute;
  bottom: 8rem;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: .3s opacity;
  z-index: 10;
}
.slideshow-pagination-item {
  display: flex;
  align-items: center;
}
.slideshow-pagination-item .pagination-number {
  opacity: 0.5;
}
.slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
  cursor: pointer;
}
.slideshow-pagination-item:last-of-type .pagination-separator {
  width: 0;
}
.slideshow-pagination-item.active .pagination-number {
  opacity: 1;
}
.slideshow-pagination-item.active .pagination-separator {
  width: 10vw;
}
.slideshow-navigation-button {
  position: absolute;
  top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 82%;
  width: 7rem;
  z-index: 1000;
  transition: all .3s ease;
  color: #FFF;
}
.slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow-navigation-button.prev {
  left: 0;
}
.slideshow-navigation-button.next {
  right: 0;
}

.pagination-number {
  font-size: 1.8rem;
  color: #FFF;
  font-family: 'Oswald', sans-serif;
  padding: 0 0.5rem;
}

.pagination-separator {
  display: none;
  position: relative;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: all .3s ease;
}
@media (min-width: 45em) {
  .pagination-separator {
    display: block;
  }
}
.pagination-separator-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transform-origin: 0 0;
}


