/* ===========================
   ======== MBOX-SECTION =====
   =========================== */

main {
    background-color: #ecf9fd;
}

.mbox-d1 {
    padding: 2em 2em 2em 10em;
}

.mbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
}

.mbox-title {
    font-size: 1em;
    margin: 1em 0;
}

.mbox-content {
    width: 60%;
}

.mbox-content>h1 {
    font-size: 1.5em;
    font-weight: 800;
    margin: 0.2em 0;
}

.mb-p {
    font-size: 1em;
    font-weight: 400;
}

.mbox-ul {
    padding: 1em 0;
    font-size: 1em;
    font-weight: 700;
    list-style: none;
}

.mbox-ul>li::before {
    content: "✔️";
    padding-bottom: 0.2em;
}

.mbox-btn-grp {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 1em;
    padding: 1em 0;
}

.mbox-btn1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
    background-color: #099e44;
    padding: 0.7em 0.8em;
    border-radius: 0.2em;
    color: white;
    font-size: 1em;
    font-weight: 700;
}

.mbox-btn1>div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.btn1-sp2 {
    font-size: 0.7em;
    font-weight: 500;
}

.mbox-btn2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 1em 1em;
    border-radius: 0.2em;
    color: #db640e;
    border: 2px solid #db640e;
    font-size: 1.1em;
    font-weight: 400;
}

.mbox-btn2:hoveR {
    background-color: #db640e;
    color: white;
}

.mbox-btn2>img:hoveR {
    background-color: #db640e;
    color: white;
}
.badges{
    display: flex; 
    gap: 1em; 
    align-items: center; 
    justify-items: center;
}

.mbox-img{
    display: flex;
    align-items: center;
    justify-content: left;  
    width: 40%;
}
.mbox-img>img {
    width: 14em;
    transition: transform 0.3s ease-in-out;
}

.mbox-img>img:hover {
    transform: scale(1.2);
}

.mbox-desc {
    font-size: 0.7em;
    width: 70%;
    font-weight: 500;
}

@media (max-width: 1440px) {
    .mb-p {
        font-size: 1rem;
    }
    .mbox-ul {
        font-size: 1rem;
    }
    .mbox-d1 {
        padding: 0 2em 2em 10em;
    }
    .mbox-title {
        margin:0 0;
    }
    .mbox-container {
        align-items: start;
    }
    .mbox-desc {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .mbox-d1 {
        padding: 1em;
    }
    .mbox-title {
        margin:0;
    }

    .mbox-content {
        width: 100%;
    }

    .mbox-img>img {
        width: 100%;
        max-width: 20em;
        margin: auto;
    }

    .mbox-btn-grp {
        flex-direction: row;
        align-items: center;
    }
    .mbox-ul {
        font-size: 0.7em;
    }

    .mbox-content>h1 {
        font-size: 1.3em;
    }

    .mb-p {
        font-size: 0.7em;
    }

    .mbox-desc {
        width: 100%;
        font-size: 0.75em;
    }
}

@media (max-width: 768px) {
    .mbox-d1 {
        padding: 0 1em 1em 1em;
    }
    .mbox-img>img {
        display: none;
    }

    .mbox-container {
        flex-direction: column;
        gap:0em;
    }

    .mbox-content>h1 {
        font-size: 1.2em;
    }

    .mb-p {
        font-size: 0.7em;
    }

    .mbox-ul {
        font-size: 0.7em;
    }

    .mbox-btn-grp {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .mbox-btn1,
    .mbox-btn2 {
        font-size: 0.95em;
        padding: 0.6em 1em;
    }

    .btn1-sp2 {
        font-size: 0.65em;
    }

    .mbox-img>img {
        width: 100%;
        height: 20em;
        max-width: 18em;
    }

    .mbox-desc {
        font-size: 0.7em;
        padding-right: 0;
    }
}

@media (max-width:468px) {
    .mb-p {
        font-size: 0.7rem;
    }
    .mbox-ul {
        font-size: 0.7rem;
    }
    .mbox-img>img {
        display: none;
    }
    .mbox-desc {
        width: 100%;
        font-size: 0.7rem;
    }
    .mbox-btn-grp{
        font-size: 1rem;
    }
}