*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}
.material-symbols-outlined{
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.header.scrolled {
    background-color: #292F36;
    opacity: 80%;
}
.video_page .header{
    background-color: #292F36;
    opacity: 80%;
    position: relative;
    z-index: 1;
}
.photo_page .header{
    background-color: #292F36;
    opacity: 80%;
    position: relative;
    z-index: 1;
}
.pdf_page .header{
    background-color: #292F36;
    opacity: 80%;
    position: relative;
    z-index: 1;
}
.contact_page .header{
    background-color: #292F36;
    opacity: 80%;
    position: relative;
    z-index: 1;
}
.header:hover{
    background-color: #292F36;
    opacity: 80%;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}
.header-title {
    margin: 0;
    padding: 0;
    position: absolute;
    color: #fff;
    left: 8rem;
    border-bottom: 2px solid #498467;
}
.nav_logo{
    width: 3rem;
}
nav ul li a{
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
}
nav ul li a:hover{
    color: #498467;
}
nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li{
    display: inline;
    margin-right: 20px;
}
nav ul li:last-child{
    margin-right: 0;
}
.hamburger-menu{
    display: none;
}
.hamburger-menu .bar{
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}
@media only screen and (max-width: 768px){
    .hamburger-menu{
        display: block;
        cursor: pointer;
    }
    .header-content{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }
    .header-content h2{
        color: #fff;
        margin: 0;
    }
    .header-title{
        font-size: 1.5rem;
    }
    .nav_logo{
        width: 5rem;
    }
    nav{
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        height: auto;
    }
    nav.show{
        display: block;
    }
    nav ul{
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: right;
    }
    nav ul li{
        margin-bottom: 10px;
    }
    nav ul li a{
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        display: block;
    }
}
.video_showcase{
    height: 100vh;
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}
.video_showcase video{
    min-width: 100%;
	min-height: 100%;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.video_showcase:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}
.video_showcase_logo{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1rem;
    display: none;
}
.video_showcase_logo img{
    width: 15%;
    opacity: 60%;
}
.video_showcase_info{
    position: absolute;
    left: 0;
    width: 50rem;
    z-index: 999;
    text-align: left;
    padding-left: 2%;
    padding-top: 12%;
    display: none;
}
.video_showcase_info p{
    color: #e6efe9;
    font-size: 3rem;
    margin: 0;
}
.video_showcase_info_line{
    border-top: .2rem solid #498467;
    width: 45%;
    display: none;
}
.property_info{
    display: flex;
    justify-content: space-between;
    height: 80vh;
    background-color: #e6efe9;
}
.property_info_text{
    flex: 1;
    left: 0;
    text-align: left;
    padding-left: 2.5rem;
}
.property_info_address_top{
    padding-top: 1rem;
}
.property_info_address_top p{
    color: #292F36;
}
.property_info_address_bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.3rem;
}
.property_info_address_bottom p{
    color: #292F36;
}
.property_info_address_line{
    border-top: .15rem solid #498467;
    box-sizing: border-box;
    width: 50%;
    padding-top: 0.5rem;
}
.property_info_simple_line{
    border-top: .15rem solid #498467;
    box-sizing: border-box;
    width: 50rem;
    padding-top: 0.5rem;
}
.property_info_simple{
    padding-bottom: 1rem;
    padding-top: 0.2rem;
}
.property_info_simple h4{
    color: #292F36;
    font-size: 1.5rem;
}
.property_text li{
    color: #292F36;
    font-size: 1.2rem;
    list-style: circle;
    text-indent: -1.7rem;
}
.property_thumbnail{
    flex: 1;
    flex-shrink: 0;
    padding-top: 7.5%;
    padding-left: 10%;
}
.property_thumbnail img{
    width: 90%;
    height: auto;
}
.contact_button {
    margin-top: 8rem;
    padding-bottom: 1rem;
}
.contact_button button {
    background-color: #292F36;
    color: #fff;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
}
.contact_button button:hover {
    background-color: #498467;
}
.social_icons li{
    display: inline-block;
    font-size: 1rem;
    color: #292F36;
    text-decoration: none;
    list-style: none;
    padding-left: .2rem;
}
.social_icons a:hover{
    color: #498467;
}
.social_icons a{
    color:#292F36;
}
.footer{
    display: block;
    overflow: hidden;
    padding: 1.5rem 0;
    box-sizing: border-box;
    background-color: #292F36;
}
.inner-footer{
    display: block;
    margin: 0 auto;
    width: 1100px;
    height: 100%;
}
.inner-footer .logo-container{
    width: 30%;
    float: left;
    height: 100%;
    display: block;
}
.inner-footer .logo-container img{
    width: 8rem;
    height: auto;
}
.inner-footer .footer-third{
    width: calc(21.6666666667% - 20px);
    margin-right: 10px;
    float: left;
    height: 100%
}
.inner-footer .footer-third:last-child{
    margin-right: 0;
}
.inner-footer .footer-third h1{
    font-size: 20px;
    color: #fff;
    display: block;
    width: 100%;
    margin-bottom: 8px;
}
.inner-footer .footer-third a{
    font-size: 14px;
    color: #fff;
    display: block;
    width: 100%;
    padding-bottom: 5px;
    font-family: montserrat;
}
.inner-footer .footer-third a:hover{
    color: #498467;
}
.inner-footer .footer-third li{
    display: inline-block;
    padding: 0 5px;
    font-size: 15px;
}
.inner-footer .footer-third p{
    font-size: 14px;
    color: #fff;
    display: block;
    width: 100%;
    padding-bottom: 5px;
    font-family: montserrat;
}
.inner-footer .footer-third h4{
    color: #498467;
}
@media only screen and (max-width: 1100px){
    .inner-footer{
        width: 100%;
        text-align: center;
    }
    .inner-footer .logo-container,
    .inner-footer .footer-third{
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        display: inline-block;
        vertical-align: top;
    }
}
.gallery_container{
    height: 105vh;
    background-color: #e6efe9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5rem;
}
.gallery_image_box{
    position: relative;
    width: 90vw;
    height: 80vh;
    background-color: rgba(73, 132, 103, 0.15);
    margin-top: 3vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.gallery_image {
    max-width: 100%;
    max-height: 100%;
}
.thumbnail_container {
    width: 88.5vw;
    height: 10vh;
    padding-top: 1rem;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: rgba(73, 132, 103, 0.15);
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
}
.thumbnails{
    display: flex;
    align-items: center;
    gap: 10px;
    max-height: 100%;
    overflow: hidden;
}
.thumbnail{
    width: auto;
    max-height: 100%;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
}
.thumbnail img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto; 
}
.nav_arrow{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #292F36;
}
.nav_arrow:hover{
    color: #498467;
}
.left{
    margin-right: 10px;
}
.right{
    margin-left: 10px;
}
.video_container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e6efe9;
}
.video_container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_nav_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer;
    color: #292F36;
}
.gallery_nav_arrow:hover{
    color: #498467;
}
.left_arrow {
    left: 2rem;
}
.right_arrow {
    right: 2rem;
}
#map{
    height: 80vh;
}
@media only screen and (max-width: 1700px){
    .property_info{
        flex-direction: column;
        height: auto;
        padding-bottom: 2rem;
    }
    .property_text p{
        font-size: 1rem;
        padding-top: 2rem;
    }
}
.magazine{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: auto;
}
.odd{
    width: 50vw;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.even{
    width: 50vw;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.magazine img{
    width: 100%;
    height: auto;
}
.page0{
    position: absolute;
    color: #fff;
    height: 100vh;
    width: 50vw;
    background-color: #e6efe9;
}
.page0, .page1{
    z-index: 1;
}
.page2, .page3{
    z-index: 0;
}
.page4, .page5{
    z-index: 0;
}
.page6, .page7{
    z-index: 0;
}
.page8, .page9{
    z-index: 0;
}
.page10, .page11{
    z-index: 0;
}
.page11{
    position: absolute;
    color: #fff;
    height: 100vh;
    width: 50vw;
    background-color: #e6efe9;
}
.mobile_pdf{
    display: none;
}
@media only screen and (max-width: 1100px){
    .magazine{
        display: none;
    }
    .mobile_pdf{
        display: block;
        background-color: #e6efe9;
        width: 100vw;
        padding-top: 0.3rem;
    }
    .mobile_pdf img{
        width: 100vw;
        height: auto;
    }
}
.contact {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 40vh;
    justify-content: center;
    background-color: #e6efe9;
    color: #292F36;
}
.contact_left,
.contact_right,
.contact_logo {
    padding: 10px;
}
.contact_left,
.contact_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact_left, .contact_right a{
    text-decoration: none;
    color: #292F36;
}
.contact_left a{
    color: #292F36;
}
.contact_left a:hover{
    color: #498467;
}
.contact_right a:hover{
    color: #498467;
}
.contact_left h2,
.contact_right h2 {
    margin-top: 0;
    text-align: center;
}
.contact_right {
    text-align: center;
}
.contact_logo img {
    max-width: 10rem;
    height: auto;
    padding-top: 6rem;
}
.contact_left {
    text-align: center;
}
@media only screen and (max-width: 740px){
    .contact{
        flex-direction: column;
        align-items: center;
        height: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .contact_logo img{
        padding-top: 1rem;
    }
}