.services__service-type__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 123px;
    overflow: hidden;
    padding-bottom: 185px;
    background-color: var(--color-secondary-200);
}

.service-type__description {
    display: flex;
    flex-direction: column;
}

.service-type__image-container {
    position: relative;
    align-self: center;
}

.service-type__image-container svg {
    position: absolute;
    left: 0;
    bottom: 0;
}

.service-type__text {
    margin: 0 28px;
    color: #E7E7E7;
    display: flex;
    flex-direction: column;
}

.service-type__text h2 {
    font: normal normal 600 22px/33px font-primary;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 50px;
}

.service-type__text p {
    font: normal normal 300 16px/30px font-primary;
    margin: 0;
}

.service-type__text p > span {
    font-weight: bold;
}

.service-type__lists {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-type__list {
    display: flex;
    flex-direction: column;
    transition: background-color 0.25s;
}

.service-type__list:hover {
    background-color: var(--color-opacity-primary-600-06);
}

.service-type__list:focus {
    background-color: var(--color-opacity-primary-600-18);
}

.service-type__list:active {
    background-color: var(--color-opacity-primary-600-08);
}

.service-type__list-root {
    height: 114px;
    padding-left: 66px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.service-type__list-root svg:first-child {
    width: 21px;
    height: 21px;
}

.service-type__list-root svg:last-child {
    width: 16px;
    fill: var(--color-primary-600);
    transition: transform 0.25s;
}

.service-type__list-root__svg--rotated {
    transform: rotate(90deg);
}

.service-type__list-root p {
    font: normal normal 300 16px/21px font-primary;
    text-transform: uppercase;
    color: var(--color-primary-600);
}

.service-type__list-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    padding-left: 105px;
    padding-bottom: 0;
    transition: 
        visibility 0.25s ease 0s, 
        opacity 0.25s ease-out 0s, 
        max-height 0.25s ease-out 0.25s, 
        padding-bottom 0.25s ease-out 0.25s;
}

.service-type__list-content--shown {
    max-height: 300px;
    padding-bottom: 93px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0.25s, 0.25s, 0s, 0s;
}

.service-type__list-content p {
    margin: 0;
    font: normal normal 300 14px/18px font-primary;
    color: var(--color-primary-600);
    text-align: left;
}

.service-type__lists hr {
    margin: 0;
    width: 100%;
    border-bottom-width: 0;
}

@media screen and (min-width: 768px) {
    .services__service-type__container {
        padding-bottom: 349px;
    }

    .service-type__description {
        position: relative;
        flex-direction: row;
        width: 100%;
    }

    .service-type__image-container {
        align-self: unset;
        position: absolute;
        top: 0;
        right: 128px;
        z-index: 0;
    }

    .service-type__text {
        width: 302px;
        margin: 0 0 0 128px;
        z-index: 1;
    }

    .service-type__text h2 {
        font: normal normal 600 30px/40px font-primary;
    }

    .service-type__text p {
        font: 18px/25px font-primary;
    }

    .service-type__list-root svg:first-child {
        width: 24px;
        height: 24px;
    }

    .service-type__list-root svg:last-child {
        width: 12px;
        height: 12px;
    }
}

@media screen and (min-width: 912px) {
    .services__service-type__container {
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 88px;
    }

    .service-type__description {
        margin-top: 80px;
        padding: 0;
    }

    .service-type__image-container {
        left: 234px;
    }

    .service-type__text {
        margin: 0;
    }

    .service-type__text h2 {
        width: -moz-fit-content;
        width: fit-content;
    }

    .service-type__lists {
        max-width: 900px;
    }

    .service-type__list-root {
        padding-left: 81px;
    }

    .service-type__list-content {
        padding-left: 128px;
    }
}

@media screen and (min-width: 1200px) {
    .services__service-type__container {
        gap: 116px;
    }

    .service-type__image-container {
        left: unset;
        right: -80px;
    }

    .service-type__text h2 {
        margin-bottom: 70px;
    }

    .service-type__text p {
        width: 383px;
    }

    .service-type__list-root {
        gap: 21px;
    }

    .service-type__list-root p {
        font: normal normal 300 18px/24px font-primary;
    }

    .service-type__list-content p {
        font: normal normal 300 16px/21px font-primary;
    }
}

@media screen and (min-width: 1400px) {
    .services__service-type__container {
        gap: 126px;
    }

    .mobile-apps__image-container {
        left: 500px;
        right: unset;
    }

    .service-type__text {
        width: 500px;
    }

    .service-type__text h2 {
        font: normal normal 600 50px/66px font-primary;
        margin-bottom: 90px;
    }

    .service-type__text p {
        font: 21px/40px font-primary;
        width: 100%;
    }

    .service-type__list-root {
        padding-left: 148px;
        gap: 30px;
        height: 204px;
    }

    .service-type__list-root svg:first-child {
        width: 31px;
        height: 31px;
    }

    .service-type__list-root svg:last-child {
        width: 15px;
        height: 15px;
    }

    .service-type__list-root p {
        font: normal normal 300 21px/28px font-primary;
    }

    .service-type__list-content {
        padding-left: 209px;
    }

    .service-type__list-content p {
        font: normal normal 300 18px/24px font-primary;
    }
}