.wrapper, #container {
    height: auto;
}

.ServicePage {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    background-color: black;
    box-sizing: border-box;
}

.serviceTxt {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    color: white;
    padding: 0 20px 0 20px;
    text-align: left;
}

.serviceTxt h1 {
    text-transform: uppercase;
    font-size: 2rem;
    margin: 50px 0 20px 30px;
}

.serviceTxt p {
    margin: 10px 30px 24px 30px;
    text-align: justify;
    line-height: 24px;
    font-size: 1rem;
}

.serviceTxt p span {
    font-weight: bold;
}

.serviceImg {
    width: 50%;
    height: auto;
}

.serviceImg img {
    width: 100%;
    height: auto;
}

/* ------------------------------------------- @media */
@media screen and (min-width: 1200px) and (max-width: 1368px) {
    .slideshowMobile {
        display: none;
    }

    .serviceImg img {
        width: auto;
        height: 100%;
    }
}

@media screen and (min-width: 901px) and (max-width: 1199px) {
    .serviceImg img {
        width: auto;
        height: 100%;
    }
}

@media screen and (min-width: 760px) and (max-width: 900px) {
    .ServicePage {
        flex-direction: column;
    }

    .serviceImg, .serviceTxt {
        width: 100%;
    }

    .serviceTxt {
        padding: 0;
    }

    .serviceTxt p {
        margin: 10px;
    }

    .serviceTxt h1 {
        text-align: center;
        margin: 30px;
    }
}

@media screen and (min-width: 560px) and (max-width: 759px) {
    .ServicePage {
        flex-direction: column;
    }

    .serviceImg, .serviceTxt {
        width: 100%;
    }

    .serviceTxt {
        padding: 0;
    }

    .serviceTxt p {
        margin: 10px;
    }

    .serviceTxt h1 {
        text-align: center;
        margin: 30px;
    }
}

@media screen and (min-width: 481px) and (max-width: 559px) {
    .ServicePage {
        flex-direction: column;
    }

    .serviceImg, .serviceTxt {
        width: 100%;
    }

    .serviceTxt {
        padding: 0;
    }

    .serviceTxt p {
        margin: 10px;
    }

    .serviceTxt h1 {
        text-align: center;
        margin: 30px;
    }
}

@media screen and (min-width: 370px) and (max-width: 480px) {
    .ServicePage {
        flex-direction: column;
        padding-top: 20px;
        margin-top: 70px;
    }

    .serviceImg, .serviceTxt {
        width: 100%;
    }

    .serviceTxt {
        padding: 0;
    }

    .serviceTxt p {
        margin: 10px;
    }

    .serviceTxt h1 {
        text-align: center;
        margin: 30px;
    }
}

@media screen and (min-width: 320px) and (max-width: 369px) {
    .ServicePage {
        flex-direction: column;
    }

    .serviceImg, .serviceTxt {
        width: 100%;
    }

    .serviceTxt {
        padding: 0;
    }

    .serviceTxt p {
        margin: 10px;
    }

    .serviceTxt h1 {
        text-align: center;
        margin: 30px;
    }
}