/*------------------------------------------------*/
/* Start HEADER */
/*------------------------------------------------*/
html {
    height: 100%;
    box-sizing: border-box;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding:10px 0
}
.Headertop {
    position:relative;
}
.shrink {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 69px;
    z-index: 1000;
    -webkit-transition: all 1s cubic-bezier(.25,.8,.25,1);
    -o-transition: all 1s cubic-bezier(.25,.8,.25,1);
    transition: all 1s cubic-bezier(.25,.8,.25,1);
    background-color: #fff;
    transform: translateY(0);
    padding: 0;
    box-shadow: 0 0 5px #ccc;
}
.shrink .topheader {
    display:none;
}
.shrink .home-icon {
    margin-top:15px;
}
.shrink .lang-box {
    margin-top:10px;
}
.shrink .language-object {
    background-color:transparent;
}
.shrink .logo {
    transform:scale(0.7);
    background-size: contain;
    margin-top:0;
    filter: invert(1) brightness(0);
}
.shrink .Language a:hover {
    color: #203d63 !important;
}
.topheader {
    border-bottom: 1px solid rgba(193,187,175,0.3);
    padding: 15px 0;
    display: inline-block;
    width: 100%;
}

.Header-rel {
    position: relative;
    background-color: #1e212a;
    display: inline-block;
}

.lang-box {
    position: relative;
    color: #d4d4d4;
    -webkit-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -o-transition: all .25s cubic-bezier(.3,.3,0,.8);
    transition: all .25s cubic-bezier(.3,.3,0,.8);
    text-align: left;
    margin-top: 23px;
}
.language-object {
    margin-top: 18px;
    text-align: right;
    width: auto;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    background-color: #ffffff;
    padding: 0 3px;
}

.Language {
    display: block;
    overflow: hidden;
    vertical-align: top;
    position: relative;
    font-family: tahoma;
    letter-spacing: 0px;
    direction: ltr;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    padding: 0;
    color: #000000;
    line-height: 18px;
}

.Language a {
    color: #6fa750;
    transition: all 0.3s ease;
}

.Language a:hover {
    color: #e3022a !important;
}

.Language.selected {
    display: none;
}

.login-box {
    text-align: center;
    margin-top: 12px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.login-box a {
    color: #fff;
    padding: 3px;
    transition: all 0.2s ease-out;
}

.login-box a:hover {
    color: #ffb400;
}

.LoginLink::before {
    position: absolute;
    content: '';
    right: -7px;
    background: url(images/user.svg) no-repeat 0 0;
    width: 15px;
    height: 20px;
    background-size: 15px 20px;
    top: 2px;
    bottom: 0;
    margin: auto 0;
}

.login {
    color: #979797;
    margin-top: 10px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

.login a {
    padding: 5px;
    color: #d4d4d4;
    -webkit-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -o-transition: all .25s cubic-bezier(.3,.3,0,.8);
    transition: all .25s cubic-bezier(.3,.3,0,.8);
    position:relative;
}

.login a:hover {
    color: #c4aa79 !important;
}
.header:hover .login a ,.header.isOn .login a{
    color:#000;
}

.LoginLink {
    padding-right: 15px !important;
}

.logo {
    background: url(images/logo.png) no-repeat 0 0;
    width: 246px;
    height: 78px;
    float: right;
    margin: 24px 0 10px;
    -webkit-transition: all 1s cubic-bezier(.25,.8,.25,1);
    -o-transition: all 1s cubic-bezier(.25,.8,.25,1);
    transition: all 1s cubic-bezier(.25,.8,.25,1);
}

#dnn_SocialTop .fa {
    font-size: 15px;
    margin: 5px;
    -webkit-transition: all .25s cubic-bezier(.3,.3,0,.8);
    -o-transition: all .25s cubic-bezier(.3,.3,0,.8);
    transition: all .25s cubic-bezier(.3,.3,0,.8);
}


.header:hover #dnn_SocialTop .fa,.header.isOn #dnn_SocialTop .fa{
    color:#000
}
#dnn_SocialTop .fa:hover {
    color:#e9c485 !important;
}
#dnn_SocialTop .Theme_26_Default {
    padding: 0;
    margin: 10px 0 0;
    z-index: 100;
    text-align: left;
}

@media all and (min-width:768px) and (max-width:1199px) {
    .logo {
        width:90%;
        background-size:contain;
    }

}

@media all and (max-width:767px) {
    .logo {
        width: 150px;
        background-size: contain;
        height: 45px;
        margin: 5px;
    }

    .lang-box {
        position: absolute;
        color: #d4d4d4;
        text-align: left;
        margin-top: 0;
        top: -4px;
        left: 67px;
    }
}