.section1 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    padding: 50px 100px
}

.section1 > h2 {
    margin: 0;
    padding: 0;
    font-size: 42px;
    color: var(--color-main);
}

.section1 li {
    line-height: 36px;
}

.module-hero .special, .section4 .special {
    position: absolute;
    width: 3px;
    background-color: var(--color-main);
    height: 200px;
    display: block;
    bottom: 0;
    right: 0;
    margin-right: 100px;
    margin-bottom: -200px;
    z-index: 1;
}

.module-hero .special::before, .section4 .special::before {
    content: " ";
    position: absolute;
    bottom: -5px;
    left: -6px;
    width: 16px;
    height: 16px;
    background-color: var(--color-main);
    border-radius: 16px;
}

.section2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 100px;
    background-color: var(--color-main);
    margin-bottom: 100px;
}

.section2 * {
    color: white;
}

.section2 > h2 {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
    font-size: 42px;
}

.section2 li {
    line-height: 32px;
}

.section2 > div {
    padding-left: 50px;
    border-left: 3px solid white;
}

.section2 > div:nth-child(2) {
    margin-right: 250px;
}

.section2 h3 {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.section2 ul {
    margin: 0;
}

.section3 {
    width: 100%;
    padding: 0 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.section3 > div {
    width: 50%;
}

.section3 > div:nth-child(1), .section3 > div:nth-child(2) {
    margin-bottom: 100px;
}

.section3 > div > h2 {
    margin: 0;
    padding: 0;
    color: var(--color-main);
    font-size: 42px;
}

.section3 > div > p {
    font-size: 20px;
    margin: 30px 0;
}

.section3 > div h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.section3 > div li {
    line-height: 32px;
}

.section3 > div > div {
    display: inline-flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 40%;
}

.section3 > span {
    position: absolute;
    background-color: var(--color-main);
    height: 100%;
    width: 200px;
    right: 0;
    top: 0;
}

.section3 > span > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section4 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 50px 100px;
    margin-bottom: 100px;
    background-color: var(--color-main);
}

.section4 * {
    margin: 0;
    padding: 0;
    color: white;
}

.section4 h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.section4 > div.right {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-end;
}

.section4 h3 {
    font-size: 16px;
}

.section4 h4 {
    margin-top: auto;
    font-style: italic;
    font-size: 26px;
    text-align: right;
}

.section4 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.section4 a > p {
    margin-left: 10px;
}

.section4 a > img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.section4 li {
    line-height: 32px;
    padding-left: 10px;
}

.section4 ol {
    margin-left: 20px;
}

.section5 {
    width: 100%;
    padding: 0 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
    margin-bottom: 100px;
}

.section5 > div {
    width: 50%;
}

.section5 > div li {
    line-height: 32px;
}

@media screen and (max-width: 1500px) {
    .section3 > div { width: 45%; padding: 0 20px 0 0; }
    .section3 > div > h2 { font-size: 36px; }
    .section3 > div > p { font-size: 16px; }
}

@media screen and (max-width: 900px) {
    .section1 { padding: 20px; }
    .section2 { padding: 50px 20px; margin-bottom: 50px; }
    .section1 > h2, .section2 > h2, .section3 > div > h2 { font-size: 32px; }
    .section2 > div:nth-child(2) { margin-right: 0; margin-bottom: 50px; }
    .section2 > div { width: 100%; }
    .section2 h3 { font-size: 24px; }
    .section3 > span { display: none; }
    .section3 { padding: 0 20px; }
    .section3 > div { width: 100%; padding: 0; }
    .section3 > div:nth-child(1), .section3 > div:nth-child(2), .section3 > div:nth-child(3) { margin-bottom: 100px; }
    .section3 > div > p { font-size: 20px; }
    .section3 > div > div { width: 100%; }
    .section4 { padding: 50px 20px; flex-direction: column; margin-bottom: 50px; }
    .section4 h2 { font-size: 32px; }
    .section4 > div.right { margin-top: 50px; align-items: flex-start; margin-left: 0; }
    .section4 h3 { font-size: 24px; }
    .section4 h4 { margin-top: 50px; text-align: center; font-size: 16px; width: 100%; }
    .section4 .special { display: none; }
    .section5 { flex-direction: column; padding: 0 20px; }
    .section5 h3 { font-size: 24px; }
    .section5 > div { width: 100%; }
}