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

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

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

section.activities h2 {
    font-weight: 600;
}

section.activities h2 strong {
    font-weight: 700;
}

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

section.activities div.wrap article {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    color: white;
    position: relative;
    height: calc(552px - 155px);
    margin-bottom: 7%;
}

body.ar section.activities div.wrap article {
    height: calc(575px - 155px);
}

body.en section.activities div.wrap article {
    justify-content: flex-start;
    height: calc(552px - 0px);
}

section.activities div.wrap article:nth-of-type(even) {
    justify-content: flex-start;
}

body.en section.activities div.wrap article:nth-of-type(even) {
    justify-content: flex-end;
}

section.activities div.wrap article.dark {
    background-color: #202238;
}

section.activities div.wrap article.light {
    background-color: #3a8fd7;
}

section.activities div.wrap article div.content {
    width: 50%;
    position: relative;
}

body.ar section.activities div.wrap article div.content {
    width: 55%;
}

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

body.ar section.activities div.wrap article div.content div {
    width: 95%;
}

section.activities div.wrap article div.content h3 {
    color: white;
    font-size: 30px;
    padding-bottom: 0.3em;
}

body.en section.activities div.wrap article div.content h3 {
    line-height: 33px;
}

section.activities div.wrap article div.content div p {
    color: white;
    font-size: 16px;
    line-height: 22px;
    margin: 0.5em 0em;
}

section.activities div.wrap article div.image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    width: 45%;
    height: 552px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

section.activities div.wrap article:nth-of-type(even) div.image {
    right: auto;
    left: 0;
}