
.portfolioWrapper {  
    display: grid;  
    grid-template-columns: repeat(3, 1fr);  
    grid-gap: 1rem;
    max-width: 100vw;
}  
    
.portfolioItem {  
    background-color: #fff;  
    padding: 1rem;  
    border: 1px solid #ddd;  
    border-radius: 0.5rem;  
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.oneSite{
    margin: auto;
    background:#ffffff;
    border:2px solid #e0e0e0;
    border-radius:10px;
    padding:1.25rem;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    transition:all .35s ease;
    height: 100%;
}

.oneSite:hover {
    transform:translateY(-8px);
    border-color:#003d82;
    box-shadow:0 8px 20px rgba(0,61,130,0.2);
}
    
.portfolioThumbnail {
    width:100%;
    max-height:300px;
    height:auto;
    object-fit:contain;
    /* border-radius:8px; */
    margin-bottom:.75rem;
    /* border:2px solid #e0e0e0; */
    transition:all .3s ease;
}

.portfolioThumbnail:hover {
    border-color:#003d82;
    /* box-shadow:0 4px 15px rgba(0,61,130,0.2); */
}
    
.portfolioItem h3 {  
    font-size: 1.2rem;  
    margin-bottom: 0.5rem;  
}  
    
.portfolioItem p {  
    font-size: 1rem;  
    margin-bottom: 1rem;  
}  

#aboutUsMoreText {
    max-width: 90vw;
}
    
.contactForm {  
    max-width: 500px;  
    width: min(90vw, 500px); 
    margin: 1rem auto;  
    padding: 1.5rem;  
    background-color: #fff;  
    border: 2px solid #003d82;  
    border-radius: 0.5rem;  
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);  
}  
    
.contactForm label {  
    display: block;  
    margin-bottom: 0.5rem;  
}  
    
.contactForm input, .contactForm textarea {  
    width: 100%;  
    padding: 0.5rem;  
    margin-bottom: 1rem;  
    border: 1px solid #ccc;  
}  

.contactForm input[type="submit"],
.contactForm .submit-btn {  
    width: 100%;
    background-color: #003d82;  
    color: #fff;  
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;  
    border: 2px solid #003d82;  
    border-radius: 0.5rem;  
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
}  
    
.contactForm input[type="submit"]:hover,
.contactForm .submit-btn:hover {
    background-color: #001f4d;
    border-color: #001f4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 31, 77, 0.3);
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #4a4a4a;
}

.recaptcha-wrapper {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

#message {
    height: 11.1rem; 
}

.anchorSpacer {
    height: 1.5rem;
}

.blueBar {
    width: 100vw;
    min-height: 1rem;
    background-color: rgb(0, 0, 116);
    color: white;
    position: relative;
    left: 0;
    text-align: center;
    padding: 0.75rem;
    max-width: 100vw;
}
.blueBar > h2 {
    padding: 0;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 100vw;
}



.oneSite {
    margin-bottom: 2rem;
}

.minView {
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.portfolioLink {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
}

.portfolioThumbnail {
}

.portfolioSubtitle {
    font-weight:bold;
    margin:.5rem 0;
}

.portfolioTextDescription {
    margin-left: 10px;
}

.additionalInfo {
    padding: 0.5rem 0;
    max-width: 100vw;
}

.additionalInfo p {
    margin:0;
    line-height:1.6;
    padding:1rem 0 0 0;
}






    
/* Mobile Devices (Phones) */  
@media (max-width: 599px) {  
    .portfolioWrapper {  
        grid-template-columns: 1fr;  
        width: 100vw;
    }  
    .portfolioItem {  
        margin-bottom: 1rem;  
    }  
    hr {
        display: block;
    }


    .oneSite{
        width: 90vw;
    }

    .portfolioThumbnail {

    }
    .portfolioSubtitle {

    }

    .portfolioTextDescription {

    }

    .additionalInfo {

    }


}  
    
/* Tablets */  
@media (min-width: 600px) and (max-width: 899px) {  
    .portfolioWrapper {  
        grid-template-columns: repeat(2, 1fr);  
    }  
    hr {
        display: none;
    }

    .oneSite{
        width: 45vw;
    }
}  
    
/* Small Laptops */  
@media (min-width: 900px) {  
    .portfolioWrapper {  
        grid-template-columns: repeat(3, 1fr);  
    }  
    hr {
        display: none;
    }
    .oneSite{
        width: 25vw;
    }
}  