body {
	font-family: Arial, sans-serif;
	background-color: #f5f5f5;
}

.carousel-caption {
	background: rgba(0, 0, 0, 0.5);
	padding: 10px;
}

.text-center img {
	max-width: 200px;
}

body {
	font-family: Arial, sans-serif;
	background-color: #f5f5f5;
}

/* Styl dla responsywnych filmów */
/* Poprawka dla filmów na stronie głównej */
/* Poprawka dla filmów na stronie głównej */
.home-video {
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100%;
        overflow: hidden;
        margin-top: 40px;
}

.home-video video {
        width: 100%;
        height: auto;
        object-fit: cover;
        pointer-events: none; /* Wyłącza możliwość klikania na filmie */
}

/* Poprawka dla Bootstrap (jeśli używasz Bootstrap) */
@media (max-width: 768px) {
	.col-md-6 video {
		width: 100%;
		height: auto;
	}
}

/* Stylizacja sekcji 1 */
.features-section,
.features1-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px;
	background: #f8f8f8;
	max-width: 1250px;
	margin: auto;
}

.features-container {
	flex: 1;
	max-width: 50%;
}

.features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Stylizacja dla pierwszej sekcji */
.feature,
.feature1 {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	border-bottom: 2px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.feature img,
.feature1 img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
}

.feature-text {
	display: flex;
	flex-direction: column;
}

.feature h3,
.feature1 h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.feature p,
.feature1 p {
	font-size: 14px;
	margin: 0;
	color: #666;
}

.feature.active,
.feature1.active {
	font-weight: bold;
}

/* Stylizacja wideo dla obu sekcji */
.features-video,
.features1-video {
	flex: 1;
	max-width: 50%;
	text-align: center;
}

.video-container {
	width: 300px;
	height: 254px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	background: #000;
}
@media (max-width: 768px) {
    .video-container {
        height: 230px;
    }
img.logo{
    width:200px
}
    
}
.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-section {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* Domyślnie tekst z lewej */
	color: #fff;
	text-align: left;
	padding-left: 8%; /* Dodatkowy odstęp od lewej */
}

.background-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none; /* blokada interakcji z wideo */
        z-index: -1;
        opacity: 0.8;
}

.banner-content {
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.85);
	padding: 30px;
	border-radius: 8px;
	max-width: 40%;
}

.banner-content h1 {
	font-size: 28px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}

.banner-content p {
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
}

.button-container {
	margin-top: 10px;
}

.button-container .btn {
	padding: 12px 20px;
	font-size: 16px;
	border-radius: 5px;
	font-weight: bold;
	text-transform: uppercase;
}

.button-container .btn-primary {
	background-color: #1b4884;
	color: #ffffff;
	border: none;
}

.button-container .btn-primary:hover {
	background-color: #1b4884;
}

@media (max-width: 768px) {
	.banner-section {
		height: auto;
		padding: 20px;
		justify-content: center;
	}

        .background-video {
                height: auto;
                pointer-events: none;
        }

	.banner-content {
		max-width: 90%;
		margin: 0 auto;
		text-align: center;
		margin-top: 150px;
	}
}

.banner-content {
	max-width: 80%;
	padding: 15px;
}

.banner-content h1 {
	font-size: 24px;
}

.banner-content p {
	font-size: 16px;
}

/*content cut2D */
/* Styl dla modala */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 400px;
	background: white;
	padding: 20px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	text-align: center;
}

.modal-content {
	position: relative;
}

.modal .close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 20px;
	cursor: pointer;
}

.version-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 20px;
}

.version {
	background: #f8f8f8;
	padding: 15px;
	border-radius: 8px;
}

.select-version {
	background: #1b4884;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	width: 100%;
	transition: background 0.3s ease;
}

.select-version:hover {
	background: #ff6600;
}

.info-section {
	display: flex;
	justify-content: center;
	background: #f8f8f8;
	padding: 50px 20px;
}

.info-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1250px;
	width: 100%;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	gap: 20px; /* Dodaje odstęp między tekstem a wideo */
}

/* Stylowanie tekstu */
.info-content {
	flex: 1;
	max-width: 45%;
	background: rgba(255, 255, 255, 0.85);
	padding: 30px;
	border-radius: 8px;
}

.info-content h2 {
	font-size: 22px;
	font-weight: bold;
	color: #000;
}

.info-content p {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
}

/* Stylowanie wideo */
.info-video {
	flex: 1;
	max-width: 50%;
	text-align: right;
}

.feature-video {
        width: 100%;
        border-radius: 10px;
        object-fit: cover;
        pointer-events: none; /* blokada interakcji z wideo */
}

/* RESPONSYWNOŚĆ - dla urządzeń mobilnych */
@media (max-width: 768px) {
	.info-container {
		flex-direction: column; /* Układ pionowy */
		text-align: center;
		gap: 15px; /* Mniejszy odstęp między elementami */
	}

	.info-content {
		max-width: 100%;
		padding: 20px; /* Mniejsze paddingi */
		text-align: center;
	}

	.info-content h2 {
		font-size: 20px;
	}

	.info-content p {
		font-size: 15px;
	}

	.info-video {
		max-width: 100%;
		text-align: center; /* Wyśrodkowanie na małych ekranach */
	}

	.feature-video {
		max-width: 100%;
		height: auto;
	}
}

.me-2 {
	background-color: #1b4884 !important ;
	border-color: #1b4884 !important;
}

/*menu-------------------------*/

.navbar-nav .nav-link {
	color: #000 !important; /* Czarny kolor tekstu */
}

.navbar-nav .nav-link:hover {
	color: #333333cb !important; /* Trochę ciemniejszy kolor po najechaniu */
	text-decoration: none; /* Podkreślenie po najechaniu */
}
/* Styl dla rozwijanego menu */
/* Styl dla rozwijanego menu */
.navbar-nav .dropdown-menu {
	display: none; /* Ukryj submenu domyślnie */
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	list-style: none;
	padding: 10px;
	margin: 0;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	min-width: 200px;
}

.navbar-nav .dropdown:hover > .dropdown-menu {
	display: block; /* Pokazuje submenu na hover */
}

.navbar-nav .dropdown-menu li {
	padding: 10px;
	white-space: nowrap;
}

.navbar-nav .dropdown > a::after {
	border: none !important; /* Usunięcie domyślnego obramowania */
	content: ' ▼'; /* Zamiana domyślnej ikonki */
	font-size: 12px;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
}

/*cut2d-----------------------------------------------------------------------------------*/
/* --- Poprawiona sekcja porównawcza --- */
.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- Układ standardowy na większych ekranach --- */
.comparison-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* --- Opis --- */
.comparison-content {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

/* --- Tabela --- */
.comparison-table {
    flex: 1;
    max-width: 55%;
    overflow-x: auto; /* Doda przewijanie na małych ekranach */
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 400px; /* Zapobiega "zwężaniu" na mobile */
}

th, td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

thead {
    background: #ccc;
}

td:first-child {
    text-align: left;
}

tr:nth-child(even) {
    background: #f8f8f8;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
        text-align: center;
    }

    .comparison-content {
        max-width: 100%;
    }

    .comparison-table {
        max-width: 100%;
        overflow-x: auto; /* Umożliwia przewijanie w poziomie */
    }

    table {
        min-width: 100%; /* Zapobiega zwężaniu */
        display: block;
        overflow-x: auto;
    }
}

/* --- Jeszcze mniejsze ekrany --- */
@media (max-width: 480px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none; /* Ukrywamy nagłówki */
    }

    tr {
        border: 1px solid #ddd;
        margin-bottom: 10px;
        padding: 10px;
        background: white;
        display: flex;
        flex-direction: column;
    }

    td {
        text-align: left;
        padding: 8px;
        position: relative;
        border-bottom: none;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
        display: block;
        margin-bottom: 5px;
    }
}

/* --- Styl dla nowej wersji --- */
.new-version-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
    position: relative;
}

.new-version-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Styl dla tekstu --- */
.new-version-content {
    flex: 1;
    padding: 20px;
}

.new-version-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.new-version-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.new-version-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.new-version-content ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.new-version-content ul li::before {
    content: '•';
    color: #000;
    font-weight: bold;
    margin-right: 8px;
}

.pro-feature {
    font-size: 14px;
    color: red;
    font-weight: bold;
}

/* --- Styl dla przycisku --- */
.btn-yellow {
    background-color: #1b4884;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background-color: #ff6600;
}

/* --- Styl dla wideo --- */
.new-version-video {
    flex: 1;
    text-align: right;
}

.new-version-video video {
    max-width: 100%;
    border-radius: 10px;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
    .new-version-container {
        flex-direction: column;
        text-align: center;
    }

    .new-version-content {
        order: 1;
        max-width: 100%;
        padding-bottom: 20px;
    }

    .new-version-video {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .new-version-video video {
        max-width: 90%;
        height: auto;
    }
}

.open-modal {
	background-color: #1b4884;
	color: black;
	padding: 12px 20px;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	display: inline-block;
	transition: all 0.3s ease;
	color: #ffffff !important;
	width: 50%;
}

/*Moje konto-----------------------------------------------------------------------------------*/
/* === MOJE KONTO - WooCommerce === */
.moje-konto-container {
	max-width: 800px;
	margin: 40px auto;
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Linki do sekcji konta === */
.woocommerce-MyAccount-navigation {
	background: #f8f8f8;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
	text-decoration: none;
	font-weight: bold;
	color: #1b4884;
	transition: color 0.3s ease-in-out;
}

.woocommerce-MyAccount-navigation ul li a:hover {
	color: #ff6600;
}

/* === Treść sekcji konta === */
.woocommerce-MyAccount-content {
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Przyciski formularzy === */
button,
.button,
.woocommerce-button {
	background: #1b4884;
	color: #fff;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s ease-in-out;
}

button:hover,
.button:hover,
.woocommerce-button:hover {
	background: #ff6600;
}

/* === Formularze === */
.woocommerce form {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* === Pola formularza === */
.woocommerce form input[type='text'],
.woocommerce form input[type='email'],
.woocommerce form input[type='password'],
.woocommerce form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 15px;
}

/* === Tytuły i nagłówki === */
.woocommerce h2,
.woocommerce h3 {
	color: #1b4884;
	margin-bottom: 15px;
}

/* === Wiadomości systemowe WooCommerce === */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
	padding: 15px;
	border-radius: 5px;
	font-weight: bold;
	margin-bottom: 20px;
}

.woocommerce-message {
	background: #e0f7e0;
	border-left: 4px solid #2ecc71;
	color: #2ecc71;
}

.woocommerce-error {
	background: #fdecea;
	border-left: 4px solid #e74c3c;
	color: #e74c3c;
}

.woocommerce-info {
	background: #e7f5ff;
	border-left: 4px solid #3498db;
	color: #3498db;
}
/* === Moje Konto - Adresy === */
.woocommerce-Addresses {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.woocommerce-Addresses .woocommerce-Address {
	flex: 1;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease-in-out;
}

.woocommerce-Addresses .woocommerce-Address:hover {
	transform: translateY(-3px);
}

.woocommerce-Addresses .woocommerce-Address h2 {
	font-size: 20px;
	font-weight: bold;
	color: #1b4884;
	margin-bottom: 10px;
}

.woocommerce-Addresses .woocommerce-Address a {
	display: inline-block;
	background: #1b4884;
	color: #fff;
	padding: 8px 12px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	transition: background 0.3s ease-in-out;
}

.woocommerce-Addresses .woocommerce-Address a:hover {
	background: #c24d4d;
}

.woocommerce-Addresses .woocommerce-Address address {
	font-style: normal;
	color: #333;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.6;
}

/* === Nawigacja Moje Konto === */
.woocommerce-MyAccount-navigation {
	background: #f8f8f8;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

.woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
	text-decoration: none;
	font-weight: bold;
	color: #1b4884;
	transition: color 0.3s ease-in-out;
}

.woocommerce-MyAccount-navigation ul li a:hover {
	color: #c24d4d;
}
/*kontakt.php----------------------------------------------------------------------------->*/
/* Ogólne ustawienia */
.kontakt-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* Nagłówek strony */
.kontakt-container h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #1b4884;
    margin-bottom: 10px;
}

.kontakt-container p {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

/* 📌 Sekcja z informacjami kontaktowymi */
.kontakt-box {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Pojedynczy blok z informacjami */
.kontakt-info {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

/* Efekt najechania */
.kontakt-info:hover {
    transform: translateY(-5px);
}

/* Układ ikon */
.kontakt-ikona {
    font-size: 45px;
    color: #1b4884;
    margin-bottom: 10px;
}

/* Nagłówki w sekcji kontaktowej */
.kontakt-info h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1b4884;
    margin-bottom: 8px;
}

/* Linki */
.kontakt-info a {
    text-decoration: none;
    color: #1b4884;
    font-weight: bold;
}

.kontakt-info a:hover {
    text-decoration: underline;
}

/* 📌 Formularz kontaktowy */
.kontakt-form-container {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Nagłówek formularza */
.kontakt-form-container h3 {
    font-size: 22px;
    font-weight: bold;
    color: #1b4884;
    margin-bottom: 20px;
}

/* Pola formularza */
.kontakt-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Przycisk wysyłania */
.kontakt-form button {
    width: 100%;
    background: #1b4884;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.kontakt-form button:hover {
    background: #153360;
}

/* 📌 Responsywność */
@media (max-width: 992px) {
    .kontakt-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .kontakt-container {
        padding: 10px;
    }

    .kontakt-form-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .kontakt-info {
        padding: 15px;
    }

    .kontakt-form-container {
        padding: 20px;
    }

    .kontakt-ikona {
        font-size: 35px;
    }

    .kontakt-form button {
        font-size: 14px;
        padding: 10px;
    }
}





/*wersja mobilna features*/

.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    padding: 50px 20px;
}

/* --- PC --- */
.desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-container.desktop .features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-container.desktop .feature {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.features-container.desktop .feature:hover {
    background: rgba(255, 255, 255, 1);
}

/* --- Mobilne --- */
.mobile {
    display: none;
}

.features-container.mobile {
    text-align: center;
    width: 100%;
}

.features-container.mobile .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.features-container.mobile .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.video-container {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}



/*cut 2d okienka naprzemienne Uwolnij swoją kreatywność z Cut2D */

/* Sekcja Cut2D */
.cut2d-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cut2d-container {
    width: 90%;
    max-width: 1200px;
}
.cut2d-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;

}
/* Rząd z opisem i filmem */
.cut2d-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* Opis */
.cut2d-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    text-align: left;
}

/* Wideo */
.cut2d-video {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.cut2d-video-container {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cut2d-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* blokada interakcji z wideo */
}

/* Naprzemienne ułożenie dla większych ekranów */
.cut2d-left-text .cut2d-text {
    order: 1;
    text-align: left;
}

.cut2d-left-text .cut2d-video {
    order: 2;
}

.cut2d-right-text .cut2d-text {
    order: 2;
    text-align: right;
}

.cut2d-right-text .cut2d-video {
    order: 1;
}

/* RESPONSYWNOŚĆ dla telefonów */
@media (max-width: 768px) {
    .cut2d-row {
        flex-direction: column;
        text-align: center;
    }

    .cut2d-text {
        max-width: 100%;
        text-align: center;
    }

    .cut2d-video {
        max-width: 100%;
        margin-top: 20px;
    }

    .cut2d-left-text .cut2d-text,
    .cut2d-right-text .cut2d-text {
        order: 1;
    }

    .cut2d-left-text .cut2d-video,
    .cut2d-right-text .cut2d-video {
        order: 2;
    }
	.cut2d-item {
		flex-direction: column;
	}
}


.image-container {
	transition: transform .2s; /* Animation */
}
.image-container:hover {
	transform: scale(1.05); /* (150% zoom - Feel free to change it) */
}