@charset "utf-8";
/* CSS Document */

/*logo details*/
#Logotop {
	display:flex;
	margin:auto;
    margin-bottom: -8%;
    margin-top: -3%;
    height: auto;
    max-width: 50%;    
}
#Logocontainer {
    width:50%;
    display: block;
    margin: auto;
}


/*navigation*/
.navigationmenu {
    overflow: hidden;
	margin:auto;
	display:flex;
    width:60%;
}
.navigationmenu a {
    float: left;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 2vw;
	padding:2%;
	margin:auto;
    transition: 0.3s;
    border-style: solid;
    border-width: 2px;
    border-bottom: 0px;
    border-color: #252525;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-color:#252525;
}
.navigationmenu a:hover {
    background-color: #555555;
    color: white;
    border-color: #555555;
}
.navigationmenu a.active {
    background-color: #3d3d3d;
    color: white;
    border-color: #3d3d3d;opacity:1.0;
}

.navlinkdiv {
    display: inline-block;
    margin-left: 60%;
    width:15%;
    height: auto;
    position: static;
}
.navlinkdiv img {
    max-width: 100%;
    max-height: auto;
}
.navlinkbuttons li {
    display: inline-flex;
	list-style:none;
	padding-left:1%;
    padding-right:1%;
    max-width: 15%;
    height: auto;
}
.navlinkbuttons li a {
	text-decoration: none;
  	color: gainsboro;
	border-radius:50%;
    transition-duration: 0.4s;
    cursor: pointer;
}
.navlinkbuttons li a:hover {
  	text-decoration: none;
 	color: gainsboro;
    border-radius:50%;
 	background-color: gainsboro;
    cursor: pointer;
}


/*body*/
.parallax-window {
    background: transparent;
    background-repeat: repeat;
    width:100%;
    height: 100%;
}
body {
	font-family:"Arial", Helvetica, sans-serif;
    font-size: 0.9vw;
    color: white;
    background-color: black;
}
.divider {
    width:50%;
    display:block;
    margin: auto;
    margin-bottom: 1%;
    height: 3px;   
}

.aboutdivider {
    width:50%;
    display:block;
    margin: auto;
    margin-bottom: 1%;
    background-color: #3d3d3d:opacity:0;
    height: 3px; 
}
.content {
    margin:auto;
    display: block;
    max-width:70%;
    background: #3d3d3d;
    color: white;
    padding:1%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: auto;
    text-align: center;
}
.content, p {
    text-align: left;
}

.homepagetext {
    width: 64%;
    display: inline-block;
    border-style: solid;
    border-width: 3px;
    border-color: #000000;
    border-radius: 20px;
    background-color:#252525;
    color: white;
}
.homepagetext, h1 {
    text-align: center;
}
.homepagetext, p {
    text-align: left;
    padding-left: 2%;
    padding-right: 2%;
}
.homepageimage {
    float: right;
    max-width: 30%;
    height: auto;
    display: inline-flex;
}
.artpagechibime {
    display: block;
    max-width: 30%;
    height: auto;
    margin: auto;
}
.artisttext {
    width: 97.7%;
    display: inline-block;
    border-style: solid;
    border-width: 3px;
    border-color: #000000;
    border-radius: 20px;
    background-color:#252525;
    color: white;
    text-align: left;
    padding: 1%;
    margin-bottom: 1%;
}
.artisttext, h2 {   
    text-align: center;
}

.collapsiblestaticbutton {
    background-color: #252525;
  color: white;
  padding: 1%;
  width: 98%;
  border-style: solid;
    border-width: 3px;
    border-color: #000000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  text-align: left;
    font-size: 1vw;
  outline: none;
}
.collapsiblecontentstatic{
    padding-left: 1%;
    padding-right: 1%;
    width: 98%;
  max-height: 100%;
  background-color: #000000;
    overflow: auto;
    border:solid;
    border-width: 3px;
    border-color: #000000;
    border-bottom-left-radius:  20px;
    border-bottom-right-radius:  20px;
}
.collapsible {
  background-color: #252525;
  color: white;
  cursor: pointer;
  padding: 1%;
  width: 100%;
  border-style: none;
  text-align: left;
    font-size: 1vw;
  outline: none;
}
.active, .collapsible:hover {
  background-color: #555555;
}
.collapsiblecontent {
  padding: 0 1%;
  max-height: 0;
  overflow: hidden;
  background-color: #000000;
}
.collapsible:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 0.8vw;
  color: white;
  float: right;
}
.collapsibleactive:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/*-------------GALLERY-------------*/
.galleryimage {
    display: inline-flex;
    width: 100%;
    height: 15%;
    margin: auto;
}

/* Style the Image Used to Trigger the Modal */
.myImg {
  border-radius: 5px;
  cursor: pointer;
    display: inline-flex;
    max-width: 300px;
    max-height: 225px;
    overflow: hidden;
    margin: auto;
    opacity: 70%;
}
.myImg:hover {background-color: #555555; opacity: 100%;}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.95); /* Black w/ opacity */
}
/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
} 
/* VIDEO GALLERY */
.mythumbnail {
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    max-width: 19%;
    max-height: auto;
    overflow: hidden;
    margin: auto;
    opacity: 70%;
    text-decoration: none;
}
.mythumbnail:hover {
    background-color: #555555; 
    opacity: 100%;
    text-decoration: none;
}
.mythumbnaila {
    text-decoration: none;
}
/*STORYBOADER GALLERY*/
.slidecommentary {
    background-color: black;
    color: white;
    padding: 1%;
    text-align: center;
    display: block;
}
.storyborderdecription2 {
    display: inline-block;
    max-width: 80%;
    max-height: auto;
}
#leftbutton {
  float:left;
  background-color: #555555;
  border-color: #000000;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  padding: 1%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  opacity: 70%;
  outline: none;
}
#leftbutton:hover {
    background-color: #555555;
    color: white;
    border-color: #555555;opacity:1.0;
}
#rightbutton {
  float:right;
  background-color: #555555;
  border-color: #000000;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  padding: 1%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  opacity: 70%;]
  outline: none;
}
#rightbutton:hover {
    background-color: #555555;
    color: white;
    border-color: #555555;opacity:1.0;
}

.copyright {
    margin-top: 1%;
    display: block;
    text-align: center;
}