/* Service */
.container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.service {
    margin: 40px 0;
    display: flex;
    gap: 24px;
    justify-content: space-evenly;
}

.service_item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service_item img {
    width: 48px;
    height: 48px;
}
.service_item_text {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 2px;
}
.service_item_title {
    color: var(--text-heading-primary, #0e1525);
    text-align: center;

    /* CaptionLarge/Semibold */
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    margin-bottom: 6px;
}
.service_item_description {
    color: var(--text-placeholder, #626771);
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; 
}
.sidebar_widgets{
    border-right: 1px solid var(--color-stroke);
    background: var(--color-white);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 20px;
}
/* ---------- 1440px ---------- */
@media (max-width: 1440px) {

}

/* ---------- 1280px ---------- */
@media (max-width: 1280px) {
}

/* ---------- 1024px ---------- */
@media (max-width: 1024px) {
    .service_item{
        flex-direction: column;
    } 
    .service_item_text{
        align-items: center;
    }
    .service_item_title {
        font-size: 16px;
    }
    .service_item_description {
        font-size: 14px;
    }
}

/* ---------- 768px ---------- */
@media (max-width: 767px) {
    .sidebar_widgets{
        margin-top: 0px;
        border-right: initial;
        background: initial;
        box-shadow:initial;
    }
}

/* ---------- 520px ---------- */
@media (max-width: 520px) {
    .service_item_title {
        font-size: 14px;
    }
    .service_item_description {
        font-size: 12px;
    }
}
