.icon-box-section {
    padding: 60px 0;
}

.icon-box-section .icon-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.icon-box-section .icon-box .text-wrap {
    width: 30%;
    flex: 0 0 30%;
}

.icon-box-section .icon-box .text-wrap .sub-heading {
    font-family: "Calibri Bold", Sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #899392;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.icon-box-section .icon-box .text-wrap .heading {
    margin-top: 0;
    font-family: "Calibri Bold", Sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 45px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.icon-box-section .icon-box .icon-box-wrap {
    width: 30%;
    flex: 0 0 30%;
    border: 3px solid #899392;
    border-top: 0;
    padding: 40px 24px 15px;
    position: relative;
    min-height: 315px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.icon-box-section .icon-box .icon-box-wrap .short-line {
    width: 30px;
    height: 3px;
    background: #899392;
    position: absolute;
    left: 0;
    top: 0;
}

.icon-box-section .icon-box .icon-box-wrap .long-line {
    width: 200px;
    height: 3px;
    background: #899392;
    position: absolute;
    right: 0;
    top: 0;
}

.icon-box-section .icon-box .icon-box-wrap .icon-wrap {
    position: absolute;
    top: -30px;
    left: 15%;
    width: 74px;
    height: 74px;
}

.icon-box-section .icon-box .icon-box-wrap .icon-title {
    margin-top: 0;
    font-family: "Calibri Bold", Sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.icon-box-section .icon-box .icon-box-wrap .icon-description p {
    margin-top: 0;
    font-family:"Calibri Regular", Sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 8px;
}

.icon-box-section .icon-box .icon-box-wrap .icon-box-link {
    padding: 16px 24px;
    background: #899392;
    max-width: 180px;
    cursor: pointer;
    font-family: "Calibri Bold", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
    color: #fff;
}

@media (max-width: 1199px) {
    .icon-box-section .icon-box .text-wrap {
        width: 45%;
        flex: 0 0 45%;
    }

    .icon-box-section .icon-box .icon-box-wrap {
        width: 45%;
        flex: 0 0 45%;
    }

    .icon-box-section .icon-box .icon-box-wrap .long-line {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .icon-box-section .icon-box .text-wrap {
        width: 95%;
        flex: 0 0 95%;
    }

    .icon-box-section .icon-box .icon-box-wrap {
        width: 95%;
        flex: 0 0 95%;
    }

    .icon-box-section .icon-box .icon-box-wrap .long-line {
        width: 55%;
    }
}