
.col-box-top .wrap-box{
    display: flex;
    flex-wrap: wrap; 
}
.col-box-top1 .wrap-box{ 
    padding:0 12px;
}
.col-box-1 .box-{
    width:100%;
}
.col-box-2 .box-{
    width:50%;
}
.col-box-3 .box-{
    width:33.3333%;
}
.col-box-4 .box-{
    width:25%;
}
.col-box-top.col-box .box-{
    box-sizing: border-box;
}
.col-box-top1.col-box .box-{
    padding:8px;
}
.col-box-top .in-box-top{
    display:block;
    padding:24px; 
    padding-top: 60px;
    background: #282828;
    border-radius: 4px;
}
.col-box-top1 .in-box-top .wrap-round-span {
    display: inline-block;
    width: 84px;
    height:84px;
    border-radius: 50%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 10%;
    top: 0;
    transform: translate(0%, -50%); 
    border:2px solid #fff;
    background:#282828; 
    transition: border-radius 0.4s ease;
    border-radius: 12px 12px 24px 12px;
}
.col-box-top1 .box-:hover .in-box-top .wrap-round-span {
    border-radius: 24px 12px 24px 12px;
}
.col-box-top .in-box-top *,
.col-box-top .in-box-top a,
.col-box-top .in-box-top a *{
    color:#fff !important;
}
.col-box-top1 .in-box-top h3{
    margin-bottom:12px ;
    font-weight:500;
}
.col-box .wrap-content p{
    margin:0;
    min-height:72px;
    line-height:24px;
}
@media screen and (max-width:922px) {
    .wrap-box{
        flex-wrap: wrap;
    }
	.col-box .box-{
        width:100%;
        margin-bottom: 10px;
    }
    .col-box-4 .wrap-box{
        align-items: flex-end;
    }
    .col-box-4 .box-{
        width:50%;
        margin-bottom: 0px;
    }
    .col-box-4 .wrap-content p{
        padding-bottom: 20px;
        min-height: 96px;
    }
}
@media screen and (max-width:768px) {
	.wrap-box{
       padding:0;
    }
}
@media screen and (max-width:480px) {
    .col-box-4 .box-{
        width:100%;
        margin-bottom: 0px;
    }
    .col-box-4 .wrap-content p{
        min-height: 72px;
    }
    .col-box-top1.col-box .box-{
        padding:8px 0;
    }
}


/* Col Box Top 4 */
.col-box-5 .box-top,
.col-box-6 .box-top{
    width:33.33333%; 
}
.col-box-top{ 
    padding:120px 0;
}
.col-box-4.col-box-top4 .box-top,
.col-box-5 .box-top:nth-child(1),
.col-box-5 .box-top:nth-child(2){
    width:50%;
}
.col-box-top4 .in-box-top{
    background:#fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.col-box-top4.col-box-top .in-box-top *,.col-box-top4.col-box-top .in-box-top a,.col-box-top4.col-box-top .in-box-top a *{
    color:#222 !important;
}
.col-box-top4 .in-box-top{ 
    padding:24px;
}
.col-box-top4 .in-box-top > a{
    display: flex; 
    align-items: center;
}
.col-box-top4 .wrap-round-span{
  padding-right:15px;
}
.col-box-top4 .wrap-round-span img{
    height:100px;
    max-width:130px;
}
.col-box-top4 .box- {
    padding: 8px;
}
.col-box-top4 .wrap-content span{
    font-size:10px;
    letter-spacing: 0.1em;
    line-height: 13px;
    display: inline-block;
}
.col-box-top4 .wrap-content p {
    margin: 0;
    min-height: 48px;
    line-height: 24px;
    color:#777;
    font-size:15px;
}
.col-box-top4 h4{
    margin-bottom:10px;
}
.col-box-top4 .in-box-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.col-box-top4 .in-box-top:hover::before {
    opacity: 0.6;
    animation: glow 1.5s linear infinite;
}

.col-box-top4 .in-box-top::after{
    content: '→';
    position: absolute;
    border-radius: 15px 0 4px 0;
    right: -1px;
    bottom: 0px;
    width: 30px;
    height: 30px;
    text-indent: 7px;
    color: #fff;
    line-height: 30px;
    padding-right:0;
    transition: width 0.3s ease-in-out, margin-right 0.3s ease-in-out , border-radius 0.3s ease-in-out;
}
.col-box-top4 .in-box-top:hover::after{
    width:37px;
    margin-right:-7px;
    border-radius: 15px 2px 15px 2px;
}
/* COLOR */ 
.col-box-top4 .in-box-top::before {
    background: linear-gradient(90deg, transparent, rgba(131 147 77 / 60%), transparent);
}
@keyframes glow {
    0% {
        background: linear-gradient(90deg, transparent, rgba(131 147 77 / 60%), transparent);
    }
    50% {
        background: linear-gradient(270deg, transparent, rgba(131 147 77 / 60%), transparent);
    }
    100% {
        background: linear-gradient(90deg, transparent, rgba(131 147 77, 0.6), transparent);
    }
}
.col-box-top4 .in-box-top::after{
    background:#83934D; 
}
@media screen and (max-width:1080px) {
	.col-box-top4 .wrap-round-span img {
        height: 80px;
        max-width: 100px;
    }
    .col-box-top4 h4{
        font-size:17px;
    }
    .col-box-top4 .wrap-content p{
        font-size:14px;
        line-height:18px;
        min-height:36px;
    }
}
@media screen and (max-width:992px) {
    .col-box-top4 {
        transform: translate(0%, 0%);
        margin-top: 8px !important;
    }
    .col-box-top4 .root-width{
        padding:0 8px !important;
     }
	.col-box-top4 .box-top{
        width:50%;
        margin-bottom:0;
    }
    .col-box-5 .box-top:nth-child(1){
        width:100%;
    }
}
@media screen and (max-width:620px) {
    .col-box-5 .box-top:nth-child(1),
    .col-box-5 .box-top:nth-child(2),
	.col-box-top4 .box-top{
        width:100%;
    }
    .col-box-top4 .wrap-content p{
        min-height:0;
    }
}

