.box_section  .box-repeater {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.box_section .box-repeater .box-item {
      width: 31%;
    padding: 40px 30px;
    background: #97ca7b;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 18px;
    line-height: 1.4;
}

.box_section .box-repeater .box-item h3 {
    padding: 0;
}
.box_section .box-repeater .box-item .box-details {
    color: #000;
}
.box_section .box-repeater .box-item .box-button {
    color: #fff;  
    line-height: 1.3;
    margin-top: 25px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    transition: 0.3s all;
}
.box_section .box-repeater .box-item:hover .box-button {
    color: #000;
    border-color: #000;
}
.box_section .upper_part {
    margin-bottom: 50px;
    text-align: center;
}

.box_section .upper_part h2::after {
    background: #97ca7b;
}

section.box_section {
    margin-top: -100px;
    margin-bottom: 50px;
}
.box_section .box-repeater .box-item a {
    margin-top: 20px;
    display: inline-block;
    color: #000;
    border-bottom: 1px solid #000;
    line-height: 1;
}

.box_section .box-repeater .box-item a:hover {
    color: #fff;
    border-color: #fff;
}
.box_section .box-repeater .box-item h3 {
    line-height: 1.2;
}

@media(max-width:1440px) {
    section.box_section {
        margin-top: -80px;
        margin-bottom: 0;
    }
}

@media(max-width:1200px) {
    section.box_section {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .box_section .upper_part {
        margin-bottom: 30px;
    }
}

@media(max-width:1024px) {
    .box_section .box-repeater {
        gap: 28px;
        justify-content: center;
    }
    .box_section .box-repeater .box-item {
    width: 48%;
}
}

@media(max-width:767px) {
    .box_section .box-repeater .box-item {
    width: 100%;
}
section.box_section {
    margin-top: 0;
    margin-bottom: 0px;
}
}