/* table of contents

1. global styles

2. typography

3. components
   3.1 buttons

*/





/* ===============
    globals styles
   =============== */

body::-webkit-scrollbar {
    width: 0;
}

.container, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl {
        width: 97%;
        max-width: 97%;
}

.language-select {
    display: none !important;
}

:root {
    --var-height: calc(var(--vh, 1vh) * 100) !important;
}





/* ===============
    typography
   =============== */

@font-face {
    font-family: Miratrix;
    src: url('/css/fonts/Miratrix-Normal.ttf');
    font-display: swap;
}

@font-face {
    font-family: Poppins Thin;
    src: url('/css/fonts/Poppins-Thin.ttf');
    font-display: swap;
    font-weight: 100;
}

@font-face {
    font-family: Poppins Regular;
    src: url('/css/fonts/Poppins-Regular.ttf');
    font-display: swap;
    font-weight: 200;
}

@font-face {
    font-family: Poppins Medium;
    src: url('/css/fonts/Poppins-Medium.ttf');
    font-display: swap;
    font-weight: 300;
}





/* ===============
    Layout
   =============== */

    /* header menu */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding-top: 40px;
}

#main-navbar {
    padding: 0;
}

.header_left,
.header_right {
    display: flex;
    align-items: center;
    flex-basis: 40%;
    margin: 0;
}

.header_right {
    justify-content: flex-end;
}

#main-navbar-collapse {
    flex-grow: 0;
}

.navbar-brand {
    margin-right: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    max-height: 100%;
    color: #000;
    transform: translateY(9px);
}

.logo-line_up {
    font-size: calc(1vh + 1vw);
    font-family: Miratrix;
    line-height: 1em;
    margin-bottom: 10px;
}

.logo-line_up span {
    margin-right: 20px;
}

.logo-line_up span:last-child {
    margin-right: 0;
}

.logo-line_down {
    display: flex;
    justify-content: center;
    line-height: 1em;
    font-size: 9px;
    font-family: Poppins Regular;
    text-transform: uppercase;
}

.logo-line_down_wrap {
    margin-right: 18px;
}

.logo-line_down span {
    margin-right: 5px;
}

.logo-line_down span:last-child {
    margin-right: 0;
}

.nav-item {
    margin-right: 40px;
}

.nav-item:last-child {
    margin-right: 0;
}

.nav-link,
.select-apartment,
.phone-number  {
    color: #000;
    text-transform: uppercase;
    font-family: Poppins Regular;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-link:hover,
.select-apartment:hover,
.phone-number:hover {
    color: #000;
    text-decoration: none;
}

.select-apartment {
    padding: 10px;
    background-color: #ffffff94;
    font-family: 'Poppins Medium';
}

.phone-number {
    background: transparent !important;
    color: #fff !important;
    margin-left: 40px;
}

.phone-number.mobile {
    display: none;
}



    /* footer */

.bg-dark {
    display: none !important;
}


    /* homepage */

.homepage_intro_section {
    height: var(--var-height);
}

.homepage_intro_section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(280deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.intro_half {
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.intro_half .module-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.intro_half .module-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 10s cubic-bezier(0.45, 0, 0.55, 1);
}

.intro_half:hover .module-image img {
    transform: scale(1.2);
}

.homepage_intro_section .option {
    z-index: 1;
}

.homepage_intro_section .option p {
    margin-bottom: 0;
    font-size: 20px;
    letter-spacing: 15px;
    font-family: Miratrix;
}


/* ===============
    components
=============== */

    /* buttons */
