.primary-section-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px;
	margin: 25px 0px 25px 0px;
}

.language-rights, .complaint, .complaint, .private-sector {
	position: relative;
	text-align: center;
	border-radius: 20px;
	opacity: 0.75;
	box-shadow: 2px 2px 10px rgba(0,0,0, 0.75);
	transition: opacity 0.5s ease, box-shadow 0.5s ease;
	overflow: hidden;
}

@media only screen and (max-width: 1129px) {
  .language-rights, .complaint, .complaint, .private-sector {
    margin: 0px 25px 0px 25px;
  }
}

.language-right p {
	position: absolute;
	top: 50%;
        transform: translateY(-50%);
}

.language-rights img, .complaint img, .private-sector img {
	max-width: 340px;
	height: auto;
	border-radius: 20px;
	width: 100%;
	opacity: 1;
	transition: opacity 0.5s ease;
	display: block;
}

@media only screen and (max-width: 1129px) {
  .language-rights img, .complaint img, .private-sector img {
    max-width: 500px;
  }
}

.language-rights img:hover, .complaint img:hover, .private-sector img:hover {
        display: block;
	position: relative;
	transition: opacity 0.5s ease, box-shadow 0.5s ease;
        transform-origin: center center;
        animation: zoom-in 0.5s forwards;
        transition: transform 0.6s ease;
        overflow: hidden;
        display: block;
}


/* Keyframes */
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* Zoom in slightly */
  }
}

.language-rights:hover, .complaint:hover, .private-sector:hover {
	opacity: 1;
	box-shadow: 0px 0px 0px 0px rgba(0,0,0, 0.75);
	transition: opacity 0.3s ease, box-shadow 0.5 ease;
}


.language-rights p, .complaint p, .private-sector p {
	position: absolute;
	top: 85%;
	font-size: 22px;
	text-shadow: 2px 2px 2px black;
	background-color: var(--orange);
	padding: 5px 0px 9px 0px;
	border-radius: 0px 0px 20px 20px;
	font-weight: bold;
	color: white;
	margin: auto;
	width: 100%;
}

@media only screen and (max-width: 1129px) {
  .language-rights p, .complaint p, .private-sector p {
    position: absolute;
    top: 90%;
    font-size: 22px;
    text-shadow: 2px 2px 2px black;
    background-color: var(--orange);
    padding: 5px 0px 9px 0px;
    border-radius: 0px 0px 20px 20px;
    font-weight: bold;
    color: white;
    margin: auto;
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .language-rights p, .complaint p, .private-sector p {
    position: absolute;
    top: 90%;
    font-size: 18px;
    text-shadow: 2px 2px 2px black;
    background-color: var(--orange);
    padding: 5px 0px 9px 0px;
    border-radius: 0px 0px 20px 20px;
    font-weight: bold;
    color: white;
    margin: auto;
    width: 100%;
  }
}  



.complaint a {
	color: white;
	text-decoratioN: none;
}

.language-icon, .complaint-icon, .private-icon {
	color: var(--orange);
	position: absolute;
	max-height: 145;
	transform: translateX(120%);
	top: 25%;
	opacity: 0;
}

.language-icon:hover, .complaint-icon:hover, .private-icon:hover {
	opacity: 1;
	transition: opacity 0.5s ease;
}
