* {
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

html,
body {
    margin: 0;
    scroll-behavior: smooth;

}


header {
    background-image: url(Assets/Images/DSC_8766-min.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    margin: 0;
    display: flex;
}

.buttons {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

section {
    display: flex;
    justify-content: space-between;
    height: 100vh;
    padding-top: 5%;
}

section>div {
    width: 48%;
}

h2,
h3 {
    color: black;
    text-align: center;
    margin-bottom: 3%;
    margin-top: 3%
}

h3 {
    font-size: 1.5em;
}

.gf {
    margin-bottom: 0;
}

.inquire p,
.inquire a {
    text-shadow: black 3px 0 10px;
}

.lang_select {

    position: absolute;
    left: 95%;
    top: 3%;
    z-index: 1;
}



.current-language {
    pointer-events: none;
}

.current-language a {
    font-size: 2em;
}

.lang-dropdown {
    display: none;
    position: absolute;
    z-index: 1;
}

.lang-dropdown a {
    font-size: 2em;
}

.lang_select:hover .lang-dropdown {
    display: block;
}

.yawara_logo {
    position: absolute;
    height: 8vw;
    object-fit: contain;
    margin-top: 2vh;
    margin-left: 2vh;
}

.inquire {
    text-align: center;
    margin: auto;
    justify-content: center;
}

.inquire p {
    font-size: 2.5vw;
    color: white;
    margin: auto;
    margin-bottom: 5%;
    text-align: center;
    font-weight: bold;
}

img {
    display: block;
}

ul {
    color: black;
    list-style-type: none;

}

p {
    color: black;
    text-align: center;
}

.midpagelink {
    background-color: rgba(126, 126, 126, 0.4);
    border: 1px solid white;
    border-radius: 15px;
    padding: 10px;
}


.midpagelink:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transition: all ease-in-out 0.3s;
}

a img {
    width: 7%;
}

a {
    font-size: 2vw;
    color: white;
    text-decoration: none;
}


a:hover {
    text-decoration: none;
    color: white;
}

.img_main {
    width: 100%;
    height: 450px;
    object-fit: contain;
    cursor: pointer;
}

.img_thumbnails {
    margin: auto;
    margin-top: 2%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.img_thumbnails img {
    display: block;
    width: 30%;
    height: 150px;
    object-fit: cover;
}

.tour-button {
    background: #ff7a59;
    border-color: #ff7a59;
    color: #ffffff;
    font-size: 12px;
    line-height: 12px;
    font-family: helvetica;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    transition: all .15s linear;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    padding: 12px 24px;
    white-space: pre-wrap;
}


.overlay,
.tour-overlay {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5);
}

.overlay img {
    width: 80%;
}

.open {
    display: flex;
}

.office {
    margin-top: 3%;
    text-align: center;
}


.office p {
    color: black;
    padding: 0 5% 0 5%;
}

.contact_form {
    padding: 0 5% 0 5%;
    margin-top: 13%;
}

.contact p {
    text-align: center;
}

#panorama {
    width: 80vw;
    height: 80vh;
}

.tour_overlay_close {
    color: white;
    position: absolute;
    top: 8%;
    right: 10%;
    text-decoration: underline;
    cursor: pointer;
}

.pnlm-about-msg {
    display: none !important;
}

@font-face {
    font-family: 'Ubuntu', sans-serif;
    src: url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
}

@media (max-width: 720px) {

    header {
        height: 50vh;
        background-position-x: right;
    }

    .inquire {
        margin-top: 25vh;
    }

    .inquire p {
        font-size: 3vw;
        margin-bottom: 10%;
    }

    a {
        font-size: 4vw;
    }

    section {
        flex-direction: column;
        align-items: center;
    }

    hr {
        width: 80%;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .midpagelink {
        padding: 3%;
    }

    section>div {
        width: unset;
    }

    .img_main {
        width: 80%;
        height: 300px;
        margin: auto;
    }

    h3 {
        font-size: 1em;
    }

    .contact p {
        padding: 0 5px 0 5px;
    }

    .lang_select {
        left: 85%;
    }
}

@media (min-width: 721px) and (max-width: 1024px) {

    header {
        height: 65vh;
        background-position-x: right;
    }

    .inquire {
        text-align: center;
        margin-top: 25vh;
    }

    .inquire p {
        font-size: 3vw;
    }

    a {
        font-size: 3vw
    }

    section {
        flex-direction: column;
        align-items: center;
    }

    hr {
        width: 80%;
    }

    .midpagelink {
        margin-top: 10%;
    }

    section>div {
        width: unset;
    }

    .img_main {
        width: 80%;
        height: 300px;
        margin: auto;
    }

    h3 {
        font-size: 1em;
    }

    .contact p {
        padding: 0 5px 0 5px;
    }

    .lang_select {
        left: 93%;
    }
}