/* Common Styles */
:root {
  --sec1 : 100vh;
  --sec2 : 180vh;
  --sec3 : 80vh;
  --sec4 : 90vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  list-style-type: none;
  font-family: "Tahoma", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
/* End of Common Styles */

/* Navbar */
.navbar {
  width: 100%;
  height: 8rem;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: -8rem;
  padding: 3rem;
  z-index: 10;
  animation: animateNavbar 1s 0.5s forwards;
  transition: height 0.5s;

}

.navbarpage {
  width: 100%;
  height: 8rem;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: -8rem;
  padding: 3rem;
  z-index: 10;
}

.navbar.change {
  height: 100vh;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

video {
  max-width: 100%;
  height: auto;
}

@keyframes animateNavbar {
  0% {
    top: -8rem;
  }
  100% {
    top: 0;
  }
}

.navbar-logo {
  position: absolute;
  top: 1.5rem;
  left: 4rem;
}

.navbar-logo a {
  font-family: "Tahoma", sans-serif;
  font-size: 2.5rem;
  color: #eee;
  letter-spacing: 0.1rem;
}

.navbar-logo span {
  font-size: 3.5rem;
  font-weight: bold;
  color: #9e0e09;
  font-family: "Tahoma",sans-serif;
}

.menu {
  width: 4rem;
  height: 4rem;
  position: fixed;
  z-index: 500;
  top: 2rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
}

.line {
  width: 100%;
  height: 0.2rem;
  background-color: #eee;
  transition: transform 0.3s;
}

.line-1 {
  width: 50%;
}

.line-3 {
  width: 50%;
  margin-left: auto;
}

.change .line-1 {
  transform: translate(100%, 1rem) rotate(-35deg);
  transform-origin: right;
}

.change .line-3 {
  transform: translateY(-1rem) rotate(35deg);
  transform-origin: right;
}

.nav-list {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.change .nav-list {
  opacity: 1;
  visibility: visible;
  transition: all 0.7s 0.5s;
 
}

.nav-link {
  font-family:  "Tahoma", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  color: #fff;
  margin: 2rem 0;
  transition: color 0.4s;
}





.inline-link {
  color: White;
  display: flex;
  align-items: center;
  justify-content: center;

  
}




.nav-link:hover {
  color: #9e0e09;
}
/*  End of Navbar */

/* Section 1 */
.section-1 {
  width: 100%;
  height: var(--sec1);
  background: url(images/dark-bg.jpeg) no-repeat;
  background-size: cover;
}

.banner {
  position: absolute;
  top: 20%;
  text-align: center;
  width: 100%;
}



.banner-heading {
  height: 20rem;
  margin-bottom: 2rem;
  perspective: 50rem;
  overflow: hidden;
  
}

.banner-heading span {
  font-family: "Tahoma", sans-serif;
  font-size: 12rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translateZ(8rem);
  opacity: 0;
  letter-spacing: 3rem;
}

.heading-1 {
  animation: animateHeading 12s 3s infinite;
  cursor: default;
}

.heading-2 {
  animation: animateHeading 12s 6s infinite;
  cursor: default;
}

.heading-3 {
  animation: animateHeading 12s 9s infinite;
  cursor: default;
}

.heading-4 {
  animation: animateHeading 12s 12s infinite;
  cursor: default;
}



@keyframes animateHeading {
  0% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }

  3% {
    transform: translateZ(0);
    opacity: 1;
    letter-spacing: 1.5rem;
  }

  25% {
    transform: translateZ(0);
    opacity: 1;
    letter-spacing: 1.5rem;
  }

  28% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }

  100% {
    transform: translateZ(8rem);
    opacity: 0;
    letter-spacing: 3rem;
  }
}

.banner-paragraph {
  font-size: 4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  cursor: default;
  border:rgba(0, 0, 0, 0.5);
  border-style: solid;
  border-width: .1rem;
  padding: 2rem;

 
  
  background: radial-gradient(ellipse at top, #5b5a5a, transparent),
            radial-gradient(ellipse at bottom, #080707, transparent);
  width: 30%;
  margin: 0 auto 6rem auto;
  padding: 1rem 0;
  box-shadow: 1rem 1rem 5rem rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  animation: fadeAnimation 1s 1.5s forwards;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.banner-btn {
  width: 30rem;
  height: 6rem;
  background: linear-gradient(to right, #9b0e0e, #7a1010);
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;

  border: 0.1rem solid #800505;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  position: relative;
  overflow: hidden;
  animation: fadeAnimation 1s 2s forwards;
  
}

.banner-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
}



.banner-btn:hover::before {
  left: 100%; 
}
.banner-btn:hover {
  transform: scale(1.2);
}
/* End of Section 1 */

/* Section 2 */



.section-2 {
  width: 100%;
  height: var(--sec2);
  top: var(--sec1);
  background-color: #222020;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  justify-content: center;
  padding-top: 3rem;
}

.section-heading {
  font-size: 10rem;
  font-family: "Tahoma", sans-serif;
  font-weight: 300;
  color: #ddd;
  margin-top: 0rem;
  cursor: default;
  justify-content: center;
  text-align: center;
}

.video-caption {
  font-size: 6rem;
  font-family: "Tahoma", serif;
  font-weight: 300;
  color: #ddd;
  margin-top: 0rem;
  cursor: default;
  justify-content: center;
  text-align: center;
  margin-top:8rem;
}




.section-2-paragraph {

  width: 80%;
  margin-top: 8rem;

  
  font-size: 3rem;
  line-height: 1.5;
  color: #ddd;
  border-top: 0.3rem double #aaa;
  border-bottom: 0.3rem double #aaa;
  padding: 2rem;
  font-family: "Georgia";
  
  text-align: justify;
  
  text-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.7);
}

.section-2-paragraph a {
  color: #fff;
  font: bold;
}

.videocontainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex: flex-col;
  justify-content: center;
  align-items: center;
 
}


/* End of Section 2 */











/* Section 4 */
.section-4 {
  width: 100%;
  height: var(--sec3);
  top: calc(var(--sec1) + var(--sec2));
  background-color: #171718;
  display: flex;
  flex-direction: column;
  position: absolute;
  justify-content: center;
}

.contact-wrapper {
  width: 100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10rem;
  margin-top: 2rem;
}



.contact-form {
  width: 70rem;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 1.5rem;
  background-color: #444;
  color: #eee;
  border: none;
  margin-bottom: 2rem;
  font-family: "Tahoma", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}



.submit-btn {
  
  background: linear-gradient(to right, #9b0e0e, #7a1010);
  color: #fff;
  border: 0.1rem solid #800505;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;

}

.submit-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
  
  
}

.submit-btn:hover::before {
  left: 100%; 
}
.submit-btn:hover {
  transform: scale(1.2);
}
.submit-btn input {

  background-color: rgba(0,0,0,0);
  font-size: 3rem;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  height: 100%;

}

/* End of Section 4 */

/* Section 5 */

.section-5 {
  width: 100%;
  height: var(--sec4);
  top: calc(var(--sec1) + var(--sec2) + var(--sec3));
  background-color: #222020;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10rem;
  position: absolute;
  padding-top: 3rem;

}

.banner-btn-blog {
  width: 30rem;
  height: 6rem;
  background: linear-gradient(to right, #9b0e0e, #7a1010);
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;

  border: 0.1rem solid #800505;
  cursor: pointer;


  position: relative;
  overflow: hidden;
 
  
}


.banner-btn-blog::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
}


.banner-btn-blog:hover::before {
  left: 100%; 
}
.banner-btn-blog:hover {
  transform: scale(1.2);
}


.section-5-paragraph {
  width: 100rem;
  margin-top: 10rem;
  margin-bottom: 5rem;
  bottom: 8rem;
  
  font-size: 3rem;
  line-height: 1.5;
  color: #ddd;
  border-top: 0.3rem double #aaa;
  border-bottom: 0.3rem double #aaa;
  padding: 2rem;

  justify-content: center;
  text-align: center;
  text-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.7);
}

/* white links for a tags in section-5-paragraph*/
.section-5-paragraph a {
  color: #fff;
  font: bold;
}



/* End of Section 5 */

/* Footer */
.footer {
  width: 100%;
  height: 8rem;
  position: fixed;
  bottom: 0;
  background-color: #202122;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10rem;
}

.footer-nav a {
  font-family:  "Tahoma",sans-serif;
  font-size: 2rem;
  color: #ccc;
  margin-right: 3rem;
  letter-spacing: 0.1rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #862323;
}

.copyright {
  font-size: 2rem;
  color: #ddd;
}
/* End of Footer */

.mainimage { 
  width: 25%;
  margin-top: 8rem;

}

/* Responsive */
@media (max-width: 1800px) {





}

@media (max-width: 1650px) {
  html {
    font-size: 57%;
  }




}

@media (max-width: 1500px) {
  .section-heading-line {
    display: none;
  }
}

@media (max-width: 1400px) {
  html {
    font-size: 45%;
  }

  .banner-heading span {
    font-size: 8rem;


  }

  .banner-paragraph {
    width: 45rem;
    font-size: 3rem;
  }










 





  .section-4 {
    height: 80vh;
    padding: 10rem 0;
  }
  .section-5{
    height: auto;
    padding: 10rem 0;
  }
}


@media (max-width: 900px) {
  html {
    font-size: 40%;
  }

  .banner {
    top: 25%;
    
  }

  .banner-heading {
    height: 15rem;
    cursor: default;
    user-select: select-none;
    
  }



  .banner-heading span {
    font-size: 8rem;
    cursor: default;
  }

  .footer {
    padding: 0 5rem;

   
  }

  .footer-nav a {
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  html {
    font-size: 35%;
  }

  .section-2 {
    height: var(--sec2);
  }

  .contact-details div {
    margin: 3rem 2rem;
  }

  .footer {
    flex-direction: column;
    justify-content: center;
  }

  .footer-nav {
    margin-bottom: 2rem;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 30%;
  }

  .banner-heading span {
    font-size: 4.5rem;
    letter-spacing: 2rem;
  }

  @keyframes animateHeading {
    0% {
      transform: translateZ(8rem);
      opacity: 0;
      letter-spacing: 2rem;
    }

    3% {
      transform: translateZ(0);
      opacity: 1;
      letter-spacing: 1rem;
    }

    25% {
      transform: translateZ(0);
      opacity: 1;
      letter-spacing: 1rem;
    }

    28% {
      transform: translateZ(8rem);
      opacity: 0;
      letter-spacing: 2rem;
    }

    100% {
      transform: translateZ(8rem);
      opacity: 0;
      letter-spacing: 2rem;
    }
  }






}

@media screen and (max-width: 767px) {
  .contact-form {
    width: 100%;
    padding: 0 1rem;
  }


}
/* End of Responsive */
