.module-hero .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 {
    content: " ";
    position: absolute;
    bottom: -5px;
    left: -6px;
    width: 16px;
    height: 16px;
    background-color: var(--color-main);
    border-radius: 16px;
}

.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;
}

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

.section2 > h2 {
    width: 100%;
    color: white;
    font-size: 32px;
    margin: 0;
    padding: 30px 30px;
    background-color: var(--color-main);
    border-radius: 100px;
    margin-bottom: 50px;
    text-align: center;
}

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

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

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

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

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

.section3 > div.right {
    display: inline-flex;
    width: 50%;
    margin-left: auto;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
}

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

.section3 > div.right > span {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,9,33,0.3);
}

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

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

.section3 li {
    line-height: 32px;
    margin-left: 10px;
}

.section3 ul {
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.section3 h3 {
    color: var(--color-gray);
    margin-top: 50px;
    font-style: italic;
    font-size: 26px;
    font-weight: 500;
}

.section3 a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
    padding: 16px 20px;
    border-radius: 50px;
    border: 2px dotted black;
    margin-top: 30px;
    width: 320px;
}

.section3 a * {
    color: black;
    font-weight: 600;
}

.section3 a > p {
    margin: 0;
    padding: 0;
}

.section3 a > i {
    margin-left: 20px;
}

.section4 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 100px;
    margin-bottom: 100px;
}

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

.section4 > img {
    width: 128px;
    height: 64px;
    object-fit: contain;
}

@media screen and (max-width: 900px) {
    .section1 { padding: 20px; }
    .section1 > h2, .section3 h2 { font-size: 32px; }
    .section2 { padding: 0 20px; margin-top: 50px; margin-bottom: 0; }
    .section2 > h2 { border-radius: 0; font-size: 32px; text-align: left; color: var(--color-main); background-color: white; padding: 0; }
    .section2 > div { width: 100%; }
    .section2 > div > h3 { font-size: 24px; }
    .section3 { padding: 0; margin-bottom: 50px; display: grid; grid-template-areas: 
        "image"
        "text"; }
    .section3 > div.left { width: 100%; padding: 0 20px; grid-area: text; }
    .section3 > div > p { margin: 0; font-size: 20px; margin-top: 30px; margin-bottom: 20px; }
    .section3 h2 { margin-top: 20px; }
    .section3 a { width: 100%; align-items: center; justify-content: center; }
    .section3 h3 { font-size: 16px; width: 100%; text-align: center; }
    .section3 > div.right { width: 100%; border-top-left-radius: 0; border-bottom-left-radius: 0; grid-area: image; }
    .section4 { padding: 0 20px; }
}