.hero {
    width: 100%;
    background: #F5F5F2;
    padding: 80px 0;
    position: relative;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.hero .wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;

}

.working-day-img {
    width: 200px;
    height: 200px;
}

.hero-right-title {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    color: #294F9B;
    margin-bottom: 37px;

}

.hero-right-title span {
    color: #0B2156;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.hero-right-desc {
    text-align: center;
    margin-bottom: 57px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 166.667% */
    color: #333;
}

.hero-right-btn {

    margin: 0 auto;
    margin-bottom: 24px;
    height: 48px;
    width: fit-content;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #F6BB3A;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    cursor: pointer;
}

.hero-right-btn p {

    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;

}

.hero-right-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.hero-right-link a {
    color: #294F9B;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.pattern-left {
    display: none;
}

.pattern-right {
    display: none;
}

.solution {
    padding: 40px 36px;
}

.solution-container {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 16px;
}

.solution-title p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    color: #000;
}

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    width: 56px;
    height: 56px;
    background: white;
}

.solution-item-title {
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.solution-item-content {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

@media (min-width: 1280px) {
    .working-day-img {
        width: 400px;
        height: 400px;
    }

    .hero .wrapper {
        max-width: 1029px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 80px;

    }

    .hero-right-title {
        font-size: 36px;
        text-align: start;

    }

    .hero-right-title span {
        font-size: 36px;
    }

    .hero-right-desc {
        text-align: start;
        font-size: 18px;
    }

    .hero-right-btn {

        margin: 0;
        margin-bottom: 24px;

    }

    .hero-right-link {

        justify-content: start;

    }

    .pattern-left {
        display: block;
        position: absolute;
        top: -46px;
        left: -144px;
    }

    .pattern-right {
        display: block;
        position: absolute;
        bottom: -46px;
        right: -144px;
    }

    .solution {
        padding: 80px 0;
    }

    .solution-container {
        max-width: 1029px;
        margin: 0 auto;
        margin-top: 44px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 36px;
    }

    .solution-title p {
        max-width: 635px;
        margin: 0 auto;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
        text-align: center;
        color: #000;
    }

    .solution-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        width: 56px;
        height: 56px;
        background: white;
    }

    .solution-item-title {
        margin-top: 16px;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
    }

    .solution-item-content {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
