
/* @keyframes blackBgFadeInOut {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 0.25;
    }
    10% {
        opacity: 0.5;
    }
    15% {
        opacity: 0.75;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0.75;
    }
    40% {
        opacity: 0.75;
    }
    50% {
        opacity: 0.6;
    }
    60% {
        opacity: 0.5;
    }
    70% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
} */

/* @keyframes blackBgFadeInOutSecond {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
    60% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        opacity: 0;
    }
} */

*, ::after, ::before {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height:100%;
}
body {
    position: relative;
    background-image: url('../img/bg_parallax.jpg');
    /* background-size: cover; */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-y: 57px;
    background-color: #101010;
    font-family: "Open Sans", sans-serif;
    color: #C9C9C8;

    animation-name: mainBgFadeInOut;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-direction: normal;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;

    /* background-image: url('../img/oz-002.jpg'); */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;

    background-color: #000000;
    opacity: 0;
    animation-name: blackBgFadeInOut;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-direction: normal;
}
hr {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	border: 1px solid #85754e;
}
a {
    color: #85764E;
}

.divBodyWrapper {
    
}

.divBodyHeader {
    font-family: "Open Sans", sans-serif;
    color: #fff;
    background: url(../img/header_background.jpg) no-repeat 0px -301px fixed;
    background-size: cover;
    min-height: 350px;
    

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.divBodyHeader .divHeaderText {
    font-size: 7em;
}

.divBodyContent {
    /* width: 50%; */
    box-sizing: border-box;
    padding-top: 90px;
    /* padding-bottom: 20px; */
    /* margin-left: 30px; */
    display: flex;
}

.divPageContent {
    /* max-width: 600px;
    margin-left: 40%; */
    padding-top: 10px;
    /* padding-left: 150px;
    padding-right: 150px; */
    
}

.divBodyFooter {
    min-height: 150px;
    background-color: #000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.firstLineText {
    margin-top: -5px;
}

.divJustified {
    text-align: justify;
}

.divBackDrop {
	display: none;
	transition: background-color .225s;
	-webkit-transition: background-color .225s;
	background: rgba(0,0,0,0);
}

.imgLarge {
    max-width: 360px;
}



.divMainNavigation {
    /* background-color: #0f2d49; */
    background-color: #333333;
    border-bottom: 3px solid #85764E;
}
.divSiteLogo {
    width: 41%;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
.divSiteLogo img {
    height: 40px;
}
.divSiteLogo .navLogo {
    margin-right: 20px;
}
.divSiteLogo .txtAsLogo {
    height: 50px;
    color: #85764E;
    font-weight: 900;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 1.8em;
}
.txtAsLogo a {
    text-decoration: none;
    color: #85764E;
}
.txtAsLogo a:hover {
    text-decoration: none;
    color: #85764E;
}
.divTopNav {
    display: flex;
    flex-direction: row;
}
.navRoot {
    width: 60%;
    margin-left: auto;
}

.navRoot .nav-item {
    margin-left: 50px;
}
/* .navRoot .nav-item:not(:first-child) {
    margin-left: 50px;
} */
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: transparent;
    /* color: #fff; */
    /* border-bottom: 1px solid #0d6efd; */
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    text-transform: uppercase;

    text-decoration: none;
	box-sizing: border-box;
    color: #85764E;
    font-weight: 700;

    position: relative;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: #85764E;
    -webkit-transform: scale3d(0, 1, 1);
    -moz-transform: scale3d(0, 1, 1);
    -ms-transform: scale3d(0, 1, 1);
    -o-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    -webkit-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}
.dropdown-menu {
    color: #85764E;
    background-color: #333333;
}
.dropdown-item {
    color: #85764E;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: #333333;
}

.splide__slide img {
	width : 100%;
	height: auto;
}

.hideOnPC {
    display: none;
}

img.hideOnPC {
    width: 100%;
}