/* FONTS */
@font-face {
    font-family: 'Montserrat Light';
    src: url('fonts/Montserrat-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Regular';
    src: url('fonts/Montserrat-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat Bold';
    src: url('fonts/Montserrat-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    } 
    100% {
        opacity: 0.2;
    } 
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) { 
    /*.top_left .logo--project img {
        height: 3rem;
        position: absolute;
        top: 1.5rem; left: 3rem;
    }
    
    .top_right .logo--developer img {
        height: 2.5rem;
        position: absolute;
        top: 2rem; right: 3rem;
    }

    .choose_floor__container .uk-modal-body {
        padding: 2rem !important;
    }*/

    /*.top_center {
        position: absolute !important;
        left: 72% !important;
        
    }*/
}

/* MAIN */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
    font-size: 62.5%;
    height:100%;
}

body {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat Bold", sans-serif;
    line-height: 1.2;
    color: #191A1A;
    height:100%;
    overflow: hidden;
    margin:0;
    padding:0;
    width: 100%; height: 100%;
    background: #fff;
}

section {
    width:100%;
    min-width: 100%;
    height:100%;
    min-height: 100%;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    z-index: 1;
    display: block;
}

p {
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat Bold", sans-serif;
    color: #191A1A;
    margin: 0;
}

h1 {
    font-size: 3.2rem !important;
}
h2 {
    font-size: 2.6rem !important;
}
h3, h4, h5, h6 {
    font-size: 2rem !important;
}


/* NAVIGATION */
.navigation__top, .navigation__bottom {
    z-index: 99;
    position: fixed;
    width: 100%;
    padding: 2.5rem 3rem;
}
.navigation__bottom {
    padding-top: 0;
    padding: 0 3rem;
    padding-bottom: 2.5rem;
}

.navigation__top {
    top: 0;
    background-color: #fff;
}
.navigation__bottom {
    bottom: 0;
}

.navigation__transparent {
    background-color: transparent;
}

.top_left,
.top_center,
.top_right {
    height: 5rem;
}

.bottom_left,
.bottom_center,
.bottom_right {
    height: 5rem;
}

.top_center {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-transform: translateZ(-50) scale(1.0, 1.0);
}

.bottom_center {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-transform: translateZ(-50) scale(1.0, 1.0);
}

.navigation__blurred {
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(1rem);
}

.navigation{
    margin: 0;
}

.navigation li .navigation__link {
    color: #32373B;
    font-family: "Montserrat Bold", sans-serif;
    font-size: 1.6rem; 
    text-transform: unset;
    transition: all .2s ease-out;
    background: transparent;
}
.navigation li .navigation__link:hover,
.navigation li .navigation__link:focus,
.navigation li .navigation__link:active {
    color: #C4AF6E;
}

.navigation li .navigation__link__active,
.navigation li .navigation__link__active:hover,
.navigation li .navigation__link__active:focus {
    color: #C4AF6E;
    
}

/* ICONS */
.icon {
    display: inline-block;
    background-size: cover;
    transition: all .2s ease-out;
}

.icon__right {
    margin-left: 2rem;
}

.icon__left {
    margin-right: 2rem;
}

.link__logo {
    text-decoration: none;
}

.logo--project img {
    height: 5rem;
    position: absolute;
    top: 2.5rem; left: 4rem;
}

.logo--developer img {
    height: 2.5rem;
    position: absolute;
    top: 4rem; right: 4rem;
}

/* BUTTONS */
.button__default {
    background-color: #32373B;
    color: #fff;
    border: none;
    text-transform: unset;
    transition: all .2s ease-out;
    font-family: "Montserrat Bold", sans-serif;
    line-height: 1.2;
    cursor: pointer;
    font-size: 1.6rem;
    border-radius: 2.5rem;
    position: relative;
    z-index: 2;
    width: 20rem; height: 5rem;
    text-align: center;
    padding: 0 2rem;
}

.button__default:hover,
.button__default:focus,
.button__default:active {
    color: #fff;
    background-color: #C4AF6E;
}

.button__default span,
.button__rounded span {
    display: inline-block;
}

.button__default span {
    height: 3.2rem; width: 3.2rem;
}

.button__rounded span {
    height: 3.2rem; width: 3.2rem;
}

.button__default object,
.button__rounded object {
    position: relative;
    z-index: -1;
}

.button__rounded {
    background-color: #32373B;
    color: #fff;
    padding: 1rem;
    border-radius: 100%;
    width: 5rem; height: 5rem;
}

.button__rounded:hover,
.button__rounded:focus {
    background-color: #C4AF6E; color: #fff;
}

/* BOTTOM */
.button__bottom {
    color: #32373B;
    background-color: #fff;
}

.button__bottom:hover,
.button__bottom:focus {
    color: #fff;
    background-color: #C4AF6E;
}

.button__rounded:hover object,
.button__rounded:focus object,
.button__default:hover object,
.button__default:focus object,
.button__bottom:hover object,
.button__bottom:focus object {
    filter: grayscale(100%) brightness(1000%);
}

.button__bottom__active,
.button__bottom__active:hover,
.button__bottom__active:focus {
    color: #fff;
    background-color: #C4AF6E;
}

.button__bottom__active object,
.button__bottom__active:hover object,
.button__bottom__active:focus object {
    filter: grayscale(100%) brightness(1000%);
}


.button__margin__right {
    margin-right: 1rem;
}
.button__margin__left {
    margin-left: 1rem;
}
.button__margin__bottom {
    margin-bottom: 1rem;
}
.button__margin__top--medium {
    margin-top: 2rem;
}
.button__margin__bottom--medium {
    margin-bottom: 2rem;
}

.select_project {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* BUTTON - ROUNDED LARGE / SELECT PROJECT */
.button__rounded__large,
.button__rounded__large:hover,
.button__rounded__large:focus {
    font-size: 1.6rem;
    background-color: transparent;
    padding: 0;
    position: relative;
    border: none;
    transition: color .2s ease-out;
}
.button__rounded__large p {
    margin: 0;
    text-align: center;
    color: #32373B;
    transition: all .2s ease-out;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.button__rounded__large:hover p {
    color: #C4AF6E;
}

.select_project img {
    transition: all .2s ease-out;
}
.select_project:hover img,
.select_project:focus img {
    transition: all .2s ease-out;
    transform: scale(1.05);
}

.button__list {
    padding: 1.5rem 5rem !important;
    border-radius: 2.5rem;
}

/* BUTTON - FORM */
.button--submit,
.button--submit:hover,
.button--submit:focus {
    background-color: #FF4338;
    color: #fff;
    min-width: 15rem;
    text-align: center;
}

/* BUTTON OPEN VR */
.button__open_vr,
.button__open_vr:hover,
.button__open_vr:focus {
    background: #ccc;
    position: relative;
    right: 7rem;
    bottom: -.5rem;
    margin-top: .9rem;
}

.button__open_vr__active,
.button__open_vr__active:hover,
.button__open_vr__active:focus {
    background: #191A1A;   
}

/* BUTTON NAVIGATION */
.button--navigation {
    border-radius: .5rem .5rem 0 0;
}

/* VIDEO BACKGROUND */
.fullscreen__background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.fullscreen__background__video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

/* SPECIFIC */

/* ASK ME */
.ask_me--card {
    padding: 3rem;
    box-shadow: none;
    border-radius: 1rem;
}

/* SELECT PROJECT PANEL */

.uk-modal {  
    background: rgba(0,0,0,.2);
    backdrop-filter: blur(1rem);
    padding: 2rem 3rem;
    /*position: relative;*/
}
.uk-modal-header,
.uk-modal-footer {
    border-radius: .5rem;
}

/* NAVIGATION PANELS */
.select_project__panel {
    background-color: #fff;
    box-shadow: none;
    border-radius: .5rem !important;
    max-width: 183rem !important;
}
.select_project__card {
    z-index: 10;
    position: relative;
}
.select_project__card a::after {
    content: '';
    position: absolute;
    left:0; top:0;
    width: 100%; height: 50%;
    display: inline-block;
    background: linear-gradient(to bottom, rgba(2, 2, 2, 0.5) 0%, transparent 100%);
    z-index: 0;
}
.select_project__overlay {
    margin: 2rem;
    z-index: 1;
}
.select_project__title {
    color: #fff;
    line-height: 1.2;
}
.select_project__subtitle {
    color: #fff;
    line-height: 1.2;
    font-size: 1.4rem;
    font-family: "Montserrat Regular", sans-serif;
}

.select_project__card__inactive::after {
    content: '';
    position: absolute;
    left:0; top:0;
    width: 97.5%; height: 100%;
    z-index: 11;
    cursor: unset;
    margin-left: 1.5rem;
    background: rgba(145, 145, 145, 0.7);
}


/* PROJECT PAGE */
.project__title {
    color: #fff;
}

/* EXTERIOR */
.background--3d_rotation {
    min-width:100%; 
    min-height:100%;
    object-fit: cover;
}

#renderCanvas {
    width: 100%; height: 100%;
    touch-action: none;
    top: 0; left: 0;
    position: absolute;
    z-index: 0;
}

/* CONTACT FORM */
.form__input input,
.form__textarea textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-family: "Montserrat Regular", sans-serif;
    padding: 2rem;
    border: .1rem solid #e5e5e5;
    background-color: transparent;
    transition: all .2s ease-out;
    outline: none;
}
.form__input input:focus,
.form__textarea textarea:focus {
    border: .1rem solid #191A1A;
}
::placeholder {
    color: #191A1A;
    opacity: 1;
}

/* PRELOADER */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: 1s;
}
.preloader-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    height: 50%;
    width: 100%;
    background: #000;
    background-image: linear-gradient(to bottom, rgb(0, 0, 0), rgb(19, 19, 19));
    z-index: 1000;
    transition: all 1s ease-out;
}
.preloader-wrapper.complete::before {
    top: -50%;
    background: transparent;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(19, 19, 19, 0));
}
.preloader-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    background: #000;
    background-image: linear-gradient(to top, rgb(0, 0, 0), rgb(19, 19, 19));
    z-index: 1000;
    transition: all 1s ease-out;
}
.preloader-wrapper.complete::after {
    bottom: -50%;
    background: transparent;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(19, 19, 19, 0));
}
.preloader-wrapper-logo img {
    height: 6rem;
    margin-bottom: 2rem;
}
.preloader-wrapper-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -120%);
    z-index: 1001;
    transition: all 1s ease-out;
}
.preloader-wrapper-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    z-index: 1001;
    opacity: 1;
    animation: blink 1s infinite;
    transition: all 1s ease-out;  
}
.preloader-wrapper-logo.complete {
    top: 0%;
    opacity: 0;
}
.preloader-wrapper-loading.complete {
    top: 100%;
    opacity: 0;
}
.loading-text {
    font-size: 2.6rem;
    color: #fff;
    font-family: "Montserrat Bold", sans-serif;
}

.uk-modal-body {
    color: #191A1A;
    font-family: "Montserrat Regular", sans-serif;
    font-size: 1.4rem;
    padding: 2rem;
}

/* SCENE SWITCHER */
.navigation__top__sub {
    position: absolute;
    top: 11rem;
    right: 3rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2.5rem;
    z-index: 99;
}
.btn {
    display: inline-block;
    padding: .9rem 0;
    width: 5rem;
    position: relative;
    text-align: center;
    cursor: pointer;
    z-index: 99;
}

input[type="radio"].toggle {
    display: none;
}
input[type="radio"].toggle:checked + label {
    background-color: #fff;
    border-radius: 2.5rem;
    cursor: default;
    -webkit-transition: background .6s ease-out;
    transition: background .6s ease-out;
    cursor: initial;
}

/* INFO */
.info__data__container ul {
    list-style: none;
    color: #191A1A;
    font-size: 1.6rem;
    padding: 2rem;
}
.info__data--left {
    font-family: "Montserrat Regular", sans-serif;
}
.info__data--right {
    font-family: "Montserrat Bold", sans-serif;
}
.info__data--left ul li,
.info__data--right ul li {
    margin-bottom: .5rem;
}
.info__floorplan__container img {
    /*margin-top: 2rem;*/
    max-height: 50rem;
    max-width: 70rem;
    padding: 2rem;
}

/* SEARCH BAR */
.search_bar {
    position: absolute;
    top: 11rem;
    right: 3rem;
    width: 20%;
    height: 5rem;
    border: none;
    border-radius: 2.5rem;
    font-size: 1.4rem;
    font-family: "Montserrat Regular", sans-serif;
    color: #191A1A;
    padding-left: 3rem;
}

/* MOBILE NOT SUPPORTED */
.mobile_only {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    padding: 0;
}
.mobile_only p {
    color: #32373B;
    font-size: 1.6rem;
}

/* NAVIGATION LIST */

.navigation__list {
    z-index: 1;
    border-radius: .5rem;
    background-color: #fff;
    box-shadow: none;
    padding: 2rem;
    width: 17rem;
}

.navigation__list ul {
    margin: 0;
}
.navigation__list ul li .navigation__link {
    transition: all .2s ease-out;
    text-decoration: none;
    color: #32373B;
    font-size: 1.6rem;
}
.navigation__list ul li .navigation__link:hover,
.navigation__list ul li .navigation__link:focus {
    color: #C4AF6E;
}

/* DEVELOPED BY GRANDPANO */
.developed,
.developed:focus {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    opacity: .7;
    font-family: 'Montserrat Light', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .2rem;
    transition: all .2s ease-out;
}
.developed:hover {
    color: #fff;
    opacity: 1;
    text-decoration: none;
}

/* CHOOSE FLOOR */
.floorplan__title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1rem;
}

/*.choose_floor__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/
.choose_floor,
.gallery {
    width: 100%;
    height: 100%;
}

.choose_floor__container {
    position: relative;
    padding-top: 20vh;
}
.choose_floor__container .uk-modal-body {
    padding: 8rem;
}

.gallery__container {
    padding-top: 3rem;
}
.gallery__container .uk-modal-body {
    padding: 3rem 0;
}

.floorplan__link,
.floorplan__link:hover,
.floorplan__link:focus {
    text-decoration: none;
    color: #191A1A;
    font-family: 'Montserrat Bold', sans-serif;
}

/* INFO */
.informations {
    padding: 5rem;
    min-width: 42rem;
}

.pdf__link {
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 1.6rem;
    color: #191A1A;
    text-decoration: none;
    transition: all .2s ease-out;
}
.pdf__link:hover {
    color: #FF6600;
    text-decoration: none;
}

/* TOGGLE HOLO x ZARIADENY */

