
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; 
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* END RESET */
body {
        margin:auto;
        width:100%;
        background-color:black;
}

h1{
    color: #f2efc4;
    font-family: 'Dosis', sans-serif;
}

h2{
    color: #bf6734;
    font-family: 'Dosis', sans-serif;
}

p{
    color: #f2efc4;
    font-family: 'Dosis', sans-serif;
}

img{
    max-width: 100%;

}

.image {
  flex-basis: 40%;
}

li {
  font-size: 20px;

}

.wrapper {
 display: block;
 align-items: center;
 justify-content: center;

  margin-right: auto;
  margin-left:  auto;
   padding-top: 120px;
   max-width: 1200px;
   height:auto;
   position: relative;
   display: block;
   align-items: center;
   justify-content: center;
  }

.cell {
  padding:10%;
  background-color: #3B402A;
  font-size: 1.25rem;

}

.content {
    display: grid;
}

.center  {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

.center img {
  max-height: 550px;
  width: auto;
}

.pagechange {
  width:100%; 
  text-align: center;
}

.pagechange-center {
  padding:10px;
  font-size: 20px;
  margin-bottom: 20px;
  color: #f2efc4;
}

.pagechange-center a{
  color: #f2efc4;
}

.pagechange-center a:active{
  color: #bf6734;
}



footer {
    width: 100%;
    background-color: #3B402A;
    
    position:fixed;
    bottom: 0%;
    text-align: center;
    
}

video {
  max-height: 550px;
}


#grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: auto;
  width: 100%;
  height: auto;
}

#grid-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  width: 100%;
  height: auto;
}


/*navbar start */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body{
  line-height: 1.5;
  font-family: 'Dosis', sans-serif;
  font-weight: 400;
  color: white;
}
body.hidden-scrolling{
  overflow-y: hidden;
}
*{
  margin:0;
  box-sizing: border-box;
}
.container{
  max-width: 1170px;
  margin:auto;
}


ul{
  list-style: none;
  margin:0;
  padding:0;

}
a{
  text-decoration: none;
  font-family: 'Dosis', sans-serif;
  color: #F2EFC4;

}

a:hover {
  color: #bf6734;
}
/*header*/
.header{
background-color: #3B402A;
  position: fixed;
  width: 100%;
  left:0;
  top:0;
  z-index: 99;
 
}
.header-main{
  background-color: #3B402A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-radius: 4px;
}
.header .logo {
  left: 0px;
  top: 5px;  
  width: 70px;


}
.header .logo a{
  font-size: 30px;
  text-transform: capitalize;
  color: #bf6734;
  font-weight: 600;
}
.header .nav-menu{
  padding: 0px;
  padding-left: 45%;
}
.header .menu > .menu-item{
  display: inline-block;
  margin-left: 30px;
  position: relative;
}
.header .menu > .menu-item > a{
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: #f2efc4;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left:5px; 
  pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
  content:'';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top:50%;
  background-color: #F2EFC4;
  height: 2px;
  width: 100%;
  transform: translate(-50%,-50%);
  transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #F2EFC4;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);  
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
  color: #bf6734;
}
.header .menu > .menu-item > .sub-menu{
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 220px;
  position: absolute;
  left:0;
  top:100%;
  background-color: black;
  padding: 10px 0;
  border-top: 3px solid #bf6734;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity:0;
  visibility: hidden;
}

.about{
  padding: 15% 10% 0 10%;
  max-width: 150ch;
  margin: 0 auto;
}

.about h1{
  font-size: 3rem;
  text-align: center;
  line-height: 2.5rem;
}
.about h2 {
  font-size: 2rem;
  text-align: center;
  line-height: 2.5rem;
}
.about p {
  font-size: 1.2rem;
  line-height: 1.5rem; 
}

.home-section {
  width: auto;
  display: block;
  min-height: 30vh;
  background-image: url("img/scjanimated.gif");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 80% 30vh;
  margin: 0 auto 0 auto;
  padding-top: 120px;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);   
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #f2efc4;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header .open-nav-menu{
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .open-nav-menu span{
  display: block;
  height: 3px;
  width: 24px;
  background-color: black;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
  content: '';
  position: absolute;
  left:0;
  width: 100%;
  height: 100%;
  background-color: black;
  box-sizing: border-box;
}
.header .open-nav-menu span:before{
  top:-7px;
}
.header .open-nav-menu span:after{
  top:7px;
}
.header .close-nav-menu{
  height: 40px;
  width: 40px;
  background-color: black;
  margin:0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header .close-nav-menu img{
  width: 16px;
}
.header .menu-overlay{
  position: fixed;
  z-index: 999;
  background-color: black;
  left:0;
  top:0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity:0;
  transition: all 0.3s ease;
}

/*home section*/
.home-section{
  background-image: url("img/scjanimated.gif");
  background-position: center center;
  background-size: contain;
  width: 100%;
  padding-bottom: 69%;
  margin: 0 auto 0 auto;
  padding-top: 120px;
  
}



/* responsive */

@media(max-width: 991px){
  .header .menu-overlay.active{
  visibility: visible;
  opacity: 1;
}
  .header .nav-menu{
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top:0;
    overflow-y: auto;
    background-color: black;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header .nav-menu.open{
    visibility: visible;
    right: 0px;
  }
  .header .menu > .menu-item{
    display: block;
    margin:0;
  }
  .header .menu > .menu-item-has-children > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a{
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #333333;
  }
  .header .menu > .menu-item:first-child > a{
      border-top: 1px solid #333333;  
  }
  .header .menu > .menu-item > a .plus:before, 
  .header .menu > .menu-item > a .plus:after{
    background-color: black;
  }
  .header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu{
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border:none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top:auto;
    max-height: 0;
    overflow: hidden;
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a{
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
  }
  .header .close-nav-menu,
  .header .open-nav-menu{
    display: flex;
  }

  .home-section {
    padding-bottom: 90%;
  }

}
/*navbar */


video {
    width: 100%;
}

@media screen and (max-width: 1200px) {
  #grid-col { grid-template-columns: 100%; 
    width: 100%}
  }