@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-RegularItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "bauziet";
    src: url("fonts/Bauziet-Norm-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "bauziet";
    src: url("../fonts/Bauziet-Norm-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,
html {
    height: 100%;
    font-family: "bauziet", Arial, sans-serif;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero .home-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
}
.content a:not(.main-logo),
#popup-text a.register-here {
    font-family: 'EB Garamond';
    font-size: 1.5em;
    cursor: pointer;
    border: 2px solid #fff;
    color: white;
    border-radius: 10px;
    display: block;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    margin: 100px auto auto;
    padding: 8px 0;
    background-color: #000307;
    text-transform: uppercase;
    max-width: 400px;
}
.content a:not(.main-logo):hover {
    background-color: transparent;
    border-color: #CFB799;
}
.content .luxury-on-location {
    margin-top: 12px;
}
#popup-text a.register-here {
    margin-top: 0;
    font-size: 1em;
    font-family: 'bauziet';
    display: inline-block;
    padding: 10px;
    line-height: normal;
    text-transform: capitalize;
}
#popup-text a.register-here:hover {
    background-color: transparent;
    border-color: #CFB799;
    color: #CFB799;
}
.content span.space-limit {
    display: inline-block;
    font-family: 'EB Garamond';
    font-size: 1em;
    font-weight: 500;
    margin-top: 10px;
}
.location-cities {
    font-family: 'EB Garamond';
    font-size: 1.2em;
    margin-top: 40px;
    text-transform: uppercase;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.location-cities span {
    border-bottom: 1px solid;
    cursor: pointer;
}
.hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
}
.hamburger div {
    width: 25px;
    height: 1px;
    background-color: white;
    margin: 7px 0;
}
.hamburger:hover div {
    background-color: #CFB799;
}
.menu {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 3, 7, 0.75);
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 20;
    flex-direction: column;
    padding: 40px 0 0;
    width: 0;
    transition: all .3s ease-in-out;
}
.popup-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 20;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}
.popup-menu.active {
    opacity: 1;
    visibility: visible;
}
.menu.shown {
    width: 350px;
}
.menu .innermenu {
    text-align: center;
    margin: 0 40px;
    padding-top: 50px;
}
.menu.active {
    display: flex;
}
.menu .innermenu .location-start {   
    border-top: 1px solid #CFB799;
    padding-top: 20px;
    margin-top: 25px;
}
.menu h2 {
    margin-bottom: 20px;
}
.menu.shown .close-btn,
.popup-menu.active .close-btn {
    position: absolute;
    top: 2px;
    right: 10px;
    font-size: 2em;
    cursor: pointer;
}
.popup-menu.active .close-btn {
    top: 25px;
    right: 30px;
}
.menu.shown .close-btn:before {
    content: '';
    border-left: 1px solid #fff;
    display: block;
    rotate: 45deg;
    position: relative;
    top: 30px;
    width: 25px;
    height: 25px;
}
.menu.shown .close-btn:after {
    content: '';
    border-left: 1px solid #fff;
    display: block;
    rotate: -45deg;
    position: relative;
    top: -12.5px;
    width: 25px;
    height: 25px;
}
.popup-menu.active .close-btn:before {
    content: '';
    border-left: 3px solid #fff;
    display: block;
    rotate: 45deg;
    position: relative;
    top: 6px;
    width: 25px;
    height: 25px;
    right: -20px;
}
.popup-menu.active .close-btn:after {
    content: '';
    border-left: 3px solid #fff;
    display: block;
    rotate: -45deg;
    width: 25px;
    height: 25px;
    position: relative;
    top: -36.5px;
    right: -20px;
}
.menu.shown .close-btn:hover:before,
.menu.shown .close-btn:hover:after,
.popup-menu.active .close-btn:hover:before,
.popup-menu.active .close-btn:hover:after {
    border-color: #CFB799;
}
.menu a {
    margin: 15px 0 0;
    font-size: 2em;
    color: white;
    text-decoration: none;
    cursor: pointer;
    display: block;
    transition: all .4s ease-in-out;
    font-weight: 100;
}
.menu a:hover {
    color: #CFB799;
}
.popup-menu .menu_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-width: 1200px;
    background: rgba(0, 3, 7, 0.9);
    padding: 50px;
    text-align: center;
}
#popup-title {
    display: inline-block;
    color: #CFB799;
    font-size: 2.8em;
    font-weight: 400;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
#popup-text {
    line-height: 2em;
    font-size: 1.5em;
    color: #fff;
    text-align: left;
    max-height: 700px;
    overflow-y: auto;
    font-weight: 100;
}
#popup-text ul {
    text-align: left;
}
#popup-text ul li {
    list-style: none;
    line-height: 1.6em;
    margin-bottom: 15px;
    color: #FFF;
    border-bottom: 1px solid #CFB799;
    padding-bottom: 15px;
}
#popup-text ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#popup-text ul li b {
    color: #FFE9CA;
    font-weight: 400;
}
#popup-text span.text-center {
    display: block;
    text-align: center;
}
.event-location-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.event-location-info .location-info b {
    border-bottom: 2px solid;
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.8em;
    display: inline-block;
}
.event-location-info .location-info div {
    display: flex;
    flex-direction: column;
    font-size: 0.84em;
    line-height: 1.5em;
}
.hero .footer {
    position: absolute;
    bottom: 0;
    background: #000307;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}
.hero .footer span {
    color: #9d876b;
    font-family: 'EB Garamond', serif;
    font-size: 1.1em;
    margin: 0 15px;
    text-align: center;
}
.hero .footer a {
    text-decoration: none;
}
.hero .footer a:hover {
    text-decoration: underline;
    color: #9d876b;
}
#popup-text span.events-location-info {
    display: flex;
    justify-content: center;
}
#popup-text span.events-location-info ul li img {
    max-height: 25px;
    position: relative;
    top: 6px;
}
#popup-text span.events-location-info ul li {
    margin-bottom: 0;
    border-bottom: 0;;
}
#popup-text span.events-location-info ul li:last-child {
    text-align: center;
    width: 100%;
}
#popup-text span.events-location-info ul li span {
    display: flex;
    gap: 10px;
}
@media only screen and (max-width: 767px) {
 .menu {
    background-color: rgba(0, 3, 7, 0.85);
 }
 .menu .innermenu {
    padding-top: 30px;
 }
 .menu a {
    font-size: 1.8em;
 }
 .content a:not(.main-logo) {
    margin-top: 50px;
 }
 #popup-text {
    margin: 0 5px;
    max-height: 500px;
 }
 #popup-text ul {
    margin-left: 12px;
 }
 .location-cities {
    gap: 20px;
 }
}
@media only screen and (max-width: 600px) {
 .popup-menu .menu_popup {
    max-width: 350px;
    padding: 20px;
 }
 #popup-title {
    font-size: 2em;;
 }
 #popup-text {
    font-size: 1.1em;
 }
 #popup-text span.events-location-info ul li img {
    max-height: 20px;
    top: 4px;
 }
}
@media only screen and (max-width: 480px) {
 .content {
    top: 45%; 
    width: 96%;
 }
 .location-cities, .content a:not(.main-logo) {
    margin-top: 35px;
 }
}
@media only screen and (max-width: 420px) {
 .content a:not(.main-logo) {
    font-size: 1.25em;
    max-width: 340px;
 }
}