A:link    { COLOR: #e0e0e0; TEXT-DECORATION : underline }
A:visited { COLOR: #e0e0e0; TEXT-DECORATION : underline }
A:hover   { COLOR: #ffffff; TEXT-DECORATION : underline }

* {
    box-sizing: border-box;
}

.clear-all {
    clear: both;
    float: none;
}

html,body {
    margin: 0px;
    padding: 0px;
    background-color: #000;
    width: 100%;
    min-height: 100vh;
}

body {
    background: url(/images/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
    font-family: Arial;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    color: #ffffff;
    height: 100%;
}

pre {
    position: relative;
    background-color: rgba(0,0,0,0.9);
    border: 1px solid #f0f0f0;
    padding: 20px;
    text-align: left;
    font-size: 12px;
}

div {
    position: relative;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.pointer-events-none {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a, div {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    outline-style: none;
}



.header {
    position: fixed;
    left: 0;
    top: -52px;
    width: 100%;
    height: 50px;
    background-color: rgba(65,85,135,0.97);
    z-index: 9999;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.header.on {
    top: 0px;
    opacity: 1;
}


.header .menu-item {
    display: inline-block;
    position: relative;
    height: 50px;
    background-color: rgba(80,100,150,1);
    margin: 0;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    text-align: center;

    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.header .menu-item .inner {
    position: relative;
    padding: 0 20px;
    line-height: 50px;
}


.header .menu-item:hover {
    background-color: rgba(90,110,160,1);
}
.header .menu-item.active {
    background-color: rgba(100,120,170,1);
}


.header .menu-item .inner i.fa {
    position: relative;
    font-size: 14px;
    margin-right: 7px;
    top: 0px;
}

.header .title {
    position: absolute;
    font-size: 10px;
    top: 10px;
    left: 10px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}



.content {
    width: 100%;
    padding: 0;
    padding-top: 90px;
}

.content .inner {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
    text-align: left;
}

span.text {
    line-height: 25px;
}

span.adresse {
    color: #ffff90;
}



.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.ajax-loader {
    opacity: 0;
    position: fixed;
    z-index: 99999;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    pointer-events: none !important;
}

#ajax-page-content {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

body.is-load-content .ajax-loader {
    display: block;
    opacity: 1;
}
body.is-load-content #ajax-page-content {
    opacity: 0.3;
    pointer-events: none !important;
}


h1 {
    font-size: 32px;
    line-height: normal;
    margin: 0 0 25px 0;
}

h3 {
    font-size: 22px;
    line-height: normal;
    margin: 0 0 15px 0;
}

h4 {
    font-size: 17px;
    line-height: normal;
    margin: 0 0 10px 0;
}

ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li {
    position: relative;
    padding: 0 0 0 17px;
    margin: 7px 0;
    font-size: 15px;
}
ul li:before {
    position: absolute;
    font-size: 24px;
    line-height: 15px;
    left: 0;
    content: "•";
    padding-right: 8px;
    color: #ffffff;
}



.ref-block {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
}
.ref-block .ref-left {
    display: inline-block;
    position: relative;
    width: 50%;
    float: left;
    padding-right: 30px;
}
.ref-block .ref-right {
    display: inline-block;
    position: relative;
    width: 50%;
    float: left;
}
.ref-block .ref-title {
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 10px;
}
.ref-block .ref-text {
    position: relative;
    width: 100%;
    font-size: 15px;
    font-weight: normal;
    line-height: 22px;
}
.ref-block .ref-right img {
    display: inline-block;
    position: relative;
    float: left;
    margin-right: 15px;
    height: auto;
    width: calc(50% - 8px);
}
.ref-block .ref-right img.image-1 {
    margin-right: 0;
    width: calc(50% - 8px);
}

.ref-block .ref-left .ref-type {
    display: inline-block;
    position: relative;
    width: 60px;
    float: left;
}
.ref-block .ref-left .ref-info {
    display: inline-block;
    position: relative;
    width: calc(100% - 60px);
    float: left;
}
.ref-block .ref-left .ref-type img {
    display: inline-block;
    position: relative;
    width: 42px;
    height: auto;
}

.ref-block .ref-left .ref-type img.type2 {
    margin-top: 10px;
}


.onclick-event-zoom {
    cursor: pointer;
}

.big-image {
    opacity: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 99998;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.big-image img {
    position: fixed;
    left: calc(50% - 400px);
    top: calc(50% - 200px);
    width: 800px;
    max-width: 100%;
    height: auto;
    z-index: 99999;
}

.big-image img.image-width-600 {
    left: calc(50% - 300px);
    top: calc(50% - 200px);
    width: 600px;
}

.big-image .close {
    position: fixed;
    right: 30px;
    top: 20px;
    z-index: 99999;
}
.big-image .close i {
    font-size: 24px;
    cursor: pointer;
}

span.extern {
    font-size: 13px;
    color: #a0a0a0;
}


.filter-box {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 60px 0;
}
.filter-box .filter-item {
    position: relative;
    float: left;
    width: 20%;
    cursor: pointer;
    opacity: 0.5;
}
.filter-box .filter-item.active {
    opacity: 1;
}
.filter-box .filter-item .icon {
    display: inline-block;
    position: relative;
    width: 50px;
    text-align: left;
    float: left;
}
.filter-box .filter-item .text {
    display: inline-block;
    position: relative;
    width: calc(100% - 60px);
    text-align: left;
    float: left;
    line-height: 20px;
    padding-top: 2px;
}

.filter-box .filter-item .icon img {
    position: relative;
    width: 42px;
    height: 42px;
}



.profile-image {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -30px;
    margin-bottom: 20px;
    border-radius: 0;
}

.profile-image-text {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 999;
    font-size: 18px;
    text-shadow: 0 0 7px #000000;
    color: #ffffff;
    line-height: 26px;
    background-color: rgba(0,0,0,0.6);
    padding: 30px 40px;
    border-radius: 0;
}

span.profile {
    font-size: 16px;
}

.animation_window {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.animation_window .animation_obj {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    text-align: center;
    font-size: 60px;
    color: #ffffff;
    opacity: 0.3;
}


.block-50p {
    display: block;
    position: relative;
    float: left;
    width: 50%;
    vertical-align: top;
    padding-bottom: 40px;
}
.blocks {
    display: block;
    position: relative;
}



@media all and (max-width: 1023px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    .header {
        white-space: normal;
        background-color: rgba(60,80,130,0.95);
        height: auto;
    }

    .header .menu-item {
        width: calc(50% - 1px);
        margin-bottom: 1px;
        margin-right: 1px;
        height: 40px;
        float: left;
    }
    .header a:nth-child(2) .menu-item,
    .header a:nth-child(4) .menu-item {
        width: 50%;
        margin-right: 0;
    }

    .header .menu-item .inner {
        padding: 0 20px;
        line-height: 40px;
    }

    .content {
        width: 100%;
        padding: 0;
        padding-top: 82px;
    }

    .content .inner {
        width: auto;
        padding: 15px 15px;
    }


    .ref-block .ref-left {
        width: 100%;
        float: none;
        padding-right: 0;
    }
    .ref-block .ref-right {
        position: relative;
        width: 100%;
        float: none;
        margin-top: 20px;
    }

    .big-image img {
        left: 10px;
        top: 100px;
        width: calc(100% - 20px) !important;
        height: auto !important;
    }
    .big-image img.image-width-600 {
        left: 10px;
        top: 100px;
        width: calc(100% - 20px) !important;
        height: auto !important;
    }

    .big-image .close {
        position: fixed;
        right: 20px;
        top: 15px;
        z-index: 99999;
    }

    .profile-image {
        width: 100%;
    }

    .profile-image-text {
        position: relative;
        right: auto;
        top: 0;
        font-size: 18px;
        line-height: 24px;
        text-align: left;
        background-color: rgba(0,0,0,0);
        padding: 0;
        margin-bottom: 10px;
    }

    .ref-block {
        display: inline-block;
        margin-bottom: 50px !important;
        padding: 0px !important;
    }

    .filter-box {
        display: inline-block;
        position: relative;
        width: 100%;
        margin: 30px 0 !important;
    }

    .filter-box .filter-item {
        display: inline-block;
        float: none;
        width: 100%;
        cursor: pointer;
        margin-bottom: 25px !important;
    }

    .block-50p {
        width: 100%;
    }

}