body{
    font-family: 'apercu-mono-regular', arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    margin: 0;
    padding: 0;
    cursor: default;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.desktop .top-bar {
    display: flex;
    justify-content: space-between;
    margin: 20px 20px 0;
}
.desktop .right {
    display: flex;
}
.desktop .right .r-right a {
    display: block;
}
.desktop .right .r-right a img {
    height: 100px;
}
.desktop .right .l-right {
    max-width: 225px;
    margin-right: 30px;
    text-transform: uppercase;
    text-align: left;
}
.desktop .map {
    position: relative;
    transform: scale(0.7);
}
.desktop .map img {
    width: 100%;
}
.desktop .map .dot {
    position: absolute;
    width: 1vw;
    height: 1vw;
    z-index: 9;
}
.desktop .map .dot:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-image: url("../img/dot.png");
    background-position: center center;
    background-size: contain;
    opacity: 1;
    transition: opacity 600ms ease;
}
.desktop .map .dot:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-image: url("../img/dot-active.png");
    background-position: center center;
    background-size: contain;
    opacity: 0;
    transition: opacity 600ms ease;
}

.desktop .map .dot.dot-active:before {
    opacity: 0;
    transition: opacity 600ms ease;
}
.desktop .map .dot.dot-active:after {
    opacity: 1;
    transition: opacity 600ms ease;
}
.desktop .map .dot-1 {
    left: 6.3vw;
    top: 4.2vw;
}
.desktop .map .dot-2 {
    left: 47.6vw;
    top: 13.6vw;
}
.desktop .map .dot-3 {
    left: 49.3vw;
    top: 25.5vw;
}
.desktop .map .dot-4 {
    left: 55.3vw;
    top: 26.3vw;
}
.desktop .map .dot-5 {
    left: 58.7vw;
    top: 25.3vw;
}
.desktop .map .dot-6 {
    left: 48.1vw;
    top: 27.6vw;
}
.desktop .map .dot-7 {
    left: 59.7vw;
    top: 26.3vw;
}
.desktop .map .dot-8 {
    left: 53.6vw;
    top: 26.5vw;
}
.desktop .map .dot-9 {
    left: 53.6vw;
    top: 28.2vw;
}
.desktop .map .logo {
    position: absolute;
    height: 2vw;
    width: auto;
    z-index: 9;
    opacity: 1;
    transform: scale(1);
    cursor: pointer;
    transition: transform 600ms ease, opacity 600ms ease;
}
.desktop .map .logo.hide {
    opacity: 0;
    transition: opacity 600ms ease;
}
.desktop .map .logo.zoom {
    transform: scale(2);
    transition: transform 600ms ease;
}
.desktop .map .logo-1 {
    left: 4.1vw;
    top: 1.9vw;
}
.desktop .map .logo-2 {
    left: 45.2vw;
    top: 15.6vw;
}
.desktop .map .logo-3 {
    left: 47.2vw;
    top: 23vw;
}
.desktop .map .logo-4 {
    left: 54.7vw;
    top: 23vw;
}
.desktop .map .logo-5 {
    left: 58.2vw;
    top: 22vw;
}
.desktop .map .logo-6 {
    left: 47.8vw;
    top: 29.7vw;
}
.desktop .map .logo-7 {
    left: 61.8vw;
    top: 27.7vw;
}
.desktop .map .logo-8 {
    left: 56.8vw;
    top: 28.7vw;
}
.desktop .map .logo-9 {
    left: 53.3vw;
    top: 30.4vw;
}
.desktop .left-block {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.desktop .left-block a {
    margin: 10px 0;
}
.desktop .left-block a img {
    width: 120px;
}
.mobile {
    display: none;
}
.popup {
    display: block;
    position: fixed;
    left: 50%;
    top: -100%;
    width: 80vmin;
    height: 80vmin;
    transition: top 600ms ease;
    transform: translate(-50%, -50%);
    z-index: 99;
}
.popup.active {
    top: 50%;
}
.popup img {
    width: 100%;
}
.popup .close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    display: block;
    cursor: pointer;
}
.popup .close-popup:before,
.popup .close-popup:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 1px;
    background-color: #ffffff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.popup .close-popup:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.bottom_bar {
    position: absolute;
    bottom: 10px;
    right: 20px;
}
@media screen and (max-width: 1280px) {
    .left img {
        width: 400px;
    }
}
@media screen and (max-width: 1024px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .mobile .left {
        margin: 20px 0;
    }
    .mobile .r-right img {
        height: 100px;
        margin: 20px 0;
    }
    .mobile .map {
        width: 90%;
        margin: 0 auto;
        position: relative;
    }
    .mobile .map .map-img {
        width: 100%;
    }
    .mobile .map .dot {
        position: absolute;
        width: 1vw;
        height: 1vw;
        z-index: 9;
    }
    .mobile .map .dot:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        background-image: url("../img/dot.png");
        background-position: center center;
        background-size: contain;
        opacity: 1;
        transition: opacity 600ms ease;
    }
    .mobile .map .dot-1 {
        left: 7.1vw;
        top: 6.6vw;
    }
    .mobile .map .dot-2 {
        left: 33.6vw;
        top: 32.6vw;
    }
    .mobile .map .dot-3 {
        left: 37.7vw;
        top: 52.4vw;
    }
    .mobile .map .dot-4 {
        left: 46.6vw;
        top: 54.3vw;
    }
    .mobile .map .dot-5 {
        left: 51.7vw;
        top: 52vw;
    }
    .mobile .map .dot-6 {
        left: 35.7vw;
        top: 56.6vw;
    }
    .mobile .map .dot-7 {
        left: 53.7vw;
        top: 54vw;
    }
    .mobile .map .dot-8 {
        left: 44.3vw;
        top: 54.5vw;
    }
    .mobile .map .dot-9 {
        left: 43.8vw;
        top: 57.6vw;
    }
    .mobile .map .logo {
        position: absolute;
        height: 2vw;
        width: auto;
        z-index: 9;
    }
    .mobile .map .logo-1 {
        left: 1.6vw;
        top: 1.1vw;
    }
    .mobile .map .logo-2 {
        left: 25.2vw;
        top: 35.6vw;
    }
    .mobile .map .logo-3 {
        left: 34.2vw;
        top: 45vw;
    }
    .mobile .map .logo-4 {
        left: 44.7vw;
        top: 47vw;
    }
    .mobile .map .logo-5 {
        left: 53.2vw;
        top: 46vw;
    }
    .mobile .map .logo-6 {
        left: 32.8vw;
        top: 59.7vw;
    }
    .mobile .map .logo-7 {
        left: 57.8vw;
        top: 56.7vw;
    }
    .mobile .map .logo-8 {
        left: 49.6vw;
        top: 60vw;
    }
    .mobile .map .logo-9 {
        left: 42.6vw;
        top: 61.4vw;
    }
    .mobile .left-block {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    .mobile .left-block img {
        width: 20vw;
        margin: 0 10px;
    }
}
@media all and  (max-width: 560px) {
    .popup {
        width: 90vmin;
        height: 90vmin;
    }
}
@media screen and (max-width: 440px) {
    .mobile .map .dot-1 {
        left: 8.1vw;
    }
    .mobile .map .dot-2 {
        left: 34.6vw;
    }
    .mobile .map .dot-4 {
        left: 47.6vw;
    }
    .mobile .map .dot-5 {
        left: 52vw;
    }
    .mobile .map .dot-7 {
        left: 54vw;
    }
    .mobile .left {
        width: 90%;
        margin: 20px auto;
    }
    .mobile .left img {
        width: 100%;
    }
}