@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* font-family: 'Roboto', sans-serif; */

body {
    margin: 0;
    width: 100%;
    padding: 0;
    letter-spacing: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
}

.page-container {
    height: 100%;
    overflow-y: auto;
}

.page-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px;
}

.visual-box {
    width: 50%;
    text-align: center;
    margin-bottom: 30px;
}

.box-img {
    padding: 0 20px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.box-img img {
    max-width: 200px;
    max-height: 130px;
    margin: 0 auto;
}

.visual-box p {
    padding: 0 20px;
    margin: 20px 0 0;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.visual-box button {
    padding: 8px 12px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    outline: 0;
    border: none;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .page-inner {
        justify-content: unset;
        align-items: center;
        flex-direction: column;
        padding: 20px;
    }
    .visual-box {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #b0acac;
    }
    .box-img {
        padding: 0 16px;
        height: 110px;
    }
    .box-img img {
        max-height: 110px;
    }
    .visual-box p {
        padding: 0 8px;
    }
}

@media only screen and (max-width: 575px) {
    .visual-box button {
        font-size: 12px;
    }
}