.main-info{
    padding: 0 7%;
}

.main-info-column{
    display: flex;
    border: 2px solid black;
}

.main-info-column > div{
    width: 50%;
}

/*Featured images slider*/
.main-info-featured {
    position: relative;
}

.plan-featured-slider {
    position: relative;
    overflow: hidden;
}

.plan-slider-slide {
    display: none;
}

.plan-slider-slide.is-active {
    display: block;
}

.plan-slider-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.plan-slider-prev,
.plan-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: 0;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 40px;
    line-height: 1;
    padding: 8px 14px;
    cursor: pointer;
}

.plan-slider-prev {
    left: 10px;
}

.plan-slider-next {
    right: 10px;
}

.main-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.main-info-featured,
.plan-featured-slider,
.plan-slider-slides,
.plan-slider-slide {
    height: stretch;
}

.plan-slider-slide {
    display: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.plan-slider-slide.is-active {
    display: block;
}

.slide-1.plan-slider-slide{
    background-size: cover;
}

.plan-featured-image{
    height: 100%;
}

.plan-featured-image img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.main-info-info{
    padding: 4%;
    background: black;
}

.main-info-info h1, .main-info-info h5, .main-info-info p, .main-info-info span{
    color: white;
}

.main-info h1{
    border-bottom: 1px solid white;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.main-info-info span{
    font-size: 18px;
    line-height: 1.8;
}

.main-info .meta-info{
    margin-bottom: 20px;
}

.main-info .main-info-buttons{
    margin-top: 35px;
}

.main-info .main-info-button{
    margin-right: 15px;
}

.main-info .main-info-button a{
    color: white;
    border-color: white;
}

.build-lot{
    padding: 5% 7%;
}

.build-lot .build-lot-text{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.build-lot .build-lot-text p{
    margin-bottom: 25px;
}

.build-lot .build-lot-text h4:after{
    content: '';
    width: 100%;
    height: 2px;
    background: #444;
    display: block;
    position: relative;
    transition: .3s width;
}

.build-lot .build-lot-text h4:hover:after{
    width: 0%;
    transition: .3s width;
}

.outline-button{
    display: inline-block;
    margin-bottom: 20px;
    transform: translateY(0px);
    transition: .3s;
}

.outline-button a{
    padding: 17px 30px;
    border: 2px solid;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s;
}

.outline-button:hover{
    transform: translateY(-3px);
    transition: .4s;
}

.outline-button:hover a{
    box-shadow: 0 6px 20px -6px rgba(0,0,0,.3);
    transition: .4s;
}

.image-gallery{
    padding-bottom: 40px;
    position: relative;
    padding: 5% 7%;
}

.image-gallery .image-gallery-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(https://tolandconstruction.com/wp-content/uploads/2025/03/AdobeStock_394528814-scaled.jpeg);
    display: block;
    z-index: 0;
}

.image-gallery .image-gallery-bg-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #e8e5e0;
    opacity: 0.5;
    display: block;
    z-index: 1;
}

.image-gallery .image-gallery-column{
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-gallery .image-gallery-column h2{
    font-size: 64px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
}

.image-gallery .image-gallery-column .image-gallery-images{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 8vh;
}

.image-gallery .image-gallery-column .image-gallery-images .image-wrapper{
    overflow: hidden;
    cursor: pointer;
}

.image-gallery .image-gallery-column .image-gallery-images .image-wrapper img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    height: 100%;
    transition: .3s;
}

.image-gallery .image-gallery-column .image-gallery-images .image-wrapper:hover img{
    transform: scale(1.1);
    transition: .4s;
}

/*Gallery Styling*/
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-track {
    width: 90vw;
    max-width: 1100px;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.gallery-lightbox-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.gallery-lightbox-slide.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
}

body .image-gallery-column .gallery-lightbox .gallery-lightbox-close {
    right: 30px;
    bottom: 30px;
    left: auto;
    right: auto;
    border: 1px solid white;
    border-radius: 100px !important;
    width: 60px;
    height: 60px;
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}