.intro {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.intro > h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-style: italic;
    margin-bottom: 50px;
}

.intro > div {
    padding: 50px;
    border-radius: 30px;
    width: 1200px;
    background-image: linear-gradient(to bottom, var(--color-red) 0%, var(--color-red-dark) 100%);
    margin-bottom: 50px;
}

.intro > div * {
    color: var(--color-white);
}

.faq {
    width: 90%;
    margin-left: 5%;
    background-color: var(--color-blue);
    border-radius: 30px;
    border-left: 40px solid var(--color-blue);
    border-right: 40px solid var(--color-blue);
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq > h2 {
    display: none;
}

.faq > div {
    position: absolute;
    margin-bottom: 0;
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 20px;
}

.faq > div > h3 {
    font-size: 18px;
    padding: 0 40px 0 0;
    font-style: italic;
    cursor: pointer;
    transition: 0.2s ease all;
    --webkit-transition: 0.2s ease all;
}

.faq > div > div {
    overflow: hidden;
    height: 0;
    opacity: 0;
    font-size: 14px;
    transition: height 0.4s ease, opacity 0.4s ease;
    padding-right: 20px;
}

.faq > div > div * {
    font-size: 14px;
}

.faq > div > div a {
    color: var(--color-red);
}

.faq > div.visible > div {
    opacity: 1;
}

.faq > span {
    display: none;
}

.faq > div > i {
    color: var(--color-red);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -9px;
    cursor: pointer;
    font-size: 18px;
}

.module-services {
    margin-top: 0;
}

.developers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 50px;
}

.developers > span {
    width: 45%;
    overflow: hidden;
    height: 400px;
    border-radius: 30px;
}

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

.developers > div {
    width: 65%;
    padding: 0 0 0 100px;
}

.developers h2 {
    font-size: 26px;
    margin-bottom: 50px;
}

.developers p {
    margin-bottom: 30px;
    font-size: 14px;
}

.other {
    border-radius: 30px;
    background-image: linear-gradient(to bottom, var(--color-red) 0%, var(--color-red-dark) 100%);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10%;
    padding: 0 50px;
    margin-bottom: 50px;
}

.other::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/waves.webp');
    background-position: top center;
    background-size: cover;
    border-radius: 30px;
}

.other > h2 {
    width: 100%;
    font-size: 36px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.other > h3 {
    width: 100%;
    font-size: 20px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.other > div {
    width: 45%;
    margin-bottom: 30px;
}

.other > div > p {
    font-size: 14px;
}

.other > div > h3 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.other > div * {
    color: var(--color-white);
}

@media screen and (min-width: 800px) {
    .faq > span > a:hover {
        color: var(--color-red);
        background-color: var(--color-white);
    }
    .faq > div > h3:hover {
        color: var(--color-red);
    }
    .faq > div > div a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 1200px) {
    .intro > div {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .intro > h2 {
        font-size: 26px;
    }
    .intro > div {
        padding: 10px;
    }
    .faq {
        width: 100%;
        margin-left: 0;
    }
    .developers {
        flex-direction: column;
        padding: 0;
    }
    .developers > span, .developers > div, .developers > span > video {
        width: 100%;
    }
    .developers > div {
        padding: 0;
    }
    .developers a {
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .developers > div {
        display: flex;
        flex-direction: column;
    }
    .developers h2 {
        margin-bottom: 0;
    }
    .developers > span {
        height: 200px;
    }
    .other > h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .other > div {
        width: 100%;
    }
    .other {
        padding: 10px;
    }
    .faq > div > i {
        margin-top: 10px;
        top: 0;
        right: 10px;
    }
    .faq {
        padding-top: 10px;
        border-left: 10px solid var(--color-blue);
        border-right: 10px solid var(--color-blue);
        border-radius: 10px;
    }
}