h2 {
    color: #F6AC19;
}

#home_image {
    position: relative;
}

#home_image video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

#home_image .overlayBlack {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.7);
}

#home_image h1 {
    position: absolute;
    top: 45%;
    left: 35%;
    color: #FFFFFF;
    z-index: 999;
}

main {
    width: 80%;
    margin: 0 auto;
}

section {
    width: 100%;
    margin: 120px 0;
}

.sectionChild {
    width: 100%;
    margin: 20px 0;
}

.serviceArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.serviceItem {
    width: 100%;
    padding: 10px;
}

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

.serviceItem h3 {
    margin-bottom: 10px;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

table tr th, 
table tr td{
    width: 50%;
    padding: 10px 0;
    border-bottom: 1px dotted #000000;
    text-align: left;
}

@media screen and (max-width: 768px) {
    #home_image h1 {
        font-size:20px;
        left: 15%;
    }
    .serviceArea {
        display: block;
    }
    .serviceItem {
        margin-bottom: 40px;
    }    
    table {
        width: 100%;
        margin: 0 auto;
        border-collapse: collapse;
    }
    table tr th {
        width: 40%;
        vertical-align: top;
    }
    table tr td {
        width: 60%;
    }
    table tr th, 
    table tr td{
        padding: 10px 0;
        border-bottom: 1px dotted #000000;
        text-align: left;
        font-size: 14px;
    }
}