@charset "UTF-8";

.-w-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .-w-service-circle {
            width: 220px;
            height: 150px;
            background: #F5F8FF;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .-w-service-circle:hover {
           opacity: 0.8;
        }

        .-w-service-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #000000;
        }

        .-w-service-description {
            font-size: 12px;
            line-height: 1.6;
            color: #000000;
        }



@media (max-width: 1199px) {
.-w-service-circle{
border-radius: unset;

}

.-w-service-circle{
width:120px;
}
 
}