@charset "UTF-8";
/* general styling */
html,
body {
    background-color: #191919;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: sans-serif; font-size:1em; color: #757575;
}
img, video {
  max-width: 100%;
  vertical-align: middle;
}
*,
*:before,
*:after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    scroll-margin-top: 85px;
}

h1 {
    font-weight: bold;
    color: #707070;
    font-size:1.6em;
    text-align: center;
    padding-bottom: 15px;
}

h2 {
    font-weight: normal;
    color: #909090;
    font-size:1.6em;
    padding-bottom: 15px;
}
strong {
    color: #909090;
}
a {
    font-size:1em;
    color: #a6a6a6;
    text-decoration: none;
    outline: none;
}

:focus {
    -moz-outline-style: none
}

a:hover {
    color: #3a3a3a;
    text-decoration: none;
    outline: none
}

.copyright_opening {
    position: fixed;
    bottom: 0;
    background: #101010;
    width: 100%;
    color: #505050;
    font-size: 0.8em;
    text-align: center;
    padding: 20px;
}

.opening {
    position: absolute;
    text-align: center;
    top: 44%;
    width: 100%;
}

.openingH1 {
    font-weight: bold;
    color: #606060;
    font-size:4em;
}

/* styling for the header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: #f7f7f7;
    opacity: 0.95;
    z-index: 1000;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

header .logo {
    height:78px;
    position: absolute;
    left: 15px;
    top: 5px;
}

/* transparent buttons class */
header .transparent_button {
    opacity: 0.25;
    width: 40px;
    float: right;
    margin: 20px 10px 0 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
}

header .transparent_button:hover {
    opacity: 0.75;
}

/* drop down menu toggle*/
header .toggler {
    display: none;
    background: none;
    border: 0;
    outline: 0;
    opacity: 0.25;
    float: right;
    margin: 20px 15px 0 0;
    -webkit-transition: ease 1s;
    transition: ease 1s;
}

header .toggler:hover {
    opacity: 0.75;
    cursor: pointer;
}

header .toggler img {
    width: 40px;
    height: 40px;
}

header .content {
    position: absolute;
    top: 20px;
    right: 120px;
}

header nav {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
}

header nav li {
    padding: 10px;
}

header nav a {
    font-size:1.1em;
    font-weight: bold;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
}

/* background photo */
.header_photo {
    width: 100%;
    padding-top:25px;
}

/* about styling */
.about {
    padding: 50px 25px 0px 25px;
    overflow: auto;
    text-align: justify;
    line-height: 1.8;
}

.about img {
    width: 25%;
    min-width: 150px;
    max-width: 250px;
    float: right;
    margin-top: 12px;
    margin-left: 2.5rem;
    border-radius: 50%;
    -webkit-shape-outside:circle();
    shape-outside:circle();
}

/* instrument gallery styling */
.instruments {
    margin: 10px;
    padding-top: 50px;
}

.instruments img {
    display: block;
    border-radius: 15px;
    width: 100%;
}

.wraper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    float: left;
    width: 19.999%;
    overflow: hidden;
    transition: all 1s ease;
}

.wraper:hover {
    transform: scale(1.04);
}

.instruments:after {
  content: "";
  display: table;
  clear: both;
}

/* Instagram embed feed class styling */
.news {
    padding-top: 50px;
}

.instagram-feed {
    box-sizing: border-box;
    border-radius: 15px;
    background-color: #101010;
    width: 100%-20px;
    min-height: 360px;
    padding: 2.5% 10px 10px 10px;
    margin: 20px;
    overflow-y: auto;
}

/* Contact styling */
.contact {
    text-align: center;
    width: 100%-40px;
    border-top: 2px solid #505050;
    padding: 50px;
    margin: 40px 0 0 0;
}

/* workshop photos */
.workshop_photo {
    width: 100%;
}

/* Footer styling */
.copyright {
    background: #101010;
    width: 100%-40px;
    color: #505050;
    font-size: 0.8em;
    text-align: center;
    padding: 20px;
}

/* legal styling */
.centered {
    width: 100%;
    text-align: center;
}

.legal {
    text-align: justify;
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
    padding: 50px;
}

/* screen size dependent responsive changes */
@media only screen and (max-width: 960px) {
    .wraper {width: 49.999%}
}

@media only screen and (max-width: 780px) {
    header nav {
        position: fixed;
        top: 65px;
        right: -150px;
        -webkit-transition: right ease 0.4s;
        transition: right ease 0.4s;
        width: 150px;
        background: #f7f7f7;
        text-align: center;
    }
    header nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
    }
    header nav.open {
        right: 0px;
    }
    header .toggler {
        display: block;
    }
}

@media only screen and (max-width: 480px) {
    h1 {font-size:1.4em}
    html, body {font-size:0.9em}
    .wraper {width: 100%}
}
