#borderContainer {
    padding: 15px;
    min-height: 100vh;
    background-color: hsl(6, 97%, 36%);
    display: flex;
    flex-direction: column;
}

#borderBox {
    flex-grow: 1;
    border: solid hsl(48, 100%, 50%) 50px;
    border-image-source: url('/vector_graphics/individual_border.svg');
    border-image-slice: 21.1%;
    border-image-repeat: round;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#homeNavBar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 40px;
    margin-top: 140px;
}

#homeNavBar a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    width: 220px;
    height: 67px;
    padding: 15px 25px;
    border-radius: 12px;
    color: white;
    border: solid 3px white;
    font-size: 21px;
    font-style: normal;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}

#homeNavBar a:last-child {
    margin-bottom: 0px;
}

#homeNavBar a:hover, #homeNavBar a:focus {
    color: black;
    background-color: hsl(48, 100%, 50%);
    box-shadow: 0 0 15px hsl(48, 100%, 50%);
    border-color: hsl(48, 100%, 50%);
    font-weight: bold;
    outline: none;

    /* box-shadow: 0 0 15px white;
    background-color: white;
    border-color: white; */
}

#logo {
    max-width: 1015px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

#businessDescription {
    margin-top: 35px;
}

#businessDescription h1, h2 {
    letter-spacing: .5px;
    color: hsl(48, 100%, 75%);    
}

#businessDescription h1 {
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 15px;
}

#businessDescription h2 {
    font-size: 18px;
    line-height: 29px;
}

@media (max-width: 1100px) {
    #businessDescription h1 {
        font-size: 26px;
    }

    #businessDescription h2 {
        font-size: 16px;
    }

    #homeNavBar {
        margin-top: 95px;
    }

    #borderContainer {
        min-height: auto;
    }

    #borderBox {
        padding-bottom: 60px;
    }
}

@media (max-width: 550px) {
    #borderBox {
        border: none;
        padding: 0px;
    }

    #borderContainer {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    #businessDescription h1 {
        font-size: 19px;
        line-height: 28px;
    }

    #businessDescription h2 {
        font-size: 15px;
    }

    #homeNavBar a {
        padding: 10px 15px;
        height: 55px;
        font-size: 18px;
    }
}





#businessOverview {
    background-color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 90px 25px;
}

#busOverviewContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    width: 100%;
}

.verticalLineArt {
    height: 550px;
}

#imgTextContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 720px;
    max-width: 1200px;
    width: 100%;
    padding: 60px 30px;
    border: 4px solid hsl(6, 97%, 36%);
    margin: 0px 50px;
}

#imgTextSubContainer {
    max-width: 980px;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: space-between;
}

#photoContainer {
    margin-right: 45px;
    width: 390px;
}

#photoContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}

#imgTextSubContainer p {
    color: black;
    width: 510px;
    font-size: 19px;
    line-height: 34px;
    display: flex;
    align-items: center;
}

@media (max-width: 1510px) {
    .verticalLineArt {
        display: none;
    }

    #busOverviewContent {
        justify-content: center;
    }

    #imgTextContainer {
        margin: 0px;
    }
}

@media (max-width: 950px) {
    #imgTextSubContainer {
        display: block;
        height: auto;
        width: auto;
    }

    #busOverviewContent {
        max-width: 650px;
    }

    #photoContainer {
        display: flex;
        justify-content: center;
        margin-right: 0px;
        margin-bottom: 25px;
        width: 100%;
    }

    #photoContainer img {
        max-width: 390px;
        width: 100%;
    }

    #imgTextSubContainer p {
        max-width: 510px;
        width: 100%;
        font-size: 18px;
    }
}

@media (max-width: 510px) {
    #imgTextContainer {
        padding: 0px;
        border: none;
    }

    #businessOverview {
        padding: 60px 15px;
        min-height: auto;
    }

    #imgTextSubContainer p {
        font-size: 16px;
    }
}