@charset "UTF-8";
.signature, .signature a {
  background: #000;
  color: #fff;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.signature-social-block {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.signature .copyright, .signature .signature-social-block li {
  display: inline-block;
}

.signature {
  padding-top: 5px;
}

.cc-grower {
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 100000000;
}

/*

Hier werden alle Anpassungen die in der Public View am Css gemacht werden
eingetragen.

*/
.grecaptcha-badge {
  visibility: hidden;
}

:root {
  --infp-primary: #44477a;
  --infp-primary-dark: #3a4888;
  --infp-primary-deep: #2d3060;
  --infp-primary-light: #b0b2d1;
  --infp-text-dark: #333333;
  --infp-text-medium: #666666;
  --infp-text-light: rgba(255, 255, 255, 0.85);
  --infp-bg-light: #f8f9fa;
  --infp-bg-white: #ffffff;
  --infp-border: #e0e0e0;
  --infp-font-body: 'Heebo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes infp-crossesDrift {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  33% {
    transform: translate(8px, -5px);
    opacity: 1;
  }
  66% {
    transform: translate(-5px, 8px);
    opacity: 0.8;
  }
  100% {
    transform: translate(5px, 5px);
    opacity: 1;
  }
}
@keyframes infp-fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes infp-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes infp-fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes infp-fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes infp-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes infp-slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[class*=infp-],
[class*=infp-] *,
[class*=infp-] *::before,
[class*=infp-] *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--infp-font-body);
  background-color: var(--infp-bg-white);
  color: var(--infp-text-dark);
  line-height: 1.7;
  font-size: 16px;
  margin: 0 !important;
}

.infp-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

[class*=infp-] a {
  text-decoration: none !important;
  color: inherit;
}
[class*=infp-] a:hover,
[class*=infp-] a:focus {
  text-decoration: none !important;
  color: inherit;
}

.infp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.infp-navbar {
  background: var(--infp-bg-white);
  color: var(--infp-text-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.infp-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
  z-index: 2;
}

.infp-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.infp-logo-img {
  height: 45px;
  width: auto;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}
.infp-logo-img:hover {
  opacity: 0.85;
}

.infp-nav-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.infp-nav-menu li {
  display: inline;
}

.infp-nav-link {
  color: var(--infp-text-dark) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.infp-nav-link:hover {
  color: var(--infp-primary) !important;
  background-color: rgba(83, 85, 145, 0.05);
  transform: translateY(-2px);
}

.infp-nav-link-contact {
  background-color: var(--infp-primary) !important;
  color: #ffffff !important;
  padding: 10px 24px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(83, 85, 145, 0.2);
}
.infp-nav-link-contact:hover {
  color: #ffffff !important;
  background-color: var(--infp-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(83, 85, 145, 0.3);
}

.infp-language-switcher {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #999999;
}

.infp-lang-option {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}
.infp-lang-option:hover {
  color: var(--infp-text-dark) !important;
  background-color: rgba(0, 0, 0, 0.05);
}
.infp-lang-option.active {
  color: #ffffff !important;
  background-color: var(--infp-primary);
  font-weight: 700;
}

.infp-lang-divider {
  color: #cccccc;
}

.infp-mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.infp-hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--infp-text-dark);
  position: relative;
  transition: background-color 0.3s ease;
}
.infp-hamburger::before, .infp-hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--infp-text-dark);
  left: 0;
  transition: top 0.3s ease, transform 0.3s ease;
}
.infp-hamburger::before {
  top: -8px;
}
.infp-hamburger::after {
  top: 8px;
}

.infp-mobile-menu-btn[aria-expanded=true] .infp-hamburger {
  background-color: transparent;
}
.infp-mobile-menu-btn[aria-expanded=true] .infp-hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.infp-mobile-menu-btn[aria-expanded=true] .infp-hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.infp-mobile-menu {
  display: none;
  background-color: var(--infp-bg-white);
  border-top: 1px solid var(--infp-border);
}
.infp-mobile-menu.active {
  display: block;
}
.infp-mobile-menu ul {
  list-style: none;
  padding: 10px 20px;
  margin: 0;
}
.infp-mobile-menu ul li {
  margin-bottom: 0;
}
.infp-mobile-menu ul li a {
  color: var(--infp-text-dark);
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 8px 10px;
}
.infp-mobile-menu ul li a:hover {
  color: var(--infp-primary);
  background-color: rgba(83, 85, 145, 0.05);
}

.infp-mobile-language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px 12px;
  border-top: 1px solid var(--infp-border);
  font-size: 16px;
  font-weight: 600;
}

.content {
  overflow: visible;
  padding: 0;
  margin: 0;
}

.infp-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 70px;
  height: 100vh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  width: 100%;
}

.infp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.infp-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  max-width: 100%;
  width: 100%;
  padding: 0 20px;
}

.infp-hero-content {
  max-width: 600px;
  color: white;
  padding: 40px;
  margin-right: calc((100% - 1200px) / 2);
  text-align: right;
}

.infp-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  color: white;
  animation: infp-fadeRight 0.8s ease-out 0.2s both;
}

.infp-hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  animation: infp-fadeRight 0.8s ease-out 0.5s both;
}

.infp-hero-stats {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
  animation: infp-fadeUp 0.8s ease-out 0.8s both;
}

.infp-stat {
  text-align: right;
}

.infp-stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.infp-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.infp-hero-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  animation: infp-fadeUp 0.7s ease-out 1.1s both;
}

.infp-btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.infp-btn-primary {
  background-color: var(--infp-primary);
  color: #ffffff;
  border-color: var(--infp-primary);
}
.infp-btn-primary:hover {
  background-color: var(--infp-primary-dark);
  border-color: var(--infp-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 72, 136, 0.3);
}

.infp-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.infp-btn-secondary:hover {
  background-color: #ffffff;
  color: var(--infp-primary) !important;
}

.infp-hero-buttons .infp-btn-primary {
  background-color: #ffffff;
  color: var(--infp-primary);
  border-color: #ffffff;
}
.infp-hero-buttons .infp-btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.infp-hero-buttons .infp-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

.infp-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.infp-section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--infp-primary);
  margin-bottom: 15px;
}

.infp-section-subtitle {
  font-size: 18px;
  color: var(--infp-text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.infp-partners-section {
  padding: 80px 20px;
  background-color: var(--infp-bg-white);
}

.infp-partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.infp-partner-card {
  background-color: white;
  padding: 24px;
  border: 2px solid var(--infp-border);
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}
.infp-partner-card:hover {
  border-color: var(--infp-primary);
  box-shadow: 0 5px 20px rgba(83, 85, 145, 0.1);
  transform: translateY(-5px);
}

.infp-partner-logo {
  text-align: center;
}

.infp-partner-logo-img {
  height: 80px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.infp-services-section {
  padding: 80px 20px;
  background-color: var(--infp-bg-light);
}

.infp-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.infp-service-card {
  background-color: white;
  padding: 35px;
  border: 1px solid var(--infp-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.infp-service-card:hover {
  border-color: var(--infp-primary);
  box-shadow: 0 5px 20px rgba(83, 85, 145, 0.15);
}

.infp-service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--infp-primary-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--infp-primary);
}
.infp-service-icon svg {
  width: 48px;
  height: 48px;
}

.infp-service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--infp-text-dark);
  margin-bottom: 15px;
}

.infp-service-description {
  font-size: 15px;
  color: var(--infp-text-medium);
  line-height: 1.7;
}

.infp-industries-section {
  padding: 80px 20px;
  background-color: var(--infp-bg-white);
}

.infp-industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.infp-industry-card {
  background-color: white;
  padding: 35px;
  border-left: 4px solid var(--infp-primary);
  border-right: 1px solid var(--infp-border);
  border-top: 1px solid var(--infp-border);
  border-bottom: 1px solid var(--infp-border);
  border-radius: 4px;
}

.infp-industry-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--infp-text-dark);
  margin-bottom: 15px;
}

.infp-industry-description {
  font-size: 15px;
  color: var(--infp-text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.infp-industry-list {
  list-style: none;
  padding: 0;
}
.infp-industry-list li {
  padding: 8px 0;
  color: var(--infp-text-dark);
  font-size: 15px;
}
.infp-industry-list li::before {
  content: "✓ ";
  color: var(--infp-primary);
  font-weight: bold;
  margin-right: 10px;
}

.infp-about-section {
  padding: 80px 20px;
  background-color: var(--infp-bg-light);
}

.infp-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.infp-about-card {
  background-color: var(--infp-bg-white);
  padding: 35px;
  border-radius: 4px;
  border-top: 4px solid var(--infp-primary);
  transition: all 0.3s ease;
}
.infp-about-card:hover {
  box-shadow: 0 5px 20px rgba(83, 85, 145, 0.1);
  transform: translateY(-3px);
}

.infp-about-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--infp-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--infp-primary);
}

.infp-about-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--infp-primary);
  margin-bottom: 12px;
}

.infp-about-card-text {
  font-size: 15px;
  color: var(--infp-text-medium);
  line-height: 1.7;
}

.infp-about-culture {
  background-color: var(--infp-bg-white);
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid var(--infp-primary);
}

.infp-about-culture-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--infp-primary);
  margin-bottom: 20px;
}

.infp-about-culture-list {
  list-style: none;
  padding: 0;
}
.infp-about-culture-list li {
  padding: 10px 0;
  color: var(--infp-text-dark);
  font-size: 15px;
  line-height: 1.7;
}
.infp-about-culture-list li::before {
  content: "✔";
  color: var(--infp-primary);
  font-weight: bold;
  margin-right: 10px;
}

.infp-contact-section {
  padding: 80px 20px;
  background-color: var(--infp-bg-white);
}

.infp-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}

.infp-contact-form-container h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--infp-primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.infp-contact-form-container h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--infp-primary);
  border-radius: 2px;
}

.infp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.infp-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.infp-form-group {
  display: flex;
  flex-direction: column;
}
.infp-form-group label {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--infp-text-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.infp-form-group input,
.infp-form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #fafafa;
}
.infp-form-group input:focus,
.infp-form-group textarea:focus {
  outline: none;
  border-color: var(--infp-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(83, 85, 145, 0.1);
}

.infp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.infp-contact-info-block {
  background-color: #fafafa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--infp-primary);
  transition: all 0.3s ease;
}
.infp-contact-info-block:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.infp-contact-info-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--infp-primary);
  margin-bottom: 15px;
}
.infp-contact-info-block p {
  color: var(--infp-text-medium);
  line-height: 1.8;
  margin-bottom: 10px;
}

.infp-contact-detail {
  margin-top: 15px;
}
.infp-contact-detail strong {
  color: var(--infp-text-dark);
}
.infp-contact-detail a {
  color: var(--infp-primary);
  transition: all 0.3s ease;
}
.infp-contact-detail a:hover {
  font-weight: 600;
  color: var(--infp-primary-dark);
}

.infp-footer {
  background: linear-gradient(160deg, #2d3060 0%, #3a4888 40%, #44477a 70%, #2d3060 100%);
  color: white;
  padding: 100px 20px 30px;
  position: relative;
  overflow: hidden;
}
.infp-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.07) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%), linear-gradient(to right, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 100%);
  background-size: 8px 28px, 28px 8px, 10px 34px, 34px 10px, 7px 24px, 24px 7px, 9px 30px, 30px 9px, 12px 40px, 40px 12px, 8px 26px, 26px 8px, 6px 22px, 22px 6px, 11px 36px, 36px 11px, 8px 28px, 28px 8px, 9px 32px, 32px 9px;
  background-position: 8% 30%, 8% 30%, 78% 40%, 78% 40%, 22% 75%, 22% 75%, 88% 18%, 88% 18%, 50% 55%, 50% 55%, 70% 78%, 70% 78%, 35% 20%, 35% 20%, 62% 15%, 62% 15%, 15% 55%, 15% 55%, 92% 65%, 92% 65%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  animation: infp-crossesDrift 20s ease-in-out infinite alternate;
}

.infp-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

.infp-footer-column h3,
.infp-footer-column h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.infp-footer-logo-img {
  height: 45px;
  width: auto;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.infp-footer-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 15px;
}

.infp-footer-links {
  list-style: none;
  padding-inline-start: 0px;
}
.infp-footer-links li {
  margin-bottom: 12px;
}
.infp-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}
.infp-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.infp-footer-contact {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 15px;
}
.infp-footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}
.infp-footer-contact a:hover {
  color: white;
}

.infp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.infp-anim-ready {
  opacity: 0;
}

.infp-anim-fade-up {
  animation: infp-fadeUp 0.6s ease-out both;
}

.infp-anim-fade-in {
  animation: infp-fadeIn 0.6s ease-out both;
}

.infp-anim-fade-left {
  animation: infp-fadeLeft 0.6s ease-out both;
}

.infp-anim-fade-right {
  animation: infp-fadeRight 0.6s ease-out both;
}

.infp-anim-scale-in {
  animation: infp-scaleIn 0.5s ease-out both;
}

.infp-anim-slide-up {
  animation: infp-slideUp 0.7s ease-out both;
}

.infp-anim-stagger-1 {
  animation-delay: 0s;
}

.infp-anim-stagger-2 {
  animation-delay: 0.1s;
}

.infp-anim-stagger-3 {
  animation-delay: 0.2s;
}

.infp-anim-stagger-4 {
  animation-delay: 0.3s;
}

.infp-anim-stagger-5 {
  animation-delay: 0.4s;
}

.infp-anim-stagger-6 {
  animation-delay: 0.5s;
}

.infp-footer-content .infp-footer-column {
  opacity: 0;
}
.infp-footer-content .infp-footer-column.infp-anim-fade-up {
  opacity: 1;
}

@media (min-width: 992px) {
  .infp-nav-menu {
    display: flex;
  }
  .infp-language-switcher {
    display: flex;
  }
  .infp-mobile-menu-btn {
    display: none;
  }
}
@media (min-width: 768px) {
  .infp-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infp-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infp-about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .infp-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .infp-contact-wrapper {
    grid-template-columns: 1.2fr 1fr;
  }
  .infp-footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .infp-partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .infp-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .infp-hero-container {
    justify-content: center;
  }
  .infp-hero-content {
    text-align: center;
    margin-right: 0;
  }
  .infp-hero-title {
    font-size: 36px;
  }
  .infp-hero-stats {
    justify-content: center;
  }
  .infp-stat {
    text-align: center;
  }
  .infp-hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .infp-container {
    padding-left: 0;
    padding-right: 0;
  }
  .infp-section-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .infp-hero-stats {
    display: none;
  }
  .infp-hero-section {
    min-height: 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    align-items: center;
    justify-content: center;
  }
  .infp-hero-container {
    justify-content: center;
    align-items: center;
    min-height: 0;
  }
  .infp-hero-content {
    padding: 20px;
    text-align: center;
    margin: 0;
    max-width: 100%;
  }
  .infp-hero-title {
    font-size: 28px;
  }
  .infp-hero-buttons {
    justify-content: center;
  }
}
.signature,
.signature a {
  background: linear-gradient(160deg, #2d3060 0%, #3a4888 40%, #44477a 70%, #2d3060 100%) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: var(--infp-font-body) !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
}

.signature a {
  background: none !important;
}

.signature {
  padding: 15px 0 !important;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.signature a {
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.signature a:hover, .signature a:focus {
  color: white !important;
  text-decoration: none !important;
}
.signature .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.signature .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signature .col-md-4 {
  flex: 1;
}
.signature .col-md-4:first-child {
  text-align: left;
}
.signature .col-md-4:nth-child(2) {
  text-align: center;
}
.signature .col-md-4:last-child {
  text-align: right;
}
.signature .copyright {
  font-size: 14px;
}
.signature .signature-menu a {
  margin: 0 8px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }
  .infp-anim-ready {
    opacity: 1;
  }
}
