/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


.hero {
    width: 100%; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

body, html {
    margin: 0; 
    padding: 0; 
    background-color: #1A2B28; 
    overflow-x: hidden;
    color: white;
    font-family: 'Poppins', sans-serif;
}



#logo {
    transform: scale(1); 
}

.about {
    
    text-align: center; 
    padding: 0 10%;
    margin: 60px 0; 
}

.heading {
    width: 50%;
    background-color: #ECC694; 
    color: #1A2B28; 
    font-family: 'Noto Serif Display', serif;
    text-transform: uppercase; 
    font-weight: 500; 
    letter-spacing: 3px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-size: 2em; 
}

.headingContent {
    width: 50%; 
}

.gallery {
    display: flex; 
    flex-direction: row; 
    width: 100%;
    
}

.img1 {
    
}

.imgContainer {
   width: 33.3%; 
    height: 70vh; 
}



h2 {
    font-family: 'Noto Serif Display', serif;
    text-transform: uppercase; 
    letter-spacing: 3px; 
    font-weight: 400; 
}

.videoSection {
    display: flex; 
    justify-content: center; 
    align-items: center; 
}





#img1 {
    background: url(/images/img2.jpg);
  background-repeat: no-repeat;
  background-size:cover;
    background-position: bottom;
}

#img2 {
    background: url(/images/img1.jpg);
  background-repeat: no-repeat;
  background-size:cover;
    background-position: center;
}

#img3 {
    background: url(/images/img3.jpg);
  background-repeat: no-repeat;
  background-size:cover;
    background-position: center;
}

.footer {
    text-align: center;
    background-color: #13211f;
    margin-top: 60px;
    margin-bottom: 0; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 30px 30px 50px 30px;
}

video{
    height: 500px;
}

a{
    text-decoration: none; 
    color: wheat;
}

.footerLogo {
    margin: 20px 0; 
    height: 60px;
}

@media only screen and (max-width: 1010px) {
  video {
    height: 400px;
  }
}

@media only screen and (max-width: 768px) {
  video {
    height: 300px;
  }

    .footer {
    font-size: 0.8em;
  }
}

@media only screen and (max-width: 610px) {
  video {
    height: 200px;
  }
    
    .footerLogo {
    transform: scale(0.8);
}
}

@media only screen and (max-width: 515px) {
  .footer {
    font-size: 0.7em;
  }
    .imgContainer {
   width: 33.3%; 
    height: 50vh; 
}
    
    .footerLogo {
    transform: scale(0.7);
    margin: 10px 0; 
}
}

@media only screen and (max-width: 426px) {
  video {
    height: 200px;
  }
    .imgContainer {
   width: 33.3%; 
    height: 45vh; 
}
    
    .footerLogo {
    transform: scale(0.6);
    margin-top: 0px;
    margin-bottom: 0px;
}
}

@media only screen and (max-width: 420px) {
  video {
    height: 150px;
  }
    
.footerLogo {
    transform: scale(0.6);

}
   
}




