.full-container {
    min-height: calc(100vh - 60px);
    overflow-x: hidden;
    background-color: #F8F8F8;
}
.mdl {
    width: 60%;
    margin: auto;
}
.services-container {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 8%;
    padding-top: 120px;
}
.services-header {
    display: flex;
    height: auto;
    margin: auto;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5%;
    margin-top: 3%;
}
.services-header-text {
    width: 100%;
    text-align: center;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2%;
    margin-bottom: 2%;
    font-family: 'Oswald';
    color: #707070;
}
.service-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
}
.service-text-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.service-header-text {
    width: 100%;
    text-align: left;
    overflow-wrap: break-word;
    color: #C8203D;
    font-family: 'Inter';
    font-weight: bold;
}
.service-text {
    width: 100%;
    text-align: left;
    overflow-wrap: break-word;
    margin-top: 2%;
    color: #707070;
    font-family: 'Inter';
}
.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 2.5%;
    border: 1.5px solid #e7e7e7;
}

@media (min-width: 992px) {
    .services-header {
        width: 80%;
    }
    .services-header-text {
        font-size: min(4em, 4vw);
        line-height: 1.25em;
        max-height: 2.5em;
    }
    .service-container {
        flex-direction: row;
    }
    .half-column {
        width: 47.5%;
        margin: auto;
        padding: 2%;
    }
    .left-image {
        order: 1;
    }
    .right-image {
        order: 2;
    }
    .left-text {
       order: 1;
    }
    .right-text {
        order: 2;
    }
    .service-header-text {
        font-size: min(1.5em, 1.5vw);
    }
    .service-text {
        font-size: min(1.25em, 1.25vw);
    }
}

@media (max-width: 992px) {
    .services-header {
        width: 100%;
    }
    .services-header-text {
        font-size: min(8em, 8vw);
        line-height: 1.5em;
        max-height: 5em;
    }
    .service-container {
        flex-direction: column;
    }
    .half-column {
        width: 95%;
        padding: 2%;
    }
    .left-image {
        order: 1;
    }
    .right-image {
        order: 1;
    }
    .left-text {
       order: 2;
    }
    .right-text {
        order: 2;
    }
    .service-header-text {
        font-size: min(2.5em, 2.5vw);
    }
    .service-text {
        font-size: min(2em, 2vw);
        margin-bottom: 2%;
    }
}
