header {
    box-shadow: 0px -10px 20px black;
}

main {
    background: url(./images/whitebg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#construction {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

#construction h1 {
    font-size: 60px;
}

#construction h3 {
    font-size: 40px;
}

.sect1 {
    height: 575px;
    display: flex;
    align-items: center;
    top: 0;
    width: 100%;
    background-image: url('./images/vppicstock.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.sect1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 33%, rgba(255, 255, 255, 0.863) 54%, rgba(255, 255, 255, 0) 75%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.textBox {
    z-index: 10;
    border: solid mediumseagreen;
    border-radius: 20px;
    padding: 20px;
    margin-left: 100px;
    background-color: rgba(255, 255, 255, 0.5)
}

.textBox p {
    color: black;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    z-index: 10;
}

#textBoxSub p {
    font-size: 28px;
    font-weight: normal;
}

.sect1 img {
    height: 300px;
    margin-top: 100px;
}

.sectInfo {
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sectInfo h2 {
    margin: 50px;
}

.addressFlexBox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

iframe, .storeHours {
    border: solid mediumseagreen;
    border-radius: 8px;
    box-shadow: 0px 0px 20px -10px;
}

.storeHours {
    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.5);
}

.hoursTitle {
    display: flex;
    justify-content: center;
    margin: 0px;
    font-size: 28px;
    font-weight: bold;
}

.hoursBox {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.days, .hours {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.days {
    text-align: end;
}

.top {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
}

.top h2, #sect4top, .sectInfo h2 {
    font-size: 40px;
}

.top button {
    padding: 8px 16px;
    color: white;
    border: 4px solid white;
    border-radius: 36px;
    background-color: transparent;
    transition: .3s;
}

.top button:hover {
    color: mediumseagreen;
    background-color: white;
    cursor: pointer;
}

#sect3pics {
    display: flex;
}

.pic {
    display: flex;
    justify-content: center;
    align-items: end;
}

.pic button {
    margin: 50px;
    border: 2px solid mediumseagreen;
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
}

.pic a, .sectInsurance a{
    cursor: default;
    text-decoration: none;
}

.pic button, .sectInsurance button {
    cursor: pointer;
    background-color: white;
}

.pic button h2, .sectInsurance button h2 {
    font-weight: 500;
    color: black;
}

.buttonText {
    position: relative;
    left: 10px;
    transition: .2s;
    overflow:hidden
}

.arrow {
    position: relative;
    top: -1px;
    left: 0px;
    opacity: 0;
    transition: .2s;
}

.pic button:hover .arrow, .sectInsurance button:hover .arrow{
    left: 5px;
    opacity: 1;
}

.pic button:hover .buttonText, .sectInsurance button:hover .buttonText{
    left: 0px;
}

#pic1, #pic2, #pic3{
    height: 320px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

#pic1 {
    background-image: url('./images/vppic3-2.jpg');
}
#pic2 {
    background-image: url('./images/vppic4.jpg');
}
#pic3 {
    background-image: url('./images/vppic5.jpeg');
}

.sectInsurance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    gap: 25px;
}

.sectInsurance p {
    font-size: 24px;
}

.sectInsurance button {
    border: 2px solid mediumseagreen;
    border-radius: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
}

.sectMisc {
    background-color: rgba(255, 255, 255, 0.5);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left, .right {
    flex: 1;
    padding: 5%;
}

.sectMisc img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: solid mediumseagreen;
    box-shadow: 0px 0px 20px -10px;
}

.right h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.right p {
    font-size: 24px;
}

@media (max-width: 1100px) {
    .textBox {
        margin-left: 50px;
    }
    .textBox p {
        font-size: 32px;
    }
    #textBoxSub p {
        font-size: 25px;
    }
}
@media (max-width: 1100px) {
    .sectMisc {
        flex-direction: column;
    }
    .left {
        padding-bottom: 0;
    }
}
@media (max-width: 850px) {
    .sect1 {
        justify-content: center;
        align-items: end;
    }
    .textBox {
        margin: 0;
        margin-bottom: 50px;
        background-color: rgba(255, 255, 255, 0.8)
    }
    .sect1::before {
        display: none;
    }
}
@media (max-width: 816px) {
    #sect3pics {
        flex-direction: column;
    }
    #pic1, #pic2, #pic3{
        height:500px;
        border: 10px solid white;
        border-bottom: none;
    }
    #pic1 {
        background-image: url('./images/vppic3-2-2.jpg');
    }
    #pic2 {
        background-image: url('./images/vppic4-2.jpg');
    }
    #pic3 {
        background-image: url('./images/vppic5-2.jpeg');
        border-bottom: 10px solid white;
    }
}
@media(max-width: 700px){
    .sect1 {
        background-image: url('./images/vppicstockcropped.jpg');
    }
}
@media(max-width: 512px){
    iframe, .storeHours {
        width: 325px;
        height: 195px;
    }
    .hoursTitle {
        font-size: 24px;
    }
    .days, .hours {
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .textBox p {
        font-size: 28px;
    }
    #textBoxSub p {
        font-size: 22px;
    }
}
@media (max-width: 450px) {
    .textBox p {
        font-size: 25px;
    }
    #textBoxSub p {
        font-size: 20px;
    }
}
@media(max-width: 375px){
    iframe, .storeHours {
        width: 275px;
        height: 165px;
    }
    .hoursTitle {
        font-size: 20px;
    }
    .days, .hours {
        font-size: 14px;
    }
}