* {
  box-sizing: border-box;
  
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #000;

}
/* Align the logo to the left and the nav bar to the center */
#header {
  display: flex; /* Set the header to be a flex container */
  align-items: center; /* Align the logo and links vertically */
  justify-content: space-between; /* Space the logo and nav bar evenly */
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 10;
  min-width: 360px;
  background-color: #fff;
  padding: 1rem;

}
#nav-bar {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  

}

#header-img {
  padding-left: 20px;
  width: 140px;
}
.nav-link {
  white-space: nowrap; /* Prevent links from wrapping */
  position: relative;
  margin: 0 1em;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease-out, background-image 0.3s ease-out, background-size 0.3s ease-out, background-position 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 1;
}
.nav-link:hover {
  background-image: linear-gradient(to right, #fff, #fff, #fff, #fff, #fff);
  background-size: 200% 100%;
  background-position: center;
  color: rgb(12, 34, 156);
  opacity: 0.5;
  transition: color 0.3s ease-in, background-image 0.3s ease-in, background-size 0.3s ease-in, background-position 0.3s ease-in, opacity 0.3s ease-in;
}


.nav-link::before {
  margin-bottom: -2px;
  content: "";
  position: absolute;
  bottom: 0; /* Position the pseudo-element at the bottom of the .nav-link */
  left: 0;
  width: 100%;
  height: 4px; /* Adjust the height to your desired size */
  background-color: #E9E600; /* Adjust the color to your desired color */
  transform: scaleX(0); /* Start with a width of 0 */
  transition: transform 250ms; /* Add a transition */
}

.nav-link:hover::before {
  transform: scaleX(1); /* When hovered, expand the width to 100% */
}




.overview-button {
  color: #000;
  font-size: 1rem;
  position: relative; /* Add the position property for the highlight effect */
  transition: 0.3s ease-out;
  opacity: 1;
}
.overview-button:hover {
  transition: 0.3s ease-in;
  font-size: 1.5rem;
  /* Add the highlight effect properties */
}
.overview-button::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #d9ff00;
    transform: scaleX(0);
    transition: transform 250ms ease-in;
}
.overview-button:hover::before {
    transform: scaleX(1);
}


/* Center the text within the video */
#overview {
  display: flex; /* Set the parent container to be a flex container */
  align-items: center; /* Center the text vertically */
  justify-content: center; /* Center the text horizontally */
  position: relative; /* position relative to the video*/
  z-index: 1;
  top: -40px;
  
}
.main-header-inner {
  z-index: 2; /* set the z-index higher than the video*/
  text-align: center; /* Center the text within the div */
  display: block;
  position: absolute;
  top: 35%;
  max-width: 80vw;
}


video {
  max-width: 130vw;
}

.main-image-header-1 {
  font-family: sans-serif;
  color: white;
  font-size: 5rem;
  max-width: 100%;
  display: block;
  
}
.main-image-subtitle-1 {
  font-family: 'Permanent Marker', cursive;
  color: white;
  font-size: 4rem;
  max-width: 100%;
  margin: 0;
  display: block;

}
h1 {
  padding: 0;
  margin: 0;
}
.overview-button {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  display: block;
  width: auto;
  height: auto;
  margin: 26px auto;
  letter-spacing: 0.25rem;
  font-size: 1.2rem;
  padding: 0.5em 1em;
  font-weight: bold;
  cursor: pointer;
  margin-top: 3rem;
}

@media only screen and (max-width:1140px) {
  .main-image-header-1 {
    font-size: 4rem;
  }
  .main-image-subtitle-1 {
    font-size: 3rem;
  }
  video {
    width: 1140px !important;
  }
  .overview-button {
    margin-top: 1rem;

  }
}
@media only screen and (max-width:930px) {
  .main-image-header-1 {
    font-size: 3rem;
  }
  .main-image-subtitle-1 {
    font-size: 2rem;
  }
  video {
    width: 930px !important;
  }

}
@media only screen and (max-width:700px) {
  .main-image-header-1 {
    font-size: 2.2rem;
    width: 100%;
  }
  .main-header-inner {
    max-width: 100vw;
    white-space: nowrap;
    margin: 0;
    padding: 0;
  }
  .main-image-subtitle-1 {
    font-size: 1.6rem;
  }
  .overview-button {
    font-size: 1rem;

  }
  .overview-button:hover {
    font-size: 1rem; /* same as non-hover state */
  }
  video {
    width: 700px;
  }

}
@media only screen and (max-width:650px) {
  #header-img {
    width: 80px;
    padding-left: 12px;

  }
  .nav-link {
    font-size: 0.8rem;
    margin: 0;
  }


}
@media only screen and (max-width:500px) {
  .main-image-subtitle-1 {
    font-size: 1.3rem;
  }
  .main-image-header-1 {
    font-size: 1.7rem;
  }

}

/*  Section 2*/
body {
  font-family: 'Roboto', sans-serif;
}
a {
  text-decoration: none;
}
#features {
  height: 30vw;
  padding: 0;
  margin: 0 auto;
  width: 100vw;
  position: relative;
  top: 20px;
}

.background-landscape {
  background-image: url(bg-pattern.webp) ;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

}
.features-container {
  text-align: center;
  margin: 100px auto 0;
  width: fit-content;
}
.heading-style {
  background-color:rgb(236, 232, 26);
  color: #000;
  font-size: 1.4rem;
  padding: 5px;
  border: 1px solid #000;
  
}
.subheading-style {
  color: aliceblue;
  font-size: 4rem;
  text-align: center;
  margin: 0 auto 60px;
  width: fit-content;
  position: relative;
  
}

.subheading-style::before,
.subheading-style::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 30%;
  height: 2px;
  background-color: yellow;
}

.subheading-style::before {
  left: 31%;
}

.subheading-style::after {
  right: 31%;
}
.icons-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
  margin-top: 40px;
}
.feature-icon {
  width: 100%;
  text-align: center;
}
.icon-circle {
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  height: 100px;
  width: 100px;
  overflow: hidden;
  text-align: center;
  line-height: 100px;
  box-shadow: 0px 0px 10px 5px rgba(208, 255, 0, 0.5);
}
.icons {
  max-width: 100%;
  width: 50%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
h3 {
  color: yellow;
  letter-spacing: 2px;
  font-weight: lighter;
  padding: 10px;
  margin: 8px 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  animation: glow 2s ease-in-out infinite alternate;
  }
  
  @keyframes glow {
  from {
  text-shadow: 0 0 0px rgb(255, 255, 0), 0 0 10px rgb(255, 255, 0), 0 0 20px rgb(255, 255, 0);
  }
  to {
  text-shadow: 0 0 10px rgb(255, 255, 0), 0 0 20px rgb(255, 255, 0), 0 0 30px rgb(255, 255, 0);
  }
  }
  /*  Section 3*/
#tech-specs {
  background-position: bottom right;
  background-image: url(black.jpg);
  margin: 0 auto;
  padding: 1px 0;
  width: 100vw;
}
.product-highlight-container {
  display: flex;
  width: 100vw;
  justify-content: center;
  margin: 80px auto 200px;
  padding: 0;
}

.product-image-container {
  width: 40%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.product-image {
  width: 60%;
  padding: 15px;
  object-fit: contain;
}
.product-description {
  color: white;
  width: 40%;
  padding: 35px;
  
}
.product-tag {
  display: inline;
  background-color: yellow;
  color: black;
  padding: 5px 15px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}
.product-heading {
  color: white;
  font-size: 3rem;
  display: block;
}
.description {
  font-size: 1.6rem;
  color: rgb(160, 160, 160);
}
.description-icons {
  width: 10%;
  margin: 10px;
}
.product-icon { 
  object-fit:fill;
  width: 80%;
  margin: 0px auto 30px;
  justify-content: center;
  display: flex;
  vertical-align: middle;
  flex-direction:column;

}
.description-image {
  font-size: 3rem;
  color: white;
  font-weight: bold;
  letter-spacing: 5px;
  padding: 20px;
  margin: 0;
  text-align: center;
  vertical-align: center;
  display: flex;
  justify-content: center;
  
}
.row-container {
  display: flex;
  flex-direction: row;
  justify-content:space-around;
  align-items: center;  
  width: 100%;
}
.row-icons {
  width: 50%;
}
.column-container {
  flex-direction: column;
  display: flex;
  align-items: center;  
  width: 50%;
}
.row-text {
  font-size: 1.1rem;
  text-align: center;
  width: 50%;
}
/*  Section 4*/
#pricing {
  width: 100%;
  background-color: aliceblue;
  padding: 1px;
  box-sizing: border-box;
}

.features-container-section-4 {
  text-align: center;
  margin: 100px auto 0;
  width: fit-content;
  
}
.heading-style-section-4 {
  background-color:rgb(0, 174, 255);
  color: white;
  font-size: 1.4rem;
  padding: 5px 20px;
  letter-spacing: 2px;
  border: none;
  box-shadow: 0 0 15px 5px rgba(0, 119, 255, 0.527);
  margin: 0;

  
}
.subheading-style-section-4 {
  color: black;
  font-size: 4rem;
  text-align: center;
  margin: 0 auto 2rem;
  width: fit-content;
  position: relative;
  font-family: 'Permanent Marker', cursive;
  font-weight:400;
}

.subheading-style-section-4::before,
.subheading-style-section-4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 30%;
  height: 2px;
  background-color: rgba(0, 119, 255, 0.527);
}

.subheading-style-section-4::before {
  left: 31%;
}

.subheading-style-section-4::after {
  right: 31%;
}
.pricing-banner {
  width: 100%;
  background: url(https://files.123freevectors.com/wp-content/original/131392-light-blue-polygon-background.jpg);
  background-position:top;
  padding: 1rem 4rem 4rem 4rem;
  position: relative;
  
}
.content-wrapper {
  width: 100%;
  vertical-align: middle;
  display: flex;
  margin-bottom: 3em;
  justify-content: space-evenly;  
  text-align: center;

}
.shadow {
  position: absolute;
  bottom: unset;
  left: 10%;
  height: 100%;
  transform: scale(1.2);
}
.pricing-image {
  display: flex;
  opacity: 1;
  max-width: 35%;
  object-fit:contain;
}
.content-column {
  width: 50%;
  margin: 0;
}
.content-heading {
  font-family: 'Permanent Marker';
  color: aliceblue;
  font-size: 3.6rem;
  flex-direction: column;


}
.content-description {
  color: aliceblue;
  font-size: 2rem;
  line-height: 1.6em;
}

.price {
  background-color: transparent;
  border: 2px solid white;
  padding: 1rem 2rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative; /* Add the position property for the highlight effect */
  transition: 0.3s ease-out;
  opacity: 1;
}
.price:hover {
  transition: 0.3s ease-in;
  font-size: 1.6rem;
  /* Add the highlight effect properties */
}
.price::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #fbee39;
    transform: scaleX(0);
    transition: transform 250ms ease-in;
}
.price:hover::before {
    transform: scaleX(1);
}

.price-banner {
  position: absolute;
  background-color: aliceblue;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.2rem;
  margin: 0 auto;
  text-align:end;
  font-size: 2rem;

}
.price-bold {
  font-size: 3rem;
  color: #39b5fb;
  font-weight: bold;
  font-style: italic;
}
.price-lighter {
  font-size: 2rem;
}
/*  Section 5*/
section {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#bundles {
  width: 100%;
  background-color: black;
  box-sizing: border-box;
  max-width: 90vw;
}
.gallery {
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  display: flex;
}
.gallery-row {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;


}
.bundle-image {
  width: 40%;
  object-fit: contain;
  margin: 10px;

}
footer {
  background-color: rgb(24, 24, 24);
  color: #fff;
  text-align: center;
  padding: 30px 0;
  width: 100vw;
}
#subscribe-section {
  width: 50%;
  margin: 0 auto;
}
#form {
  margin: 0;
}

#email {
  width: 30%;
  padding: 10px;
  margin-right: 0;
  font-size: 16px;
  border-radius: 5px 0 0 5px;
  border: none;
}

#submit {
  width: 10%;
  padding: 10px;
  font-size: 16px;
  background-color: yellow;
  color: #000;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  margin-left: -10px;
}

@media only screen and (max-width:500px) {
  .background-landscape p {
    font-size: 1.3rem;
  }
  .background-landscape {
    font-size: 1.7rem;
  }

}	
@media only screen and (max-width:500px) {
  .tech-specs p {
    font-size: 1.3rem;
  }
  .product-description p {
    font-size: 1.2rem;
  }
  .product-description h2 {
    font-size: 1.2rem;
  }
  .subheading-style {
    font-size: 1.2rem;
  }
}	
@media only screen and (max-width:500px) {
  .product-image-container {
    flex-direction: column;
	  	width: 100%;
  }
  .product-description {
    flex-direction: column;
	  	width: 100%;
  }
  .product-description  {
    flex-direction: column;
	  	width: 100%;
  }
	.background-landscape {
    flex-direction: column;
			width: 100%;
  }
	.product-highlight-container {
    flex-direction: column;
	width: 100%;
  }

}
@media only screen and (max-width:500px) {
.pricing-banner {
    flex-direction: column;
	width: 100%;
  }
.content-wrapper {
	   flex-direction: column;
	/*flex-direction: row-reverse;*/
	width: 100%;	
	}
.content-column p {
    flex-direction: column;
	width: 100%;
	}
.content-column h1 {
	font-size: 1.5em;
		color: black;
	}	
.content-column p {
	font-size: 1.2em;
		color: black;
	}
}

@media only screen and (max-width:500px) {
.product-highlight-container {
	    flex-direction: column;
	  	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
		}
	.icons-container {
		    flex-direction: row;
	  	width: 100%;	
			margin-top: 15%;
	marging-bottom: 15%;
	}
	.nodisply {
		margin-top: 25%;
	}
	.price-banner {
		margin-top: 25%;
		marging-bottom: 15%;
	}
	.content-column {
			marging-bottom: 25%;
		padding-bottom: 25%;
	}
}