.upb {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    background: #F8F9F9;
    
}

.upb .container {
    width: 100%;
}

.upb_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upb_main-info {
    max-width: 50%;
}

.upb_main-info h1 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -.015em;
    color: #282d3c;
}

.upb_main-info p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -.01em;
    color: #8c94a8;
}

.upb_main-info button {
    font-size: 16px;
    line-height: 20px;
}
    
.upb_main img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
}

.upb_sub {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}
.upb_sub li {
    display: flex;
    align-items: center;
    width: calc(25% - 24px);
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
    border: 1px solid #eaebea;
}

.upb_sub li img {
    border-radius: 50%;
    margin-bottom: 10px;
}
.upb_sub svg {
    width: 64px;
    height: 64px;
    margin-right: 20px;
    fill: var(--color-main);
}

.upb_sub-text {
    text-align: center;
}

.upb_sub-text p:first-child {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1;
    min-height: 32px;
}

.upb_sub-text p:last-child {
    font-size: 14px;
    line-height: 18px;
    color: #8c94a8;
    letter-spacing: -.01em;
    min-height: 60px;
}

@media (max-width: 940px) {
.upb_main img {
    display: none;
}

.upb_main-info {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upb_main {
    justify-content: center;
}

.upb_main {
    flex-wrap: wrap;
}
}

@media (max-width: 1023px) and  (min-width: 820px){
    .upb_sub li {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .upb_sub svg {
        margin-right: 0;
    }

    .upb_sub-text {
        width: 100%;
        margin-top: 10px;
    }
}
@media (max-width: 819px) { 
    .upb_sub {
        flex-wrap: wrap;
    }
    .upb_sub li {
        width: 46%;
        margin: 12px;
        background: #F8F9F9;
    }

    .upb_sub {
        background: #fff;
        border-radius: 10px 10px 0 0;
        margin: 20px -5px 0 -5px;
        padding: 6px 0;
    }

    .upb {
        padding-bottom: 0;
    }
}

@media (max-width: 605px) and (min-width: 486px) {
    .upb_sub li {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        width: 45%;
    }
    .upb_sub svg {
        margin-right: 0;
    }
    .upb_sub-text {
        width: 100%;
        margin-top: 10px;
    }
 }

 @media (max-width: 485px) {
    .upb_sub li {
        width: 100%;
    }

    .upb_sub {
        justify-content: center;
    }
 }

 @media (max-width: 735px) { 
    .upb_main-info {
        max-width: 100%;
        text-align: center;
    }

    
 }

 .upb .brd {
    background:#F8F9F9 !important;
 }