.content-full-screen{
    position: fixed;
    display: block;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    padding: 0px;
    transition: all ease-in-out 300ms;
    }
.content-full-screen.off{
    opacity: 0;
    }
.single-item .slick-list {
    opacity: 1;
    display: block;
    }
.open-btn{
    position: absolute;
    display: none;
    right: 55px;
    bottom: 68px;
    height: 0px;
    width: 0px;
    color: rgba(241, 239, 236, 1);
    font-size: 36px;
    cursor: pointer;
    }
.open-btn.adj-1{
    right: 42px;
    }
.bulleted{
    position: relative;
    display: block;
    }
.bulleted .left{
    position: relative;
    display: inline-block;
    font-size: 21px;
    line-height: 1em;
    width: 20px;
    }
.bulleted .right{
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1.3em;
    width: calc(100% - 20px);
    }
#marker-1{
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    margin-top: 100vh;
    z-index: 999;
    }
.image-block-btns{
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 12px;
    margin-bottom: 48px;
    }
/*---------- DOWN ARROW + ANIMATION ----------*/
@keyframes bounce{
    0%{
        transform: translateY(0px);
    }
    10%{
        transform: translateY(0px);
    }
    15%{
        transform: translateY(-24px);
    }
    25%{
        transform: translateY(0px);
    }
    35%{
        transform: translateY(0px);
    }
    40%{
        transform: translateY(-24px);
    }
    50%{
        transform: translateY(0px);
    }
    60%{
        transform: translateY(0px);
    }
    65%{
        transform: translateY(-24px);
    }
    75%{
        transform: translateY(0px);
    }
    85%{
        transform: translateY(0px);
    }
    90%{
        transform: translateY(-24px);
    }
    100%{
        transform: translateY(0px);
    }
}
.down-arrow-container{
    position: absolute;
    display: none;
    margin: 0px auto;
    left: 0px;
    right: 0px;
    bottom: 6px;
    width: 26px;
    }
.down-arrow{
    position: relative;
    display: block;
    margin: 0px auto;
    width: 26px;
    cursor: pointer;
    transition: all ease-in-out 300ms;
    animation-name: bounce;
    animation-duration: 9s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    }
.down-arrow:hover{
    margin-bottom: 16px;
    animation-name: none;
    transition: all ease-in-out 300ms;
    }
/*---------- /DOWN ARROW + ANIMATION ----------*/
/*---------- SLICK DOTS ----------*/
.slick-dots{
    bottom: 16px;
    display: none !important;
    position: absolute;
    margin: 0px auto;
    padding: 0px;
    right: 0px;
    left: 0px;
    width: 212px;
    white-space: nowrap;
    }
.slick-dots li{
    display: inline-block;
    position: relative;
    height: 14px;
    width: 14px;
    content: '';
    margin: 0px 12px;
    cursor: pointer;
    }
.slick-dots li:nth-child(2){
    margin-right: 42px;
    }
.slick-dots li:nth-child(3){
    margin-left: 42px;
    }
.slick-dots li button{
    display: block;
    position: relative;
    height: 14px;
    width: 14px;
    color: rgba(241, 238, 233, 0);
    border: 1px solid rgb(241, 238, 233);
    border-radius: 50%;
    font-size: 2px;
    transition: all ease-in-out 300ms;
    background-color: transparent;
    cursor: pointer;
    }
.slick-dots li.slick-active button{
     background-color: rgb(241, 238, 233);
    }
.slick-dots li button:hover{
     background-color: rgb(241, 238, 233);
    }
.image-h1-text{
    position: absolute;
    display: block;
    margin-top: 18px;
    margin-left: 18px;
    }
.image-h1-text h1{
    line-height: 1em;
    }
/*---------- /SLICK DOTS ----------*/
.landing-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    }
#buildingVideo {
    position: absolute;
    display: block;
    margin: 0px auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    }

.webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-xs.webp);
    background-position: center bottom;
    }
.webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-xs.jpeg);
    background-position: center bottom;
    }
.webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-xs.webp);
    background-position: bottom center;
    }


@keyframes bgGrow{
    0%{
        background-size: 106vw;
        top: 0%;
        background-position: center top 0%;
        }
    100%{
        background-size: 118vw;
        top: 0%;
        background-position: center top 0%;
        }
    }
.landing-image-4{
    background-image: url(../../images/home/1998-home-4-xs.webp);
    /*background-position: center bottom;*/
    background-size: 106vw;
    top: 0%;
    background-position: center top 0%;
    }
.landing-image-4.on{
    animation-name: bgGrow;
    animation-duration: 8000ms;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-direction: normal;
    }

.no-webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-xs.jpg);
    }
.no-webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-xs.jpeg);
    }
.no-webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-xs.jpg);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-xs.jpg);
    }

@media only screen and (min-width:576px){
.webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-sml.webp);
    background-position: center bottom;
    }
.webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-sml.jpeg);
    background-position: center bottom;
    }
.webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-sml.webp);
    background-position: center bottom;
    }
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-sml.webp);
    }
.no-webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-sml.jpg);
    }
.no-webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-sml.jpeg);
    }
.no-webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-sml.jpg);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-sml.jpg);
    }   
}
@media only screen and (min-width:576px) and (orientation:portrait){
.webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-sml-port.webp);
    background-position: center bottom;
    }
.webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-sml-port.jpeg);
    background-position: center bottom;
    }
.webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-sml-port.webp);
    background-position: center bottom;
    }
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-sml-port.webp);
    }
.no-webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-sml-port.jpg);
    }
.no-webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-sml-port.jpeg);
    }
.no-webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-sml-port.jpg);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-sml-port.jpg);
    }    
}
@media only screen and (min-width:768px){
.landing-text{
    padding: 24px 36px;
    }
.content.landing-page{
    top: 112px;
    height: calc(100vh - 154px);
    }
.image-h1-text{
    position: absolute;
    display: block;
    margin-top: 24px;
    margin-left: 24px;
    }
.open-btn{
    display: block;
    }
.webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-med.webp);
    }
.webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-med.jpeg);
    }
.webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-med.webp);
    }
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-med.webp);
    }
.no-webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-med.jpg);
    }
.no-webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-med.jpeg);
    }
.no-webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-med.jpg);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-med.jpg);
    }
}
@media only screen and (min-width:768px) and (orientation:portrait){
.webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-sml-port.webp);
    background-position: center bottom;
    }
.webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-sml-port.jpeg);
    background-position: center bottom;
    }
.webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-sml-port.webp);
    background-position: center bottom;
    }
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-sml-port.webp);
    }
.no-webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1-sml-port.jpg);
    }
.no-webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2-sml-port.jpeg);
    }
.no-webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3-sml-port.jpg);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-sml-port.jpg);
    }    
}
@media only screen and (min-width:992px){
.landing-text{
    padding: 24px 55px;
    }
.no-wrap-1{
    white-space: nowrap;
    }
.down-arrow-container{
    display: block;
    }
.slick-dots{
    display: block !important;
    }
.image-block-btns{
    align-content: flex-end;
    }
}
@media only screen and (min-width:992px) and (orientation:portrait){
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-port.webp);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-port.jpg);
    }    
}
@media only screen and (min-width:1200px){
.landing-text{
    padding: 24px 73px;
    }
.image-h1-text{
    position: absolute;
    display: block;
    margin-top: 48px;
    margin-left: 48px;
    }
.webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1.webp);
    }
.webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2.jpeg);
    }
.webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3.webp);
    }
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4.webp);
    }
.no-webp .landing-image-1{
    background-image: url(../../images/home/1998-home-1.jpg);
    }
.no-webp .landing-image-2{
    background-image: url(../../images/home/1998-home-2.jpeg);
    }
.no-webp .landing-image-3{
    background-image: url(../../images/home/1998-home-3.jpg);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4.jpg);
    }
}
@media only screen and (min-width:1200px) and (orientation:portrait){
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-port.webp);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-port.jpg);
    }    
}
@media only screen and (min-width:1500px){
.webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-lrg.webp);
    }
.no-webp .landing-image-4{
    background-image: url(../../images/home/1998-home-4-lrg.jpg);
    }
}

@media only screen and (min-width:1700px){
.image-block-btns{
    justify-content: space-between;
    flex-direction: row;
    }
}

