/* ===========================
   Parent Section
=========================== */

.powered-by-section {
    width: 100%;
    margin: 8px 0;
}

/* ===========================
   Box
=========================== */

.powered-by-section .powered-by-box {
    background: #f8c89b;
    border: 2px solid #d62d2d;
    border-radius: 12px;
    text-align: center;
    padding: 12px 15px;
}

/* ===========================
   Heading
=========================== */

.powered-by-section .powered-by-box h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}

/* ===========================
   Copyright
=========================== */

.powered-by-section .powered-by-box p {
    margin: 5px 0 8px;
    font-size: 12px;
    color: #000;
}

/* ===========================
   Footer Links
=========================== */

.powered-by-section .powered-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.powered-by-section .powered-links a {
    color: #0000cc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.powered-by-section .powered-links span {
    color: #000;
    font-size: 11px;
}

.powered-by-section .powered-links a:hover {
    text-decoration: underline;
}

/* ===========================
   Responsive
=========================== */

@media (max-width:991px){

    .powered-by-section .powered-by-box h2{
        font-size:22px;
    }

    .powered-by-section .powered-by-box p{
        font-size:11px;
    }

    .powered-by-section .powered-links a{
        font-size:11px;
    }

}

@media (max-width:767px){

    .powered-by-section .powered-by-box{
        padding:10px;
    }

    .powered-by-section .powered-by-box h2{
        font-size:18px;
    }

    .powered-by-section .powered-by-box p{
        font-size:10px;
    }

    .powered-by-section .powered-links{
        gap:3px;
    }

    .powered-by-section .powered-links a{
        font-size:10px;
    }

}

@media (max-width:480px){

    .powered-by-section .powered-by-box h2{
        font-size:15px;
    }

    .powered-by-section .powered-by-box p{
        font-size:9px;
    }

    .powered-by-section .powered-links a{
        font-size:9px;
    }

}