  @import url('https://fonts.googleapis.com/css?family=OpenSans:400,500,700,800');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "OpenSans", sans-serif;   
    
}

.sticky-top {position: fixed;} /*Keep Nav Visible*/


.navbar .megamenu{ padding: 1rem; }
.navbar {box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);;
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu{position:static!important;}
  .navbar .megamenu{left:0; right:0; width:100%; margin-top:0;  }

}    
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
      overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }


}

.dropdown-menu{
    border-radius: 0rem;
    border-width: 0px;
    }

.bg-light{
    background-color: rgba(255,255,255,0.9)!important;
}

@media (min-width: 992px) {
  .nav-item {    
    padding-left: 1rem;
  }
}

.nav-link {
    font-weight: 600;    
    color: #041e42;    
}

  @media (min-width: 768px) { 
    .nav-link {
    font-size: 1.1vw;
  }
    }

.nav-link:hover {    
    color: #bfa75f;
    text-decoration: underline;
}

.dropdown-toggle:after { content: none }

/* ============ mobile view .end// ============ */

.square {
  position: relative;
  width: 90%;  

}

.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* =BUTTON= */
.button-53 { 
  background-color: #bfa75f; 
  border: 0 solid #041e42; 
  box-sizing: border-box; 
  color: #000000; 
  display: flex; 
  font-size: 1.3rem; 
  font-weight: 800; 
  justify-content: center; 
  line-height: 1.4rem; 
  padding: .75rem 1.65rem; 
  position: relative; 
  text-align: center; 
  text-decoration: none #000000 solid; 
  text-decoration-thickness: auto; 
  width: 100%; 
  max-width: 300px; 
  position: relative; 
  cursor: pointer; 
  transform: rotate(-2deg); 
  user-select: none; 
  -webkit-user-select: none; 
  touch-action: manipulation;
  margin:auto;
  padding-top: 25px; } 

.button-53:focus { 
    outline: 0; 
    } 

.button-53:after { 
    content: ''; 
    position: absolute; 
    border: 1px solid #041e42; 
    bottom: 6px; 
    left: 6px; 
    width: calc(100% - 1px); 
    height: calc(100% - 1px); 
  } 
  
.button-53:hover:after { 
  bottom: 2px; 
  left: 2px; 
  } 

  @media (min-width: 768px) { 
    .button-53 { 
      padding: .75rem 3rem; 
      font-size: 1.3rem; 
    } 
  }

.mainheadertext {
  font-size: 5vw; 
  line-height: 1.0; 
  text-shadow: 4px 4px 10px rgba(0,0,0,1.0); 
  font-weight: 800; 
  color: white;
}

@media (max-width: 768px) { 
    .mainheadertext {
     font-size: 8vw;       
    } 
  }


.importanttext {
  font-size: 2vw; 
  line-height: 1.0; 
  text-shadow: 4px 4px 10px rgba(0,0,0,1.0); 
  font-weight: 800; 
  color: white;
}

/*==CALENDARS PARALLAX==*/
  .parallax {
  /* The image used */
  background-image: url("/webapps/literacychallenge/assets/img/graduationwalk.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.zoom {
   transition: transform .2s; /* Animation */
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.opacityHover {
   transition: transform .2s; /* Animation */
   opacity: 0.5;
}

.opacityHover:hover {
  transform: opacity(1.0);
}