html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: "Roboto", "sans-serif";
    padding: 0;
    margin: 0;
}

body > * {
    flex-shrink: 0;
}

img{
    height: auto;
    width: 100%;
}

.image img{
    width: auto;
}

.menu {
    height: 50px;
    border-bottom: 4px solid #4f87c2;
    position: relative;
    z-index: 10;
}

.menu .mobile-icon {
    display: none;
    position: absolute;
    top: 9px;
    left: 16px;
    font-size: 26px;
    color: #333;
    cursor: pointer;
}
.menu .mobile-icon:hover {
    opacity: .75;
}

.menu .links a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    color: #555;
    margin-right: 45px;
}
.menu .links a:last-of-type {
    color: red;
    margin-right: 0;
}
.menu .links a:hover {
    text-decoration: underline;
}

.menu .links {
    position: absolute;
    top: 15px;
    right: 180px;
}

.menu .play-btn {
    border: 3px solid #4f87c2;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    color: #4f87c2;
    background: #fff;
    position: absolute;
    top: 13px;
    right: 50px;
    transition: all 150ms linear;
}
.menu .play-btn:hover {
    color: #8bb0d6;
    border: 3px solid #8bb0d6;
}

.menu .play-btn i {
    font-size: 43px;
    padding-top: 14px;
    padding-left: 21px;
}

.main {
    position: relative;
    background: #ccc;
    flex-grow: 1;
    text-transform: uppercase;
}

.main .logo {
    position: absolute;
    top: 50px;
    background: #fff;
    padding: 15px 65px;
    z-index: 10;
}

.main .logo img {
    width: 165px;
}

.main .languages h3 {
    color: #666;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, .2);
}

.main .languages {
    color: #fff;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 20px;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.main .languages a {
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    margin: 0 25px;
}

.main .languages a:hover {
    text-decoration: underline;
}

.main .image {
    width: 100%;
    height: calc(100vh - 54px);
    overflow: hidden;
}

.main .image img {
    flex-shrink: 0;
    max-width: 100%;
}

.main .slider-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.main .slider-controls .slider-el {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    margin: 0 6px;
    display: inline-block;
    cursor: pointer;
}
.main .slider-controls .slider-el:hover {
    background: #bbb;
}

.main .slider-controls .slider-el.active {
    background: #9a7c33;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -55%;
    background: #fff;
    z-index: 101;
    width: 55%;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
}

.mobile-menu .links a {
    text-decoration: none;
    width: calc(100% - 30px);
    margin: 0;
    padding: 20px 15px;
    display: block;
    color: #000;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
}
.mobile-menu .links a:last-of-type {
    border-bottom: none;
    color: red;
}
.mobile-menu .links a:active, .mobile-menu .links a:hover {
    background: #e7e7e7;
}

.mobile-menu .logo {
    position: absolute;
    bottom: 20px;
    text-align: center;
}

.mobile-menu .logo img {
    width: 80%;
}

.main.floor-selector {
    background: rgb(84,124,176);
    background: linear-gradient(155deg, rgba(84,124,176,1) 9%, rgba(91,134,185,1) 92%);
}

.floor-image {
    margin-top: 150px;
    text-align: center;
}

.floor-image img {
    width: 300px;
    margin-bottom: -7px;
}

.floor-image .maphilighted, .floor-image > div {
    margin: 0 auto -4px auto!important;
}

.floor .popup h3 {
    font-size: 22px;
    margin-top: -20px;
    position: relative;
}

.floor .popup h3 .current-floor {
    margin-left: 10px;
    font-size: 32px;
    font-weight: bold;
}

.floor .popup h3 .count-up, .floor .popup h3 .count-down {
    color: #ffa902;
    cursor: pointer;
}

.floor .popup h3 .count-up:hover, .floor .popup h3 .count-down:hover {
    opacity: .6;
}

.floor .popup h3 .count-down {
    margin-right: 7px;
}

.floor .popup h3 .count-up {
    margin-left: 7px;
}

.floor-image {
    position: relative;
}

.chosen-floor {
    position: absolute;
    right: -90px;
    padding: 5px 10px;
    background: #fff;
    border: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.apartment-popup .price, .apartment-popup .price_keyturn, .apartment-popup .square {
    font-weight: bold;
}

.apartment-popup h2 span {
    display: inline;
}

.pl {
    float: left;
    width: 45%;
}

.pr {
    margin-left: 51%;
}

.pr h2 {
    margin-top: 0;
    margin-bottom: 40px;
    text-align: left;
}

.pr ul {
    list-style: none;
    margin-bottom: 40px
}

.pr p {
    margin-bottom: 40px;
    
}

.pr h3 {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: 36px;
    text-align: center;
    margin-top: 0;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
    text-align: left
}

.custom-form input[type="text"], .custom-form textarea {
    padding: 15px 20px;
    border: 1px solid #e7edf0;
    border-radius: 4px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.custom-form input[type="submit"], .btn {
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 10px;
    border: 0;
    background: #0046b5;
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom-form input[type="submit"]:hover {
    cursor: pointer;
    background: #1a3663;
}

.pr ul {
    padding: 0;
}

.hidden {
    display: none;
}

.logo.logo-page {
    position: absolute;
    background: #fff;
    top: 9px;
    padding: 7px 18px;
    left: 35px;
    z-index: 10;
}

.main.floor-selector .logo {
    top: -45px;
    padding: 7px 18px;
    left: 35px;
}

.main.floor-selector .logo img, .logo.logo-page img {
    width: 120px;
}

.main.floor-selector .description {
    position: absolute;
    top: 25px;
    right: 130px;
    text-transform: initial;
    color: #efefef;
}

.apartment-popup .pl {
    max-width: 528px;
}

.custom-form input {
    display: block;
}

.pr form input[type="submit"] {
    margin-top: -15px;
}

.menu .langs {
    position: absolute;
    right: 0;
    top: 5px;
    background: #fff;
    padding: 10px;
    text-transform: uppercase;
    max-height: 22px;
    overflow: hidden;
    font-size: 14px;
}
.menu .langs:hover {
    max-height: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

.menu .langs > * {
    display: block;
    padding: 4px 0px;
}

.menu .langs span {
    margin-bottom: 10px;
}

.menu .langs a {
    margin-left: 7px;
}

.content-main-image img {
    max-width: 100%;
}

.content-main-image {
    position: relative;
    z-index: -1
}

.content-main-image h1 {
    position: absolute;
    font-size: 45px;
    color: #fff;
    top: 30px;
    left: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.content-article {
    padding: 35px;
    background-color: #fff;
    margin: -175px 35px 35px 35px;
    z-index: 100;
    box-shadow: 0 0 3px rgba(0, 0, 0, .2);
    max-width: 1000px;
}

.content .content-article p {
    margin: 20px 0;
}

.address {
    margin-top: 25px;
    color: #555;
}

@media screen and (min-width: 1170px) {
    .content-article {
        margin: -175px auto 35px auto;
    }
    .content-main-image img {
        width: 100vw;
    }
    .content-article.contact {
        min-width: 950px;
    }
}

@media screen and (min-width: 1500px) {
    .content-article {
        margin: -275px auto 35px auto;
    }
    .content-article.narrow {
        max-width: 1100px;
    }
}

@media screen and (max-width: 920px) {
    .content-main-image h1 {
        top: 25px;
    }
    .content-article {
        margin-top: -100px;
    }
}

@media screen and (max-width: 572px) {
    .content-main-image h1 {
        top: 15px;
        font-size: 25px;
    }
    .content-article {
        margin: -50px 15px 15px 15px;
    }
}

@media screen and (max-width: 500px) {
    .content-main-image h1 {
        top: 15px;
        font-size: 25px;
    }
    .content-article {
        margin: -20px 15px 15px 15px;
    }
}

@media screen and (max-width: 548px) {
    .main.floor-selector .logo {
        left: 10px;
    }
    .main.floor-selector .description {
        top: 55px;
        right: 5px;
    }
    .main.floor-selector .logo img, .logo.logo-page img {
        width: 85px;
    }
}

@media screen and (max-width: 575px) {
    .slider-controls .slider-el {
        margin: 0 4px!important;
    }
}

@media screen and (max-width: 710px) {
    .main .languages {
        width: 100%;
    }
    .main .logo {
        top: 10px!important;
        padding: 10px 24px!important;
    }
    .main .logo img {
        width: 101px;
    }
    .main .languages {
        top: 130px;
    }
    .main .languages h3 {
        color: #eee;
        text-shadow: 1px 0 2px rgba(0, 0, 0, .4);
    }
}

@media screen and (max-width: 824px) {
    .menu .links {
        display: none;
    }
    .menu .mobile-icon {
        display: block;
    }
    .main .logo {
        top: 13px;
        padding: 10px 30px;
    }
    .main .logo img {
        width: 120px;
    }
    .main .image img {
        max-width: unset;
        max-height: 100%;
        margin-left: -320px;
    }
    .slider-controls {
        width: 100%;
        text-align: center;
    }
    .logo.logo-page {
        display: none;
    }
}

@media screen and (min-width: 825px) {
    .main .image img {
        padding-top: 50px;
        transform: scale(1.7);
    }
}

@media screen and (min-width: 972px) {
    .main .image img {
        padding-top: 50px;
        transform: scale(1.3);
    }
}

@media screen and (min-width: 1162px) {
    .main .image img {
        padding-top: 10px;
        transform: scale(1.2);
    }
}

@media screen and (max-width: 1032px) {
    .main.floor-selector .logo {
        top: -4px;
    }
    .apartment-popup .pl, .apartment-popup .pr {
        float: unset;
        width: 100%;
        margin: 0;
    }
    .apartment-popup .pl {
        margin: 0 auto;
    }
}

@media screen and (min-width: 1304px) {
    .main .image img {
        margin-top: -85px;
        transform: scale(1.03);
    }
}

@media screen and (min-width: 1800px) {
    .main .image img {
        margin-top: -200px;
        transform: scale(1);
    }
}

#button-currency .knobs:before, #button-currency .knobs:after, #button-currency .knobs span
{
    position: absolute;
    top: 4px;
    width: 20px;
    height: 10px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
}

#button-currency .knobs:before {
    content: '';
    left: 4px;
    background-color: #03A9F4;
}

#button-currency .knobs:after {
    content: '₾';
    right: 4px;
    color: #4e4e4e;
}

#button-currency .knobs span {
    display: inline-block;
    left: 4px;
    color: #fff;
    z-index: 1;
}

#button-currency .checkbox:checked + .knobs span {
    color: #4e4e4e;
}

#button-currency .checkbox:checked + .knobs:before {
    left: 42px;
    background-color: #F44336;
}

#button-currency .checkbox:checked + .knobs:after {
    color: #fff;
}

#button-currency .checkbox:checked ~ .layer {
    background-color: #fcebeb;
}

.button {
    position: relative;
    width: 74px;
    height: 36px;
    overflow: hidden;
    background: #eee;
    margin-top: 5px;
}

.button.r, .button.r .layer {
    border-radius: 100px;
}

.button.b2 {
    border-radius: 2px;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

.floor-legend {
    font-size: 14px;
    margin-top: 10px;
}

.floor-legend span:first-of-type {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #ff3333;
    border-radius: 3px;
    margin-right: 0;
    margin-bottom: -2px;
}

/*
     FILE ARCHIVED ON 20:03:09 Dec 06, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 08:59:23 Jul 21, 2023.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 76.817
  exclusion.robots: 0.064
  exclusion.robots.policy: 0.055
  cdx.remote: 0.051
  esindex: 0.009
  LoadShardBlock: 48.915 (3)
  PetaboxLoader3.datanode: 48.426 (4)
  load_resource: 67.007
  PetaboxLoader3.resolve: 36.762
*/