* {
  border-radius: 0 !important;
}

body, html {
	 
	 background-color: #f7f9fa;
}


a:hover {
  text-decoration: none; 
	}
	
/* change the background color */
.navbar-custom {
	background:rgba(0,0,0,0.7);
}
/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: rgba(255,255,255,1);
    font-size: 1.8em;
    
}

.navbar-custom li {
	font-size: 1.4em;
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: #ffffff;
    margin-left: 10px;
    margin-right: 10px;
    padding-left : 0px;
    padding-right : 0px;
}
/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item .active a::after,
.navbar-custom .nav-item:hover .nav-link {
    color: rgba(226, 221, 252, 1);
          border-bottom: 4px solid;
          border-color: rgba(209, 210, 255, 1);
      padding-bottom: 0px; /*removing spacing*/
}

.white_background {
	background-color: #ffffff;
}

.beige_background  {
	background-color: #f8f8f8;
	margin-top: 0px;
}

.main_title > h1 {
	font-family: 'Lato', sans-serif;
	font-size: 6em;
	color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.main_title > h2 {
	font-size: 2.2em;
	color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.centre {
text-align: center;
}

@media (max-width: 767px) {
.main_title > h1 {
	text-align: center;
	font-size: 4em;
	color: white;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.past_productions h3{
font-size: 1.6em;	
color: rgba(71, 71, 71, 1);	
}

.image_thumb {	
	padding-top: 10px;
	padding-bottom: 10px;
}

.front_page_button_margin {
	margin: 5px;
}

.village_buttons {
	margin-bottom: 5px;
}

.standard_text h1 {
	font-size: 1.6em;
	color: #474747;
}

.standard_text a:hover {
	text-decoration: underline;
	-webkit-text-decoration-color: red; /* safari still uses vendor prefix */
	text-decoration-color: red;
}

.title { 
  font-family: 'Lato', serif;  
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff; 
  display: inline;
  padding: 0.5rem;
  font-size: 4em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.page_heading h1 {
  font-size: 45px;
  line-height: 1;
  display: block;
  font-weight: 300;
  margin-bottom: 30px;
  margin-top: 30px;
}


.standard_text{
	font-size: 18px;
	color: #3e3e3e;
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  .magazine_image {
	border: 1px solid grey;
	margin-bottom: 18px;
}

#white_links a:link { color: white; }
#white_links a:visited { color: white; }
#white_links a:hover { color: white; text-decoration: underline }
#white_links a:active { color: white; }

blockquote {
  background: #f9f9f9;
  font-style: italic;
  border-left: 5px solid #c40000;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote p {
  display: inline;
}

.square{
   position:relative;
    overflow:hidden;
    padding-bottom:100%;

}
.square img{
     position: absolute;
      max-width: 100%;
      max-height: 100%;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
}

.fadeout {
    position: relative; 
    bottom: 4em;
    height: 4em;
    background: -webkit-linear-gradient(
        rgba(247, 249, 250, 0) 0%,
        rgba(247, 249, 250, 1) 100%
    ); 
    background-image: -moz-linear-gradient(
        rgba(247, 249, 250, 0) 0%,
        rgba(247, 249, 250, 1) 100%
    );
    background-image: -o-linear-gradient(
        rgba(247, 249, 250, 0) 0%,
        rgba(247, 249, 250, 1) 100%
    );
    background-image: linear-gradient(
        rgba(247, 249, 250, 0) 0%,
        rgba(247, 249, 250, 1) 100%
    );
    background-image: -ms-linear-gradient(
        rgba(247, 249, 250, 0) 0%,
        rgba(247, 249, 250, 1) 100%
    );
} 

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgba(255, 0, 0, 1); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}