body {
    font-family: "CharterITC";
}

section {
    margin-bottom: 100px;
}

@media (max-width: 990px) {
    section {
        margin-bottom: 50px;
    }
}

.service-header {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 140px;
}

.service__header-left {
    width: 100%;
    padding-left: 20px;
}

.serivce-header-left-title {
    margin-bottom: 40px;
    width: 100%;
    font-weight: 400;
    font-size: 48px;
    line-height: 115%;
}

.service-header-left-button.mobile {
    display: none;
}

@media (max-width: 990px) {
    .service-header {
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .serivce-header-left-title {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .service__header-right {
        max-width: 100%;
        padding: 10px 20px;
        margin-bottom: 0;
    }

    .service-header-left-button {
        margin-top: 40px;
    }

    .service-header-left-button.desktop {
        display: none;
    }

    .service-header-left-button.mobile {
        display: block;
    }
}

/* Задачи горячей линии */
.service-hotline-title {
    font-size: 48px;
    line-height: 115%;
    margin-bottom: 20px;
    padding-top: 50px;
    padding-left: 20px;
}

.service-hotline-block {
    display: flex;
}

.service-hotline-list {
    display: flex;
}

.service-hotline-list-item {
    padding: 59px 20px;
    flex: 25%;
}

.service-hotline-list-item-number {
    font-size: 100px;
    color: #50BD4E;
    margin-bottom: 20px;
}

.service-hotline-list-item-description {
    font-size: 19px;
    line-height: 105%;
    color: #000;
}

@media (max-width: 990px) {
    .service-hotline-list {
        flex-wrap: wrap;
    }

    .service-hotline-title {
        font-size: 24px;
        padding-right: 20px;
    }

    .service-hotline-list-item {
        flex: 100%;
        padding: 30px 20px;
    }
}

/* Кейсы */
.service-case {
    display: flex;
    flex-wrap: wrap;
}

.service-case-title {
    font-size: 48px;
    line-height: 115%;
    margin-bottom: 20px;
    padding-top: 50px;
    padding-left: 20px;
}

.service-case-list.mobile {
    display: none;
}

.service-case-list {
    display: flex;
    width: 100%;
}

.service-case-list-item {
    display: flex;
    flex-wrap: wrap;
    width: 25%;
}

.service-case-list-item-text {
    height: 100px;
    display: flex;
    width: 100%;
    position: relative;
}

.service-case-list.desktop .service-case-list-item-text {
    background-color: #50BD4E;
}

.service-case-list.desktop .service-case-list-item:nth-child(2n) .service-case-list-item-text {
    background-color: #4A4A4A;
}

.service-case-list.mobile .service-case-list-item-text {
    background-color: #4A4A4A;
}

.service-case-list.mobile a:first-child .service-case-list-item-text,
.service-case-list.mobile a:last-child .service-case-list-item-text {
    background-color: #50BD4E;
}

.service-case-list-item-text span {
    width: 90%;
    font-size: 18px;
    color: #fff;
    padding: 15px 20px;
}

.service-case-list-item-text svg {
    position: absolute;
    height: 20px;
    right: 10px;
    top: 15px;
    fill: #4A4A4A;
}

.service-case-list-item:nth-child(2n) .service-case-list-item-text svg {
    fill: #50BD4E;
}

.service-case-list-item-image {
    height: 360px;
    width: 100%;
}

.service-case-list-item-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 990px) {
    .service-case-title {
        font-size: 24px;
    }

    .service-case-list.desktop {
        display: none;
    }

    .service-case-list.mobile {
        display: flex;
    }

    .service-case-list {
        flex-wrap: wrap;
    }

    .service-case-list-item {
        flex: 50%;
    }

    .service-case-list-item-text span {
        font-size: 12px;
        padding: 15px 10px 15px 20px;
    }
    
    .service-case-list-item-text svg {
        right: 5px;
    }
}