*{
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    color: #616161;
}
body{
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
#content{
    width: 50%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
}
#content hr{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
#content .top{
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 80px auto;
    
}
#content .top h1{
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    color: #616161;
    font-size: 35px;
}
#content .top .top-content p{
    margin-top: 60px;
    margin-bottom: 60px;
}
#content .top p{
    line-height: 2.0;
}
#content .bottom{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}


#hero{
  position: absolute;
  width: 50%;
  height: 100vh;
  top: 0;
  right: 0;
  background: #ffffff;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .hero-grid{
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

#hero .hero-tile{
  overflow: hidden;
  background: #f3f3f3;
}

#hero .hero-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 3;
}

.contact p{
    line-height: 2.0;
}

#content::-webkit-scrollbar {
  width: 0px;
}
 
#content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgba(0, 0, 0, 0.0);
}
 
#content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 0px solid slategrey;
}
#content .tenant-card{
    display: flex;
    margin: 40px auto;
}
#content .tenant-card .tenant-logo{
    width: 50%;
    max-width: 140px;
}
#content .tenant-card .tenant-logo .logo{
    height: 77px;
    width: auto;
}
#content .tenant-card .tenant-logo:last-of-type .logo{
    height: 90px;
    width: auto;
}
#content .tenant-card .tenant-details{
    padding-left: 50px;
    font-family: 'EB Garamond', serif;
}
#content .tenant-card .tenant-details p{
    margin: 0;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
}
#content .tenant-card .tenant-details strong{
    font-family: 'EB Garamond', serif;
    font-size: 18px;
}
#content .tenant-card .tenant-details a{
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    display: block;
    margin-top: 10px;
    font-size: 14px;
}
#content > div.top > strong >  a{
    text-decoration: none;
}
#content .btns{
    margin: 20px auto;
}
#content .btns a{
    display: inline-block;
    margin: 10px;
    padding: 8px 16px;
    border: solid 1px #D2AE70;
    font-family: 'EB Garamond', serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
#content .btns a:first-of-type{
    background: #D2AE70;
    color: #ffffff;
    transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
#content .btns a:last-of-type{
    background: transparent;
    color: #D2AE70;
    transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
#content .btns a:first-of-type:hover{
    background: transparent;
    color: #D2AE70;
    transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
#content .btns a:last-of-type:hover{
    background: #D2AE70;
    color: #ffffff;
    transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
}
@media (max-width:992px){
    body{
        position: relative;
        width: 100%;
        height: auto;
        overflow: unset;
        margin: 0;
        padding: 0;
    }
    
    #content .top h1{
        margin-top: 50px;
        font-size: 28px;
    }

    #content .top .top-content p{
        font-size: 16px;
    }
 
    #content{
        width: 100%;
        height: auto;
        position: relative;
        overflow-y: unset;
        left: unset;
        top: unset;
        padding: 20px;
    }
 
     #hero{
        position: relative;
        width: 100%;
        height: auto;
        top: unset;
        right: unset;
        padding: 20px;
    }

    #hero .hero-grid{
        height: auto;
        gap: 14px;
    }

    #hero .hero-tile img{
        aspect-ratio: 1;
    }

    #content > div.top > strong > span{
        display: none;
    }
    #content .tenant-card .tenant-logo .logo{
        height: 54px;
        width: auto;
    }
    #content .tenant-card .tenant-logo:last-of-type .logo{
        height: 63px;
        width: auto;
    }
    #content .tenant-card .tenant-details{
        padding-left: 20px;
    }
    #content .tenant-card .tenant-logo{
        width: 40%;
        max-width: 120px;
    }

}
@media screen and (min-width: 993px){
    #content .top{
        margin: 150px auto;
    }
}