@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#product h1 {
    color: #927d45;
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
}

#product h2 {
    color: #927d45;
    text-align: center;
    font-size: 4rem;
    font-weight: 300;
}

#product p {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-align: justify;
}

#product {
    background-color: black;
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}

.service-item h1 {
    position: relative;
}

.service-item h2 {
    position: relative;
}

#product::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: -1;
}

#product .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: flex-start;
}

#product .container {
    justify-content: center;
}

.row {
    flex-direction: column-reverse;
    -webkit-box-align: center!important;
    align-items: center!important;
    align-self: center;
}

#about .about-img::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 3%;
    height: 103%;
    width: 103%;
    border: 0px solid #927d45;
    z-index: -1;
}

.about-img img {
    box-shadow: 0px 0px 20px 0 #927d45;
}

@media only screen and (min-width: 768px) {
    .row {
        flex-direction: row;
    }
}