/* Service List */
.technology-element {
    background-color: var(--color-background-light-gray);
}

.technology {
    display: flex;
    gap: 80px;
    padding: 80px 0;
    align-items: center;
}

.technology-element {
    padding: 50px 0;
}

.technology .logo {
    text-align: center;
    width: 15%;
}

.technology .text {
    width: 85%;
}

.technology .logo img {
    width: 40%;
    margin-bottom: 24px;
}

.technology .text h4 {
    margin-bottom: 24px;
}

.technology .text .description p {
    font-size: 16px;
    font-family: "Montserrat Regular", sans-serif;
    font-weight: 400;
    line-height: 125%;
    margin-bottom: 8px;
}

.technology-element.bc-white {
    background-color: var(--color-white);
}

@media screen and (min-width: 1080px) {
    .technology .logo {
        align-self: center;
        margin-bottom: 0;
    }

    .technology .logo img {
        width: 100%;
    }
}

@media screen and (max-width: 1079px) {
    .technology {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 64px 32px;
    }

    .technology .logo {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .technology {
        align-items: center;
        padding: 56px 0;
        gap: 32px;
    }
    .technology .logo {
        width: 100%;
    }
    .technology .text {
        width: 100%;
    }
}
