.home-main-section{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
}

/* Left Section*/
.left-section {
    width: 70%;
    height: 85vh;
    background-image: url(noiceCir.png);
    background-size: cover;
    position: relative;
    margin-left: -10%;
    margin-top: -2%;
}

 .name {
    position: absolute;
    color: white;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    /* background: #7C877F; */
    /* width: 50%; */
    
    text-align: center;
    z-index: 0;
    min-width: 500px;
    top: 150px;
    left: 10%;
    width: 90%;
    height: 70%;
    /* position: relative; */
    
    /* background: red; */
}

.JENSON{
    font-weight: 500;
    font-size: 2em;
    margin-bottom: 1rem;
    margin-top: 1rem;
    letter-spacing: 1em;
    font-size: bold;
}

.sub-name{
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 1rem;
    letter-spacing: 0.5em;
}

.ch-name{
    font-weight: 500;
    font-size: 1.3em;
    letter-spacing: 1em;
}

.company-info-short {
    font-size: 1em;
    margin-top: 3em;
    margin-left: 12%;
    width: 70%;
    line-height: 25px;
}

.company-info-short.ch {
    line-height: 30px;
    font-size: .9em;
}

.background-img {
    background-image: url(noiseCir.png);
    background-size: cover;
    width: 46vw;
    height: 86vh;
    position: absolute;
    top: 6vh;
    z-index:-1;
    min-width: 600px;
}

/* Right Section*/
.menu {
    margin: auto 0;
}

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

.menu ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu .row1 {
    margin-left: 3vw;
}
.menu .row2{
    margin-top: .5vh;
    margin-left: 8vw;
}

.menu .row3{
    margin-top: .5vh;
    margin-right: 3vw;
}

.btn {
    height: 13vw;
    width: 13vw;
    min-width: 140px;
    min-height: 140px;
    color: inherit;
    cursor: pointer;
    font-family: Playfair Display, sans-serif;
    font-size: 1.5em;
    border-style: none;
    overflow: hidden;
    margin-left: 2vh;
    background-color: var(--background-color);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    transition: .5s;
}

.about-btn, .contact-btn, .aop-btn {
    --background-color: #373C38;
    --accent-color: #7C877F;
}

.team-btn, .testimonial-btn{
    --background-color: #615C44;
    --accent-color: #7C877F;
}

.btn.testimonial-btn::before, 
.btn.aop-btn::before, 
.btn.about-btn::before, 
.btn.contact-btn::before, 
.btn.team-btn::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: var(--accent-color);
    z-index:-1;

    transition: transform 300ms ease-in-out;
    transform: scaleX(0);
    transform-origin: left;
}


.btn.testimonial-btn:hover::before,
.btn.testimonial-btn:focus::before,
.btn.aop-btn:hover::before,
.btn.aop-btn:focus::before,
.btn.about-btn:hover::before,
.btn.about-btn:focus::before,
.btn.contact-btn:hover::before,
.btn.contact-btn:focus::before, 
.btn.team-btn:hover::before,
.btn.team-btn:focus::before {
    transform: scaleX(1);
}

.btn.about-btn, .btn.contact-btn, .btn.team-btn, .btn.testimonial-btn, .btn.aop-btn {
    z-index: 1;
}



/* pic src */

.pic{
    height: 12vw;
    width: 12vw;
    min-width: 130px;
    min-height: 130px;
    background-color: #62592C;
    padding: 1px;
    display: flex;
    margin-left: 2vh;
    margin-top: .8vh;
    mix-blend-mode: normal;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    transition: .5s;
}

.pic1 {
    background-image: url(vancouver-1684467_1920.jpg);
    background-size: cover;
}

.pic2 {
    background-image: url(Website\ -\ Pic14.jpg);
    background-size: cover;
}

.pic3 {
    background-image: url(mike-benna-WHHY-iBp3aI-unsplash.jpg);
    background-size: cover;
}

.pic4 {
    background-image: url(scott-graham-5fNmWej4tAA-unsplash.jpg);
    background-size: cover;   
}

.pic5 {
    background-image: url(floriane-vita-FyD3OWBuXnY-unsplash.jpg);
    background-size: cover;
}

@media (max-width: 1200px) {
    .pic5 {
        display: none;
    }

    .left-section {
        width: 57vw;
        height: 80vh;
    }
}

@media (max-width: 1100px) {
    .pic1 {
        display: none;
    }

    .menu .row1 {
        margin-left: 0;
    }

}

@media (max-width: 1020px) {
    .pic {
        height: 15vw;
        width: 15vw;
    }

    .btn {
        height: 17vw;
        width: 17vw;
        font-size: 1.3em;
    }

    .pic5 {
        display: flex;
    }

    .pic1 {
        display: flex;
    }

    .home-main-section {
        flex-direction: column;
    }

    .left-section {
        height: 800px;
        width: 800px;
        margin: 0 auto;
        padding: 7.5%;
        transform: translateY(-30px);
    }

    .name {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        top: 100px;
        left: 50px;
    }

    .menu {
        transform: translateY(-10%);
        margin: 30px auto;
    }

    .menu .row1 {
        margin-left: 5vw;
    }

    .company-info-short {
        margin-left: 0;
    }
}

@media screen and (max-width: 800px) {
    .left-section {
        width: 650px;
        height: 650px;
        margin: 0 auto;
        margin-right: 10%;
    }

    .company-info-short {
        margin-top: 0%;
    }

    .name {
        margin-top: -2%;
        left: 8%;
    }
}

@media screen and (max-width: 600px) {
    .pic5 {
        display: none;
    }

    .left-section {
        width: 500px;
        height: 500px;
        margin-left: -2%;
        margin-top: 2%;
    }

    .name {
        position: absolute;
        width: 75%;
        height: 80%;
        top: 65px;
        left: 10px;
    }

    .JENSON {
        font-size: 1.5em;
    }

    .sub-name {
        font-size: .9em;
        letter-spacing: .3em;
    }

    .ch-name{
        font-size: .9em;
        margin-top: 0;
        letter-spacing: .9em;
    }
    
    .company-info-short {
        font-size: .8em;
        margin-top: 0;
        margin-left: 0;
        width: 70%;
        line-height: 20px;
    }

    .company-info-short.ch {
        font-size: .75em;
    }

    .menu .row1, .menu .row2, .menu .row3 {
        margin-left: 0vw;
    }
    
    .btn {
        font-size: 1em;
    }

}


