﻿
:root {
    --CSSColor: #000;
    --HeadingColor: #283a8e;
    --LinkColor: #283a8e;
    --LinkHoverColor: #33A1EA;
    --ButtonLinkHoverColor: #fff;
    --ButtonLinkColor: #fff;
    --DefaultBlockMarginTop: 28px;
}


html {
    overflow-y: scroll;
    -ms-overflow-style: scrollbar;
    background-color: #EDEDD7;
}

body {
    font-family: Verdana,Arial,sans-serif;
    font-size: 12px;
    line-height: 1.45;
    color: var(--CSSColor);
}


/* Used for the ModernUI IE to work in responsive mode */
@-ms-viewport {
    width: device-width;
}

img, embed, object, video {
    max-width: 100%;
    height: auto !important;
}

/* ckEditor LayoutManager */

.container-fluid div {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    clear: both;
    overflow: hidden;
}

.container-fluid .row {
    margin-right: -20px;
    margin-left: -20px;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9 {
    position: relative;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
    float: left;
}

.col-lg-12 {
    width: 100%;
}

.col-lg-11 {
    width: 91.66666667%;
}

.col-lg-10 {
    width: 83.33333333%;
}

.col-lg-9 {
    width: 75%;
}

.col-lg-8 {
    width: 66.66666667%;
}

.col-lg-7 {
    width: 58.33333333%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-5 {
    width: 41.66666667%;
}

.col-lg-4 {
    width: 33.33333333%;
}

.col-lg-3 {
    width: 25%;
}

.col-lg-2 {
    width: 16.66666667%;
}

.col-lg-1 {
    width: 8.33333333%;
}

@media screen and (max-width: 850px) {

    .container-fluid .row {
        margin-right: 0;
        margin-left: 0;
    }

    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: none;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

/* END ckEditor LayoutManager */

h1, h2, h3, h4, h5, h6 {
    color: var(--HeadingColor);
    margin: 0;
    padding: 0;
    font-weight: normal;
}

h1 {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

h2 {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 9px 0;
}

h3 {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 9px 0;
}

h4 {
    font-size: 12px;
}

p {
    margin: 0;
    padding: 0 0 17px 0;
}

p:last-child {
    margin: 0;
    padding: 0;
}

ol {
    list-style-type: decimal;
    margin-left: 1.618em;
}

nav ul, nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

b, strong {
    font-weight: 700;
}

i, em {
    font-style: italic;
}

small {
    font-size: 80%;
}

ul li {
    position: relative;
    margin-bottom: 3px;
}

a, a:visited {
    outline: none;
    color: #283a8e;
    text-decoration: none;
}

a:hover {
    outline: none;
    text-decoration: none;
    color: #33A1EA;
}

a:active, a:focus {
    outline: none;
}

a.pdfIcon {
    background-image: url(../../data/ckeditorfiles/ico/pdf.gif);
    display: inline-block;
    margin: 4px 0px 5px 0px;
    background-repeat: no-repeat;
    background-position: 0px 2px;
    padding: 0 0 2px 22px;
}

hr {
    border-bottom: 0 none;
    border-top: 3px dotted #283a8e;
    border-left: none;
    border-right: none;
    height: 1px;
    margin: 20px 0 20px 0;
}

table p {
    margin: 0;
    padding: 0;
}

/* Buttons*/
.button {
    background-color: #283a8e;
    border-radius: 4px;
    padding: 10px 10px;
    color: #E5E5E5;
    text-decoration: none;
    border: none;
}

.button:visited {
    text-decoration: none;
    color: #E5E5E5;
}

.button:hover {
    text-decoration: none;
    color: #fff;
    background-color: #33A1EA;
}

/*********************************************************************************************************************************/

#container {
    position: relative;
    margin: 0;
    border-top: 120px solid #F7F7ED;
    background: linear-gradient(to top, #EDEDD7, #F7F7ED);
}

#header {
    position: fixed;
    left: 0;
    right: 0;
    margin-top: -120px;
    height: 120px;
    border-bottom: 1.5px solid #DBDAC0;
    background-color: #EDEDD7;
}

#navigationLogo {
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
}

#siteLogo {
    margin: 0 auto;
    max-width: 980px;
}

#siteLogo > a {
    background: url('../../layout/images/logo.png') 0 0 no-repeat;
    background-size: 100%;
    height: 59px;
    width: 180px;
    display: block;
    text-indent: -9000px;
    margin-left: 20px;
}

#navigationWrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(to top, #EDEDD7, #F7F7ED);
    height: 91px;
    overflow: hidden;
}

#navigationMain {
    margin: 54px auto 0 auto;
    max-width: 985px;
    position: relative;
}

#main-menu {
    border: none;
    position: absolute;
    top: 0;
    right: 15px;
    left: 220px;
}

#main-menu:after {
    content: ' ';
    box-shadow: 0 -5px 5px -5px rgba(157,153,109,1);
    box-shadow: 0 -6px 5px -3px rgba(157,153,109,0.4);
    height: 12px;
    width: 100%;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    background: #fff;
}

#menu-icon {
    display: none;
}

#headerSlider {
    max-width: 985px;
    margin: -40px auto 0 auto;
    z-index: 1;
    position: relative;
}

#headerSlider .swiper-container {
    margin: 10px 15px 10px 220px;
    box-shadow: rgba(157,153,109,0.4) 0px 0px 8px 2px;
    border: 2px solid #fff;
    border-top: none;
}

#content {
    margin: 0 auto 0 auto;
    max-width: 985px;
}

#headerContent > #headerTopContent
{
    display: none;
}

#headerTopContent {
    position: fixed;
    top: 165px;
    padding-left: 20px;
    z-index: 1;
}

#main {
    margin: -39px auto 0 auto;
    max-width: 985px;
    position: relative;
    overflow: hidden;
}

.home #main {
    margin: -10px auto 0 auto;
}

#main #blockEditor,
#main #download,
#main #ABAUApartmentRental {
    background-color: #fff;
    text-align: left;
    overflow: hidden;
    box-shadow: rgba(157,153,109,0.4) 0px 0px 8px 2px;
    margin: 10px 15px 10px 220px;
    min-height: 465px;
    hyphens: auto;
}

#main ul {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}


#headerTopContent .navigation a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    color: #9d996d;
    border-top: solid 1px #e0dfc5;
    padding: 5px 0 5px 0;
}

#headerTopContent .navigation a:hover {
    color: #000;
}

#headerTopContent .navigation li:first-child a {
    border: none;
}

#headerTopContent .navigation li.current > a {
    color: #000;
}

#headerTopContent ul.navigation {
    margin: 0 0 50px 0;
    padding: 0;
    max-width: 195px;
}

#headerTopContent .navigation li {
    list-style: none;
}

#headerTopContent .subNavigation {
    display: none;
}

#headerTopContent .subNavigation:has(.current) {
    display: block;
}

#headerTopContent .navigation .subNavigation {
    padding-left: 20px;
}

#headerTopContent .navigation .subNavigation a {
    font-size: 12px;
}

.home #headerTopContent .navigation,
.WebpageId21 #headerTopContent .navigation,
.WebpageId25 #headerTopContent .navigation,
.WebpageId16 #headerTopContent .navigation {
    display: none;
}

/*-------------- Footer-Navigation -------------------------------------------------*/
/* ------------  scroll-to-top  ----------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    background-color: #fff;
    border-radius: 30%;
    font-size: 45px;
    color: #333;
    text-decoration: none;
}

.scroll-to-top:visited {
    color: #333;
}

.scroll-to-top:hover {
    color: #333;
    background-color: #aaa;
    text-decoration: none;
}



@media screen and (max-width: 924.9px) {

    #header {
        display: none;
    }

    #navigationLogo {
        top: 15px;
    }

    #siteLogo > a {
        height: 42px;
        width: 115px;
    }

    #navigationWrapper {
        position: fixed;
        right: 0;
        top: 0;
        left: 0;
        z-index: 99;
        overflow: inherit;
        border-bottom: 1.5px solid #DBDAC0;
        height: 60px;
    }

    .showNavigation #navigationWrapper {
        
    }

    .showNavigation #main,
    .showNavigation #content {
        display: none;
    }

    #navigationMain {
        background: none;
        margin: 10px auto 0 auto;
    }

    .showNavigation #navigationMain {
        margin: 0 auto 0 auto;
    }

    #main-menu {
        position: relative;
        z-index: 9999;
        border-top: 3px solid #283a8e;
        margin: 0;
        left: 0;
        right: 0;
        top: 60px;
    }

    #main-menu:after {
        display: none;
    }

    #menuIconWrapper {
        float: right;
        -ms-touch-action: none;
        right: 0;
    }

    #menu-icon {
        float: right;
        display: block;
        text-decoration: none;
        position: relative;
        height: 28px;
        width: 30px;
        margin: 5px 15px 0 0;
    }

    .showNavigation #menu-icon {
        margin: 15px 15px 0 0;
    }

    #menu-icon .fa-bars {
        font-size: 35px;
        color: #283a8e;
    }

    #main-menu.hideNavigation {
        display: none;
    }

    .showNavigation {
        display: inherit;
    }

    #container {
        border: none;
    }

    #main {
        margin: 60px auto 0 auto;
        padding: 5px 0 0 0;
    }

    #headerTopContent .navigation {
        display: none;
    }

    #headerTopContent {
        position: relative;
        top: inherit;
        margin: 15px 0 30px 0;
    }

    #main #blockEditor,
    #main #download,
    #main #ABAUApartmentRental {
        margin: 10px 15px 10px 15px;
        border-top: 2px solid #fff;
    }

    #headerSlider {
        margin: 60px auto 0 auto;
        padding-top: 5px;
    }

    #headerSlider .swiper-container {
        margin: 10px 15px 10px 15px;
        border-top: 2px solid #fff;
    }
}




@media screen and (max-width: 767.9px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 18px;
        line-height: 20px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 16px;
    }

    h4 {
        font-size: 15px;
    }
}


@media screen and (max-width: 250px) {

    #headerTopContent
    {
        word-break: break-word;
    }
}


