@charset "utf-8";
/* CSS Document */

body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
    height: 100%;
    color: #777;
    line-height: 1.8;
}
/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
@media only screen and (max-device-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}
/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */

/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4, .bgimg-5, .errorimg-404 {
    background-attachment: scroll; /*changed from fixed for Ipad */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	-webkit-background-size: cover;/* Safari */
	-moz-background-size: cover; /* Gecko (Firefox) */
	-o-background-size: cover;/* Opera */
}

/* First image (JGC. Full height) */
.bgimg-1 {
    background-image: url("../images/background/viking_ship.jpg");
    min-height: 100%;
}
/* Second image (Portfolio) */
.bgimg-2 {
    background-image: url("../images/background/slide01_accomodation_lerwick_shetland.jpg");
    min-height: 50%;
}
/* Third image (Portfolio) */
.bgimg-3 {
    background-image: url("../images/background/map_camera_1920.jpg") ;
    min-height: 50%;
}
/* Fouth image (Portfolio) */
.bgimg-4 {
    background-image: url("../images/background/lerwick_guest_house.jpg");
    min-height: 50%;
}
/* Fifth image (Portfolio) */
.bgimg-5 {
    background-image: url("../images/background/1920x579_lerwick.jpg");
    min-height: 50%;
}
/* Error 404 image (Full height) */
.errorimg-404 {
    background-image: url("../images/background/viking_ship_404.jpg");
    min-height: 100%;
}