﻿
    * Global Styling */
html, body {margin:0px; padding: 0px;}

nav {
    background-color: #34495e;
    height: 100px;
        position: fixed;
        width: 120vw;
        top: 0;
        z-index: 999;
}

#logo {height: 80px; margin-left: 20px;}

.wrapper {
    padding: 50px 50px;
    max-width: 1200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
        margin-top: 80px;
}

.right {float: right !important;}
/* Image zoom on hover + Overlay colour */
.parent {
    width: 45%;
    margin: 20px;
    height: 300px;
    border: 1px solid blue;
    overflow: hidden;
    position: relative;
    float: right;
    display: inline-block;
    cursor: pointer;
}

.child {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

/* Several different images
.bg-one {background-image: url(../images/Slider/FencingAction.jpg)}
.bg-two 	{background-image:url(../images/Slider/AP461335168912.jpg) ;background-position:  0px 0px;}
.bg-three {background-image:url(../images/Slider/Ivan_Ilin_of_Russian_battled_to_fencing_glory.jpg)}
.bg-four {background-image: url(../images/Slider/AUG_6272.jpg) ;background-position:  0px 0px;}
.bg-five {background-image:url(../images/Slider/_57428918_kenb3466.jpg) ;background-position:  0px 0px;}
.bg-six {background-image: url(../images/Slider/photo_verybig_664.jpg) ;background-position:  0px 0px;}
 */

.linklabel {
    display: none;
    font-size: 35px;
    color: #ffffff !important;
    font-family: sans-serif;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
}

.parent:hover .child, .parent:focus .child {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.parent:hover .child:before, .parent:focus .child:before {
    display: block;
}

.parent:hover a, .parent:focus a {
    display: block;
}

.child:before {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(52,73,94,0.75);
}

/* Media Queries */
@media screen and (max-width: 960px) {
    .parent {width: 100%; margin: 20px 0px}
        .wrapper {padding: 20px 20px;}
}




.hello {display: none}


