/*--------------------MAIN PAGE--------------------*/

/*GENERAL*/

p {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-size: 1.0vw;
    color: white;
    text-shadow: .05vw .05vw black;
    margin-top: 0;
}

@media only screen and (max-width: 1025px) {
p {
    font-size: 4.0vw;
}
}

h1 {
    font-family: Arial, tahoma, Helvetica, Verdana, sans-serif;
    font-weight: bold;
    font-size: 2.0vw;
    color: white;
}

@media only screen and (max-width: 1025px) {
h1 {
    font-size: 6.0vw;
}
}

h2 {
    font-family: Arial, tahoma, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-size: 1.6vw;
    color: white;
    margin-bottom: 0;
}

@media only screen and (max-width: 1025px) {
h2 {
    font-size: 5vw;
}
}

h3 {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-size: 2.5vw;
    font-weight: normal;
    margin-bottom:0;
    color: white;
    text-shadow: .05vw .05vw black;
    margin-top: 0;
}

@media only screen and (max-width: 1025px) {
h3 {
    font-size: 5.4vw;
}
}

h4 {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-size: 1vw;
    font-weight: normal;
    margin-top: 0;
    color: white;
    text-shadow: .05vw .05vw black;
    margin-top: 0;
}

@media only screen and (max-width: 1025px) {
h4 {
    font-size: 4vw;
}
}

a {
    color: #446a8d;
    text-decoration: none;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
}

a:hover {
    color: #ffe000;
}

@media only screen and (max-width: 1025px) {
a:hover {
    color: #446a8d;
}
}

/*NAV*/

.nav {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    background-color: black;
    margin: 0 auto;
    z-index: 2;
}

@media only screen and (max-width: 1025px) {
.nav {
    display: none;
}
}

.nav-logo {
    position: fixed;
    left: 2vw;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
    z-index: 3;
    opacity: 0;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
}

.nav-logo img {
    width: 4.4vw;
}

.nav a {
    font-family: Arial, tahoma, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-size: 1.6vw;
    color: white;
    display: inline-block;
    text-align: center;
    padding-top: .4vw;
    padding-bottom: .4vw;
    padding-left: 2.4vw;
    padding-right: 2.4vw;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.nav a:hover {
    text-decoration: none;
    color: #ffe000;
}

.nav-social-wrapper {
    position:fixed;
    display: inline-block;
    opacity: 0;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    top: 0;
    right: 1vw;
    width: 21vw;
    margin: 0;
    z-index: 3;
}

.nav-social-wrapper img {
    position:absolute;
    top: .7vh;
    width: 1.8vw;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

.nav-social-wrapper img.top:hover {
    opacity:0;
}

.nav-m {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    background-color: black;
    margin: 0 auto;
    z-index: 2;
}

@media only screen and (min-width: 1026px) {
.nav-m {
    display: none;
}
}

.nav-m a {
    font-family: Arial, tahoma, Helvetica, Verdana, sans-serif;
    font-weight: normal;
    font-size: 4.2vw;
    color: white;
    display: inline-block;
    text-align: center;
    padding-top: .4vw;
    padding-bottom: .4vw;
    padding-left: 2.4vw;
    padding-right: 2.4vw;
    -o-transition:.5s;
    -ms-transition:.5s;
    -moz-transition:.5s;
    -webkit-transition:.5s;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.nav-m a:hover {
    text-decoration: none;
    color: white;
}

/*MAIN PAGE*/

.bg {
    position: absolute;
    overflow: hidden;
    top: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url("img/web-bg.png");
    padding: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;   
}

.main {
    top: 10vh;
    height: 94.6vh;
    text-align: center;
    overflow-y: scroll;
    margin-top: 2.6vw;
}

@media only screen and (max-width: 1025px) {
.main {
    margin-top: 5.6vw;
    height: 97.4vh;
}
}

.inner {
    width: 48vw;
    margin: auto;
    background-color: rgba(0, 0, 0, .7);
}

@media only screen and (max-width: 1025px) {
.inner {
    width: 90vw;
}
}

/*LOGO*/

.logo {
    width: 48vw;
    text-align: center;
}

@media only screen and (max-width: 1025px) {
.logo {
    width: 90vw;
    text-align: center;
}
}

/*SOCIAL*/

.social-wrapper {
    position:relative;
    display: inline-block;
    width: 3.6vw;
    height: 4vw;
    padding-right: 4vw;
    margin: auto;
}

@media only screen and (max-width: 1025px) {
.social-wrapper {
    position:relative;
    display: inline-block;
    width: 10vw;
    height: 10vw;
    padding-right: 10vw;
    margin: auto;
}
}

.social-wrapper img {
    position:absolute;
    width: 3.6vw;
    margin: auto;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

@media only screen and (max-width: 1025px) {
.social-wrapper img {
    position:absolute;
    width: 10vw;
    margin: auto;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}
}

.social-wrapper img.top:hover {
    opacity:0;
}

@media only screen and (max-width: 1025px) {
.social-wrapper img.top:hover {
    opacity:1;
}
}

/*HEADING*/

.heading {
    position: relative;
    width: 48vw;
    background-color: #446a8d;
    margin-top: 2.7vw;
    margin-bottom: 2.7vw;
}

@media only screen and (max-width: 1025px) {
.heading {
    position: relative;
    width: 90vw;
    background-color: #446a8d;
    margin-top: 5.8vw;
    margin-bottom: 5.8vw;
}
}

.heading-m {
    display: block;
    height: .01vh;
}

@media only screen and (min-width: 1026px) {
.heading-m {
    display: none;
}
}

/*BIO*/

.bio {
    position: relative;
    width: 42vw;
    margin-top: 4vh;
    margin-bottom: 4vh;
    margin-left: 3vw;
    text-align: left;
}

@media only screen and (max-width: 1025px) {
.bio {
    position: relative;
    width: 85vw;
    margin-top: 4vh;
    margin-bottom: 4vh;
    margin-left:3vw;
}
}

/*MEDIA*/

@media only screen and (max-width: 1025px) {
    .media {
        display: none;
    }
}

@media only screen and (min-width: 1026px) {
    .media-mob {
        display: none;
    }
}

.flex-box {
    position: relative;
    display: flex;
    width: 89%;
    margin: auto;
}

.pic-wrapper {
    display: inline-block;
    margin: .2vw;
    width: 20%;
    /*border: solid;
    border-color: rgb(27, 153, 139);
    border-width: thin;*/
}

.pic-wrapper2 {
    display: inline-block;
    margin: .2vw;
    width: 100%;
    /*border: solid;
    border-color: rgb(27, 153, 139);
    border-width: thin;*/
}

.pic-container {
    position: relative;
    padding-top: 133.33%; /* 12:16 Aspect Ratio (divide 16 by 12 = 1.3333) */
}

.pic-container2 {
    position: relative;
    padding-top: 57.5%; /* 920:1600 Aspect Ratio (divide 1600 by 920 = .575) */
}

.responsive-thumb {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-image: url("img/+.png");
    background-size: 100%;
}

.pic-container:hover .overlay {
    opacity: 1;
}

.overlay2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-image: url("img/+2.png");
    background-size: 100%;
}


.pic-container2:hover .overlay2 {
    opacity: 1;
}

#pic-box {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    margin: 0;
    text-align: center;
    position: absolute;
    display: none;
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.pic-insert {
    width: 78%;
    height: 90%;
    background-size: cover;
    background-position: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pic-insert-tall {
    width: 34%;
    height: 90%;
    background-size: cover;
    background-position: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pic-button-close {
    position: absolute;
    top: 1%;
    right: 5%;
}

a.pic-button-close {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 3vw;
    color: #446a8d;
}

a.pic-button-close:hover {
    color: #ffe000;
    text-decoration: none;
}
 
.pic-button-l {
    position: absolute;
    top: 48%;
    left: 5%;
}

a.pic-button-l {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 3vw;
    color: #446a8d;
}

a.pic-button-l:hover {
    color: #ffe000;
    text-decoration: none;
}

.pic-button-r {
    position: absolute;
    top: 48%;
    right: 5%;
}

a.pic-button-r {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 3vw;
    color: #446a8d;
}

a.pic-button-r:hover {
    color: #ffe000;
    text-decoration: none;
}

.mob-button-close {
    position: absolute;
    top: 1%;
    right: 1%;
}


a.mob-button-close {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 30px;
    color: #446a8d;
}

.mob-button-l {
    position: absolute;
    top: 48%;
    left: 1%;
}

a.mob-button-l {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 30px;
    color: #446a8d;
}

.mob-button-r {
    position: absolute;
    top: 48%;
    right: 1%;
}

a.mob-button-r {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 30px;
    color: #446a8d;
}

.media-mob-img{
    width: 82vw;
}

.vid-wrapper {
    width: 42vw;
    margin: auto;
    padding-top:2vw;
}

.vid-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.vid-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-image: url("img/vid-overlay.png");
    background-size: 100%;
}

.vid-container:hover .vid-overlay {
    opacity: 1;
}

#vid-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 1);
    margin: 0;
    text-align: center;
    position: absolute;
    display: none;
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.vid-insert {
    width: 78%;
    height: 90%;
    background-size: cover;
    background-position: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vid-button-close {
    position: absolute;
    top: 1%;
    right: 5%;
}

.vid-button-close:hover {
color: #ffe000;
}

a.vid-button-close {
    font-family: tahoma, Helvetica, Arial, Verdana, sans-serif;
    font-weight: normal;
    font-size: 3vw;
    color: #446a8d;
}

/*SHOWS*/

.shows {
    position: relative;
}

/*CONTACT*/

.contact {
    position: relative;
}

.circ-logo {
    width: 14vw;
}

@media only screen and (max-width: 1025px) {
.circ-logo {
    width: 38vw;
}
}

/*END*/

body {
    margin:0;
}