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

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    margin: auto;
    padding: 0;
    background: #1e1e1e;
    perspective: 1px;
}

.header {
    position: relative;
    width: 100%;
    height: 90px;
    background: #efefef;
    z-index: 10;
}

.headerContent {
    height: 90px;
    width: 100%;
    max-width: 1500px;
    background: #efefef;
    margin: auto;
}

.logo {
    display: block;
    margin: auto;
    padding-top: 5px;
    height: 80px;
}

.boxes {
    display: flex;
    position: relative;
    width: 100%;
}

.box {
    display: inline-block;
    width: 34%;
    height: 500px;
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Lato', sans-serif;
    color: #efefef;
    text-align: center;
    font-size: 20pt;
    background-size: cover;
    text-shadow: 1px 1px #1e1e1e;
    -webkit-transition: width 0.8s ease-out;
    transition: width 0.8s ease-out;
}

.box:hover {
    width: 45%;
}



.link {
    position: relative;
    text-decoration: none;
    color: #efefef;
    padding-bottom: 5px;
}

.link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    border-bottom: 3px solid #efefef;
    transition: 0.8s;
    -webkit-transition: 0.8s;
}

.link:hover:after {
    width: 100%;
}

.icon {
    display: block;
    margin: auto;
    padding-top: 180px;
}

#pub {
    background: url(/images/publishing.jpg) no-repeat 50% 50%;
}

#teach {
    background: url(/images/teaching.jpg) no-repeat 50% 50%;
}

#rel {
    background: url(/images/releases.jpg) no-repeat 50% 50%;
}

#manage {
    background: url(/images/management.jpg) no-repeat;
}

@media only screen and (max-width: 850px) {
    .box, .box:hover {
        width: 100%;
        height: 300px;
        display: block;
        position: relative;
    }
    
    .boxes {
        display: block;
    }
    
    .icon {
        padding-top: 80px;
    }   
}




.about, .bio {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 30px 0px;
}

.about {
    background: #efefef;
}

.bio {
    background: #383b3f;
}

.aboutContent, .bioContent {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}

.bioContent {
    display: flex;
    align-items: center;
}

.title, .biotitle {
    margin: 0;
    text-align: center;
    font-size: 26pt;
    font-family: 'Source Sans Pro', sans-serif;
}

.biotitle {
    color: #efefef;
}

.subtitle {
    margin: 20px auto 0px auto;
    text-align: center;
    font-size: 18pt;
    font-family: 'Share Tech Mono', monospace;
}

.paragraph {
    max-width: 500px;
    margin: 30px auto 10px auto;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-size: 11pt;
}

.bioBox {
    overflow: hidden;
    display: inline-block;
    position: relative;
    text-align: center;
    float: right;
    width: 45%;
}

.bioPic {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 45%;
}

.fred {
    border: 5px solid #efefef;
    max-height: 350px;
    box-shadow: 0px 8px 20px -1px #1e1e1e;
    -webkit-box-shadow: 0px 8px 20px -1px #1e1e1e;
    -moz-box-shadow: 0px 8px 20px -1px #1e1e1e;
}

.bioParagraph {
    max-width: 90%;
    margin: 30px auto 10px auto;
    line-height: 1.8;
    font-family: 'Lato', sans-serif;
    text-align: center;
    color: #efefef;
    font-size: 11pt;
}

@media only screen and (max-width : 550px) {
    .paragraph, .title {
        max-width: 90%;
        margin: auto;
    }
}

.clear {
    height: 420px;
    background: url(/images/ko.jpg) 50% 50%;
    background-attachment: fixed;
    background-size: cover;
}

.slider {
    width: 100%;
    background: #efefef;
}

.sliderContent {
    max-width: 1500px;
    margin: auto;
}

.sliderTitle {
    width: 100%;
    text-align: center;
    padding: 20px 0px;
    font-size: 24pt;
    font-family: 'Source Sans Pro', sans-serif;
}

.progBar {
    height: 8px;
    background: #ddc170;
    animation: progBar 10.5s infinite;
    animation-timing-function: linear;
}

@keyframes progBar {
    0% {
        transform: translateX(-100%)
    }
    
    95% {
        opacity: 1;
        transform: translateX(0);
    }
    
    100% {
        opacity: 0;
    }
}


/*
.slide, .slide2, .slide3 {
    text-align: center;
}

.slideImage {
    padding-top: 20px;
    height: 150px;
}

.sliderName {
    color: #1e1e1e;
    font-size: 22pt;
    padding: 10px 0px;
    font-family: 'Source Sans Pro', sans-serif;
}

.sliderText {
    margin: auto;
    font-family: 'Lato', sans-serif;
    font-size: 11pt;
    padding-bottom: 20px;
    width: 500px;
}
*/







/*PUBLISHING*/

.heroWrapper {
    height: 400px;
}

.hero {
    position: relative;
    width: 100%;
    height: 400px;
    transform:
        translateZ(-1px)
        translateY(-150px)
        scale(3);
    z-index: -1;
}

#pubHero {
    background: url(/images/publishing.jpg) no-repeat 50% 50%;
    background-size: cover;
}

#teachHero {
    background: url(/images/teaching.jpg) no-repeat 50% 50%;
    background-size: cover;
}

#projHero {
    background: url(/images/releases.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.heroIcon {
    position: relative;
    margin: auto;
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Lato', sans-serif;
    color: #efefef;
    text-align: center;
    font-size: 20pt;
    transform: translateY(-270px);
}

.info {
    position: relative;
    width: 100%;
    padding: 20px 0px;
    z-index: 5;
}

#pubInfo {
    background: #efefef;
}

.infoContent {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}

.titleOAD, .paragraphOAD {
    color: #1e1e1e;
}

.OADimage {
    position: relative;
    text-align: center;
    width: 45%;
    padding: 20px 0px;
}

.OADpic {
    max-height: 350px;
    box-shadow: 0px 8px 20px -8px #1e1e1e;
    -webkit-box-shadow: 0px 8px 20px -8px #1e1e1e;
    -moz-box-shadow: 0px 8px 20px -8px #1e1e1e;
}

.OAD {
    overflow: hidden;
    display: block;
    position: relative;
    text-align: center;
    width: 45%;
}

#paragraphOAD {
    margin: 20px auto;
}

.buyBoxContainer {
    padding: 30px;
    -webkit-animation: bounce 1.5s infinite alternate;
    -moz-animation: bounce 1.5s infinite alternate;
    animation: bounce 1.5s infinite alternate;
}

.buyBox {
    position: relative;
    font-size: 15pt;
    text-decoration: none;
    border: 3px solid #ddc170;
    border-radius: 35px;
    padding: 12px;
    font-family: 'Lato', sans-serif;
    background: #efefef;
    color: #ddc170;
    -o-transition: color .3s ease-out, background .3s ease-in;
    -ms-transition: color .3s ease-out, background .3s ease-in;
    -moz-transition: color .3s ease-out, background .3s ease-in;
    -webkit-transition: color .3s ease-out, background .3s ease-in;
    
}

.buyBox:hover {
    background: #ddc170;
    color: #efefef;
}

@-webkit-keyframes bounce {
  to { -webkit-transform: scale(1.15); }
}
@-moz-keyframes bounce {
  to { -moz-transform: scale(1.15); }
}
@keyframes bounce {
  to { transform: scale(1.15); }
}

@media only screen and (max-width : 990px ) {
    
    .infoContent, .bioContent {
        display: block;
    }
    
    .OADimage, .bioPic {
        width: 100%;
        margin: auto;
        padding-top: 30px;
    }
    
    .bioPic {
        padding-bottom: 30px;
    }
    
    .OAD, .bioBox {
        width: 100%;
        padding-top: 0px;
        padding-bottom: 20px;
    }
    
    .paragraph {
        max-width: 80%;
    }
}

/*TEACHING*/

#teachInfo {
    background: #efefef;
}

.TPP {
    width: 100%;
}

#titleTPP, #paragraphTPP {
    color: #141a26;
}

#paragraphTPP {
    margin-top: 0px;
}

.threeTsBox {
    margin: auto;
    text-align: center;
}

.threeTs {
    display: inline-block;
    text-align: center;
    width: 100px;
    margin: 20px;
    border: 2px solid #141a26;
    padding: 8px 0px;
    font-family: 'Share Tech Mono', monospace;
    color: #141a26;
}

.teachingLink {
    color: maroon;
    text-decoration: none;
    transition: .5s;
}

.teachingLink:hover {
    text-decoration: underline;
}

@media only screen and (max-width : 500px) {
    .threeTs {
        margin: 20px;
        font-size: 10pt;
        padding: 6px 0px;
        width: 80px;
    }
}

/*PROJECTS*/

..proj-infoContent {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

#projInfo {
    background: #efefef;
}

.phoenix {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.yamaha {
    position: relative;
    width: 100%;
}

/*FOOTER*/

.footer {
    position: relative;
    width: 100%;
    background: url(/images/footer.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.footerContent {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    text-align: center;
}

.socialBox {
    position: relative;
    margin: auto;
    padding: 30px 0px 20px 0px;
}

.links {
    display: inline-block;
    padding: 0px 15px;
}

.links a {
    text-decoration: none;
}

.linkText {
    position: relative;
    text-align: center;
    font-size: 10pt;
    font-family: 'Share Tech Mono', monospace;
    color: #efefef;
    text-decoration: none;
    padding-top: 5px;
}

.social {
    display: inline-block;
    height: 30px;
}

.social:hover {
    opacity: 0.8;
}

#sc, #li {
    height: 25px;
}

#mt {
    height: 20px;
}

#pp {
    height: 30px;
}

@media only screen and (max-width: 850px) {
    .links {
        display: block;
        padding: 0px 0px 30px 0px
    }
    
}

.copyright {
    position: relative;
    color: #efefef;
    font-size: 8pt;
    font-family: 'Lato', sans-serif;
    padding-bottom: 10px;
}