/**
Theme Name: LANG AG
Author: L.net Web Solutions
Author URI: https://www.l-net.biz
Description: WordPress Theme for LANG AG based on Astra.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lang-ag
Template: astra
*/

/* Mobile */
@media screen and (max-width: 768px) {
	section.section:last-child .object.trenner .textbox {
		margin-left: auto !important;
	}
}

/* Mobile animation */
@media screen and (max-width: 768px) {
	#primary,
	section.section {
		overflow-x: hidden;
	}
	section.section .object.object1 {
		width: 110vw;
		animation: run1 1s linear infinite;
		animation-play-state: paused;
		animation-delay: calc(var(--scrolled) * -1s);
	}
	section.section .object.object2 {
		width: 110vw;
		animation: run2 1s linear infinite;
		animation-play-state: paused;
		animation-delay: calc(var(--scrolled) * -1s);
	}
	section.section .object.object3 {
		width: 110vw;
		animation: run3 1s linear infinite;
		animation-play-state: paused;
		animation-delay: calc(var(--scrolled) * -1s);
	}
}

@keyframes run1 {
	0% {
		transform: translate(0%,0%);
	}
	50% { 
		transform: translate(-10%,0%); 
	}
	100% {
		transform: translate(0%,0%);     
	}
}

@keyframes run2 {
	0% {
		transform: translate(0%,0%);
	}
	50% { 
		transform: translate(-15%,0%); 
	}
	100% {
		transform: translate(0%,0%);     
	}
}

@keyframes run3 {
	0% {
		transform: translate(0%,0%);
	}
	50% { 
		transform: translate(-20%,0%); 
	}
	100% {
		transform: translate(0%,0%);     
	}
}