
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 900;
    src: url(fonts/SF-UI-Display-Black.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 800;
    src: url(fonts/SF-UI-Display-Heavy.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 700;
    src: url(fonts/SF-UI-Display-Bold.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 600;
    src: url(fonts/SF-UI-Display-Semibold.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 500;
    src: url(fonts/SF-UI-Display-Medium.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 400;
    src: url(fonts/SF-UI-Display-Regular.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 300;
    src: url(fonts/SF-UI-Display-Light.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 200;
    src: url(fonts/SF-UI-Display-Thin.otf);
}
@font-face {
    font-family: 'SF-UI-Display';
    font-weight: 100;
    src: url(fonts/SF-UI-Display-Ultralight.otf);
}
@import url('https://fonts.googleapis.com/css?family=Montserrat&subset=latin-ext');

html {
    overflow-x: hidden;
}
body {
    font-family: 'SF-UI-Display';
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #4d4d4d;
    overflow-x: hidden;
    min-height: 100vh;
    background:#f7f7f7;
}
a:hover{
    text-decoration:none;
}

.form-horizontal .control-label {
    padding-top: inherit;
}


.transition {
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.translateX {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}
.translateY {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}



.section-full{
    width:100%;
    height: 100vh;
}
.section-full-footer{
    display:block;
    width:100%;
    height: calc(100%-100px);
}


.fs-arrows{
    display:none;
}


/***
*
*       1 - HEADER
*
**************************/

#header.absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}
#header-wrapper{
    position: relative;
    display: table;
    height: 100px;
}

/* LOGO */
#site-branding{
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    padding-right: 50px;
    bottom:20px;
}
#site-branding img {
    width: 220px;
    height: auto;
}
/* TOP MENU */
#main-nav{
    display: table-cell;
    width: 100%;
    text-align: left;
    border: none;
    vertical-align: middle;
    padding: 0;
    position: relative;
    font-family: 'SF-UI-Display';
    font-size: 14px;
    font-weight: 500;
    z-index:999;
}
#main-nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: block;
    margin-right: 60px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
    padding-top:17px; padding-left:70px;
}
#main-nav > ul > li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}
#main-nav > ul > li > a {
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#main-nav-responsive-close{
    display:none;
    color:#000;
}

#main-nav-responsive-open{
    display:none;
    color:#000;
}










@media screen and (max-width: 1200px) {
    #main-nav > ul {
        padding-left:5px;
    }
}
@media screen and (max-width: 992px) {
    /*#header-wrapper{*/
        /*margin-right:-30px;*/
        /*margin-left:-30px;*/
    /*}*/
    #site-branding {
        padding-right: 30px;
    }
    #site-branding img {
        width: 180px;
    }

    #main-nav > ul{
        margin-right:0;
    }
    #main-nav > ul > li > a{
        font-size:13px;
    }
}

@media screen and (max-width: 767px) {

    #header-wrapper{
        margin-right:15px;
        margin-left:15px;
    }

    #site-branding img {
        width: 200px;
    }

    #main-nav{
        display:none;
        position:fixed;
        left:0;
        top:0;
        z-index:999999;
        background:#fff;
        width:100vw;
        height:100vh;
        font-weight:400;
    }
    #main-nav-responsive-open{
        display:block;
        font-size:35px;
        position:fixed;
        right:20px;
        top:20px;
        z-index:500;
        cursor:pointer;
    }
    #main-nav-responsive-close{display:block;}
    #main-nav-responsive-close:after{
        content:'\00d7';
        font-size:50px;
        position:fixed;
        right:20px;
        top:20px;
        cursor:pointer;
        pointer-events:auto;
        z-index:1500;
    }
    #main-nav > ul{
        display:table;
        margin:90px auto;
        padding:0;
    }
    #main-nav > ul > li{
        display:block;
        text-align:center;
    }
    #main-nav > ul > li > a{
        font-size:17px;
    }



}




/***
*
*       2 - CONTENT
*
**************************/

.page-content-title:after,
.page-content-body:after {
    content: " ";
    display: table;
    clear: both;
}

.page-row{
    padding-top:15px;
    padding-bottom:15px;
    position:relative;
}

.page-content{
    display:block;
    position:relative;
    min-height: calc(100vh - 267px);
}


.page-content-title{
    padding-top:15px;
    padding-bottom:10px;
}

.page-content-title h1{
    color:#1c1c1c;
    font-size:35px;
    line-height:50px;
    margin:0;
    padding:0;
}

.page-content-title h2{
    font-size:27px;
    line-height:35px;
    margin:0;
    padding:0;
}






.page-content-body {
    padding-top:15px;
    padding-bottom:15px;
    position:relative;
}


.page-content-padding{
    padding-top:100px;
}


.text-white p{
    background: #f5f5f5;
    display: inline-block;
    font-size: 14px;
    margin-top:5px;
    line-height: 25px;
}

/***
*
*       3 - FOOTER
*
**************************/

#footer{
    color:#3c3d41;
    background:#2e2e2e;
    padding:50px 0;
    font-family: 'SF-UI-Display';
}

.footer-logo{
    width:200px;
}

#footer a{
    color:#9c9c9c;
}

#footer a:hover{
    color:#b7b7b7;
}


h4.footer-block-title{
    color:#6e6e6e;
    font-weight:bold;
    font-size:18px;
    padding:0;
    margin:18px 0 15px 0;
}
ul.footer-block-list{
    list-style-type:none;
    margin:0;
    padding:0;
}
ul.footer-block-list li{
    display:block;
    font-size: 14px;
    line-height:23px;
}

#footer .social-links a{
    display:inline-block;
    font-size:20px;
    height:20px;
    line-height:20px;
    width:20px;
    margin-right:10px;
    text-align:center;
}


#footer .social-links a:hover i.fa-facebook{
    color:#3b5998;
}
#footer .social-links a:hover i.fa-twitter{
    color:#1da1f2;
}
#footer .social-links a:hover i.fa-instagram{
    color:#4c5fd7;
}
#footer .social-links a:hover i.fa-youtube{
    color:#ff0000;
}







/***
*
*       4 - PAGES DEFINIES
*
**************************/



.page-biographi .page-content {
    /*background: #f5f5f5 url("img/pages/biographi/a.png") no-repeat right bottom;*/
    /*background-size:auto 100%;*/
}












.hover-zoom-parent{
    position:relative;
    display:block;
}
.hover-zoom-parent:hover .hover-zoom {
/*.hover-zoom-parent .hover-zoom {*/
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.hover-zoom-parent:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(48, 54, 65, 0.5);
    z-index: 5;
    -webkit-border-radius: 4px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 4px;
    -moz-background-clip: padding;
    border-radius: 4px;
    background-clip: padding-box;
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.hover-zoom-parent:hover:after {
    zoom: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
}

.hover-zoom {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    background: url(img/zoom-icon.png) no-repeat center center;
    z-index: 10;
    width: 32px;
    height: 32px;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    zoom: 1;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-transition: all .8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -o-transition: all .8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    transition: all .8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

















