#responsiblity-background {
	background-color: var(--secondary-green-bg);
}
#responsibility-card {
	margin-bottom: 4rem;
    justify-content: space-between;
}
.responsibility-info {
	display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-responsiblity {
    position: relative;
    aspect-ratio: 3 / 2;
    height: 300px;
    min-width: 200px;
    overflow: hidden;
}

.card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    top: 0;
    left: 0;
    z-index: 1;
}

.hover-img {
    opacity: 0;
}

.image-responsiblity:hover .hover-img {
    opacity: 1;
}

.image-responsiblity:hover .default-img {
    opacity: 0;
}

.contact-info {
    display: flex;
    height: 1.5rem;
    gap: 1.5rem;
    margin-top: 10px;
}

.contact-icon {
    height: 100%;
}

.contact-icon img {
    height: 100%;
    width: auto;
}

@media screen and (max-width: 992px) {
    .cards-container {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .cards-container {
        width: 100%;
        padding: 0 2rem;
        justify-content: center;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-icon {
        height: 16px;
    }
}