.warrenty_outside {
    display: flex;
}

.warrenty_text {
    margin-left: 1rem;
}

.flex_box {
    display: flex;
    justify-content: space-between;
    margin: 1.5em 0;
}

.warrenty_block {
    display: flex;
    flex-direction: column;
    flex: 0 49%;
}

.warrenty-title-area {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(148, 148, 148, 1);
    padding: 1rem;
}

.letter {
    margin: 0 0.3rem;
    font-size: 2.2rem;
    background-color: #004098;
    width: 50px;
    line-height: 50px;
    text-align: center;
}

.WARRANTY_box_title {
    font-size: 21px;
    color: #282828;
    margin: 0 0.3rem;
}

.WARRANTY_box {
    background-color: rgba(238, 238, 238, 0.8);
    padding: 2rem;
    height: 100%;
    color: #222;
}

.WARRANTY_box a:not(.warrenty-btn) {
    color: #004098;
}

.warrenty-btn {
    display: block;
    font-size: 18px;
    line-height: 3.5rem;
    color: #686868;
    border: 1px solid #686868;
    text-align: center;
    transition: 0.5s;
}

.warrenty-btn:hover {
    border: 1px solid #004098;
    background-color: #004098;
    color: #fff;
}


/* =========================== iPad =========================== */
@media screen and (min-width: 768px) and (max-width: 1050px) {

    .WARRANTY_box {
        padding: 1.5rem;
    }

    .warrenty-btn {
        color: #fff;
        border: 1px solid #004098;
        background-color: #004098;
    }
}


/* =========================== Mobile =========================== */
@media screen and (max-width: 767px) {
    .warrenty_outside {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .warrenty_img {
        margin: auto;
    }

    .warrenty_text {
        margin-left: 0;
    }

    .flex_box {
        display: flex;
        flex-direction: column;
        gap: 1em;
        margin: 1em 0;
    }

    .warrenty_block {
        flex: 0 100%;
    }

    .WARRANTY_box {
        padding: 1.5rem
    }

    .warrenty-btn {
        font-size: 16px;
        color: #fff;
        border: 1px solid #004098;
        background-color: #004098;
    }
}