:root {
    --Text-invert: #ffffff;
    --Text-brand-primary: #0a59ab;
    --Text-brand-secondary: #f1592b;
    --Text-primary: #101010;
    --Text-secondary: #606060;
}

.container-full > .container {
    max-width: 100%;
}

.SolutionService-1 {
    padding: 0;
}

.solution {
    background-color: #f5fafe;
}

.solution-warpper {
    display: flex;
    flex-direction: column-reverse;
    padding: 12px 0 24px 0;
}

.solution-info {
}

.solution .solution-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 20px;
    color: #0a59ab;
    font-size: 24px;
    font-family: 'Merriweather', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    overflow: hidden;
}

.solution .solution-description {
    color: var(--Text-primary);
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 20px;
}

.solution .solution-image {
    margin-bottom: 24px;
}

.solution .solution-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.solution .solution-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution .solution-contact .phone-number {
}

.solution .solution-contact .phone-number span {
    color: var(--Text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
}

.solution .solution-contact .phone-number p {
    margin-bottom: 0;
    font-family: 'Merriweather', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--Text-brand-primary);
}

.service {
    padding: 40px 0;
    color: var(--Text-primary);
}

.service .solution-title {
    font-size: 20px;
    font-family: 'Merriweather', 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: 700;
    color: var(--Text-primary);
    margin-bottom: 24px;
}

.service .service-desc {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.service .service-list {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
    line-height: normal;
}

.service .service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.service .service-list li:last-of-type {
    margin-bottom: 0;
}

.service .service-list li .icon-check {
}

.service .service-list li .service-name {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.service .service-content p:last-of-type {
    margin: 0;
    padding: 0;
}

.contact {
    padding-bottom: 40px;
}

.contact-wrapper {
    padding: 24px;
    border: 1px solid #e5e5e5;
}

.contact-title {
    font-family: 'Merriweather', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.33;
    color: var(--Text-brand-primary);
    margin-bottom: 16px;
}

.contact-content {
    color: var(--Text-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.contact-content p {
    padding: 0;
    margin-bottom: 0;
}

.related-solutions {
    margin-bottom: 80px;
}

.related-title {
    color: var(--Text-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Merriweather', 'Inter', sans-serif;
    margin-bottom: 24px;
}

.related-solutions ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.related-solutions ul li {
    flex-basis: 100%;
}

.related-solutions ul li a {
    display: flex;
    gap: 12px;
    flex-direction: column;
    max-width: 315px;
    margin: 0 auto;
}

.related-solutions ul li .image {
    border: 1px solid #daecfb;
    border-radius: 0 0 32px 0;
    -webkit-border-radius: 0 0 32px 0;
    -moz-border-radius: 0 0 32px 0;
    -ms-border-radius: 0 0 32px 0;
    -o-border-radius: 0 0 32px 0;
    overflow: hidden;
    padding: 18px 55px;
    background-color: #f5fafe;
}

.related-solutions ul .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.related-solutions ul li .solution-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .solution-warpper {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        padding: 12px 0;
    }

    .solution .solution-info {
        flex: 1;
        padding-right: 40px;
    }

    .solution .solution-title {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .solution .solution-description {
        margin-bottom: 24px;
    }

    .solution .solution-image {
        flex-basis: 50%;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .solution .solution-image > div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service .service-desc,
    .service .service-list li .service-name {
        font-size: 16px;
    }

    .related-solutions ul li {
        flex-basis: calc((100% - 32px * 2) / 3);
    }

    .related-solutions ul li a {
        max-width: none;
    }
}

@media (min-width: 992px) {
    .service .container,
    .related-solutions .container,
    .contact .container {
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .solution .solution-warpper {
        height: 400px;
        max-height: 400px;
    }

    .solution .solution-title {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .solution .solution-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .solution .solution-image {
        height: 100%;
        max-height: 100%;
    }

    .solution .solution-image > div {
        height: 100%;
        max-height: 100%;
    }

    .solution .solution-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .service .service-desc,
    .service .service-list li .service-name {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .solution .solution-title {
        font-size: 32px;
    }

    .contact-content,
    .solution .solution-description {
        font-size: 18px;
    }

    .service,
    .contact {
        padding-bottom: 80px;
    }
}

@media (min-width: 1400px) {
    .solution .solution-warpper {
        height: 500px;
        max-height: 500px;
    }

    .solution .solution-description {
        margin-bottom: 32px;
    }
}
