:root {
	--orange: #f7931d;
	--white: #fefefe;
	--black: #2d2f39;
	--grey: #e6e7e8;
  }
  * {
	  box-sizing: border-box;
	  margin: 0;
	  padding: 0;
  }
  .logo{
  
	width: 90px;
  }
  
  
  .Home{
  
  background-color: var(--black) !important;
  
  
  
  
  }
  


  header {
	  overflow: hidden;
	  height: 65vh;
	  position: relative;
  }
  .vid-bg {
	  position: absolute;
	  right: 0;
	  bottom: 0;
	  min-width: 100%;
	  min-height: 100%;
  }
  
  header .welcome-text {
	  position: absolute;
	  width: 100%;
	  text-align: center;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
  }
  .welcome-text h2 {
	  color: #fff;
	  font-size: 80px;
	  margin: 0;
	  font-family: Berkshire Swash;
  }
  .welcome-text p {
	  color: #fff;
	  font-size: 18px;
	  width: 45%;
	  line-height: 1.8;
	  margin: auto;
  }
  .btn {
	  background: #fff;
	  border: none;
	  color: #000;
	  padding: 10px 30px;
	  font-size: 15px;
	  text-transform: uppercase;
	  border-radius: 25px;
	  display: inline-block;
	  margin-top: 25px;
  }
  /*responsive*/
  
  @media (min-width: 767px) and (max-width: 991px) {
	  .welcome-text p {
		  width: 95%;
	  }
  }
  @media (max-width: 767px) {
	  .logo {
		  float: none;
		  text-align: center;
	  }
  
  
	  .welcome-text h2 {
		  font-size: 28px;
		  margin-bottom: 18px;
	  }
	  .welcome-text p {
		  width: 90%;
		  line-height: 1.5;
	  }
  }
  

@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-left,
	.footer-right {
		flex-direction: column;
		margin-bottom: 10px;
	}

 

	.footer-icons {
		margin-bottom: 10px;
	}
}
  
  h1{
  
	font-size: 60px !important;
  }
  p{
  
  font-size: 20px !important;
  
  }
  
  
	
  .nav-links {
	list-style-type: none;
	padding: 0;
	display: flex;
	justify-content: center; /* Centers the buttons horizontally */
}

.nav-links button {
    background-color: orange; /* Set button color to orange */
    border: none; /* Remove the border */
    margin-top: 15px;
    border-radius: 30px;
    padding: 10px 20px; /* Add some padding */
    margin-right: 10px; /* Add space between buttons */
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.nav-links button:hover {
    background-color: darkorange; /* Darken the button on hover */
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}
.nav-links button a {
	text-decoration: none;
	color: white; /* Set the text color inside the button */
}

.nav-links button:hover {
	background-color: darkorange; /* Darken the button on hover */
}

.nav-links button:last-child {
	margin-right: 0; /* Remove margin from the last button */
}
.footer {
    background-color: #1a1a1a;
    padding: 19.5px 10px;
    width: 100%;
    color: #ffffff;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
}

.footer-left .footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-left .footer-link:hover {
    text-decoration: underline;
}

.footer-icons {
    display: flex;
    align-items: center;
}

.footer-icons i {
    color: var(--white) !important;
}

.footer-icon {
    margin: 0 10px;
}

.footer-icon img {
    width: 20px;
    height: 20px;
}

.footer-right {
    font-size: 14px;
    color: #b3b3b3;
}