.video-sound-toggle {
position: absolute;
bottom: 30px;
right: 30px;
z-index: 10;
width: 56px;
height: 56px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.video-sound-toggle:hover {
background: rgba(255, 255, 255, 1);
transform: scale(1.1);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.video-sound-toggle:active {
transform: scale(0.95);
}
.sound-icon {
color: #0D6937;
transition: all 0.3s ease;
}
.video-sound-toggle:hover .sound-icon {
color: #7fb539;
} .work-values-left {
display: flex;
flex-direction: column;
gap: 30px;
}
.work-values-video-wrapper {
margin: 0;
width: 100%;
position: relative;
padding-bottom: 56.25%; height: 0;
overflow: hidden;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.work-values-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
}
.work-values-video video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} @media (max-width: 992px) {
.work-values-left {
gap: 20px;
}
}
@media (max-width: 768px) {
.video-sound-toggle {
width: 48px;
height: 48px;
bottom: 20px;
right: 20px;
}
.sound-icon {
width: 24px;
height: 24px;
}
.work-values-video-wrapper {
border-radius: 12px;
}
.work-values-left {
gap: 20px;
}
}
@media (max-width: 480px) {
.video-sound-toggle {
width: 44px;
height: 44px;
bottom: 15px;
right: 15px;
}
.sound-icon {
width: 20px;
height: 20px;
}
.work-values-video-wrapper {
border-radius: 8px;
}
.work-values-left {
gap: 15px;
}
} @keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
.sound-icon {
animation: fadeIn 0.3s ease;
} @keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(0.95);
}
}
.video-sound-toggle.pulse {
animation: pulse 0.3s ease;
}