/*
Theme Name: Fullservice
Theme URI: https://elementor.com/hello-theme/
Description: Child Theme for Hello Elementor
Author: Hitsch
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Dein CSS ab hier */
.client-gate-logo {
  animation: gateLogoIn 0.9s ease 0.15s both;
}

.client-gate-headline {
  animation: gateTextIn 0.8s ease 0.85s both;
}

.client-gate-subline {
  animation: gateTextIn 0.8s ease 1.05s both;
}

.client-gate-form {
  animation: gateFormIn 0.8s ease 1.35s both;
}

@keyframes gateLogoIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gateTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gateFormIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.client-gate-field > p {
	margin: 0;
}