

section.header,
footer {
    background-color: white;
}

section.services {
    padding: 50px calc((100% - 1100px)/ 2);
    padding-bottom: 150px;
    background-color: white;
}

section.services h2 {
    text-align: center;
    font-size: 45px;
    color: rgba(0, 0, 0, 0.7);
}

section.services h2 {
    font-weight: 700;
}

section.services div.wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 50px;
}

section.services div.wrap article {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 5%;
}

section.services div.wrap article div.image {
    width: 49.8%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 596px;
}

section.services div.wrap article:nth-of-type(odd) div.image {
    order: 1;
}

section.services div.wrap article div.content {
    width: 49.8%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
    position: relative;
    background-color: #202238;
}

section.services div.wrap article div.content div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
}

section.services div.wrap article div.content div h3 {
    color: white;
    font-size: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    padding-bottom: 0.3em;
}

section.services div.wrap article div.content div p {
    color: white;
    font-size: 16px;
    line-height: 22px;
}