.banner {
    width: 100%;
    color: #fff;
    position: relative;
}

.banner_bg {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner .container {
    position: absolute;
    top: 4.25rem; /* 170px */
    left: 5.75rem; /* 230px */
    width: 45%;
    height: auto;
}

.banner h1 {
    font-size: 1.4rem; /* 56px */
    font-family: "MiSans Bold";
    margin-bottom: 0.875rem; /* 35px */
    font-weight: 700;
    text-shadow: 0 0.1rem 0.25rem #0c4397;
}

.banner p {
    font-size: 0.75rem; /* 30px */
    margin-bottom: 0.625rem; /* 25px */
    text-shadow: 0 0.05rem 0.15rem #083881;
}

@media screen and (max-width: 1528px) {
    .banner .container {
        top: 3.5rem; /* 140px */
    }

    .banner p {
        -webkit-line-clamp: 3;
    }
}

.cta-button {
    width: 5.5rem; /* 220px */
    height: 1.25rem; /* 50px */
    background-color: #00c853;
    color: #fff;
    border: none;
    border-radius: 0.25rem; /* 10px */
    cursor: pointer;
    font-size: 0.4rem; /* 16px */
    transition: background-color 0.2s, box-shadow 0.3s;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.cta-button:hover {
    background-color: rgb(91, 228, 148);
}

.cta-button:active {
    background-color: #00a545;
    box-shadow: 0 0 0.5rem rgba(47, 167, 97, 0.3)
}

.banner_icon {
    position: absolute;
    top: 3rem; /* 120px */
    width: 23%;
    left: 64%; /* 64% */
}

.contBox {
    width: 35rem; /* 1400px */
    margin: 0 auto;
    padding: 0.75rem 0 2.5rem 0; /* 30px auto 100px auto */
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* 50px */
    overflow: hidden;
}

.contBox_item {
    width: 100%;
    height: 7.5rem; /* 300px */
    border-radius: 0.25rem; /* 10px */
    border: 0.075rem solid #f5f5f5; /* 3px */
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    transition: border 0.6s;
}

.icon_img {
    width: 10rem; /* 400px */
    object-fit: contain;
    transition: transform 0.4s;
}

.contBox_item:hover {
    border: 0.075rem solid #103cfd59; /* 3px */
}

.contBox_item:hover .icon_img {
    transform: scale(1.2);
}

.ci_content {
    padding: 0 0.75rem; /* 30px */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cic_title {
    font-size: 1rem; /* 40px */
    font-family: "MiSans Bold";
    text-align: center;
}

.cic_text {
    font-size: 0.5rem; /* 20px */
    margin: 0.4rem 0 0 0; /* 16px */
    line-height: 2;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .banner {
        height: 9.5rem !important;
        background-color: #024dc0;
    }
    .contBox{
        display: none;
    }
}

.m_contBox{
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media screen and (max-width: 600px) {
    .m_contBox{
        display: flex;
    }
}

.m_contBox_item{
    width: 6.75rem;
    height: 5.5rem;
    border-radius: 0.4rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.m_contBox_item_img{
    width: 3.8rem;
    height: 3.8rem;
    margin-top: 0.2rem;
}

.m_contBox_item_title{
    font-size: 0.65rem;
}