@charset "UTF-8";
/* CSS Document */

html,
body,
* {
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    width: 100%;
    background-image: url("../images/wood-stage.jpg");
    background-color: rgb(0, 0, 0);
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* background-size: cover; */
    background-size: 100vw 100vh;
    background-position: center top;
    /* overflow: auto; */
}
#Canvas {
    position: relative;
    max-width: 980px;
    width: 100%;
    border: 0px #cb0d10 solid;
    height: auto;
    margin: 0 auto;
    min-height: 100vh;
}
#Header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border: 0px #1928ee solid;
    height: auto;
    color: silver;
    background-color: rgba(0, 0, 0, 0.8);
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000;
    max-height: 70px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

#menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330px;
    position: fixed;
    bottom: 0;
    left: 50%;
    margin-left: -165px;
    border: 0px gold solid;
    z-index: 1000;
}
#menu-container > button {
    margin: 10px;
    padding: 10px;
}

#Branding {
    border: 0px #8450ed solid;
    font-family: "Cinzel", sans-serif;
    font-size: 1em;
    text-align: center;
    padding: 5px 0;
}
#Branding a {
    color: silver;
    text-decoration: none;
}
#Branding #logo {
    position: relative;
    display: inline-block;
    width: auto;
    max-width: 55px;
}
#Branding img {
    display: inline-block;
    position: relative;
    max-height: 3.125em;
    height: auto;
    vertical-align: top;
    padding: 2px;
}
#branding-text {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    border: 0px #cb0d10 solid;
    line-height: normal;
}
#Branding .title {
    font-size: 1.3em;
}
#Branding .contact {
    font-size: 1em;
}
#Branding .contact img {
    height: 1.25em;
}

#Whatsapp,
#WeChat,
#Line,
#Telegram,
#Hours {
    height: 1.25em;
    vertical-align: middle;
}

#Content {
    position: relative;
    top: 65px;
    border: 0px silver solid;
    width: 100%;
    height: auto;
    min-height: 85vh;
    color: rgb(250, 250, 250);
    padding: 15px 0 0;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.1em;
    line-height: normal;
}
#Content a {
    text-decoration: none;
}

#page-title {
    font-family: "Yrsa", sans-serif;
    font-size: 1.7em;
    line-height: normal;
    color: rgb(215, 178, 147);
    border-bottom: 1px rgb(215, 178, 147) solid;
}

#Element {
    position: relative;
    display: inline-block;
    width: 22%;
    height: auto;
    font-family: "Philosopher", sans-serif;
    color: silver;
    border: 1px rgb(215, 178, 147) solid;
    border-radius: 3px;
    box-sizing: border-box;
    margin: 0.6em;
}
#ElementImage {
    width: 100%;
    /* height: 200px; */
    aspect-ratio: 1;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-image: url(../images/temp-person.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#ElementDetails {
    display: inline-block;
    position: relative;
    bottom: 0;
    font-size: 0.9em;
    line-height: normal;
    text-align: center;
    width: 100%;
    padding: 4px 0;
    /* background-color: rgba(0, 0, 0, 1); */
}
#ElementDetails .Name {
    font-family: "Cinzel", sans-serif;
    font-size: 1.25em;
    line-height: normal;
    color: rgb(215, 178, 147);
}

#login {
    width: 60%;
    margin: 15% auto 0;
    min-height: 200px;
    height: auto;
    color: silver;
    background-color: rgba(22, 22, 22, 0.5);
    /* -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000; */
    border: 1px rgb(215, 178, 147) solid;
    padding: 20px;
    line-height: normal;
}

#login-text {
    margin: 15px auto 30px;
    font-size: 1em;
    line-height: normal;
    text-align: center;
}

#login-fields {
    margin: 0 auto;
    line-height: normal;
    display: block;
    border: 0px #1597a5 solid;
    width: 50%;
}

#Footer {
    position: relative;
    top: 105px;
    display: block;
    border: 0px #21f27c solid;
    font-family: "Special Elite", sans-serif;
    color: silver;
    font-size: 0.75em;
    padding: 20px 0;
}

hr {
    width: 100%;
    border: 0;
    height: 1px !important;
    /* background-image: -webkit-linear-gradient(left, rgb(46, 46, 46), rgb(192, 192, 192), rgb(46, 46, 46));
    background-image: -moz-linear-gradient(left, rgb(46, 46, 46), rgb(192, 192, 192), rgb(46, 46, 46));
    background-image: -ms-linear-gradient(left, rgb(46, 46, 46), rgb(192, 192, 192), rgb(46, 46, 46));
    background-image: -o-linear-gradient(left, rgb(46, 46, 46), rgb(192, 192, 192), rgb(46, 46, 46)); */
    background-color: rgb(215, 178, 147);
    margin: 15px auto;
}

/* Social Media */
.toTop {
    position: fixed;
    width: 2.5em;
    height: 2.5em;
    /* border: 2px silver solid; */
    border-radius: 50%;
    right: 15px;
    bottom: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/top-so-svgrepo-com.svg);
    display: none;
}

.back-button,
.whatsappme,
.telegramme,
.phoneme {
    position: relative;
    width: 2.5em;
    height: 2.5em;
    border: 2px silver solid;
    border-radius: 25%;
    text-indent: 2.5em;
    font-size: 1.5em;
    color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    background-position: center center;
    background-size: 80%;
    background-repeat: no-repeat;
}

.back-button {
    background-image: url(../images/back-arrow-svgrepo-com.svg);
}

.phoneme {
    background-image: url(../images/phone-call-svgrepo-com.svg);
}

.whatsappme {
    background-image: url(../images/whatsapp-svgrepo-com.svg);
}

.telegramme {
    background-image: url(../images/telegram-svgrepo-com.svg);
}

.back-button:hover,
.phoneme:hover,
.whatsappme:hover,
.telegramme:hover {
    transform: scale(1.2);
}

.lineme {
    width: 40px; /* Icon width */
    height: 40px; /* Icon height */
    display: inline-block; /* Display icon as inline block */
    background-position: 0 -120px; /* Icon background position in sprite */
    transform: rotate(-90deg);
}

.pmsprite {
    background: url(../images/pm-sprite.png) no-repeat;
}

.phonemelg {
    width: 100px; /* Icon width */
    height: 100px; /* Icon height */
    display: inline-block; /* Display icon as inline block */
    background-position: 0 0; /* Icon background position in sprite */
}
.whatsappmelg {
    width: 100px; /* Icon width */
    height: 100px; /* Icon height */
    display: inline-block; /* Display icon as inline block */
    background-position: 0 -100px; /* Icon background position in sprite */
}
.telegrammelg {
    width: 100px; /* Icon width */
    height: 100px; /* Icon height */
    display: inline-block; /* Display icon as inline block */
    background-position: 0 -200px; /* Icon background position in sprite */
}
#callme3 {
    position: fixed;
    display: inline-block;
    border: 0px #1597a5 solid;
    left: 50px;
    bottom: 0px;
    /* transform: rotate(90deg); */
    /* transform-origin: left center; */
    left: 25px;
    opacity: 0.8;
}

.scrollToTop {
    width: 40px;
    height: 40px;
    background-image: url(../images/arrow.png);
    position: fixed;
    right: 10px;
    bottom: 40px;
    display: none;
    /* border: 2px red solid; */
}

.FieldName {
    display: inline-block;
    font-size: 1em;
    width: 100%;
}
.LoginField {
    width: 100%;
    height: 30px;
    font-size: 1em;
}
.Button {
    font-size: 1em;
    line-height: normal;
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px silver solid;
    color: silver;
    border-radius: 5px;
    padding: 5px;
}

.Area {
    font-family: "Yrsa", serif;
    color: rgb(215, 178, 147);
    font-size: 1.4em;
    line-height: normal;
    padding-bottom: 5px;
}
.telephone,
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

/* .static {
    line-height: 30px;
} */

#unified-container {
    width: 100%;
    display: block;
    /* min-height: 90vh; */
    /* padding-top: 20px; */
}

#unified-description {
    /* font-family: "Poppins", sans-serif; */
    width: 100%;
    height: auto;
    display: block;
    /* vertical-align: top !important; */
    border: 0px #ff0000 solid;
    /* position: sticky; */
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
    /* top: 90px; */

    .focus-name {
        font-family: "Cinzel", sans-serif;
        font-size: 1.5em;
        color: rgb(215, 178, 147);
        line-height: normal;
        border-bottom: 1px rgb(215, 178, 147) solid;
        position: relative;
        margin-bottom: 15px;
    }

    .focus-details {
    }
}

#unified-media {
    width: 100%;
    display: block;
}

#unified-product-media {
    width: 22%;
    /* height: 220px; */
    aspect-ratio: 1;
    display: inline-block;
    margin: 10px;
    border-radius: 5px;
    border: 1px rgb(215, 178, 147) solid;
}

/* Magnificent Popup */
.black-popup {
    position: relative;
    background-color: rgba(0, 0, 0, 0.75) !important;
    padding: 5px;
    width: 90%;
    max-width: 800px;
    margin: 2px auto;
    border: 0px #a1a1a1 solid;
    max-height: 100vh;
    height: auto;
    overflow-y: scroll;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#close-custom {
    position: fixed;
    width: 100%;
    height: 50px;
    left: 0;
    border: 0px #fc1a1e solid;
    z-index: 78;
    text-align: center;
    font-family: "Cinzel", sans-serif !important;
    display: inline-block;
}
#close-custom2 {
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 2vh;
    left: 0;
    border: 0px #fc1a1e solid;
}

.mfp-close {
    color: #222 !important;
    font-size: 20px !important;
    background-color: silver !important;
    width: 100px;
    margin: 0 auto !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
/* .mfp-close-custom { right:5px !important; } */

/* #mfp-scroll { position:absolute; border:1px #F63464 solid; left:0; top:0; } */
.mfp-divtext {
    font-size: 15pt;
    font-family: "Philosopher", sans-serif !important;
    color: silver !important;
    border: 0px #55f251 solid;
    word-wrap: break-word;
    margin: 20px 0;
}
.mfp-divtitle {
    font-size: 20pt !important;
    font-family: "Cinzel", sans-serif;
    color: #d7b989;
}
.mfp-divdescription {
    font-size: 14pt !important;
    word-break: break-word;
}

.mfp-lightboxcontainer {
    width: 100%;
    text-align: left;
}
.mfp-lightboxleft {
    width: 50%;
    float: left;
    border: 0px #8450ed solid;
}
.mfp-lightboxright {
    width: 50%;
    float: left;
    padding-top: 15px;
    border: 0px #e0ef39 solid;
}
.mfp-lightboxleft img,
.mfp-lightboxright img,
.mfp-lightboxfull img {
    width: 100% !important;
    display: block;
}

.mfp-lightboxright iframe {
    min-height: 390px;
}
/* .mfp-divtext {
  margin: 36px;
} */
.mfp-lightboxfull {
    width: 100%;
}
.mfp-lightboxfull table {
    border-spacing: 0;
    border-collapse: collapse;
    border: 0px #fa1fcf solid;
    margin: 0 auto;
    width: 100%;
}
.mfp-lightboxfull table td {
    padding: 0;
    vertical-align: top;
    border: 0px #e53a3d solid;
}
.mfp-lightboxfull table tr {
    padding: 0;
}

.mfp-preloader {
    font-size: 20pt;
    font-family: "Port Lligat Sans", sans-serif !important;
}

.mfp-wrap {
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 980px) {
    #Content {
        padding: 15px 5px 0;
    }
    #Footer {
        padding: 20px 10px;
    }
}

@media screen and (max-width: 830px) {
    #Element {
        margin: 0.5em;
    }

    #ElementDetails {
        font-size: 0.85em;
    }

    #ElementDetails .Name {
        font-size: 1.15em;
    }
    #unified-product-media {
        margin: 8px;
    }
    #unified-description {
        .focus-name {
            font-size: 1.45em;
        }
    }
}
@media screen and (max-width: 710px) {
    #Element {
        width: 30%;
    }
    #unified-product-media {
        width: 30%;
    }
}

@media screen and (max-width: 640px) {
    #logo img {
        max-height: 2.55em !important;
    }
    .title {
        font-size: 1em !important;
    }
    .contact {
        font-size: 0.85em !important;
    }

    /* #Whatsapp,
    #WeChat,
    #Line,
    #Telegram,
    #Hours {
        height: 1.05em !important;
    } */
    #Content {
        font-size: 1em;
        top: 50px;
    }

    #page-title {
        font-size: 1.5em;
    }
    .Area {
        font-size: 1.15em;
    }
    #Element {
        width: 30%;
        margin: 0.4em;
    }
    #ElementDetails {
        font-size: 0.9em;
    }
    #ElementDetails .Name {
        font-size: 1.1em;
    }
    #unified-product-media {
        margin: 7px;
    }
    #unified-description {
        .focus-name {
            font-size: 1.35em;
        }
    }
    #Footer {
        padding: 10px 10px;
    }
}

@media screen and (max-width: 505px) {
    #logo img {
        max-height: 2.45em !important;
    }
    .title {
        font-size: 0.9em !important;
    }
    .contact {
        font-size: 0.8em !important;
    }
    #Element {
        width: 45%;
        margin: 0.35em;
    }
    #unified-product-media {
        margin: 6px;
    }
}

@media screen and (max-width: 480px) {
    #logo img {
        max-height: 2em !important;
    }
    .title {
        font-size: 0.8em !important;
    }
    .contact {
        font-size: 0.75em !important;
    }

    /* #Whatsapp,
    #WeChat,
    #Line,
    #Telegram,
    #Hours {
        height: 0.9em;
    } */

    #menu-container > button {
        margin: 1px !important;
        padding: 3px !important;
    }
    .menu-button,
    .back-button,
    .phoneme,
    .whatsappme,
    .telegramme {
        transform: scale(0.8) !important;
    }

    .menu-button:hover,
    .back-button:hover,
    .phoneme:hover,
    .whatsappme:hover,
    .telegramme:hover {
        transform: scale(1) !important;
    }
    #Content {
        top: 40px;
        font-size: 0.9em;
    }
    #page-title {
        font-size: 1.5em;
    }
    .Area {
        font-size: 1.15em;
    }
    #Element {
        width: 45%;
        margin: 0.6em;
    }
    #ElementDetails {
        font-size: 1em;
    }

    /* #ElementDetails .Name {
        font-size: 1em;
    } */
    #unified-product-media {
        width: 45%;
        margin: 8px;
    }

    #login-text {
        margin: 7px 10px;
    }

    #login-fields {
        width: 70%;
    }
    #Footer {
        top: 70px;
        padding: 40px 10px 10px;
    }
}

@media screen and (max-width: 430px) {
    #logo img {
        max-height: 1.9em !important;
    }
    .title {
        font-size: 0.7em !important;
    }
    .contact {
        font-size: 0.65em !important;
    }
    #Content {
        font-size: 0.9em;
    }
    #Element {
        width: 45%;
        margin: 0.5em;
    }
    /* #ElementDetails .Name {
        font-size: 1em;
    } */
}
@media screen and (max-width: 375px) {
    #logo img {
        max-height: 1.8em !important;
    }
    .title {
        font-size: 0.6em !important;
    }
    .contact {
        font-size: 0.55em !important;
    }
    .Area {
    }
    #Element {
        margin: 0.4em;
    }
    #ElementDetails .Name {
        font-size: 1em;
    }
    #unified-product-media {
        margin: 6px;
    }
}

@media screen and (max-width: 320px) {
    #Element .Name {
        font-size: 0.9em;
    }
    #ElementDetails {
        font-size: 0.9em;
    }
}
