/* reset basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}


.hero {
    height: 100vh;
    width: 100vw;
    position: fixed;
    background-color: #FFF;
    left: 0;
    top: 0;
}

.hero-left {
    height: 100vh;
    width: 50vw;
    position: absolute;
    background-image: url('images/roofing.webp');
    background-size: cover;
    background-position: 75% 50%;
    background-repeat: no-repeat;
    border-left: 30px solid #FFF;
    border-top: 30px solid #FFF;
    border-bottom: 30px solid #FFF;
}

.hero-left:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    /* gradient left black .9 to right black .1 */
    background: linear-gradient(to right, rgba(22, 22, 22, 0.9), rgba(22, 22, 22, 0.1));
    left: 0;
    top: 0;
    z-index: 5;
}

.hero-right {
    height: 100vh;
    width: 50vw;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    /* border-top: 10px solid #9C6723;
    border-bottom: 10px solid #9C6723;
    border-right: 10px solid #9C6723; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

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

.hero-logo {
    width: 250px;
    margin: 20px 50px 20px 0;
}

.hero-logo img {
    max-width: 100%;
}

.hero-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    font-size: 17px;
    line-height: 2;
}

.hero-list li a {
    display: flex;
    align-items: baseline;
    color: #222;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-list li a:hover {
    color: #9C6723;
}

.hero-list li + li{
    margin-top: 12px;
}

.hero-list svg {
    width: 18px;
    height: 18px;
    fill: #9C6723;
    position: relative;
    top: 2px;
    margin-right: 15px;
}

.hero-list span {
    white-space: nowrap;
}

/* media screen and below 800px */
@media screen and (max-width: 800px) {
    .hero-left {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        border-bottom: none;
        border-left: 20px solid #FFF;
        border-top: 20px solid #FFF;
        border-right: 20px solid #FFF;
    }
    .hero-right {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0 20px 20px;
    }
}

/* media screen and below 800px */
@media screen and (max-width: 400px) {
    .hero-logo {
        width: 200px;
    }
    .hero-list {
        font-size: 15px;

    }
}