.gestures {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
    color: #fff;
}

.gestures:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.69);

}

.gestures .finger {
    z-index: 10;
    opacity: 0.4;
    margin-bottom: 5px;
    -webkit-transition: margin-top 0.2s cubic-bezier(0, 0, 0.18, 1) 0s, opacity 0.2s cubic-bezier(0, 0, 0.18, 1) 0s;
    transition: margin-top 0.2s cubic-bezier(0, 0, 0.18, 1) 0s, opacity 0.2s cubic-bezier(0, 0, 0.18, 1) 0s;
    -webkit-animation: gestures-flick 1s ease-in-out infinite alternate;
    animation: gestures-flick 1s ease-in-out infinite alternate;
}


.animated .gestures .finger {
    opacity: .3;
    -webkit-transition: margin-top 1s cubic-bezier(0, 0, 0.18, 1) 1.5s, opacity 1s cubic-bezier(0, 0, 0.18, 1) 1.5s;
    transition: margin-top 1s cubic-bezier(0, 0, 0.18, 1) 1.5s, opacity 1s cubic-bezier(0, 0, 0.18, 1) 1.5s;
}

@-webkit-keyframes gestures-flick {
    0% {
        margin-left: -35px;
    }

    100% {
        margin-left: -15px;
    }
}

@keyframes gestures-flick {
    0% {
        margin-left: -35px;
    }

    100% {
        margin-left: -15px;
    }
}

/*----------*/

.section-location * {
    /*border: 1px solid red;*/
}


.section-location  .Imginfo{
position: absolute;
bottom: 0;
right: 0;
}

.section-location .section-landmarks {
    position: relative;
    min-height: 1416px;
    overflow: hidden;
}


.section-location .section-landmarks .wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.sky_map {
    position: absolute;
    width: fit-content;
    min-height: 100vh;
    max-width: 1920px;
}

.section-landmarks .titleBox{
    width: 34%;
    position: absolute;
    top: 6%;
    left: 5%;
    color: #fff;
    font-size: 1.1rem;
    line-height: 150%;
    z-index: 3;
    text-align: justify;
    font-family: 'Playfair Display', serif;
}
.section-landmarks .titleBox i{
    letter-spacing: 2px;
    font-style: normal;
    font-family: 'Playfair Display', serif;
}
.section-landmarks .titleBox i::after{
    content: '';
    display: block;
    margin: 1rem 0 2rem;
    width: 100%;
    height: 3px;
    background-color: #f3b03c
}

.section-location .section-landmarks .wrapper .road {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.section-location .section-landmarks .wrapper .road img {
    position: absolute;
    min-height: 100vh;
}



.section-location .section-landmarks .wrapper .landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.section-landmarks .landscape ul {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.section-landmarks .landscape ul li {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    display: inline-block;
    position: absolute;
    padding: 20px 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #fff;
    border-radius: 22px;
    color: #fff;
    font-weight: bold;
    /*text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
    line-height: 1em;
    letter-spacing: 2px;
    text-orientation: upright;
    white-space: nowrap;
    font-size: 1rem;

}

.section-landmarks .landscape ul li.highlight {
    left: 835px;

}


@media(min-width: 1280px) {

    .section-location .section-landmarks .wrapper {
        overflow: hidden;
    }
}

@media (max-width:991px){
    .section-landmarks .titleBox {
        width: 90%;
        font-size: 1.2rem;
    }
}