@charset "UTF-8";

.sec1{
    margin-top: 15px;
}
.sec1 h2{
    color:rgb(67, 148, 219);
    text-align:center;
}
.sec1_wrap{
    margin: 0 auto;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec1_box{
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    background-color: rgba(71, 179, 252, 0.5);
    border-radius: 20px;
    padding: 5px;
    font-size: 14px;
    width: 23%;
    height: 120px;
    box-sizing: border-box;
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color from parent */
}
.sec1_img{
    width: 100px;
    height: 100px;
}
.sec1_txt_box{
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
}
hr{
    display:none;
}

@media only screen and (max-width: 1100px){
    .sec1_wrap{
        flex-wrap: wrap;
    }
    .sec1_box{
        width: 48%;
    }
}
@media only screen and (max-width: 767px){
    .sec1 h2{
        font-size: 16px;
    }
    .sec1_wrap{
        width: 100%;
        justify-content: space-around;
    }
    .sec1_box{
        font-size: 12px;
        margin-top: 5px;
        height:80px;
    }
    .sec1_img{
        width: 30px;
        height: 30px;
    }
    hr{
        display:block;
        margin-bottom: 15px;
    }
}