* {
    transition: ease-in-out 250ms;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
}

h2, p {
    font-family: 'Karla', sans-serif;
}

h2{
    margin-bottom: 15px;
}

p{
    margin-top: 7px;
    margin-bottom: 25px;
    line-height: 25px; 
}

/******** MENU ***********/

.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: #fff;
    cursor: pointer;
    z-index: 2;
    box-sizing: border-box;
    border-right: 1px solid rgba(0,0,0,.1);
 }

.menu span {
    position: absolute;
    width: 30px;
    height: 2px;
    background: #262626;
    display: block;
    top: calc(50% - 1px);
    left: calc(50% - 15px);
    transition: 0.2s;
}

.menu span:nth-child(1){
    transform: translateY(-10px);
}

.menu span:nth-child(3){
    transform: translateY(10px);
}

.menu.active span:nth-child(1){
    transform: translateY(0px) rotate(-45deg);
}

.menu.active span:nth-child(3){
    transform: translateY(0px) rotate(45deg);
}

.menu.active span:nth-child(2){
    /* transform: translateX(-30px); */
    opacity: 0;
}

.logo {
    text-transform: uppercase;
    margin-right: 30px; 
    font-weight: 100;
    font-family: 'Kosugi Maru', sans-serif;
} 

.menu-bar{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 60px;
    background: #fff;
    transition: 0.5s;
    transform: translateX(-100%);
    z-index: 1;
}

.menu-bar.active{
    transform: translateX(0);
    width: 100%;
}

.menu-bar ol{
    display: flex;
    margin: 0;
    padding: 0;
    float: right;
}

.menu-bar ol li{
    list-style: none;
    font-weight: 100;
}

.menu-bar ol li a{
    line-height: 60px;
    text-transform: uppercase;
    color: #262626;
    text-decoration: none;
    padding: 0 20px;
    display: block;
    border-right: 1px solid rgba(0,0,0,.1);
}

.menu-bar ol li:last-child a{
    border-right: none;
}
.menu-bar ol li a:hover{
  background: rgba(58, 65, 76, .3)
}

@media (max-width: 768px){
    .menu-bar{
        height: auto;
        
    }
    .menu-bar ol{
        display: inherit;
        float: none;
        text-align: center;
        width: 100%;
        height: 100vh;
    }
    .menu-bar ol li a{
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        border-right: none;
      }

    .logo{
        margin-top: 5rem;
        margin-left: 0;
        margin-right: 0; 
    }
}


/********* CONTENT ******/


h2{
    text-transform: uppercase;
}

ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ccc;
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
    position: relative;
    width: 20%;
    height: 100%;
    border-right: 1px solid #000;
    float: left;
    box-sizing: border-box;
    transition: 0.5s;
    text-align: center;
    overflow: hidden;
}

ul li:nth-child(1) {
    background-image: url(../img/qantasbg.png);
    background-size: cover;
    background-position: center;
    }

ul li:nth-child(2) {
    background: url(../img/rugbybg.png);
    background-size: cover;
    background-position: center;
    }

    ul li:nth-child(3) {
        background: url("../img/gpavbg.png");
        background-size: cover;
        background-position: center;
    }

    ul li:nth-child(4) {
        background: url(../img/cetaphilbg.png);
        background-size: cover;
        background-position: center;
    }

ul li:nth-child(5) {
    background: url(../img/smithsbg.png);
    background-size: cover;
    background-position: center;
}

ul:hover li {
    width: 10%;
}

ul li:hover {
    width: 60%;
}

ul li .content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    box-sizing: border-box;
    color: #fff;
    opacity: 0;
}

ul li:hover .content {
    bottom: 0;
    transition: 0.9s;
    transition-delay: 0.1s;
    opacity: 1;
}




/******* ABOUT SECTION *********/



.about {
    display: inline-block;
    position: absolute;
    top: 30%;
    left: 50%;
    bottom: 50%;
    width: 100%;
    height: 0;
    max-width: 1000px;
    z-index: 3;
    transform: translateX(-30%);
}

.profile{
    font-size: 1.3rem;
    display: none;
    text-align: center;
    line-height: 40px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 2px 2px 8px 5px rgba(0, 0, 0, .3);
    padding: 50px;
    top: 0;
    left: 0;
    width: 55%;
}

.contact{
    color: #262626;
    font-size: 1.3rem;
    list-style: none;
    text-decoration: none;
}

.vimeologo{
    margin-top: 10px;
}

br {
    margin: 70px 0;
 }

 .about-mask{
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

@media (max-width: 768px){

.about {
    position: absolute;
    top: 20%;
    left: 50%;
    bottom:30%;
    width: 100%;
    /* height: 50%; */
    z-index: 3;
    margin: 0 auto;
    left: 0;
    transform: translateX(0);
}

.profile{
    position: relative;
    display: none;
    font-size: 1rem;
    text-align: center;
    line-height: 2rem;
    background: rgba(255, 255, 255, 1);
    box-shadow: 2px 2px 8px 5px rgba(0, 0, 0, .3);
    padding: 2rem;
    padding-bottom: 4rem;
    margin: 0 auto;
    width: 19.5rem;;
    height: 19.5rem;
}

.contact{
    position: relative;
    top: 1.5rem;
    color: #262626;
    font-size: 18px;
    list-style: none;
    text-decoration: none;
}

.vimeologo{
    position: relative;
    top: 1.5rem;
    margin-top: 10px;
}

}


/******* PLAYER **********/

.player-mask{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
    height: 0;
}

.videoholder{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 1000px;
    transform: translateX(-50%) translateY(-50%);
    display: none;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
}

.overlay{
    display: none;
}

#qantas, #rugby, #gpav, #lawsons, #smiths {
    display: none;
}


