/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

@import "assets/css/common.css";
@import "assets/css/animation.css";
@import "assets/css/mainpage.css";


/* @media (12px <= width <= 900px) { */
/*
@media screen and (min-width: 1280px) {
.rotate-text {
position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 25px));
}
}
*/
.t3xts {
	height: 30px;
    font-size: 1.75rem;
    line-height: 1.75rem;
    font-weight: 300;
    color: #E02915;
    position: relative;
    perspective: 1000px;
}
.t3xts:not(:last-child) {
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.t3xts:not(:last-child) {
		margin-bottom: 15px;
	}
}
.t3xt {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
}

.t3xt-out {
  animation: text-out 0.5s ease;
}

.t3xt-in {
  animation: text-in 0.5s ease;
}

@keyframes text-out {
  to {
    transform: rotateX(90deg) skewX(-20deg);
    opacity: 0;
  }
}
@keyframes text-in {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  to {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/*
.text .elementor-heading-title {
  position: relative;
  perspective: 1000px;
}
.t3xt {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
}
.t3xt-out {
  animation: text-out .6s ease both;
}
.t3xt-in {
  animation: text-in .6s ease both;
}

@keyframes text-out {
  to {
    transform: rotateX(90deg);
    opacity: 0;
  }
}
@keyframes text-in {
  from {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  to {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.caro-text {
   height: 400px;
}
*/
/*
.track {
	height: auto;
}
*/
.track {
	position: relative;
	overflow: hidden;
    height: 100%;
}
.text__wrapper {
	position: absolute;
	top: 100%;
	transition: none !important;
	transition-behavior: none !important;
    transition-duration: none !important;
    transition-timing-function: none !important;

}
@keyframes scrollText {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-160%); }
}

.text__wrapper.animate {
  animation: scrollText 8s linear forwards;
}
