/* To remove blue highlight */
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
/* To remove blue highlight end */


/*Banner title animation*/



/* h1,h2 {
	-webkit-animation: text-focus-in 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
 */
/* Banner title animation end */

.banner_section {
  overflow: hidden;
}

.carousel {
  width: 100vw;
  height: 100vh;
  position: relative;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide-banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
  background-color:black;
}

.slide-banner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /*   Zoom in and out effect */
  animation: banner_zoom 20s forwards;
  animation-iteration-count: infinite;
  opacity:0.7;
}

.slide-banner[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.buttons {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 2;
 background-color:white;
  border: none;
  cursor: pointer;
  padding: 20px 40px;
}

/* .arrow-vl{
    border-left: 1px solid;
    height: 140px;
    width: 3%;
    left: 50%;
    margin-left: 18px;
    top: 0;
  
} */

.carousel-button.next {
  padding-left: 98px;
}

/* Background Image zoom effect */

@keyframes banner_zoom {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.05, 1.05);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* About us vid */
.video_button {
  display: flex;
  bottom: 0;
  right: 0;
}

.vid h4 {
  transform: rotate(270deg);
  background-color: transparent;
  font-size: 14px;
  color: white;
}

.vid {
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 2;
  background-color: white;
  border: none;
  cursor: pointer;
  padding: 60px 35px;
}

.vid img {
  width: 80px;
}

/* Test area */
.hero-btn {
  display: inline-block;
  text-decoration: none;
  background-color: #a41b35;
  color: #fff;
  padding: 14px 40px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
}
.text-box {
  font-family: "Montserrat", sans-serif;
  width: 90%;
  color: #000000;
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 4;
}

.text-box h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: white;
}

.text-box p {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
}

.home-text{
 	text-align: left;
 	position: relative;
 	z-index: 2;
  line-height: 45px;
 }

.home-text h1 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
}

 .home-text h2{
	color:#ffffff;
	font-size: 40px;
  font-weight: 600;
	margin:0 0 20px;
  display:inline-block;
   width:50%;
   line-height:45px;
}

.home-text div{
	margin:0;
	overflow: hidden;
/*   display:inline-block; */
}
 .home-text div span{
    font-size: 48px;
    color:white;
    font-weight: 700;
    line-height: 36px;
    display: none;
}

.home-text div span.text-in{
	display:block;
	animation: textIn .5s ease;
}
 .home-text div span.text-out{
	animation: textOut .5s ease;
}
@keyframes textIn{
	0%{
		transform: translateY(100%);
	}
	100%{
		transform: translateY(0%);
	}
}
@keyframes textOut{
	0%{
		transform: translateY(0%);
	}
	100%{
		transform: translateY(-100%);

	}
}




/* Socials */
/*Vertical Social Icons*/

.vl{
    border-left: 0px solid;
    background-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 102.2%);
    height: 120px;
    width: 3%;
    left: 50%;
    margin-left: 18px;
    top: 0;
}


ul.vertical-socials {
  list-style-type: none;
  padding: 0;
  position: absolute;
  right: 1%;
  top: 20%;
  z-index: 4;
}

ul.vertical-socials li.social-icon {
  width: 20px;
  margin-top: 40px;
  margin-right: 62px;
  position: relative;
}

.social-icon-img{
  width:45px;
}

/* Pulse Effect*/
.pulse {
  width: 80px;

  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 50px;
  color: #ffffff;
}
.pulse:before,
.pulse:after {
  content: "";
  position: absolute;
  height: 30%;
  width: 40%;
  background-color: #a41b35;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}
.pulse:before {
  animation: pulse 2s ease-out infinite;
}
.pulse:after {
  animation: pulse 2s 1s ease-out infinite;
}
@keyframes pulse {
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Media queries */
@media only screen and (max-width: 595px) {
  .text-box {
    font-family: "Montserrat", sans-serif;
    width: 90%;
    color: #000000;
    position: absolute;
    top: 30%;
    left: 7%;
    z-index: 4;
  }

  .text-box h1 {
    font-size: 26px;
    margin-bottom: 0px;
    color: white;
    width: 36%;
  }

  .text-box p {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
  }
  
   .home-text{
 	text-align: left;
 	position: relative;
 	z-index: 2;
  line-height: 45px;
  padding-bottom: 0px;
 }

 .home-text h1 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
    display: inline-block;
    width: 100%;
    line-height: 26px;
}
.home-text h2{
	color:#ffffff;
	font-size: 18px;
	font-weight: 700;
	margin:0px;
  line-height:25px;
  width:80%;
}
.home-text div{
	margin:0;
	overflow: hidden;
/*   display:inline-block; */
}
 .home-text div span{
    font-size: 20px;
    color:white;
    font-weight: 700;
    line-height: 16px;
    display: none;
}
  
   .hero-btn {
    padding: 12px 28px;
    font-size: 14px;
}
  
  
  .carousel-button img {
    width: 14px;
  }

  .carousel-button.next {
    padding-left: 60px;
  }
  .vid img {
    width: 50px;
  }

  .vid {
    padding: 30px 18px;
  }

  ul.vertical-socials {
    left: 23px;
    top: 64%;
  }

  .vertical-socials li {
    float: left;
  }

  ul.vertical-socials li.social-icon {
    width: 20px;
    margin-top: 60px;
    margin-right: 46px;
    position: relative;
  }

  .social-icon-img {
    width: 35px;
}
  
  .vl {
    display: none;
  }

  /* Pulse Effect*/
  .pulse {
    width: 50px;
  }

  .pulse:before,
  .pulse:after {
    height: 31%;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1023px) {
  .text-box {
    font-family: "Montserrat", sans-serif;
    width: 90%;
    color: #000000;
    position: absolute;
    top: 38%;
    left: 3%;
    z-index: 4;
  }

  .text-box h1 {
    font-size: 26px;
    margin-bottom: 20px;
    color: white;
    width: 20%;
  }

  .text-box p {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    color: white;
  }

  .home-text{
 	text-align: left;
 	position: relative;
 	z-index: 2;
 }

 .home-text h1 {
    font-size: 16px;
    display: inline-block;
    width: 100%;
   margin-bottom:0px;
}
  
.home-text h2 {
    font-size: 23px;
    width: 70%;
    line-height: 35px;
  margin-bottom:0px;
}
  
.home-text div{
	margin:0;
	overflow: hidden;
/*   display:inline-block; */
}
 .home-text div span{
    font-size: 24px;
    color:white;
    font-weight: 700;
    line-height: 19px;
    display: none;
}
  .hero-btn {
    padding: 12px 28px;
    font-size: 18px;
}
  
 .carousel-button img {
    width: 14px;
  }


  .carousel-button.next {
    padding-left: 60px;
  }
  .vid img {
    width: 50px;
  }

  .vid {
    padding: 30px 18px;
  }

  ul.vertical-socials {
    top: 30%;
  }

  ul.vertical-socials li.social-icon {
    width: 20px;
    margin-top: 20px;
    margin-right: 50px;
    position: relative;
  }
  
  .social-icon-img {
    width: 37px;
}

  ul.vertical-socials li.social-icon svg {
    fill: white;
    width: 60px;
    height: 20px;
  }
/*   .vl {
    display:none;
  } */

  .pulse {
    width: 50px;
  }

  .pulse:before,
  .pulse:after {
    height: 31%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  
 
  
  .home-text h1 {
/*     font-size: 20px;
    margin-bottom: 0px; */
        font-size: 13px;
    margin-bottom: 0px;
}
  
  .home-text h2 {
/*     font-size: 32px;
    line-height: 44px;
    width:55%; */
        font-size: 26px;
    line-height: 35px;
    width: 70%;
}
  
  .hero-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #a41b35;
    color: #fff;
    padding: 12px 34px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
}
  
  .home-text div span{
  font-size:32px;
    line-height:25px;
    padding-left:0px;
  }
  
  
  .text-box {
    top: 50%;
}
  
  .buttons{
   padding:18px 30.5px;
  }
  
  .carousel-button img {
    width: 14px;
  }


  .carousel-button.next {
    padding-left: 60px;
  }
  .vid img {
    width: 50px;
  }

  .vid {
    padding: 30px 18px;
  }
  
  .vl {
    height: 100px;   
}
  
  .social-icon-img {
    width: 36px;
}

  ul.vertical-socials {
    top: 26%;
    right: -0.5%;
  }

  ul.vertical-socials li.social-icon {
    width: 20px;
    margin-top: 16px;
    margin-right: 50px;
    position: relative;
  }

  ul.vertical-socials li.social-icon svg {
    fill: white;
    width: 60px;
    height: 20px;
  }
  .vertical-line {
    border-left: 2px solid white;
    height: 100px;
    position: relative;
    left: 40%;
  }

  .pulse {
    width: 50px;
  }

  .pulse:before,
  .pulse:after {
    height: 31%;
  }
}


@media only screen and (min-width: 1367px) and (max-width: 1600px) {
  
  .home-text h1 {
    font-size: 16px;
}
  
  .home-text h2 {
    font-size: 30px;
  }
  
  
  .hero-btn {
    padding: 14px 30px;
    font-size: 14px;
}
  
  .buttons {
    padding: 18px 30px;
}
  
  ul.vertical-socials {
    right: 0%;
    top: 22%;
}

 .vl {
    height: 90px;
}
  
  ul.vertical-socials li.social-icon {
    width: 20px;
    margin-top: 30px;
}
  
  .social-icon-img {
    width: 40px;
}
  
  .vid {
    padding: 50px 25px;
}
  
  .vid img {
    width: 60px;
}
  
  .pulse {
    width: 70px;
  }
  
}

@media only screen and (min-height: 864px) and (max-height: 865px)  and (min-width: 1024px){

    .home-text h1 {
    font-size: 16px;
}
  
  .home-text h2 {
    font-size: 30px;
  }
  
  
  .hero-btn {
    padding: 14px 30px;
    font-size: 14px;
}
  
  .buttons {
    padding: 18px 30px;
}
  
  ul.vertical-socials {
    right: 0%;
    top: 22%;
}

 .vl {
    height: 90px;
}
  
  ul.vertical-socials li.social-icon {
    width: 20px;
    margin-top: 30px;
}
  
  .social-icon-img {
    width: 40px;
}
  
  .vid {
    padding: 50px 25px;
}
  
  .vid img {
    width: 60px;
}
  
  .pulse {
    width: 70px;
  }

}