	@font-face {
    font-family: 'BebasNeueRegular';
    src: url('../fonts/BebasNeueRegular.eot');
    src: url('../fonts/BebasNeueRegular.eot') format('embedded-opentype'),
         url('../fonts/BebasNeueRegular.woff2') format('woff2'),
         url('../fonts/BebasNeueRegular.woff') format('woff'),
         url('../fonts/BebasNeueRegular.ttf') format('truetype'),
         url('../fonts/BebasNeueRegular.svg#BebasNeueRegular') format('svg');
}
@font-face {
    font-family: 'GothamNarrowBook';
    src: url('../fonts/GothamNarrowBook.eot');
    src: url('../fonts/GothamNarrowBook.eot') format('embedded-opentype'),
         url('../fonts/GothamNarrowBook.woff2') format('woff2'),
         url('../fonts/GothamNarrowBook.woff') format('woff'),
         url('../fonts/GothamNarrowBook.ttf') format('truetype'),
         url('../fonts/GothamNarrowBook.svg#GothamNarrowBook') format('svg');
}

@font-face {
    font-family: 'GothamCondensedMedium';
    src: url('../fonts/GothamCondensedMedium.eot');
    src: url('../fonts/GothamCondensedMedium.eot') format('embedded-opentype'),
         url('../fonts/GothamCondensedMedium.woff2') format('woff2'),
         url('../fonts/GothamCondensedMedium.woff') format('woff'),
         url('../fonts/GothamCondensedMedium.ttf') format('truetype'),
         url('../fonts/GothamCondensedMedium.svg#GothamCondensedMedium') format('svg');
}

@font-face {
    font-family: 'GothamCondensedLight';
    src: url('../fonts/GothamCondensedLight.eot');
    src: url('../fonts/GothamCondensedLight.eot') format('embedded-opentype'),
         url('../fonts/GothamCondensedLight.woff2') format('woff2'),
         url('../fonts/GothamCondensedLight.woff') format('woff'),
         url('../fonts/GothamCondensedLight.ttf') format('truetype'),
         url('../fonts/GothamCondensedLight.svg#GothamCondensedLight') format('svg');
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

	body {
	  color: var(--default-color);
	  background-color: var(--background-color);
	  font-family: var(--default-font);
	}

	a {
	  color: var(--accent-color);
	  text-decoration: none;
	  transition: 0.3s;
	}

	a:hover {
	  color: color-mix(in srgb, var(--accent-color), transparent 25%);
	  text-decoration: none;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
	  color: var(--heading-color);
	  font-family: var(--heading-font);
	}
	
	
	.section-title{}
	.section-title h2{
		font-size:45px;
		color:#ffffff;
		line-height: 50px;
		position: relative;
		display: inline-block;
		font-family: 'BebasNeueRegular';
		font-weight: 700;
		letter-spacing: 2px;
	}
	/* .section-title h2:before {
		content: "";
		position: absolute;
		display: block;
		width: 160px;
		height: 1px;
		background: #444444;
		left: 0;
		right: 0;
		bottom: 1px;
		margin: auto;
	} */
	.section-title h2::after {
		content: "";
		position: absolute;
		display: block;
		width: 95px;
		height: 7px;
		background: #d68a33;
		left: 104%;
		right: 0;
		top: 20px;
		margin: auto;
	}
	.section-title h5{
		font-family: 'BebasNeueRegular';
		font-size:28px;
		color:#d68a33;
	}
	.section-title p{
		font-family: 'GothamCondensedMedium';
		font-size:26px;
	}
 
    .hero {
		width: 100%;
		min-height: 100vh;
		position: relative;
		padding: 0px 0 0px 0;
		display: flex;
		align-items: center;
		background: url('../images/banner-home-bg.jpg') center no-repeat;
		background-size: cover;
		color: white;
    }

	.hero2 {
		width: 100%;
		min-height: 100vh;
		position: relative;
		padding: 0px 0 0px 0;
		display: flex;
		align-items: center;
		background: url('../images/banner-home-bg.jpg') center no-repeat;
		background-size: cover;
		color: white;
    }
	
	.hero .hero-bg {
	  position: relative;
	  inset: 0;
	  display: block;
	  width: 100%;
	  /* height: 100%;
	  object-fit: cover; */
	  z-index: 1;
	  margin:0 auto;
	}
	.hero .hero-bg-mob{
		display:none;
		position: relative;
		inset: 0;
		width: 100%;
		z-index: 1;
		margin: 0 auto;
	}

	.hero:before {
	  content: "";
	  background: color-mix(in srgb, #ffffff, transparent 870%);
	  position: absolute;
	  inset: 0;
	  z-index: 2;
	}

	.hero .container {
	  position: relative;
	  z-index: 3;
	}

	.hero h1 {
	  margin: 0;
	  font-size: 48px;
	  font-weight: 700;
	  line-height: 56px;
	}

	.hero h1 span {
	  color: #1bb1dc;
	}

	.hero p {
	  color: color-mix(in srgb, #444444, transparent 30%);
	  margin: 5px 0 30px 0;
	  font-size: 20px;
	  font-weight: 400;
	}

	.hero .btn-get-started {
	  color: #fff;
	  background: #1bb1dc;
	  font-weight: 400;
	  font-size: 15px;
	  letter-spacing: 1px;
	  display: inline-block;
	  padding: 10px 28px 12px 28px;
	  border-radius: 50px;
	  transition: 0.5s;
	  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	}

	.hero .btn-get-started:hover {
	  color: #ffffff;
	  background: color-mix(in srgb, #1bb1dc, transparent 15%);
	  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	}

	.hero .btn-watch-video {
	  font-size: 16px;
	  transition: 0.5s;
	  margin-left: 25px;
	  color: var(--default-color);
	  font-weight: 600;
	}

	.hero .btn-watch-video i {
	  color: #444444;
	  font-size: 32px;
	  transition: 0.3s;
	  line-height: 0;
	  margin-right: 8px;
	}

	.hero .btn-watch-video:hover {
	  color: #1bb1dc;
	}

	.hero .btn-watch-video:hover i {
	  color: color-mix(in srgb, #1bb1dc, transparent 15%);
	}

	@media (max-width: 640px) {
	  .hero h1 {
		font-size: 28px;
		line-height: 36px;
	  }

	  .hero p {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	  }

	  .hero .btn-get-started,
	  .hero .btn-watch-video {
		font-size: 13px;
	  }
	}
	

    .hero .countdown {
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
    }

    .btn-gold {
      background-color: #c5a14d;
      color: white;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
    }

    .features-section {
      background-color: #f3f3f3;
      padding: 60px 0;
    }

    .feature-box {
      background-color: #fff;
      border-radius:40px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 30px;
      height: 100%;
	  border: 1px solid #bdbaba;
    }
	
	.features-section .prod-img {
		height: 325px;
		max-height: 325px;
	}
	
	.features-section .prod-img img{
		/*height:386px;*/
		height: 459px;
	}
	
	.feature-box h5{
		font-size: 28px;
		font-family: 'BebasNeueRegular';
		letter-spacing:2px;
		text-align:center;
		padding-bottom: 18px;
	}
	.feature-box p{
		font-size: 20px;
		text-align:left;
		font-family: 'GothamNarrowBook';
		padding: 0px 20px 20px;
		line-height: 36px;
	}

    .capture-section {
      background-color: #0e0e0e;
      color: white;
      padding: 68px 0;
	  background: url(../images/footer-bg.jpg) center no-repeat;
		background-size: cover;
    }
	
	
	.slider {
		  margin-bottom: 30px;
		  position: relative;
		}
		.slider .owl-item.active.center .slider-card {
		  transform: scale(1.15);
		  opacity: 1;
		  /*background: #ff9966;  fallback for old browsers */
		  /*background: -webkit-linear-gradient(to bottom, #ff5e62, #ff9966);  Chrome 10-25, Safari 5.1-6 */
		  /*background: linear-gradient(to bottom, #ff5e62, #ff9966);  W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
		  color: #fff;
		}
		
		.slider .owl-item.active.center .slider-card h5{
			position: absolute;
			bottom: 0;
			width: 100%;
			background: rgb(0 0 0 / 67%);
			padding: 10px;
			margin: 0;
		}
		
		.slider-card {
		  background: #fff;
		  padding: 0px 0px;
		  margin:30px 15px 40px 15px;
		  border-radius: 30px;
		  /* box-shadow: 0 15px 45px -20px rgb(0 0 0 / 73%); */
		  transform: scale(0.9);
		  opacity: 0.5;
		  transition: all 0.3s;
		}
		.slider-card h5{
			position: absolute;
			bottom: 0;
			width: 100%;
			background: rgb(0 0 0 / 67%);
			padding: 10px;
			margin: 0;
			border-radius: 0px 0px 30px 30px;
			font-family: 'GothamCondensedLight';
			letter-spacing: 2px;
			text-transform: uppercase;
			font-size: 28px;
		}
		.slider-card img {
		  border: 1px solid #bdbaba;
			border-radius: 30px;
		}
		
		.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
			display: block !important;
		}
		
		.owl-nav .owl-prev {
		  position: absolute;
		  top: calc(50% - 25px);
		  left: -15px;
		  opacity: 1;
		  font-size: 30px !important;
		  z-index: 1;
		}
		.owl-nav .owl-next {
		  position: absolute;
		  top: calc(50% - 25px);
		  right: -15px;
		  opacity: 1;
		  font-size: 30px !important;
		  z-index: 1;
		}
		
		.owl-nav .owl-prev, .owl-nav .owl-next{
			background: #d68a33 !important;
			width: 45px;
			height: 45px;
			border-radius: 50px;
		}
		
		.owl-dots {
		  text-align: center;
		}
		.owl-dots .owl-dot {
		  height: 10px;
		  width: 10px;
		  border-radius: 10px;
		  background: #ccc !important;
		  margin-left: 3px;
		  margin-right: 3px;
		  outline: none;
		}
		.owl-dots .owl-dot.active {
		  background: #d68a33 !important;
		}
		

    /* .owl-carousel .item img {
      border-radius: 10px;
      width: 100%;
    } */
	
	
	/*--------------------------------------------------------------
	# Global Stiky
	--------------------------------------------------------------*/
	.headersticky {
	  background-color: #000;
	  font-size: 14px;
	  padding:0px 0 0 0;
	  position: relative;
	  width:100%;
	  position:absolute;
	  bottom:0px;
	  z-index:9;
	  background: url('../images/footer-bg.jpg') center no-repeat;
	  background-size: cover;
	}

	.headersticky .icon {
	  color: #fff;
	  margin-right: 15px;
	  font-size: 24px;
	  line-height: 0;
	}

	.headersticky h4 {
	  font-size:36px;
	  font-weight:400;
	  margin-bottom: 0px;
	  font-family: 'GothamCondensedMedium';
     text-transform: uppercase;
	}

	.headersticky .address p {
	font-family: 'GothamCondensedLight';
	text-transform: uppercase;
	font-size: 24px;
	color: #fff;
	margin: 0;
	line-height: 1;
	margin-bottom: 0px;
	}
	
	.headersticky .countdown {
	  margin-top:15px;
	  margin-bottom:15px;
	}
	
	.registernow{
		text-align:right;
	}
	.registernow a{
		border-radius: 5rem;
		--tw-bg-opacity: 1;
		background-color: #d68a33;
		stroke: #fff;
		--tw-text-opacity: 1;
		color: rgb(255 255 255 / var(--tw-text-opacity));
		--tw-ring-opacity: 1;
		--tw-ring-color: #d68a33;
		padding: 12px 55px;
		text-transform: uppercase;
		font-size: 24px;
		font-family: 'BebasNeueRegular';
	}

	.headersticky .countdown div {
	  text-align: center;
	  border: 0px solid #ff0000;
	  border-radius: 8px;
	  margin:0px 18px;
	  width: 50px;
	  padding: 0px 0;
	}

	.headersticky .countdown div h3 {
		font-weight: 700;
		font-size: 32px;
		margin-bottom:8px;
		background: #fff;
		color: #000;
		padding: 5px;
	}

	.headersticky .countdown div h4 {
	  font-size: 15px;
	  font-weight: 400;
	  font-family: 'BebasNeueRegular';
	  letter-spacing: 2px;
	}

	@media (max-width: 575px) {
	  .headersticky .countdown div {
		width: 70px;
		padding: 10px 0;
		margin: 10px 8px;
	  }
	  .headersticky .countdown div p {
		display: none;
	  }

	  .headersticky .countdown div h3 {
		font-size: 28px;
		margin-bottom: 10px;
	  }

	  .headersticky .countdown div h4 {
		font-size: 14px;
		font-weight: 500;
	  }
	}

	
	
	/*--------------------------------------------------------------
	# About Section
	--------------------------------------------------------------*/
	.about {
	  padding-top:70px;
	  padding-bottom:70px;
	}

	.about .about-image {
	  position: relative;
	}

	.about .about-image img {
	  border-radius: 0px 0px 0px 100px;
	  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	  transition: transform 0.3s ease;
	}

	.about .about-image img:hover {
	  transform: translateY(-5px);
	}

	.about .contents {
	  padding-left: 60px;
	  background-color: #fff;
		 border-radius: 0px 100px 0px 0px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		padding:50px;
		height: 100%;
	}

	@media (max-width: 991px) {
	  .about .contents {
		padding-left: 0;
		margin-top: 60px;
	  }
	}

@media (max-width: 1050px) {
	  .feature-box .feature-img {
		width:100%;
	  }
}
	.about .contents h2 {
	  font-family: 'BebasNeueRegular';
		font-size: 52px;
		color: #000000;
		line-height: 50px;
		position: relative;
		display: inline-block;
		text-transform:uppercase;
	}

	.about .contents .lead {
	  font-size: 1.25rem;
	  font-weight: 300;
	  line-height: 1.8;
	  margin-bottom: 40px;
	  color: #ff0000;
	}

	.about .contents h5{
		color:#d68a33;
		font-size:30px;
	}
	.about .contents p {
	  font-size: 18px;
	  line-height: 1.8;
	  /*margin-bottom: 20px;*/
	  margin-bottom: 0px;
	  color: #000000;
	  font-family: 'GothamNarrowBook';
	}



@media (max-width: 1150px) {
	  .feature-box .feature-img {
		width:100%;
	  }
}	
	
	
@media (max-width: 1380px) {
	  .feature-box .feature-img {
		width:100%;
	  }
}		
	
	

    .faq-section {
      background-color: #fff;
      padding: 60px 0;
    }
	
	.faq-section .accordion-header{
		font-family: 'GothamCondensedLight';
		font-weight: 300;
		letter-spacing: 1px;
		
	}
	
	.faq-section .accordion-button{
		font-size: 28px;
		font-weight: 400;
	}
	
	.accordion-button:focus {
		z-index: 3;
		border-color: #ffffff;
		outline: 0;
		box-shadow: none;
	}
	
	.faq-section .accordion-item{
		border:0px;
		margin-bottom: 25px;
	}
	
	.faq-section .accordion-button:not(.collapsed){
		background-color:#d68a33;
		color:#fff;
	}
	
	.accordion-body{
		font-size:18px;
		font-family: 'GothamNarrowBook';
		line-height:32px;
	}

    footer {
      background-color: #0e0e0e;
      color: white;
      padding: 60px 0 130px;
	  background: url('../images/footer-bg.jpg') center no-repeat;
	  background-size: cover;
	  position:relative;
    }

    footer a {
      color: #c5a14d;
      text-decoration: none;
    }
	
	.address-link h5{
		font-family: 'GothamCondensedMedium';
		font-size:33px;
		color:#d68a33;
		text-transform:uppercase;
		line-height:30px;
	}
	.address-link p{
		font-family: 'GothamNarrowBook';
		font-size:20px;
		color:#fff;
	}
	
	.phone-link{}
	.phone-link ul{list-style:none; padding:0px;}
	.phone-link ul li{
		font-family: 'GothamCondensedLight';
		font-size:24px;
		color:#fff;
		padding-bottom:12px;
		letter-spacing:2px;
	}
	.phone-link ul li span{padding-right:5px;}
	
	.social-link h6{
		font-family: 'GothamCondensedMedium';
		font-size:33px;
		color:#d68a33;
		text-transform:uppercase;
		line-height:30px;
	}
	.social-link p{
		font-family: 'GothamNarrowBook';
		font-size:20px;
		color:#fff;
	}
	.social-link p a{
		color:#fff;
		text-decoration:underline;
	}
	.social-link p a:hover{
		color:#d68a33;
		text-decoration:none;
	}
	.social-link p span{
		color:#d68a33;
	}
	
	.social-link ul{list-style:none; padding:0px;}
	.social-link ul li{
		font-family: 'GothamCondensedLight';
		font-size:30px;
		color:#fff;
		padding-bottom:5px;
		letter-spacing:2px;
		display:inline-block;
		margin-right:10px;
	}
	
	
	.footerfixed {
		position: fixed;
		width: 100%;
		bottom: 0px;
		padding-right: 4px;
		--tw-backdrop-blur: blur(12px);
		overflow: hidden;
		gap: 7px;
		z-index: 10;
		top: auto;
		right: 0;
		left: 0;
		margin-top: 0;
		margin-bottom: 0;
		align-items: center;
		margin-left: auto;
		margin-right: auto;
		border-radius:0px;
		padding: 15px 0px;
		border-color: hsla(0, 0%, 100%, .4) hsla(0, 0%, 100%, .1) hsla(0, 0%, 100%, .1) hsla(0, 0%, 100%, .2);
		border-style: solid;
		border-width: 1px;
		background: #d68a33;
		text-align:center;
	}
	
	.footerfixed a{
		border-radius: 5rem;
		--tw-bg-opacity: 1;
		background-color: #222222;
		stroke: #fff;
		--tw-text-opacity: 1;
		color: rgb(255 255 255 / var(--tw-text-opacity));
		--tw-ring-opacity: 1;
		--tw-ring-color: #222222;
		padding: 12px 55px;
		text-transform:uppercase;
		font-size: 24px;
		font-family: 'BebasNeueRegular';
	}

    .map {
      height: 150px;
      width: 100%;
	  max-width:400px;
      background-color: #ccc;
	  
    }
	
	#scroll {
		position: absolute;
		z-index: 100;
		display: none;
		cursor: pointer;
		background-color: #ffffff;
		color: #fff;
		z-index: 0;
		top: -25px;
		left: 50%;
		width: 60px;
		height: 60px;
		text-align: center;
		line-height: 50px;
		margin-left: -25px;
		border-radius: 50px;
		transform: rotate(0deg);
	}
	
	@media (max-width: 640px) {
		.section-title h5{
			font-size: 24px;
		}
		.section-title p{
			font-size: 18px;
		}
		.section-title h2{
			font-size: 35px;
			line-height: 35px;
		}
		.section-title h2::after{
			width: 45px;
			top: 10px;
		}
		.about .contents h2{
			font-size: 35px;
			line-height: 33px;
		}
		.about .contents {
			padding-left: 20px;
		}
		.about .contents{
			padding:40px 20px;
			height: auto;
		}
		.feature-box .feature-img{
			width:100%;
		}
		
		.headersticky{text-align: center;padding: 30px 0 30px 0;position:relative;}
		.registernow{text-align: center;}
		.owl-nav{text-align:center;}
		.owl-nav .owl-prev{position:relative;}
		.owl-nav .owl-next{position:relative;}
		.features-section .prod-img{order: 1;}
		.slider-card img{border-radius: 5px;}
		
		.hero .hero-bg{display:none;}
		.hero .hero-bg-mob{display:block;}
		.hero .hero-bg-mob img{display:block;}
		.hero{
			min-height: auto;
			display: block;
		}
		.features-section .row.g-5, .gy-5{
			--bs-gutter-y: 2rem;
		}
		.features-section .row.g-5, .gx-5{
			--bs-gutter-x: 1rem;
		}
		.phone-link {
			margin-top: 30px;
		}
		.social-link{margin-top: 30px;}

	}