/* 
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 */

html, body {
  overflow-x: hidden;
}


.my-gradient {
	background: linear-gradient(to right, #fdd44d, #ff8a65, #ec407a, #8e24aa, #45276b, #009688)!important;
}


#typewriter {
  font-family: "Lato", monospace;
  font-size: 56px;
  color: #fff;
 font-weight: 300;
  white-space: nowrap;
  display: inline-block;
}

.icon1 {
    animation: wobble-spin 1s infinite alternate; /* 3*/
}

.icon2 {
    animation: spin-slide 2s ease-in-out infinite alternate; /* 2 */
}

.icon3 {
    animation: shrink-move 4s infinite ease-in-out; /* 1 */
}

@keyframes shrink-move {
    0% {
        transform: translateX(0) scale(1);
    }
    25% {
        transform: translateX(-50%) scale(0.8);
    }
    50% {
        transform: translateX(50%) scale(1);
    }
    75% {
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

@keyframes spin-slide {
    0% {
        transform: translateX(-100%) rotate(0deg);
    }
    50% {
        transform: translateX(0) rotate(180deg);
    }
    100% {
        transform: translateX(100%) rotate(360deg);
    }
}

@keyframes wobble-spin {
    0% {
        transform: rotate(-320deg);
    }
    100% {
        transform: rotate(320deg);
    }
}

.footer-link-my a{
	color: #fff;
}


.footer-link-my a:hover{
	color: #fff;
	text-decoration: 1px underline;
}

.menu-link-my a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 2px 4px;
}

.menu-link-my a::before   {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
   background: linear-gradient(90deg, rgba(249,198,86,1) 0%, rgba(252,162,103,1) 14%, rgba(202,40,65,1) 35%, rgba(215,53,136,1) 55%, rgba(77,40,93,1) 80%, rgba(14,162,154,1) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms ease;
}

.menu-link-my a:hover::before {
  width: 100%;
}

.menu-link-my.active a::before {
  width: 100%;
}

.cpel-switcher__code {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 2px 4px;
  transition: color 0.3s ease;
}


.cpel-switcher__code::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
 background: linear-gradient(90deg, rgba(249,198,86,1) 0%, rgba(252,162,103,1) 14%, rgba(202,40,65,1) 35%, rgba(215,53,136,1) 55%, rgba(77,40,93,1) 80%, rgba(14,162,154,1) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms ease;
}


.cpel-switcher__code:hover::before {
  transform: scaleX(1);
}


.cpel-switcher__lang--active .cpel-switcher__code::before {
  transform: scaleX(1);
}


