@charset "utf-8";
/* CSS Document */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
	background-color: #3e5566;
    font-family: Arial,sans-serif;	
    color: #fff;
}

h2 {
    font-size: 20px;
    color: #ff0000;
    text-align: center;
    margin-bottom: 20px;
}

nav, footer {
    width: 100%;
    margin: 30px auto;
    padding: 10px 0;
    background: #7292A9;
    text-align: center;
}

.stage {
    background-color: #3e5566;
}

header, .home-nav {
    display: none;
}

#mobile-header {
	display: inline-block;
	margin-bottom: 20px;
    margin-top: 30px;
    padding-left: 30px;
	width: 100%;

}

#mobile-header img {
    width: 50px;
}

.home-stage {
    background-color: #3e5566;
    padding-top: 25px;
} 

.home-nav {
	font-size: 18px;
	color: #fff;
    font-family: Arial,sans-serif;
    width: 80%;
}
.home-nav li {
	margin-bottom: 15px;	
}

.home-nav a, .horizontal-nav a, footer a{
	text-decoration: none;
	color: #fff;	
}

.home-img img {
	border: 25px solid #d5d5ff;
    width: 75%;	
    margin: 0 auto;
    display: block;
}

.home-mel {
	margin: 0 auto;
	text-align: center;
	margin-top: 20px;
}

.home-mel h1 {
	color: #fff;
	font-size: 25px;
	vertical-align: 100px;	
}	

.home-content{
	margin-top: 40px;
	width: 100%;
}

.home-content p, .about-content p {
	font-size: 18px;
	width: 86%; /* 989px / 1150px; */
	margin: 0 auto;
	text-align: center;
	margin-bottom: 25px;
	color: #fff;
}

.custom-paintings {
    border: 5px red solid;
    padding: 20px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.paintings {
    background: #263540;
}

.paintings img {
    width: 100%;
}

.fixed {
    text-align: center;
}

.fixed h1 {
    position: sticky;
    position: -webkit-sticky;
    top: 10px;
    margin-bottom: 20px;
}

.fixed p {
    position: sticky;
    position: -webkit-sticky;
    top: 60px;
    width: 90%;
    margin-bottom: 20px;
}

.fixed img {
    position: sticky;
    position: -webkit-sticky;
    top: 140px;
    width: 75%;
    display: block;
    margin: 10px auto;
}

footer {
    margin-top: 50px;
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-head h1 {
    margin-top: 70px;
    text-align: right;
    padding-right: 50px;
}

.contact-content img {
    display: block;
    margin: 0 auto;
    border: #a5978c 10px solid;
}

.contact-info p{
    font-size: 28px;
	color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info a {
	text-decoration: none;
	color: #fff;	
}

.about-images {
    margin-bottom: 20px;
}

.about-left h1 {
    text-align: center;
}

.about-left img {
    display: block;
    margin: 0 auto;
    width: 35.5%;
}

.about-right {
    display: block;
    margin: 0 auto;
}

.about-right img{
    width: 80%;
}

.hide-title {
    display: none;
}

@media only screen and (max-width: 1200px) {

    #navigation {
		display: none;
	}
	
	#mobile-header {
        display: inline-block;
		margin-left: 20px;
    }
    
    #mobile-header img {
		width: 50px;
	}
	
	#mobile-header p {
		display: block;
		font-size: 16px;
		color: #fff;
	}
	
	#mobile-header a {
		text-decoration: none;
    }

    .fixed h1 {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    }

    .fixed p {
    position: sticky;
    position: -webkit-sticky;
    top: 90px;
    width: 90%;
    }

    .fixed img {
    position: sticky;
    position: -webkit-sticky;
    top: 180px;
    width: 75%;
    display: block;
    margin: 10px auto;
    }

}    

@media only screen and (max-width: 1000px) {

    .about-right img {
    display: block;
    margin: 10px auto;
    }

} 

@media only screen and (max-width: 800px) {	
    footer div{
        margin-bottom: 20px;
    }

    .hide-title {
        display: contents;
    }

    .fixed img, .fixed h1 {
        display: none;
    }

}    