.key-offerings {
    background: var(--bg-color);
    position: relative;
}

.key-offerings:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: transparent var(--bg-image) no-repeat center / cover;
}

.key-offerings .container {
    max-width: 1190px;
    margin: 0 auto;
    width: 90%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.key-offerings .col-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 57px;
}

.key-offerings .col-wrapper .col {
    width: 50%;
}

.key-offerings .col.right {
    align-self: center;
}

.key-offerings .title {
    font: normal var(--f-bold) 3.88rem / 1.1 var(--font-sans);
    color: var(--content-color);
	margin-bottom: 55px;
}

.key-offerings .links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 380px;
}

.key-offerings .col.left .link-item {
    font: normal var(--f-bold) 1.63rem / 1.3 var(--font-sans);
    color: var(--content-color);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 15px;
    border-bottom: 2px solid #B0C466;
    padding-bottom: 7px;
    width: 100%;
}

.key-offerings .link-item .icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background: transparent;
    border: 2px solid var(--content-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-offerings .link-item .icon svg {
    width: 16px;
    transition: var(--transition);
}

.key-offerings .link-item:hover svg {
    transform: rotate(-45deg);
}

.key-offerings .img-wrapper {
    position: relative;
    max-height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.key-offerings .img-wrapper .key-offerings-img{
	width: 100%;
	max-height: 400px;
	object-fit: cover;
}

.key-offerings .img-wrapper:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
}

.key-offerings .img-wrapper:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background: transparent var(--img-overlay) no-repeat center / cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .key-offerings .container {
        padding: 70px 0;
    }

    .key-offerings .title {
        font: normal var(--f-bold) 3.25rem / 1.1 var(--font-sans);
		margin-bottom: 30px;
    }

    .key-offerings .col.left .link-item {
        font: normal var(--f-semibold) 1.38rem / 1.3 var(--font-sans);
    }

    .key-offerings .col-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .key-offerings .col-wrapper .col {
        width: 100%;
    }

    .key-offerings .links-wrapper {
        max-width: 100%;
		gap:20px;
    }

    .key-offerings .img-wrapper {
        max-height: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .key-offerings .container {
        padding: 40px 0;
    }

    .key-offerings .col-wrapper .col {
        width: 100%;
    }

    .key-offerings .title {
        font: normal var(--f-bold) 2.63rem / 1.1 var(--font-sans);
    }

    .key-offerings .col.left .link-item {
        font: normal var(--f-semibold) 1.13rem / 1.3 var(--font-sans);
    }
}