/* font-family: 'Bangers', cursive
font-family: 'Dancing Script', cursive;
font-family: 'Oxygen', sans-serif;

 */
 html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Oxygen", sans-serif;
    margin: 0;
  }
  
  h1 {
    padding: 14px;
    background: rgba(62, 150, 163, 0.8);
    border-radius: 8px;
    margin: 0;
    font-size: 84px;
    font-family: "Bangers", cursive;
    pointer-events: none;
  }
  
  p {
    line-height: 1.5;
  }
  
  main {
    margin: 0 auto;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /*/////////////////////////////////////
  ///////////// Inputs ///////////////// */
  
  input,
  textarea {
    height: 32px;
    padding: 0 16px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    border: none;
    box-shadow: inset 8px 3px 18px -4px rgba(0, 0, 0, 0.4);
  }
  
  input:focus,
  textarea:focus {
    outline: none;
  }
  
  /* ///////////////////////////////////
  ////////////// Banner ///////////////*/
  
  #banner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.2) url(./img/banner.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
  }
  
  #banner h3 {
    background: rgb(62, 150, 163, 0.5);
    border-radius: 8px;
    padding: 0 24px;
    font-size: 24px;
    font-family: "Dancing Script", cursive;
    pointer-events: none;
  }
  
  /* ////////////////////////////////
  /////////////// Searchbox //////////////////// */
  
  #searchbox {
    position: fixed;
    right: 0;
    top: 24px;
    width: 500px;
    pointer-events: none;
    z-index: 50;
    transition: 0.4s;
  }
  
  #searchbox input {
    height: 48px;
    width: 100%;
  }
  
  /* ///////////////////////////////////////// 
   ////////////// Navigation ////////////////*/
  
  nav {
    height: 72px;
    background: #202125;
    width: 100%;
    margin: 0;
    position: fixed;
    font-family: "Bangers", cursive;
    font-size: 32px;
    display: flex;
    justify-content: space-between;
    padding: 0 16px 0 0;
    box-sizing: border-box;
    z-index: 100;
  }
  
  nav a {
    padding: 0 32px;
    color: #eee;
    transition: 0.4s;
  }
  
  nav a:hover {
    text-decoration: none;
    color: rgba(62, 150, 163, 0.7);
  }
  
  nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0;
  }
  
  .active {
    color: rgba(62, 150, 163, 0.8);
  }
  
  #logo-img {
    display: flex;
    height: 100%;
    background: #111;
    padding: 0 32px;
    align-items: center;
    color: white;
    transition: 0.4s;
  }
  
  #logo-img img {
    height: 60px;
  }
  
  #logo-img:hover {
    background: rgba(62, 150, 163, 0.8);
  }
  
  #menu-icon {
    height: 100%;
    font-size: 28px;
    padding: 0 4px;
    color: #eee;
    align-items: center;
    display: none;
  }
  
  /* /////////////////////// 
  ///////////////// Search Icon ////////////////// */
  #search-icon {
    color: white;
    padding: 0 32px;
    cursor: pointer;
    transition: 0.4s;
  }
  
  #search-icon:hover {
    color: rgba(62, 150, 163, 0.8);
  }
  
  /* //////////////////// 
  ////////////////////// Slideout menu //////////////// */
  
  #slideout-menu {
    display: none;
    background: #2d3436;
    z-index: 100;
    position: fixed;
    transition: 0.4s;
    margin-top: 72px;
    width: 100%;
    text-align: center;
    pointer-events: none;
    visibility: hidden;
  }
  
  #slideout-menu ul {
    list-style: none;
    padding: 0 32px;
  }
  
  #slideout-menu ul li {
    padding: 8px;
  }
  
  #slideout-menu a {
    font-family: "Oxygen", sans-serif;
    font-size: 20px;
    color: white;
  }
  
  #slideout-menu input {
    width: 85%;
    padding: 8px;
    font-family: "Dancing Script", cursive;
    font-size: 20px;
    text-align: center;
  }

  /* //////////////////////////// 
///////////////////// Sections /////////////////////// */

section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap-reverse;
  align-items: flex-start;
}

.section-heading {
  font-size: 32px;
  font-family: "Bangers", cursive;
  border-left: 3px solid black;
  border-right: 3px solid black;
  transition: all 0.4s;
  display: inline-block;
  padding: 4px 32px;
}

.section-heading:hover {
  padding: 4px 48px;
  background-color: rgba(62, 150, 163, 0.8);
}

#section-source p {
  padding: 8px;
  text-align: center;
}

#section-source a {
  margin: 8px;
  text-align: center;
}

/* /////////////////
/////////////////// Card //////////////// */

.card {
   flex: 0 1 100%;  
}

.card-image {
  transition: 0.4s;
  padding-left: 136px;
}

.card-image:hover {
  box-shadow: 0 10px 6px -6px #777;
}

.card .card-description {
  padding: 0 8px;
  flex: 3 0 100%;  
}

#paragraph{
  font-family: 'Oxygen', sans-serif;

  font-size: 24px;
  
}

/*  /////////////////////
///////////////////////// Button Read more ///////////// */

.btn-read-more {
  padding: 8px 24px;
  border: 3px solid black;
  transition: 0.4s;
  display: inline-block;
  margin-bottom: 24px;
  margin-left: 0px; 
  font-weight: bold;
  cursor: pointer;
  background: white;
  text-align: center;
  
}

.btn-read-more:hover {
  background-color: rgba(62, 150, 163, 0.8);
  text-decoration: none;
  padding: 8px 64px;
  color: white;
}



/* about-text  */
.card #article-about{
  flex: 1 0 100%;  
}



 #article-about p {
  font-family: "Oxygen", sans-serif;
  font-size: 24px;
  text-align: justify;
  
}


/* ///////////////Video section///////////////// */

#video-section{
  display: flex;
  justify-content: space-around;
  
}



#video2{
  cursor: pointer;
  
}

.contain{
  object-fit: cover;
}



/* ////////////// Gallery ////////////////////////// */

section #gallery-container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  border:3px solid black;

}

#gallery-container .row{
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  margin-bottom: 2px;  
}

.img1{flex:0.75;}
.img2{flex:1.48;}
.img3{flex:0.81;}
.img4{flex:1.50;}


.img5{flex:1.50;}
.img6{flex:1.50;}
.img7{flex:1.50;}
.img8{flex:1.50;}  

.img9{flex:1.50;}
.img10{flex:1.50;}
.img11{flex:1.50;}
.img12{flex:1.50;}

.img13{flex:1.50;}
.img14{flex:1.50;}
.img15{flex:1.50;}
.img16{flex:1.50;}


.img{
   margin: 2px; 
  
}

.img:hover{
opacity: 0.6;
}

#gallery-container img{  
  width: 100%;
  height: auto;
  vertical-align: middle; 
}
















/* ////////////
////////////////// Footer ///  */

footer {
  background: black;
  padding: 8px;
  color: #eee;
  display: flex;
}

footer a {
  color: white;
  font-family: 'Oxygen', sans-serif;
  font-weight: bold;

}

footer #left-footer {
  flex: 1;
  border-right: 1px solid rgba(62, 150, 163, 0.8);
  padding-left: 32px;
}

footer #left-footer ul {
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

footer #right-footer {
  flex: 2;
  text-align: center;
  padding: 8px;
}

footer #social-media-footer a .fa-facebook,
footer #social-media-footer a .fa-youtube,
footer #social-media-footer a .fa-github {
  color: white;
  transition: 0.4s;
}

footer #social-media-footer ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 0;
}

footer #social-media-footer ul li {
  font-size: 48px;
  padding: 16px;
  transition: 0.4s;
}

footer #social-media-footer ul li:hover a .fa-youtube {
  color: red;
}

footer #social-media-footer ul li:hover a .fa-facebook {
  color: blue;
}

footer #social-media-footer ul li:hover a .fa-instagram {
  color: violet;
}


/* /// Media Queries /// */

@media (max-width: 900px) {
  nav ul {
    display: none;
  }

  #menu-icon {
    display: flex;
  }

  #searchbox {
    display: none;
  }

  #slideout-menu {
    display: block;
  }
 
  #sidebar {
    display: none;
  }
}

@media (max-width: 600px) {
  main {
    width: 100%;
  }
  h1 {
    font-size: 48px;
  }
  #banner h3 {
    font-size: 20px;
  }
  .card {
    text-align: center;
  }

  #logo-img {
    padding: 0;
  }

  #article-about p{
    font-size: 18px;
    text-align: justify;
  }



  
}

@media (max-width: 719px) {
  main {
    width: 95%;
  }
  section {
    flex-direction: column;
    
  }

  .card,
  .card-image img {
    width: 100%;
  }

  .card-image{
    padding-left: 0;

  }

  .video-card   {
    width: 100%;
    
  }

  #video1, #video2{
    width: 100%;
    
  }


  footer {
    flex-direction: column;
    text-align: center;
  }

  footer #left-footer {
    flex: 1;
    border-right: 0;
    padding-left: 0;
  }

  footer #right-footer {
    background: #eee;
    color: black;
  }

  footer #right-footer a {
    color: black;
  }
  footer #social-media-footer a .fa-youtube,
  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-github {
    color: black;
    transition: 0.4s;
  }
}

@media (min-width: 720px) {
  main {
    width: 95%;
  }

  .card {
    width: 45%;
  }

  .card .card-image img {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  main {
    width: 85%;
  }
}
