


@media (max-width:780px){
	.desktop {display:none;}
	}
	
@media (min-width: 780px) {
	.mobile {display:none;}
}

@media (max-width: 970px) {
	}






		.container01 {
            display: flex;
            width: 100%;
            height: 100vh;
        }
        .section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-size: cover;
            background-position: center;
            transition: flex 0.5s ease;
            text-align: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer; /* Add pointer cursor to indicate clickability */
        }
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.6);
            transition: opacity 0.5s ease;
            z-index: 1;
        }
        .section-content {
            position: relative;
            z-index: 2;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
        }
       
        .section-content a {
            text-decoration: none;
            color: #fff;
            font-size: 36px;
            font-weight:600;
            display: block;
            margin-top: 10px;
        }
        .section-content p {
            font-size: 18px;
            color: #fff;
            margin-top: 10px;
        }
        /* Efekt pri prechode myšou */
        .container01:hover .section {
            flex: 0.5;
        }
        .container01 .section:hover {
            flex: 2;
        }
        .section:hover::before {
            opacity: 0;
        }
        /* Responzívny dizajn pre mobilné zariadenia */
        @media (max-width: 768px) {
            .container01 {
                flex-direction: column;
            }
            .section {
                width: 100%;
                height: 33.33vh;
            }
            .container01:hover .section {
                flex: 1;
            }
            .container01 .section:hover {
                flex: 1;
            }
        }
        /* Adjust logo size based on screen width */
        @media (min-width: 768px) {
            .section-content img {
                max-width: 150px; /* Larger size for tablets and desktops */
            }
        }
        @media (min-width: 1024px) {
            .section-content img {
                max-width: 200px; /* Even larger size for larger screens */
            }
        }

