 /* Layout components */
 
 @font-face {
    font-family: 'GothamLight';
    src: url('GothamLight.otf');
    src: url('GothamLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamMedium';
    src: url('GothamMedium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GothamBold';
    src: url('GothamBold.otf');
    src: url('GothamBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham-Book';
     src: url('Gotham-Book.otf');
    src: url('Gotham-Book.ttf') format('truetype');
/*    src: url('Gotham-Book.woff') format('woff');*/
/*    src: url('Gotham-Book.eot') format('eot');*/
    font-weight: normal;
    font-style: normal;
}

html {
    width: 100%;
   
}
body {
    font-family: 'GothamMedium';
    font-size: 14px;
	cursor: url('../assets/images/img_layer_1.svg'), auto;
	overflow-x: hidden;
	      background-size: cover;
      background-position: center;
      transition: background-image 1s ease-in-out;
	

}
 *{margin:0px;padding:0px;} 
 
 
 
 
 
 .slideshow,
.slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
	background-color: rgba(0, 0, 0, 1);
}
.slideshow:after {
   /* content: '';
    background: transparent url(../assets/images/1.jpg) repeat top left;*/
}
.slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
	
}

.slideshow li:nth-child(1) span { background-image: url('../assets/images/1.jpg'); }
.slideshow li:nth-child(2) span {
    background-image: url('../assets/images/5.jpg');
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
    background-image: url('../assets/images/4.jpg');
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.slideshow li:nth-child(4) span {
    background-image: url('../assets/images/3.jpg');
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.slideshow li:nth-child(5) span {
    background-image: url('../assets/images/2.jpg');
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.slideshow li:nth-child(6) span {
    background-image: url('../assets/images/1.jpg');
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
		 
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
		 
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
		 
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
		 
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.1);
		 
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.1);
		 
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
		 
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.1);
		 
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
		 
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.1);
		 
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.1);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	
	}
	17% {
	    opacity: 1;
	    transform: scale(1.1);
		
	}
	25% {
	    opacity: 0;
	    transform: scale(1.1);
	}
	100% { opacity: 0 }
}
/* Animation for the title */
@-webkit-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -webkit-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -webkit-transform: translateY(0px);
		
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1);
		 
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -webkit-transform: scale(10);
	}
	100% { opacity: 0 }
}
@-moz-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -moz-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -moz-transform: translateY(0px);
		
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1);
	 
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -moz-transform: scale(10);
	}
	100% { opacity: 0 }
}
@-o-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -o-transform: translateY(200px);
		
	}
	8% {
	    opacity: 1;
	    -o-transform: translateY(0px);
		 
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1);
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -o-transform: scale(10);
	}
	100% { opacity: 0 }
}
@-ms-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -ms-transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    -ms-transform: translateY(0px);
		 
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1);
		 
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    -webkit-transform: scale(10);
	}
	100% { opacity: 0 }
}
@keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    transform: translateY(200px);
	}
	8% {
	    opacity: 1;
	    transform: translateY(0px);
		 
	}
	17% {
	    opacity: 1;
	    transform: scale(1);
		 
	}
	19% { opacity: 0 }
	25% {
	    opacity: 0;
	    transform: scale(10);
	}
	100% { opacity: 0 }
}
/* Show at least something when animations not supported */
.no-cssanimations .slideshow li span{
	opacity: 1;
}
 
 .logo{ }
 header{float: left; width: 100%; overflow: hidden;}
 
 
.hero-section-inner {
  position: relative;
  margin-top: 71px;
}
.owl-carousel {width: 100%;margin: 0 auto;z-index: 1;}

        /* Make sure the item takes up the full width and height of the container */
        .owl-carousel .item {
            position: relative;
            height: 180vh; /* Full viewport height */
        }

        /* Set the background image for each item */
        .owl-carousel .item {
            background-size: cover; /* Ensures the image covers the entire slide */
            background-position: center center; /* Center the background image */
            background-repeat: no-repeat;
        }

        /* Optional: Style for the text/content inside the slides */
 

   

        /* Optional: Add dots or navigation styles */
        .owl-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            z-index: 100;
        }
 
 
 
 
 
 
 
 

.main-container {
		width: 100%;
		position: absolute;
		z-index: 80001;
		top: 0px;
		/*background-color: rgba(0, 0, 0, 0.2); */
		color:#fff;
		}
    
 
 
.header-section {
    float: left;
    width: 100%;
    background-color: #dcdcda;
    padding:15px;
}


   .hero-title {
font-size: 55px;
  font-weight: bold;
  line-height: 60px;
  font-family: GothamMedium;
  letter-spacing: -.55px;
  color: #d1d1ce;
  }
  .hero-title p{margin:0px;}
.hero-section {

float: left;
  width: 100%;
  padding-left: 71px;
  padding-right: 71px;
}
  .launch-button img{float:left;} 
  
      /* Interactive states */
.launch-button {
	float: left;
	width: 100%;
	background: transparent;
	border: 1px solid #ffffff;
	border-radius: 26px;
	padding: 4px 71px 4px 5px;
	color: #ffffff;
	font-size: 16px;
	font-family: 'GothamLight', sans-serif;
	font-weight: 300;
	line-height: 25px;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	align-items: center;
	background: url(../assets/images/img_layer_1.svg);
	background-repeat: repeat;
	background-repeat: no-repeat;
	padding: 13px 22px;
	text-align: center;
	background-position: 4px 2px;
}



.bar {
position: relative;
  height: 44px;
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 22px;
  overflow: hidden;

  
  
}

.loading-text {
font-family: 'Gotham-Book';
  margin: auto;
  color: #fff;
  letter-spacing: 0px;
  font-size: 13px;
  z-index: 2;
}

.progress {

  height: 42px;
  background: #d8905d;
 /*
background-image: url(../assets/images/img_layer_1.svg);
background-repeat: repeat;
background-repeat: no-repeat;
background-position: 0px 30px;
 */ 
  position:absolute;
  -webkit-animation-name: "slide";
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function:linear;
  -webkit-animation-iteration-count:infinite;
  border-radius:100px;
 
  
  }

@-webkit-keyframes slide{
  0%{
	  
    -webkit-transform: translateX(0%);
    background-color:#d8905d;
    width:10%;
  }
  
  25%{
    -webkit-transform: translateX(25%);
    background-color:#d8905d;
    width:25%;
  }
  
  50%{
    -webkit-transform: translateX(50%);
    background-color:#d8905d;
    width:50%;
  }
  
  75%{
    -webkit-transform: translateX(75%);
    background-color:#d8905d;
    width:75%;
  }
  
  100%{
    -webkit-transform: translateX(100%);
    background-color:#d8905d;
    width:100%;

  }
}




    .launch-button:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: scale(1.05);
    }

    .launch-button:active {
      transform: scale(0.95);
    }

    .social-links {
display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  gap: 8px;
  margin-top: 10%;
    }

    .social-link {
      display: inline-block;
      transition: transform 0.3s ease-in-out;
    }

    .social-link:hover {
      transform: scale(1.2);
    }

    .social-icon {
      width: 24px;
      height: 24px;
    }

    .social-icon:nth-child(2) {
      width: 26px;
      height: 26px;
    }

    .social-icon:nth-child(3) {
      width: 20px;
      height: 20px;
    }
	.launch-button-inner{		
		float: left;
		width: 450px;
	
	height: 58px;
  margin: 30px 0;
  border: 3px solid #fff;
  border-radius: 100px;
  padding: 4px;
}	
		
		
.content-card {
/*background-color: rgba(16, 16, 16, 0.6);*/
background-color: #34393ca1;
  border-radius: 37px;
  width: 568px;
  float: right;
  font-family: 'Gotham-Book';
  top: -46px;
  position: relative;
  padding: 58.5px;
  margin-bottom: 20px;
  height: 430px;
}


  /*
  
.content-card {
background-color: rgba(16, 16, 16, 0.6);
  border-radius: 40px;
  width: 587px;
  float: right;
  font-family: 'Gotham-Book';
  top: 227px;
  right: 35px;
  position: absolute;
  padding: 140px;
 

}*/
.hero-part{
	position: relative;
  float: left;
  width: 100%;
}


.hero-left{
float: left;
  width: 100%;
  height: 286px;
}
.description-text {
font-size: 15px;
  color: #DBDBD9;
  font-weight: bold;
  line-height: 19px;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}


 @media (max-width: 1200px) {
	 
	  .content-card {
margin-top: 0px;
    top: 0%;
    float: left;
    height: auto;
	  }
	  
	  .owl-carousel .item {
            position: relative;
            height: 105vh; /* Full viewport height */
        }  
		
		
		
	.hero-title {
font-size: 31px;
    line-height: 37px;
		
	}	
		
		

	 
 }
 
 
  @media (max-width: 450px) {
 .launch-button-inner {
  float: left;
  width: 100%;

}

  .hero-title {
    line-height: 37px;
    margin: 0px;
  }

.hero-left {
  height: auto;
}



.hero-section {

  padding-left: 33px;
  padding-right: 33px;
}
.content-card {
  width: 100%;
margin-top: 13px;
  padding: 20%;

}


	  .owl-carousel .item {
            position: relative;
            height: 130vh; /* Full viewport height */
        }  


.launch-button-inner {

  margin: 25px 0;

}


  }