.website-header {
    z-index: 9;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#website-header-auto-fit{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.website-header-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.website-header-logo img{
    border-radius: 50%;
    box-shadow: 0px 0px 15px #DA050250;
}

.website-header-title {
    font-size: 24px;
    padding-left: 20px;
    color: #fff;
    font-weight: 500;
    text-shadow: 0px 0px 5px #0009;
}

.website-header-menu {
    color: #DA0502;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-shadow: 35px 0px 30px #DA0502;
}

.website-header-menu img {
    margin-left: 10px;
}

/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100
}

/* Overlay closing cross */
.overlay .overlay-close {
    width: 30px;
    height: 30px;
    /* position: absolute;
    right: 20px;
    top: 40px; */
    overflow: hidden;
    border: none;
    background: url(../img/cross.png) no-repeat center center;
    text-indent: 200%;
    color: transparent;
    outline: none;
    z-index: 100;
}

/* Menu style */
.overlay nav {
    text-align: center;
    /* position: relative; */
    /* top: 10%; */
    height: 90%;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    height: 100%;
    position: relative;
}

.overlay ul li {
    display: block;
    box-sizing: border-box;
    height: 100%;
    width: calc(100% / 7);
    min-height: 54px;
    text-align: start;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-left: 1px solid #d8d8d840;
    border-top: 1px solid #d8d8d866;
}

.overlay ul li a {
    /* font-size: 54px; */
    /* font-weight: 300; */
    display: block;
    width: 100%;
    height: 100%;
    padding: 100px 25px;
    color: #fff;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.overlay-nav-p1 {
    font-size: 36px;
    line-height: 24px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.overlay-nav-p1 {
    font-size: 30px;
    line-height: 24px;
    letter-spacing: 3px;
}

.overlay ul li p {
    margin-top: 5px;
}

.overlay ul li a:hover {
    color: #da0502;
}

/* Effects */
.overlay-slidedown {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
    transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }

    .overlay ul li {
        min-height: 34px;
    }
}

.overlay-header {
    width: 100%;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay-header-logo {
    display: flex;
    align-items: center;
}

.overlay-header-title {
    font-size: 24px;
    color: #fff;
    padding-left: 20px;
    font-weight: 500;
}

.contact-us {
    position: relative;
    padding: 100px 25px;
    color: #FFF;
    cursor: default;
}

.address {
    position: absolute;
    right: 0;
    bottom: 20px;
    padding: 20px;
    text-align: right;
}

.address-decorate {
    display: inline-block;
    width: 70%;
    height: 35px;
    background-color: #fff;
}

.address-decorate2 {
    width: 80%;
    height: 100%;
    background-color: #DA0502;
}
