.main-image-container {
    display: grid; 
}
#main-image img { 
    width: 100%; 
    height: 100%;
    object-fit: cover;
}
#content { 
    background-color: #E6E6E6;
    color: rgb(70,70,70);
    flex: 1; 
    padding: 35px;        
    display:flex;

    flex-direction:column;
    justify-content: center;
    align-items: flex-start;
}
.xl {
    font-size: 2.5rem;
    letter-spacing: 5px;
    line-height: 1.3;
}
#tagline {
    color: #54575A;
    margin-top: 30px;
    font-size: 1.1rem;
    letter-spacing: 1.7px;
    line-height: 1.5;
}
#columns {
    margin-top:25px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
    row-gap: 40px;
    margin-bottom: 30px;
}
#columns img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
#results-banner {
    background-size: cover;
    grid-column: span 2;
    line-height: 1.5;
    height: 300px;
    width: 100%;
    color: white;
    font-size: 3.75rem;
    display:flex;
    align-items: center;
    padding-left: 3rem;
    margin-bottom: 10px;
    background-image: url("/images/zintra-1.png");
    margin-bottom: 35px;
    background-position: bottom;

}
.tile .text {
    font-size: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #3c3e3c;
}
.tile .tagline {
    font-size: 10px;
    color: #3c3e3c;
}

.section {
    color: #3c3e3c;
}
.section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section .breadcrumbs {
    font-size: 12px;
}

.section p {
    font-size: 16px;
    line-height: 1.2;
    padding: 0 40px;
}

#page-name {
    font-family: gotham;
}

.span-3 {
    grid-column: span 3;
}


@media (max-width: 700px) {
    .main-image-container { 
        grid-template-columns: 1fr; 
        height: unset;
    }
    .xl { font-size: 2rem; }
    #content { padding: 35px 15px; }
    #tagline { font-size:1rem; }
    #columns { 
        margin-top: 30px; 
        grid-template-columns: 1fr 1fr;
    }
    #columns img { height: 200px; }
    .hover-tile { font-size: 0.9rem; }
    .content { padding-left: 15px; }

    .span-sm-2 { grid-column: span 2; }

    .main-image { margin-top: 140px; }
} 
