.why-us-items-and-image {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-image {
    width: 100%;
    height: 400px;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: var(--item-spacing);
}

.why-us-item {
    background: var(--white);
    padding: 15px 10px;
    border: 1px solid var(--light-border);
}

.why-us-icon-and-title {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.why-us-icon {
    display: flex;
    align-items: center;
    width: 30px;
    height: 30px;
}

.why-us-icon img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    max-height: 100%;
}

.why-us-title {
    width: calc(100% - 40px);
}

.why-us-text {
    margin-top: 10px;
}

.why-us-text span {
    color: var(--theme-secondary);
}


@media only screen and (min-width:992px) {
    .why-us-items-and-image {
        margin-top: 50px;
        flex-direction: row;
        gap: 16px;
    }

    .why-us-image {
        width: calc(40% - 8px);
        height: 380px;
    }

    .why-us-items {
        width: calc(60% - 8px);
    }

    .why-us-item {
        padding: 15px 20px;
    }

    .why-us-title-and-sub-title {
        width: 65%;
    }
}

@media only screen and (min-width:1200px) {
    .why-us-image {
        width: calc(50% - 8px);
    }

    .why-us-items {
        width: calc(50% - 8px);
    }
}

@media only screen and (min-width:1400px) {
    .why-us-item {
        padding: 25px 30px;
    }

    .why-us-image {
        height: 433px;
    }
}

@media only screen and (min-width:1600px) {
    .why-us-item {
        padding: 30px 35px;
    }

    .why-us-items {
        gap: 20px;
    }

    .why-us-image {
        height: 427px;
    }
}