.row {
    height: 100%;
}

.d-flex-all-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* New Hero Banner */
#hero {
    background-size: cover !important;
    height: 70vh;
}

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

.hero-banner-content {
    text-align: left;
}

.hero-banner-content h1 {
    color: #1DB588;
}

.hero-banner-content h2 {
    color: #8BC53F;
}

.underline {
    height: 8px;
    width: 100px;
    background-color: #8BC53F;
}

.underline-white {
    height: 8px;
    width: 100px;
    background-color: white;
}


/* Section Component */
h1.section-title {
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0px 10px 0px;
    font-size: 30px;
    color: #8BC53F;
}

h1.section-title-white {
    text-align: center;
    text-transform: uppercase;
    margin: 40px 0px 10px 0px;
    font-size: 30px;
    color: white;
}

/* Our Services Section */
.our-service-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 20px 0px;
}

.our-service-item h2 {
    margin: 10px;
    font-weight: lighter;
    font-size: 25px;
}

.our-service-icon {
    width: 80px;
    object-fit: contain !important;

}

/* Our Vision */

#our-vision {
    background-color: #1DB588;
    background-size: cover;
    min-height: 50vh;
}

.our-vision-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0px;
}

.our-vision-icon {
    height: 120px;
}

#our-vision p {
    text-align: center;
    font-size: 18px;
    padding: 5px 0px;
    color: white;
}

.text-light {
    font-weight: lighter;
}

.text-center {
    text-align: center !important;
}

.text-white {
    color: white !important;
}

.text-black {
    color: black !important;
}



.text-green {
    color: #1DB588 !important;
}

.text-light-green {
    color: #8BC53F !important;
}


.text-brown {
    color: #8B6239 !important;
}

.client-logo {
    width: 100%;
}


/* Our Clients */
#our-client {
 margin-bottom: 150px;

}

/* Our Work */
#our-work {
    padding-bottom: 150px;
    background-color: #1DB588;
    /* background: url(../images/our-work-bg@4x.png) no-repeat center center scroll; */
    /* background-size: 100% 100%; */

}

.our-work-item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin: 0px 0px;
    padding: 0px;
    overflow: hidden;
}

.our-work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.05);
    transition: all 0.3s;
}

.our-work-item img:hover {
    transform: scale(1);
}


.our-work-item iframe {
    width: 100%;
    object-fit: cover;
}
   
.our-work-item h2 {
    margin: 10px;
    font-weight: lighter;
    font-size: 25px;
}

.work-preview {
    height: 250px;
}

.preview-mask {
    position: absolute;
    top: 70%;
    height: 30%;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 10%, rgba(0,0,0,0.5) 100%);
    display: flex;
    opacity: 0;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 10px;
    transition: all 0.3s;
}

.preview-mask:hover {
    opacity: 1;
}


.preview-mask h5 {
    color: white;
}


/* More Button */
#more-btn {
    height: 80px;
    width: 80px;
}

.more-btn {
    position: absolute;
    left: 30%;
    right: auto;
    bottom: 100px;
    width: 100%;
}

/* Contact Us */
#contact-us {
    padding-bottom: 150px;
    background: url(../images/contact-us-bg@4x.png) no-repeat center center scroll;
    background-size: cover;
}

#contact-us h1 {
    font-size: 40px;
    color: #1DB588;
    margin-bottom: 20px;
}


.contact-right {
    min-height: 70vh;
    padding: 10%;
}

input, textarea {
    border: 2px solid #1DB588;
    border-top: none;
    border-right: 2px solid #1DB588;
    border-bottom: 2px solid #1DB588;
    border-left: none;
    padding: 5px;
    width: 80%;
    color: black;
    font-weight: lighter;
    background-color: transparent;
}

textarea {
    height: 100px;
}

input[type="submit"] {
    border: 2px solid #1DB588;
    margin-left: 50%;
    color: #1DB588;
    width: 30% !important;
    background-color: transparent;
}


/* Mobile View */
@media (max-width: 992px) {
    .hero-left-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-left {
        height: 70vh;
    }

    .hero-right {
        height: 30vh;
    }

    .hero-right p {
        width: 80%;
    }
    
    .about-adv-content {
        padding-left: 10%;
        padding-right: 10%;
    }

    .contact-left {
        min-height: 30vh;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: auto;
        background-color: #EEE;
    }

    .contact-left p {
        width: 100%;
        padding-left: auto;
        margin-left: auto;
    }

    input, textarea {
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
    }
}

@media (max-width:992px) {
    .element {
        padding-left: 10%;
        padding-right: 10%;
    }

    h2 {
        font-size: 15px !important;
    }
}

@media (max-width:500px) {

    .our-service-icon {
        height: 50px;
    }

    #our-service h2 {
        font-size: 12px;
        margin: 10px 5px;
        text-align: center;
    }

    #our-vision h2 {
        font-size: 15px;
        margin: 10px 5px;
        text-align: center;
    }
}


@media (min-width:992px) {
    .element {
        padding-left: 10%;
        padding-right: 10%;
    }
}

.app-logo {
    height: 30px;
}

#footer {
    background-color: #1DB588;
}
