/* ======================
   Global Styles
====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", "Inter", Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

h1 {
    font-size: 32pt;
    font-weight: 700;
}

#SOLD h1:not(#bluebox){
    color: #11284b;
}



h2 {
    font-size: 22pt;
    font-weight: 500;
    color: #056ee0;
    margin-bottom: 5px;
}

h3 {
    font-size: 22pt;
    font-weight: 500;
}

#SOLD h3{
    color: #056ee0;
}

.container {
    /*
    width: 95%;
    */
    display: flex;
    margin: auto;
}

.cont_text {
    flex: 1;
}

.body_text{
    font-size: 16pt; 
    font-family: "Inter", Arial, Helvetica, sans-serif; 
    font-weight: 400;
}

#SOLD .body_text{
    font-size: 16pt; 
    font-family: "Lexend", "Inter", Arial, Helvetica, sans-serif;
    font-weight: 400;
}

/* ======================
   Header / Navigation
====================== */
header {
    background: #056ee0;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

.container-navbar {
    display: flex;
    justify-content: space-around;
    justify-content: flex-end;
    margin-right: 90px;


}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
}

.nav-links {
    display: flex;
    gap: 70px;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    flex-wrap: wrap;
}


/* ======================
   Body Styling
====================== */

.Home_pg {
    margin-right: 70px;
    margin-left: 70px;
}

.Our_Story {
    margin-left: 30px;
}

/* ======================
   Section Styling
====================== */
.section {
    padding: 40px 0;
}

/* ===================bold blue headers for sections=================*/
.section p {
    margin-bottom: 20px;
    color: #050508;
}

#SOLD .section p{
    margin-bottom: 0px;
}

.alt-bg {
    background: #ffffff;
}

#video-container_Our_Story {
    width: 50vw;
    height: auto;

}


#video-container_Our_Story>iframe {
    width: 50vw;
    height: auto;
    aspect-ratio: 16/9;
}

.image-container:not(.logo) {
    width: 50vw;
}

.image-container:not(.logo) img {
    width: 50vw;
    object-fit: fill;
}

/* ======================
   Cards
====================== */
.cards {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cards>img {
    object-fit: cover;

}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 6px;
    transition: 0.3s ease;
    background: #ffffff;

}

.card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 10px;
    color: #056ee0;
}

.card img {
    width: 100%;
    margin-bottom: 20px;
}

.double_pane {
    margin-right: 60px;
}


/* ======================
   Our Voices
====================== */
.Our_Voice_vids {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 36px;
    margin-top: 30px;
}

.center-vid{
    /*
    flex-basis: 100%;
    */
    justify-content: center;
}


.video-container_Our_Voices {
    width: 45vw;
    height: auto;

}


.video-container_Our_Voices>iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}


/* ======================
   Footer
====================== */
footer {
    background: #eaeae9;
    color: #050508;
    padding: 40px 0;
    font-size: 14px;
}

.container.footer-grid {
    width: 90%;
}

.container.footer-grid>img {
    height: 170px;
    object-fit: cover;

}

.Acc_Conn>div {
    display: inline-block;
    padding-right: 80px;
    vertical-align: top;

}

.connect.footer-grid {
    /*display: inline-flex;*/
    flex-direction: row;
    justify-content: center;
    font-weight: 450;
    font-size: medium;
}

.connect.footer-grid>ul>a>img {
    object-fit: cover;
    width: 40px;
    height: 40px;
}

.connect.footer-grid>ul>a {
    padding: 3px;
}

#linkedin-logo {
    padding: 0px;
}

.HMLS_Location {
    font-size: medium;
}

ul.footer-links {
    display: inline-block;
}

.access.footer-grid {
    font-size: medium;
}


.footer_header {
    font-weight: 450
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-weight: bold;
    color: #056ee0;
}

.address.footer-grid {
    font-weight: 350;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    padding-top: 15px;
    justify-content: center;
}

/* ======================
   Responsive
====================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .container-navbar {
        margin-right: 0px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .container.body_content {
        flex-direction: column;

    }

    .container.body_content>.container {
        flex-direction: column;

    }

    .Our_Story {
        margin-left: 0px;
        margin-right: 10px;
    }

    #video-container_Our_Story>iframe {
        width: 90vw;
    }

    #video-container_Our_Story{
        width: 90vw;
        align-self: center;
    }

    .video-container_Our_Voices{
        align-self: center;
        width: 90vw;
    }

    .container.body_content img {
        width: 95vw;

    }

    .Home_pg {
        margin-left: 10px;
        margin-right: 0px;
    }

    .cards {
        flex-direction: column;
    }

    .Our_Voice_vids{
        flex-direction: column;
    }

    .section.alt-bg {
        margin-right: 10px;
    }

    .Acc_Conn>div {
        padding-right: 0px;
    }

    .footer_logo {
        margin-left: 2em;
    }

    .connect.footer-grid {
        margin-top: 1em;
    }

      .imgs{
        width: 95vw !important;
    }

}

@media (min-width: 461px) and (max-width: 768px) {

    
      .connect.footer-grid {
        margin-left: 15px;
    }


}


@media (min-width: 768px) and (max-width: 1040px) {

      .container-navbar {
        margin-right: 10px;
    }
        .imgs{
        width: 50vw !important;
    }
}

@media (min-width: 701px) and (max-width: 1040px) {

    
      .container-navbar {
        margin-right: 10px !important;
    }

}

@media (min-width: 688px) and (max-width: 700px) {

    
      .container-navbar {
        margin-right: 4px !important;
    }

}


@media (max-width: 1040px) {


    .nav-links {
        justify-content: center;
        gap: 30px;
    }

    .container-navbar {
        margin-right: 0px;
    }
}




/* ======================
   Landing Page
====================== */

.icon_cont > ul > li {
    margin-right: 55px;
    margin-top: 40px;
}

.icon_cont li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon_cont li h3,
.icon_cont li p{
    width: 100%;
    text-align: left;
}

.icon_cont li img {
    width: 30%;
    display: block;

}