/*
Theme Name: Next
Author: ModinaTheme
Author URI: https://themeforest.net/user/modinatheme/
Description: Multipurpose HTML5 Template
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #5C30FD;
  --theme-2: #8760FD;
  --theme-3: #2B2B6B;
  --theme-4: #ECE6FF;
  --header: #101828;
  --base: #5C30FD;
  --text: #696969;
  --border: #E6E6E6;
  --border2: #373737;
  --ratting: #F8BC26;
  --bg: #101828;
  --bg2: #0D0D0D;
  --bg3: #121416;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

/* Estilos personalizados para os modals de funcionalidades */
.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 1px solid #f0f0f0;
  border-radius: 0 0 20px 20px;
  padding: 1.5rem 2rem;
}

.feature-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.05);
}

.modal .btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.modal .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-backdrop {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.6);
}

/* Animações suaves para os modals */
.modal.fade .modal-dialog {
  transform: translate(0, -50px) scale(0.95);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translate(0, 0) scale(1);
}

/* ========================================
   LANDING PAGE HIGH-CONVERSION STYLES
   ======================================== */

/* Hero Section Ultra-Focada em Conversão */
.lp-hero-conversion {
  background: linear-gradient(135deg, #d73502 0%, #ff4757 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #ff3742;
}

.lp-hero-conversion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.lp-hero-conversion::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
  pointer-events: none;
}

/* Urgência e Escassez */
.lp-urgency-alert {
  animation: urgentPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
}

.lp-urgency-alert .alert {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: 3px solid #ff4757;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes urgentPulse {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
  }
  50% { 
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.8);
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
  }
}

/* Headlines Impactantes */
.lp-main-headline {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.lp-main-headline strong {
  color: #ffff00;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.lp-sub-headline {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  color: #f8f9fa;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.lp-sub-headline strong {
  color: #ffff00;
  font-weight: 800;
}

/* Grid de Benefícios */
.lp-benefits-grid .lp-benefit-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.lp-benefits-grid .lp-benefit-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.lp-benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffff00;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lp-benefit-card h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.lp-benefit-card small {
  color: #f8f9fa;
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA Principal */
.lp-cta-primary {
  font-size: 1.3rem;
  font-weight: 900;
  padding: 20px 45px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: 3px solid #ff4757;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  animation: urgentGlow 1.8s ease-in-out infinite alternate;
  position: relative;
}

.lp-cta-primary::before {
  content: '🔥';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: fire 1s ease-in-out infinite alternate;
}

.lp-cta-primary::after {
  content: '🔥';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: fire 1s ease-in-out infinite alternate-reverse;
}

@keyframes urgentGlow {
  from { 
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transform: scale(1);
  }
  to { 
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.8);
    transform: scale(1.02);
  }
}

@keyframes fire {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.lp-cta-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #ff5722 0%, #e65100 100%);
}

.lp-cta-subtitle {
  margin-top: 15px;
  color: #f8f9fa;
  font-weight: 600;
  font-size: 1rem;
}

/* Seção de Problemas */
.lp-problems-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

.lp-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  text-align: center;
}

.lp-section-subtitle {
  font-size: 1.3rem;
  color: #ecf0f1;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.lp-problem-list {
  padding: 0;
}

.lp-problem-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 15px;
  background: #ffffff;
  border: 2px solid #dc3545;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
  transition: all 0.3s ease;
}

.lp-problem-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.lp-problem-item i {
  color: #dc3545;
  font-size: 1.5rem;
  margin-right: 15px;
}

.lp-problem-item div {
  color: #333333;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}

.lp-problem-item strong {
  color: #dc3545;
  font-weight: 700;
}

/* Seção de Soluções */
.lp-solution-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  position: relative;
}

.lp-solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(255,255,255,0.05) 100px,
    rgba(255,255,255,0.05) 101px
  );
  pointer-events: none;
}

.lp-solution-section .lp-section-title {
  color: white;
}

.lp-solution-section .lp-section-subtitle {
  color: #ecf0f1;
}

.lp-solution-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lp-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
}

.lp-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.lp-solution-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 20px;
}

.lp-solution-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.lp-solution-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lp-feature-list {
  list-style: none;
  padding: 0;
}

.lp-feature-list li {
  padding: 5px 0;
  color: #555;
  font-weight: 500;
}

/* Formulário de Lead */
.lp-lead-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.lp-lead-card {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.lp-form-title {
  font-size: 2rem;
  font-weight: 800;
}

.lp-form-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.lp-lead-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.lp-form-control {
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
}

.lp-form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
  background: #fff;
  outline: none;
}

/* 
/* Depoimentos */
.lp-testimonials-section {
  padding: 80px 0;
}

.lp-testimonial-card {
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.lp-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lp-stars {
  font-size: 1rem;
}

.lp-testimonial-author {
  font-size: 0.9rem;
}

/* Prova Social com Números */
.lp-social-proof-numbers {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lp-proof-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
}

.lp-proof-stat small {
  color: #666;
  font-weight: 600;
}

/* FAQ */
.lp-faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.lp-faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lp-faq-button {
  background: white;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.lp-faq-button:not(.collapsed) {
  background: #28a745;
  color: white;
}

.lp-faq-body {
  padding: 20px 25px;
  background: #f8f9fa;
  color: #666;
  line-height: 1.6;
}

/* CTA Final */
.lp-final-cta {
  background: linear-gradient(135deg, #343a40 0%, #495057 100%);
  padding: 80px 0;
}

.lp-urgency-final {
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* Responsividade */
@media (max-width: 768px) {
  .lp-main-headline {
    font-size: 2.2rem;
  }
  
  .lp-sub-headline {
    font-size: 1.1rem;
  }
  
  .lp-cta-primary {
    font-size: 1rem;
    padding: 15px 25px;
  }
  
  .lp-section-title {
    font-size: 2rem;
  }
  
  .lp-hero-conversion,
  .lp-problems-section,
  .lp-solution-section,
  .lp-lead-section,
  .lp-testimonials-section,
  .lp-faq-section,
  .lp-final-cta {
    padding: 60px 0;
  }
  
  .lp-benefit-card,
  .lp-solution-card {
    margin-bottom: 30px;
  }
  
  .lp-lead-card {
    padding: 30px 20px;
  }
}

/* Utilidades */
.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #343a40 0%, #495057 100%);
}

.lp-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
}

.lp-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.lp-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.lp-benefits-list {
  list-style: none;
  padding: 0;
}

.lp-benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.lp-cta-buttons {
  margin-bottom: 2rem;
}

.lp-btn-demo, .lp-btn-contact {
  border-radius: 12px;
  font-weight: 600;
  padding: 15px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lp-btn-demo:hover, .lp-btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.lp-social-proof {
  font-size: 1.1rem;
}

/* Dashboard Preview */
.lp-hero-visual {
  position: relative;
  z-index: 2;
}

.lp-dashboard-preview {
  position: relative;
}

.lp-browser-mockup {
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.lp-browser-header {
  background: #f5f5f5;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.lp-browser-buttons {
  display: flex;
  gap: 8px;
  margin-right: 20px;
}

.lp-browser-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.lp-browser-buttons span:nth-child(1) { background: #ff5f57; }
.lp-browser-buttons span:nth-child(2) { background: #ffbd2e; }
.lp-browser-buttons span:nth-child(3) { background: #28ca42; }

.lp-browser-url {
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
  border: 1px solid #e0e0e0;
}

.lp-dashboard-content {
  padding: 30px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lp-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #5C30FD;
  margin-bottom: 5px;
}

.lp-stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Floating Elements */
.lp-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.lp-floating-card {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.lp-float-1 {
  top: 20%;
  right: -10px;
  animation-delay: 0s;
}

.lp-float-2 {
  top: 60%;
  left: -20px;
  animation-delay: 1s;
}

.lp-float-3 {
  bottom: 20%;
  right: 20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.lp-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.lp-scroll-arrow {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Problems Section */
.lp-problems-section {
  background: #f8f9fa;
}

.lp-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.lp-comparison-row {
  margin-top: 3rem;
}

.lp-problem-card, .lp-solution-card {
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.lp-problem-card:hover, .lp-solution-card:hover {
  transform: translateY(-5px);
}

.lp-card-header {
  padding: 25px;
  text-align: center;
}

.lp-problem-header {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
}

.lp-solution-header {
  background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
  color: white;
}

.lp-card-body {
  padding: 30px;
  background: white;
  flex-grow: 1;
}

.lp-problem-item, .lp-solution-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.lp-problem-item {
  background: rgba(255, 107, 107, 0.05);
}

.lp-solution-item {
  background: rgba(81, 207, 102, 0.05);
}

.lp-problem-item:hover {
  background: rgba(255, 107, 107, 0.1);
}

.lp-solution-item:hover {
  background: rgba(81, 207, 102, 0.1);
}

/* Features Section */
.lp-features-section {
  background: #f8f9fa;
}

.lp-feature-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.lp-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lp-feature-highlight {
  border: 3px solid #5C30FD;
  transform: scale(1.05);
}

.lp-popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #5C30FD;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.lp-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #5C30FD 0%, #8760FD 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.lp-feature-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.lp-feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.lp-feature-benefits {
  text-align: left;
  color: #666;
}

/* Lead Form Section */
.lp-lead-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.lp-lead-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  color: #333;
}

.lp-lead-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.lp-lead-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.lp-lead-benefits {
  margin-bottom: 2rem;
}

.lp-lead-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.lp-urgency-badge {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  color: #856404;
  display: inline-flex;
  align-items: center;
}

.lp-lead-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
}

.lp-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.lp-form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.lp-form-control:focus {
  border-color: #5C30FD;
  box-shadow: 0 0 0 0.2rem rgba(92, 48, 253, 0.25);
}

.lp-submit-btn {
  background: linear-gradient(135deg, #5C30FD 0%, #8760FD 100%);
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(92, 48, 253, 0.3);
}

.lp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(92, 48, 253, 0.4);
}

.lp-form-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}

/* Testimonials Section */
.lp-testimonials-section {
  background: linear-gradient(135deg, #5C30FD 0%, #8760FD 100%);
}

.lp-testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.lp-testimonial-card:hover {
  transform: translateY(-5px);
}

.lp-testimonial-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
}

.lp-author-info strong {
  color: white;
  font-size: 1.1rem;
}

.lp-author-info small {
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.lp-faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.lp-faq-button {
  background: white;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 15px;
}

.lp-faq-button:not(.collapsed) {
  background: #5C30FD;
  color: white;
}

.lp-faq-body {
  padding: 20px 25px;
  background: #f8f9fa;
  color: #666;
  line-height: 1.6;
}

/* Final CTA Section */
.bg-gradient-primary {
  background: linear-gradient(135deg, #5C30FD 0%, #8760FD 100%);
}

.lp-final-benefits .row {
  max-width: 600px;
  margin: 0 auto;
}

/* Demo Modal */
.lp-demo-modal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.lp-demo-modal .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 25px 30px 20px;
}

.lp-demo-modal .modal-body {
  padding: 30px;
}

/* Success Steps */
.lp-success-steps .lp-step-number {
  width: 25px;
  height: 25px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .lp-hero-title {
    font-size: 2.5rem;
  }
  
  .lp-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .lp-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .lp-btn-demo, .lp-btn-contact {
    width: 100%;
    margin: 0 0 15px 0;
  }
  
  .lp-browser-mockup {
    transform: none;
    margin-top: 30px;
  }
  
  .lp-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .lp-floating-elements {
    display: none;
  }
  
  .lp-comparison-row {
    margin-top: 2rem;
  }
  
  .lp-lead-card {
    padding: 25px;
  }
  
  .lp-lead-form {
    padding: 20px;
  }
  
  .lp-section-title {
    font-size: 2rem;
  }
}

/* Estilos para o modal de confirmação */
#modalConfirmacaoEnvio .modal-content {
  border-radius: 25px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

#modalConfirmacaoEnvio .success-icon {
  font-size: 4rem;
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

#modalConfirmacaoEnvio .step-number {
  width: 25px;
  height: 25px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

#modalConfirmacaoEnvio .next-steps {
  border: 1px solid rgba(92, 48, 253, 0.1);
}

#modalConfirmacaoEnvio .contact-info {
  border: 1px solid rgba(92, 48, 253, 0.2);
}

#modalConfirmacaoEnvio .btn {
  border-radius: 15px;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

#modalConfirmacaoEnvio .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(92, 48, 253, 0.3);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem;
  }
  
  .modal-body {
    padding: 1.5rem 1rem;
  }
  
  .modal-header,
  .modal-footer {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 100px;
    height: 100px;
  }
  
  #modalConfirmacaoEnvio .success-icon {
    font-size: 3rem;
  }
  
  #modalConfirmacaoEnvio .modal-body {
    padding: 3rem 2rem;
  }
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none !important;
  background: var(--theme);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 22px 40px;
  transition: all 0.4s ease-in-out;
  letter-spacing: 0;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  z-index: 9;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn::before, .theme-btn::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--header);
  border-radius: 50%;
  z-index: -1;
}
.theme-btn::before {
  left: -20px;
  transform: translate(-50%, -50%);
}
.theme-btn::after {
  right: -20px;
  transform: translate(50%, -50%);
}
.theme-btn:hover {
  color: var(--white);
}
.theme-btn:hover::before {
  animation: criss-cross-left 0.8s both;
  animation-direction: alternate;
}
.theme-btn:hover::after {
  animation: criss-cross-right 0.8s both;
  animation-direction: alternate;
}
.theme-btn.bg-white {
  background: var(--white);
  color: var(--header);
}
.theme-btn.bg-white:hover {
  color: var(--white);
}
.theme-btn.hover-white {
  transition: all 0.4s ease-in-out;
}
.theme-btn.hover-white::before, .theme-btn.hover-white::after {
  background-color: var(--white);
}
.theme-btn.hover-white:hover {
  color: var(--header);
}
.theme-btn.bg-2 {
  background: var(--theme-2);
}
.theme-btn.bg-2::before, .theme-btn.bg-2::after {
  background: var(--header);
}
.theme-btn.bg-2:hover {
  color: var(--white);
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}
.theme-btn.white-border {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.theme-btn.white-border::before, .theme-btn.white-border::after {
  background-color: var(--white);
}
.theme-btn.white-border:hover {
  color: var(--header);
}

.link-btn {
  color: var(--header);
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
}
.link-btn i {
  margin-left: 8px;
}
.link-btn:hover {
  color: var(--theme);
}

.arrow-btn {
  font-size: 16px;
  position: relative;
  transform: translateX(0);
  transition: 0.7s;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
  color: var(--theme);
  text-decoration: underline;
}
.arrow-btn i {
  font-size: 18px;
  transform: rotate(-40deg);
}
.arrow-btn::before {
  position: absolute;
  content: "Saiba mais";
  font-weight: 700;
  color: var(--theme);
  font-size: 16px;
  left: -95px;
  top: -2px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.arrow-btn:hover {
  transform: translateX(95px);
  color: var(--theme);
}
.arrow-btn:hover i {
  transform: rotate(0);
}
.arrow-btn:hover::before {
  opacity: 1;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 65px;
  font-weight: 500;
  line-height: 112%;
}

h2 {
  font-size: 45px;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 500;
  line-height: 137%;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Rubik", sans-serif, "Rubik", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Rubik", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  background: transparent;
  font-size: 25px;
  color: var(--header);
  border-bottom: 2px solid var(--header);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--header);
}

input.main-search-input::placeholder {
  color: var(--header);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme);
  stroke-width: 4px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title .sub-content {
  color: var(--theme);
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
}
.section-title .sub-content img {
  margin-right: 10px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
.section-title .sub-content.bg-color-3 {
  background-color: rgba(255, 255, 255, 0.1);
}
.section-title .sec-sub-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.section-title .sec-sub-text-2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--theme);
}
.section-title h2 {
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.home-5-body-color {
  background-color: var(--bg3);
}

.section-padding {
  padding: 5px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 5px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 5px 0;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes rounded-2 {
  50% {
    transform: rotate(5deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.animation__rotate {
  -webkit-animation: rotate 40s linear infinite;
  animation: rotate 40s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes top-image-bounce {
  0% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(-8px);
  }
}
@keyframes top-image-bounce-2 {
  0% {
    transform: translatey(-8px);
  }
  50% {
    transform: translatey(12px);
  }
  100% {
    transform: translatey(-8px);
  }
}
@keyframes toggle {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-webkit-keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes icon-animation {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 1199px) {
  .header-main {
    padding: 15px 0px;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
  padding: 30px 0;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  text-align: left;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme);
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1250px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  overflow-y: scroll;
  max-height: 70vh;
}
.header-main .main-menu ul li .has-homemenu .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 16px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right .menu-cart {
  position: relative;
}
@media (max-width: 1199px) {
  .header-main .header-right .menu-cart {
    display: none;
  }
}
.header-main .header-right .menu-cart .cart-box {
  background: var(--white) none repeat scroll 0 0;
  box-shadow: 0 0 7px 0.5px rgba(0, 0, 0, 0.15);
  padding: 5px 20px 0px;
  position: absolute;
  left: -70px;
  top: 150%;
  transform: rotateX(90deg);
  transform-origin: center top 0;
  transition: all 0.5s ease 0s;
  visibility: hidden;
  width: 340px;
  z-index: 9999;
}
@media (max-width: 1399px) {
  .header-main .header-right .menu-cart .cart-box {
    left: -260px;
  }
}
.header-main .header-right .menu-cart .cart-box ul li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  gap: 15px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 600;
}
.header-main .header-right .menu-cart .cart-box ul li a {
  padding: 0;
  position: relative;
  font-size: 16px;
}
.header-main .header-right .menu-cart .cart-box ul li a::after {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  top: 15px;
  right: -88px;
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 30px;
  background-color: var(--theme);
  text-align: center;
}
.header-main .header-right .menu-cart .cart-box ul li span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.header-main .header-right .menu-cart .cart-box ul li img {
  width: 90px;
}
.header-main .header-right .menu-cart .cart-box .shopping-items {
  margin-top: 10px;
}
.header-main .header-right .menu-cart .cart-box .shopping-items span {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}
.header-main .header-right .menu-cart .cart-box .cart-button {
  margin-top: 20px;
}
.header-main .header-right .menu-cart .cart-box .cart-button .theme-btn {
  padding: 16px 28px;
  font-size: 14px;
}
.header-main .header-right .menu-cart .cart-icon {
  position: relative;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: var(--bg);
  display: inline-block;
  border-radius: 50%;
}
.header-main .header-right .menu-cart .cart-icon::before {
  position: absolute;
  top: -7px;
  right: -8px;
  content: "1";
  width: 18px;
  line-height: 18px;
  height: 18px;
  border-radius: 18px;
  background-color: var(--theme);
  color: var(--white);
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.header-main .header-right .menu-cart .cart-icon i {
  color: var(--header);
}
.header-main .header-right .menu-cart:hover .cart-box {
  transform: rotateX(0deg);
  visibility: visible;
}

.sidebar__toggle {
  cursor: pointer;
}

.header-1 {
  background: #101828;
}
.header-1 .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-1 .container-fluid {
    padding: 0 20px;
  }
}
.header-1 .header-main .sticky-logo .logo-2 {
  display: none;
}
.header-1 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
@media (max-width: 1399px) {
  .header-1 .header-main .main-menu ul li .has-homemenu {
    left: -410px;
  }
}
.header-1 .header-main .header-right .sidebar__toggle {
  color: var(--white);
  font-size: 30px;
}
.header-1 .header-right {
  gap: 50px;
}
.header-1 .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .header-1 .header-right .icon-items {
    display: none;
  }
}
.header-1 .header-right .icon-items .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  color: var(--white);
}
.header-1 .header-right .icon-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}
.header-1 .header-right .icon-items .content h4 {
  font-size: 18px;
}
.header-1 .header-right .icon-items .content h4 a {
  color: var(--white);
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header-2 .header-main {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1399px) {
  .header-2 .header-main .main-menu ul li .has-homemenu {
    left: -315px;
  }
}
.header-2 .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-2 .container-fluid {
    padding: 0 20px;
  }
}
.header-2 .header-right {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-2 .header-right .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .header-2 .header-right .icon-items {
    display: none;
  }
}
.header-2 .header-right .icon-items .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: rgba(135, 96, 253, 0.1);
  border-radius: 50%;
  color: var(--theme);
  border: 1px solid rgba(16, 24, 40, 0.1);
}
.header-2 .header-right .icon-items .content p {
  color: var(--text);
  margin-bottom: 5px;
}
.header-2 .header-right .icon-items .content h4 {
  font-size: 18px;
}
.header-2 .header-right .icon-items .content h4 a {
  color: var(--black);
}
@media (max-width: 1199px) {
  .header-2 .header-right .header-button {
    display: none;
  }
}

.header-3 {
  box-shadow: 0px 10px 60px 0px rgba(92, 48, 253, 0.2);
  position: relative;
  z-index: 9999;
}
.header-3 .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1399px) {
  .header-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-3 .container-fluid {
    padding: 0 20px;
  }
}
.header-3 .header-right {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  .header-3 .header-right .header-button {
    display: none;
  }
}
.header-3 .header-right .sidebar__toggle {
  color: var(--theme);
  font-size: 30px;
}

.header-6 {
  box-shadow: none;
}
.header-6 .header-main .sticky-logo .logo-2 {
  display: none;
}
.header-6 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-6 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
@media (max-width: 1399px) {
  .header-6 .header-main .main-menu ul li .has-homemenu {
    left: -415px;
  }
}
.header-6 .header-main .header-right .sidebar__toggle {
  color: var(--white);
  font-size: 30px;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(---box-shadow);
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-1 .header-main .sticky-logo .logo-1 {
  display: none;
}
.sticky.header-1 .header-main .sticky-logo .logo-2 {
  display: block;
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .header-right .icon-items .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  color: var(--white);
}
.sticky.header-1 .header-right .icon-items .content p {
  color: var(--text);
}
.sticky.header-1 .header-right .icon-items .content h4 a {
  color: var(--header);
}
.sticky.header-1 .header-right .sidebar__toggle {
  color: var(--black);
}
.sticky.header-2 .header-main {
  border: none;
}
.sticky.header-6 {
  box-shadow: var(---box-shadow);
}
.sticky.header-6 .header-main .sticky-logo .logo-2 {
  display: block;
}
.sticky.header-6 .header-main .sticky-logo .logo-1 {
  display: none;
}
.sticky.header-6 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-6 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.sticky.header-6 .header-main .header-right .sidebar__toggle {
  color: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    padding: 14px 30px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  z-index: 9;
  text-align: center;
}
.breadcrumb-wrapper .page-heading h1 {
  font-size: 65px;
  position: relative;
  z-index: 9;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 32px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: left;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 16px;
  color: var(--theme);
  font-weight: 400;
  letter-spacing: -0.72px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 18px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--theme);
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2 {
  text-decoration: underline;
}
.breadcrumb-wrapper .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.breadcrumb-wrapper .shape-1 img {
  width: 100%;
  height: 100%;
}
.breadcrumb-wrapper .shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.breadcrumb-wrapper .shape-2 img {
  width: 100%;
  height: 100%;
}

.error-items .error-image {
  margin-bottom: 50px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  padding: 120px 0;
  position: relative;
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(66.34% 66.34% at 50% 25.71%, rgba(16, 24, 40, 0.3) 0%, rgba(16, 24, 40, 0.97) 100%);
}
.hero-1 .hero-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content br {
    display: none;
  }
}
.hero-1 .hero-content h1 {
  color: var(--white);
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 56px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 30px;
  }
}
.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 25px;
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .hero-1 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-1 .hero-content .hero-button .btn-link {
  color: var(--white);
  font-weight: 600;
  text-decoration-line: underline;
  transition: all 0.4s ease-in-out;
}
.hero-1 .hero-content .hero-button .btn-link i {
  margin-left: 8px;
}
.hero-1 .hero-content .hero-button .btn-link:hover {
  color: var(--theme);
}
@media (max-width: 575px) {
  .hero-1 .hero-content .hero-client {
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .hero-1 .hero-content .hero-client {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-1 .hero-contact-box {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 10px 60px rgba(155, 155, 155, 0.2);
  padding: 60px;
}
@media (max-width: 767px) {
  .hero-1 .hero-contact-box {
    padding: 50px 40px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-contact-box {
    padding: 40px 30px;
  }
}
.hero-1 .hero-contact-box h4 {
  letter-spacing: -0.88px;
}
.hero-1 .hero-contact-box .contact-form-item {
  margin-top: 30px;
}
.hero-1 .hero-contact-box .contact-form-item .form-clt input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(36, 37, 73, 0.1);
  background-color: var(--white);
  padding: 18px 30px;
  color: var(--text);
}
@media (max-width: 767px) {
  .hero-1 .hero-contact-box .contact-form-item .form-clt input {
    line-height: 1px;
  }
}
.hero-1 .hero-contact-box .contact-form-item .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-1 .hero-contact-box .contact-form-item .payment-save input {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid rgba(36, 37, 73, 0.1);
  background-color: transparent;
  outline: none;
  color: var(--text);
}
.hero-1 .hero-contact-box .contact-form-item .payment-save p a {
  color: var(--theme);
  text-decoration-line: underline;
}

.hero-2 {
  position: relative;
  padding-top: 100px;
  z-index: 9;
  margin-bottom: -5px;
}
@media (max-width: 767px) {
  .hero-2 {
    padding-top: 130px;
  }
}
@media (max-width: 575px) {
  .hero-2 {
    padding-top: 150px;
  }
}
.hero-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-size: cover;
  z-index: -1;
  background: radial-gradient(66.34% 66.34% at 50% 25.71%, rgba(16, 24, 40, 0.3) 0%, rgba(16, 24, 40, 0.97) 100%);
}
.hero-2 .frame-shape {
  position: absolute;
  top: 13%;
  left: 5%;
  animation: rounded 5s linear infinite;
}
@media (max-width: 767px) {
  .hero-2 .frame-shape {
    display: none;
  }
}
.hero-2 .man-shape {
  position: absolute;
  top: 35%;
  left: 8%;
}
@media (max-width: 767px) {
  .hero-2 .man-shape {
    display: none;
  }
}
.hero-2 .girl-shape {
  position: absolute;
  top: 13%;
  right: 5%;
}
@media (max-width: 767px) {
  .hero-2 .girl-shape {
    display: none;
  }
}
.hero-2 .frame-shape-2 {
  position: absolute;
  top: 50%;
  right: 5%;
  animation: rounded 5s linear infinite;
}
@media (max-width: 767px) {
  .hero-2 .frame-shape-2 {
    display: none;
  }
}
.hero-2 .hero-content {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 30px;
  }
}
.hero-2 .hero-content .sub-content {
  color: var(--theme);
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
}
.hero-2 .hero-content .sub-content img {
  margin-right: 10px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
.hero-2 .hero-content .hero-button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .hero-2 .hero-content .hero-button {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content .hero-button {
    margin-top: 20px;
  }
}
.hero-2 .dashboard-image {
  max-width: 950px;
  text-align: center;
  margin: 0 auto;
}
.hero-2 .dashboard-image img {
  width: 100%;
  height: 100%;
}

.hero-3 {
  padding: 150px 0;
  position: relative;
}
@media (max-width: 991px) {
  .hero-3 br {
    display: none;
  }
}
.hero-3 .bottom-shape {
  position: absolute;
  bottom: -70%;
  left: 0;
}
@media (max-width: 1899px) {
  .hero-3 .bottom-shape {
    display: none;
  }
}
.hero-3 .bottom-shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .hero-3 .hero-content {
    text-align: center;
  }
}
.hero-3 .hero-content .sub-content {
  color: var(--theme);
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
}
.hero-3 .hero-content .sub-content img {
  margin-right: 10px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
.hero-3 .hero-content h1 {
  letter-spacing: -2.6px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    font-size: 54px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 30px;
    font-weight: 500;
  }
}
.hero-3 .hero-content h1 span {
  color: var(--theme);
  font-style: italic;
}
.hero-3 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 25px;
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .hero-3 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-3 .hero-content .hero-button .btn-link {
  color: var(--header);
  font-weight: 600;
  text-decoration-line: underline;
  transition: all 0.4s ease-in-out;
}
.hero-3 .hero-content .hero-button .btn-link i {
  margin-left: 8px;
}
.hero-3 .hero-content .hero-button .btn-link:hover {
  color: var(--theme);
}
.hero-3 .hero-image {
  text-align: center;
  position: relative;
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-image .frame-shape {
  position: absolute;
  top: 6%;
  left: 8%;
  animation: rounded 5s linear infinite;
}
.hero-3 .hero-image .bcleft-shape {
  position: absolute;
  bottom: 30px;
  left: -26%;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image .bcleft-shape {
    width: 75%;
  }
  .hero-3 .hero-image .bcleft-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-image .bcleft-shape {
    left: 0%;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-image .bcleft-shape {
    width: 60%;
  }
}
.hero-3 .hero-image .bcright-shape {
  position: absolute;
  top: 0;
  right: -35%;
}
@media (max-width: 1600px) {
  .hero-3 .hero-image .bcright-shape {
    width: 80%;
    top: 60px;
    right: -20%;
  }
  .hero-3 .hero-image .bcright-shape img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-image .bcright-shape {
    right: -15%;
    width: 70%;
    top: 20%;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-image .bcright-shape {
    right: 0%;
    width: 60%;
    top: 20%;
  }
}
.hero-3 .hero-image .message-shape {
  position: absolute;
  bottom: 8%;
  right: 30px;
  animation: rounded 5s linear infinite;
}

.hero-4 {
  padding: 220px 0 150px;
}
@media (max-width: 767px) {
  .hero-4 {
    padding: 180px 0 150px;
  }
}
@media (max-width: 575px) {
  .hero-4 {
    padding: 160px 0 150px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content {
    text-align: center;
  }
}
.hero-4 .hero-content .sub-content {
  color: var(--theme);
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
}
.hero-4 .hero-content .sub-content img {
  margin-right: 10px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
.hero-4 .hero-content h1 {
  letter-spacing: -2.6px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-content h1 {
    font-size: 54px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 30px;
    font-weight: 500;
  }
}
.hero-4 .hero-content h1 span {
  color: var(--theme);
  font-style: italic;
}
.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content .hero-button {
    margin-top: 25px;
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.hero-4 .hero-content .hero-button .btn-link {
  color: var(--header);
  font-weight: 600;
  text-decoration-line: underline;
  transition: all 0.4s ease-in-out;
}
.hero-4 .hero-content .hero-button .btn-link i {
  margin-left: 8px;
}
.hero-4 .hero-content .hero-button .btn-link:hover {
  color: var(--theme);
}
.hero-4 .hero-content .about-author {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-content .about-author {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-content .about-author {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content .about-author {
    flex-wrap: initial;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content .about-author {
    margin-top: 30px;
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content .about-author {
    margin-top: 20px;
    gap: 20px;
    justify-content: center;
  }
}
.hero-4 .hero-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .hero-4 .hero-content .about-author .author-image {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero-4 .hero-content .about-author .author-image .content h6 {
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}
.hero-4 .hero-image {
  position: relative;
}
.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-4 .hero-image .circle-musk-shape {
  position: absolute;
  top: 0;
  left: -20%;
}
@media (max-width: 991px) {
  .hero-4 .hero-image .circle-musk-shape {
    display: none;
  }
}

.hero-5 {
  padding: 60px 0 130px;
}
@media (max-width: 991px) {
  .hero-5 {
    padding: 130px 0 100px;
  }
}
@media (max-width: 575px) {
  .hero-5 {
    padding: 100px 0 80px;
  }
}
.hero-5 .hero-content .sub-content img {
  margin-right: 35px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
@media (max-width: 575px) {
  .hero-5 .hero-content .sub-content img {
    margin-right: 20px;
  }
}
.hero-5 .hero-content .sub-content .sub-text {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.72px;
  background-color: var(--theme-2);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 12px;
  line-height: 1;
}
@media (max-width: 767px) {
  .hero-5 .hero-content .sub-content .sub-text {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content .sub-content .sub-text {
    font-size: 15px;
  }
}
.hero-5 .hero-content h1 {
  color: var(--white);
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .hero-5 .hero-content h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 36px;
    margin-top: 35px;
  }
}
.hero-5 .hero-content h1 span {
  font-weight: 400;
}
.hero-5 .hero-content p {
  font-size: 18px;
  color: var(--white);
}
@media (max-width: 767px) {
  .hero-5 .hero-content p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content p {
    font-size: 15px;
  }
}
.hero-5 .hero-content .button-items {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .button-items {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content .button-items {
    margin-top: 35px;
  }
}
.hero-5 .hero-content .button-items .button-text .video-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  font-size: 12px;
  border-radius: 50%;
}
.hero-5 .hero-content .button-items .button-text .ripple::before, .hero-5 .hero-content .button-items .button-text .ripple::after {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
}
.hero-5 .hero-content .button-items .play-text {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  font-family: "Rubik", sans-serif;
}
.hero-5 .hero-image {
  position: relative;
}
.hero-5 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-5 .hero-image .experience-text {
  background-color: var(--theme-2);
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 30px;
  border-radius: 7px;
  transform: rotate(-11.223deg);
  position: absolute;
  bottom: 20%;
  left: -22%;
  width: 570px;
}
@media (max-width: 991px) {
  .hero-5 .hero-image .experience-text {
    left: 5%;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-image .experience-text {
    gap: 12px;
    transform: rotate(0);
    bottom: 0;
    padding: 14px 15px;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    bottom: 4%;
  }
}
@media (max-width: 470px) {
  .hero-5 .hero-image .experience-text {
    display: none;
  }
}
.hero-5 .hero-image .experience-text li {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
@media (max-width: 767px) {
  .hero-5 .hero-image .experience-text li {
    font-size: 16px;
  }
}

.hero-6 {
  padding: 130px 0 130px;
  position: relative;
  z-index: 9;
}
.hero-6 .robot-shape-1 {
  position: absolute;
  left: 114px;
  top: 13%;
}
@media (max-width: 1600px) {
  .hero-6 .robot-shape-1 {
    display: none;
  }
}
.hero-6 .robot-shape-2 {
  position: absolute;
  right: 114px;
  top: 5%;
}
@media (max-width: 1600px) {
  .hero-6 .robot-shape-2 {
    display: none;
  }
}
.hero-6 .hero-content .sub-content {
  color: var(--theme);
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
}
.hero-6 .hero-content .sub-content img {
  margin-right: 10px;
  animation: icon-animation 1.5s ease-in-out infinite;
}
@media (max-width: 1199px) {
  .hero-6 .hero-content h1 {
    font-size: 56px;
  }
}
@media (max-width: 767px) {
  .hero-6 .hero-content h1 {
    font-size: 48px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content h1 {
    font-size: 36px;
  }
}
.hero-6 .hero-content ul {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .hero-6 .hero-content ul {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .hero-6 .hero-content ul {
    margin-top: 30px;
    justify-content: start;
  }
}
.hero-6 .hero-content ul li {
  font-weight: 500;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-6 .hero-content ul li i {
  font-size: 23px;
  color: var(--theme);
  box-shadow: drop-shadow(0px 5px 30px rgba(92, 48, 253, 0.5));
}
.hero-6 .hero-content .sign-input-form {
  position: relative;
  max-width: 750px;
  margin: 50px auto 0;
  text-align: center;
}
.hero-6 .hero-content .sign-input-form input {
  padding: 20px 30px 20px 60px;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  width: 100%;
  border: none;
  border-radius: 10px;
}
.hero-6 .hero-content .sign-input-form .icon {
  position: absolute;
  top: 21px;
  left: 30px;
  color: var(--theme);
}
.hero-6 .hero-content .sign-input-form .theme-btn {
  position: absolute;
  right: 8px;
  top: 6px;
  padding: 20px 40px;
}
@media (max-width: 575px) {
  .hero-6 .hero-content .sign-input-form .theme-btn {
    right: 8px;
    top: 8px;
    padding: 18px 25px;
  }
}
.hero-6 .dashboard-image {
  max-width: 1100px;
  text-align: center;
  margin: 50px auto 0;
}
.hero-6 .dashboard-image img {
  width: 100%;
  height: 100%;
}

.funfact-box-items {
  margin-top: 30px;
  padding: 40px 45px;
  background: rgba(92, 48, 253, 0.1);
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .funfact-box-items {
    padding: 30px;
  }
}
.funfact-box-items h6 {
  font-weight: 400;
  color: var(--text);
  border-bottom: 2px dotted var(--text);
  padding-bottom: 25px;
  margin-bottom: 25px;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .funfact-box-items h6 {
    padding-top: 15px;
    margin-bottom: 15px;
  }
}
.funfact-box-items:hover {
  background-color: var(--theme);
}
.funfact-box-items:hover h2, .funfact-box-items:hover h6, .funfact-box-items:hover p {
  color: var(--white);
}
.funfact-box-items:hover h6 {
  border-bottom: 2px dotted var(--white);
}
.funfact-box-items.active {
  background-color: var(--theme);
}
.funfact-box-items.active h2, .funfact-box-items.active h6, .funfact-box-items.active p {
  color: var(--white);
}
.funfact-box-items.active h6 {
  border-bottom: 2px dotted var(--white);
}
.funfact-box-items.style-2 {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.2px solid rgba(255, 255, 255, 0.05);
}
.funfact-box-items.style-2 h6 {
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 2px dotted rgba(255, 255, 255, 0.1);
}
.funfact-box-items.style-2 h2, .funfact-box-items.style-2 p {
  color: var(--white);
}
.funfact-box-items.style-2:hover {
  background-color: var(--theme);
}
.funfact-box-items.style-2:hover h6 {
  color: var(--white);
  border-bottom: 2px dotted var(--white);
}
.funfact-box-items.style-2.active {
  background-color: var(--theme);
}
.funfact-box-items.style-2.active h6 {
  color: var(--white);
  border-bottom: 2px dotted var(--white);
}

.funfact-section-2 {
  position: relative;
  z-index: 9;
  margin-top: -7px;
}
.funfact-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  z-index: -1;
}

.counter-section {
  position: relative;
  z-index: 9;
  margin-top: -4px;
}
.counter-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  z-index: -1;
}

.counter-items {
  background-color: #1C2433;
  padding: 30px 25px;
  border-radius: 10px;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.counter-items::before {
  position: absolute;
  left: 0;
  content: "";
  width: 150px;
  height: 120%;
  background: #8760FD;
  border-radius: 50%;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  -webkit-filter: blur(15px);
  filter: blur(15px);
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.counter-items h2 {
  color: var(--theme-2);
}
.counter-items p {
  color: rgba(255, 255, 255, 0.55);
}
.counter-items:hover::before {
  opacity: 1;
}

.business-boost-section {
  position: relative;
  z-index: 9;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .business-boost-section {
    margin-top: 0;
  }
}
.business-boost-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  z-index: -1;
  top: -10%;
  height: 50%;
}
@media (max-width: 1399px) {
  .business-boost-section::before {
    top: 0;
  }
}

.business-boost-wrapper {
  background-color: var(--theme);
  padding: 60px 70px;
  border-radius: 10px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .business-boost-wrapper {
    padding: 60px 50px;
  }
  .business-boost-wrapper br {
    display: none;
  }
}
@media (max-width: 767px) {
  .business-boost-wrapper {
    padding: 50px 40px;
  }
}
@media (max-width: 575px) {
  .business-boost-wrapper {
    padding: 40px 30px;
  }
}
.business-boost-wrapper::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../../assets/img/border-shape.png);
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .business-boost-wrapper .business-boost-content {
    text-align: center;
  }
}
.business-boost-wrapper .business-boost-content h2 {
  color: var(--white);
  font-size: 40px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .business-boost-wrapper .business-boost-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .business-boost-wrapper .business-boost-content h2 {
    font-size: 30px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .business-boost-wrapper .business-boost-content h2 {
    font-size: 26px;
    margin-top: 20px;
  }
}
.business-boost-wrapper .business-boost-content p {
  font-size: 20px;
  color: var(--white);
  margin-top: 30px;
  margin-bottom: 40px;
  line-height: 170%;
}
@media (max-width: 767px) {
  .business-boost-wrapper .business-boost-content p {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .business-boost-wrapper .business-boost-content p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.business-boost-wrapper .video-image {
  margin-top: -160px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .business-boost-wrapper .video-image {
    margin-top: 0;
  }
}
.business-boost-wrapper .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.business-boost-wrapper .video-image .video-box .video-buttton {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 18px;
}
@media (max-width: 575px) {
  .business-boost-wrapper .video-image .video-box .video-buttton {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }
}
.business-boost-wrapper .video-image .video-box .ripple::before, .business-boost-wrapper .video-image .video-box .ripple::after {
  width: 80px;
  height: 80px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
@media (max-width: 575px) {
  .business-boost-wrapper .video-image .video-box .ripple::before, .business-boost-wrapper .video-image .video-box .ripple::after {
    width: 60px;
    height: 60px;
  }
}
.business-boost-wrapper .video-image img {
  width: 100%;
  height: 100%;
}

.work-process-wrapper .work-process-content .work-process-items {
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  border-radius: 16px;
  padding: 25px 30px;
  overflow: hidden;
  background: #EFEBFF;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .work-process-wrapper .work-process-content .work-process-items {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .work-process-wrapper .work-process-content .work-process-items {
    padding: 20px;
  }
}
.work-process-wrapper .work-process-content .work-process-items .digit-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: var(--theme);
  font-size: 22px;
  font-weight: 600;
  border: 1.2px solid rgba(94, 50, 255, 0.2705882353);
  background: #E0D7FF;
}
@media (max-width: 991px) {
  .work-process-wrapper .work-process-content .work-process-items .digit-box {
    margin: 0 auto;
  }
}
.work-process-wrapper .work-process-content .work-process-items h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.work-process-wrapper .work-process-image {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .work-process-wrapper .work-process-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .work-process-wrapper .work-process-image {
    height: 400px;
  }
}
.work-process-wrapper .work-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.working-card-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 100px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background-color: #F9FAFB;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .working-card-items {
    padding: 40px 50px;
  }
}
@media (max-width: 767px) {
  .working-card-items {
    padding: 40px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .working-card-items {
    padding: 30px;
  }
}
.working-card-items .content {
  position: relative;
}
.working-card-items .content .sub-title {
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  font-weight: 500;
  font-size: 16px;
  color: var(--theme);
  border-radius: 8px;
  padding: 10px 20px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}
.working-card-items .content h3 {
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .arrow-image {
    display: none;
  }
}

.work-process-section-6 .arrow-shape {
  animation: rounded 5s linear infinite;
}

.education-box-items {
  margin-top: 30px;
  background-color: #1A1D20;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 40px 50px;
}
@media (max-width: 1199px) {
  .education-box-items {
    padding: 30px 35px;
  }
}
@media (max-width: 991px) {
  .education-box-items {
    padding: 40px 50px;
  }
}
@media (max-width: 575px) {
  .education-box-items {
    padding: 30px 25px;
  }
}
.education-box-items .content span {
  display: inline-block;
  padding: 7px 10px;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 8px;
  line-height: 1;
  margin-bottom: 15px;
}
.education-box-items .content h3 {
  font-size: 26px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .education-box-items .content h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .education-box-items .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .education-box-items .content h3 {
    font-size: 20px;
  }
}
.education-box-items .content p {
  color: rgba(255, 255, 255, 0.55);
}

.skill-box-items {
  margin-top: 30px;
  width: 200px;
  height: 200px;
  text-align: center;
  line-height: 200px;
  background-color: #1A1D20;
  border-radius: 50%;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
@media (max-width: 1600px) {
  .skill-box-items {
    margin: 30px auto 0;
  }
}
@media (max-width: 767px) {
  .skill-box-items {
    width: 185px;
    height: 185px;
    line-height: 185px;
  }
}
@media (max-width: 575px) {
  .skill-box-items {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
}
.skill-box-items .post-cat {
  font-weight: 500;
  font-size: 20px;
  background-color: var(--theme);
  color: var(--white);
  padding: 8px 14px;
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-block;
  border-radius: 12px;
  line-height: 1;
}

.skill-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 50px;
}
@media (max-width: 1199px) {
  .skill-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1600px) {
  .skill-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1399px) {
  .skill-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1199px) {
  .skill-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .skill-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .skill-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    display: flex;
  }
}

.work-process-section-6 {
  background-color: var(--theme);
  border-radius: 2740.104px;
  position: relative;
  z-index: 1;
  margin-top: -300px;
  padding-top: 415px;
}
@media (max-width: 1899px) {
  .work-process-section-6 {
    border-radius: 0;
  }
}
@media (max-width: 1199px) {
  .work-process-section-6 {
    padding-top: 395px;
  }
}
@media (max-width: 991px) {
  .work-process-section-6 {
    padding-top: 375px;
  }
}
.work-process-section-6 .ai-shape-1 {
  position: absolute;
  right: 18%;
  top: 30%;
}
@media (max-width: 1899px) {
  .work-process-section-6 .ai-shape-1 {
    display: none;
  }
}
.work-process-section-6 .ai-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 16%;
}
@media (max-width: 1899px) {
  .work-process-section-6 .ai-shape-2 {
    display: none;
  }
}
.work-process-section-6 .box-shape-left {
  width: 294px;
  height: 536px;
  border-radius: 147px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%) rotate(18.585deg);
  z-index: -1;
}
.work-process-section-6 .box-shape-right {
  width: 294px;
  height: 536px;
  border-radius: 147px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 37%;
  right: 14%;
  transform: translateY(-50%) rotate(18.585deg);
}

.work-process-card-items {
  margin-top: 30px;
  background-color: var(--white);
  padding: 30px 40px;
  display: flex;
  gap: 25px;
  border-radius: 12px;
}
.work-process-card-items .number {
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.work-process-card-items .content {
  flex-basis: 70%;
}
.work-process-card-items .content h5 {
  font-size: 20px;
  margin-bottom: 5px;
}
.work-process-card-items:hover .number {
  background-color: var(--theme-2);
  color: var(--white);
}

.feature-wrapper .feature-content .list-items {
  margin-top: 30px;
  margin-bottom: 40px;
}
.feature-wrapper .feature-content .list-items li {
  color: var(--header);
}
.feature-wrapper .feature-content .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.feature-wrapper .feature-content .list-items li i {
  color: var(--theme);
  margin-right: 10px;
}
.feature-wrapper .feature-dashboard-image img {
  width: 100%;
  height: 100%;
}

.feature-video-section {
  background-color: rgba(92, 48, 253, 0.1);
}

.feature-section-5 {
  margin-bottom: -5px;
}
@media (max-width: 1199px) {
  .feature-section-5 {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .feature-section-5 {
    margin-bottom: -60px;
  }
}
@media (max-width: 767px) {
  .feature-section-5 {
    margin-bottom: -45px;
  }
}

.feature-video-wrapper .feature-video-thumb {
  position: relative;
  z-index: 3;
}
.feature-video-wrapper .feature-video-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.feature-video-wrapper .feature-video-thumb .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.feature-video-wrapper .feature-video-thumb .video-box .video-buttton {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .feature-video-wrapper .feature-video-thumb .video-box .video-buttton {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
}
@media (max-width: 767px) {
  .feature-video-wrapper .feature-video-thumb .video-box .video-buttton {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .feature-video-wrapper .feature-video-thumb .video-box .video-buttton {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.feature-video-wrapper .feature-video-thumb .video-box .ripple::before, .feature-video-wrapper .feature-video-thumb .video-box .ripple::after {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
@media (max-width: 1199px) {
  .feature-video-wrapper .feature-video-thumb .video-box .ripple::before, .feature-video-wrapper .feature-video-thumb .video-box .ripple::after {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767px) {
  .feature-video-wrapper .feature-video-thumb .video-box .ripple::before, .feature-video-wrapper .feature-video-thumb .video-box .ripple::after {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .feature-video-wrapper .feature-video-thumb .video-box .ripple::before, .feature-video-wrapper .feature-video-thumb .video-box .ripple::after {
    width: 70px;
    height: 70px;
  }
}
.feature-video-wrapper .feature-video-content .feature-box-area {
  margin-top: 30px;
}
.feature-video-wrapper .feature-video-content .feature-box-area .feature-items {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px 35px;
}
.feature-video-wrapper .feature-video-content .feature-box-area .feature-items:not(:last-child) {
  margin-bottom: 20px;
}
.feature-video-wrapper .feature-video-content .feature-box-area .feature-items h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.feature-video-wrapper .feature-video-content .feature-box-area .feature-items h5 i {
  color: var(--theme);
  font-size: 25px;
}

.about-wrapper .about-image-items {
  position: relative;
}
.about-wrapper .about-image-items .experience-text {
  background-color: var(--theme);
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 30px;
  border-radius: 7px;
  transform: rotate(-11.223deg);
  position: absolute;
  bottom: 8%;
  left: 5%;
}
@media (max-width: 767px) {
  .about-wrapper .about-image-items .experience-text {
    gap: 12px;
    transform: rotate(0);
    bottom: 0;
    padding: 14px 15px;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    bottom: 4%;
  }
}
.about-wrapper .about-image-items .experience-text li {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
@media (max-width: 767px) {
  .about-wrapper .about-image-items .experience-text li {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-image-items .about-image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image {
    height: 400px;
  }
}
.about-wrapper .about-image-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.about-wrapper .digital-about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content {
    margin-left: 15px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-list {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-list {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-list {
    margin-top: 20px;
  }
}
.about-wrapper .about-content .about-list li {
  color: var(--header);
}
.about-wrapper .about-content .about-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper .about-content .about-list.style-2 {
  margin-top: 20px;
  margin-bottom: 30px;
}
.about-wrapper .about-content .about-list.style-2 li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper .about-content .about-list.style-2 li:not(:last-child) {
  margin-bottom: 20px;
}
.about-wrapper .about-content .about-list.style-2 li i {
  font-size: 22px;
}
.about-wrapper .about-content .about-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-author {
    gap: 12px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-author {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-author {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-author {
    margin-top: 20px;
  }
}
.about-wrapper .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-author .author-image img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.about-wrapper .about-content .about-author .author-image .content h5 span {
  color: var(--text);
  font-weight: 400;
}
.about-wrapper .about-content.style-about {
  margin-right: 60px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content.style-about {
    margin-right: 15px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content.style-about {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .about-wrapper .about-content.style-about {
    margin-right: 0;
  }
}
.about-wrapper.style-2 .about-image-items-2 .about-image {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items-2 .about-image {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .about-wrapper.style-2 .about-image-items-2 .about-image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items-2 .about-image {
    height: 400px;
  }
}
.about-wrapper.style-2 .about-image-items-2 .about-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .about-wrapper.style-2 .about-image-items-2 .about-image-2 {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items-2 .about-image-2 {
    height: 400px;
  }
}
.about-wrapper.style-2 .about-image-items-2 .about-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-wrapper.style-2 .about-content .icon-items {
  display: flex;
  margin-top: 30px;
  gap: 20px;
}
.about-wrapper.style-2 .about-content .icon-items .dot {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0px 5px 30px rgba(92, 48, 253, 0.3);
  border-radius: 50%;
  position: relative;
}
.about-wrapper.style-2 .about-content .icon-items .dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--theme);
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.about-wrapper.style-2 .about-content .icon-items .content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.about-wrapper .about-image-3 img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-image-items-4 {
  position: relative;
}
.about-wrapper .about-image-items-4 .about-thumbs img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-wrapper .about-image-items-4 .experience-items {
  background-color: var(--theme);
  text-align: center;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  border-radius: 0px 0px 127px 127px;
  border-top: 5px solid var(--white);
  max-width: 260px;
}
.about-wrapper .about-image-items-4 .experience-items h6 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
}
.about-wrapper .about-image-items-4 .experience-items h2 {
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 5px;
  border-top: 1px solid rgba(92, 48, 253, 0.1);
  padding-top: 20px;
}
.about-wrapper .about-image-items-4 .experience-items p {
  color: var(--white);
}

.grow-business-wrapper .grow-content .grow-percent-area {
  margin-top: 40px;
}
.grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items {
  padding: 40px 30px;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items {
    padding: 30px 25px;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items {
    padding: 30px 25px;
  }
}
.grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h2 {
  font-size: 55px;
  color: var(--theme);
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h2 {
    font-size: 42px;
  }
}
.grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h3 {
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .grow-business-wrapper .grow-content .grow-percent-area .grow-percent-items h3 {
    font-size: 20px;
  }
}
.grow-business-wrapper .grow-image-items {
  margin-left: 190px;
  position: relative;
}
@media (max-width: 1600px) {
  .grow-business-wrapper .grow-image-items {
    margin-left: 150px;
  }
}
@media (max-width: 1399px) {
  .grow-business-wrapper .grow-image-items {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-image-items {
    margin-left: 0;
  }
}
.grow-business-wrapper .grow-image-items .grow-shape {
  position: absolute;
  top: 10%;
  left: -32%;
}
@media (max-width: 1399px) {
  .grow-business-wrapper .grow-image-items .grow-shape {
    left: -15%;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-image-items .grow-shape {
    left: 0;
    top: 0;
  }
}
@media (max-width: 470px) {
  .grow-business-wrapper .grow-image-items .grow-shape {
    left: -5%;
    width: 200px;
  }
  .grow-business-wrapper .grow-image-items .grow-shape img {
    width: 100%;
    height: 100%;
  }
}
.grow-business-wrapper .grow-image-items .frame-shape {
  position: absolute;
  top: 15%;
  right: -15%;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1600px) {
  .grow-business-wrapper .grow-image-items .frame-shape {
    right: -5%;
  }
}
@media (max-width: 1399px) {
  .grow-business-wrapper .grow-image-items .frame-shape {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .grow-business-wrapper .grow-image-items .frame-shape {
    top: 15%;
    right: -15%;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-image-items .frame-shape {
    right: 60px;
  }
}
@media (max-width: 767px) {
  .grow-business-wrapper .grow-image-items .frame-shape {
    right: 0;
  }
}
.grow-business-wrapper .grow-image-items .user-shape {
  position: absolute;
  bottom: 0;
  right: -25%;
}
@media (max-width: 1600px) {
  .grow-business-wrapper .grow-image-items .user-shape {
    right: -10%;
  }
}
@media (max-width: 1399px) {
  .grow-business-wrapper .grow-image-items .user-shape {
    right: -5%;
  }
}
@media (max-width: 1199px) {
  .grow-business-wrapper .grow-image-items .user-shape {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-image-items .user-shape {
    right: 0;
  }
}
.grow-business-wrapper .grow-image-items .grow-image {
  max-width: 440px;
}
@media (max-width: 991px) {
  .grow-business-wrapper .grow-image-items .grow-image {
    margin: 0 auto;
    text-align: center;
  }
}
.grow-business-wrapper .grow-image-items .grow-image img {
  width: 100%;
  height: 100%;
  border-radius: 500px 500px 500px 500px;
  border: 1px solid var(--border);
  padding: 20px;
}
.grow-business-wrapper.style-2 .grow-content p {
  color: rgba(255, 255, 255, 0.65);
}
.grow-business-wrapper.style-2 .grow-content .grow-percent-items {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.2px rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.grow-business-wrapper.style-2 .grow-content .grow-percent-items h2, .grow-business-wrapper.style-2 .grow-content .grow-percent-items h3 {
  color: var(--white);
}

.planning-wrapper .planning-content .planning-items {
  background-color: rgba(92, 48, 253, 0.1);
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  border-radius: 10px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .planning-wrapper .planning-content .planning-items {
    gap: 10px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .planning-wrapper .planning-content .planning-items {
    margin-top: 30px;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .planning-wrapper .planning-content .planning-items {
    margin-top: 20px;
  }
}
@media (max-width: 470px) {
  .planning-wrapper .planning-content .planning-items {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.planning-wrapper .planning-content .planning-items .number {
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.planning-wrapper .planning-content .planning-items:hover {
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  border: 1.2 solid transparent;
}
.planning-wrapper .planning-content .planning-items:hover .number {
  background-color: var(--theme);
  color: var(--white);
  box-shadow: 0px 5px 30px rgba(92, 48, 253, 0.5);
}
.planning-wrapper .planning-content .planning-items.active {
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  border: 1.2 solid transparent;
}
.planning-wrapper .planning-content .planning-items.active .number {
  background-color: var(--theme);
  color: var(--white);
  box-shadow: 0px 5px 30px rgba(92, 48, 253, 0.5);
}
@media (max-width: 767px) {
  .planning-wrapper .planning-image-items .planning-image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .planning-wrapper .planning-image-items .planning-image {
    height: 400px;
  }
}
.planning-wrapper .planning-image-items .planning-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.planning-wrapper .planning-image-items .planning-image-2 {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .planning-wrapper .planning-image-items .planning-image-2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .planning-wrapper .planning-image-items .planning-image-2 {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .planning-wrapper .planning-image-items .planning-image-2 {
    height: 400px;
  }
}
.planning-wrapper .planning-image-items .planning-image-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .about-section-3 {
    overflow: hidden;
  }
}

.about-wrapper-2 .about-image-items {
  position: relative;
}
.about-wrapper-2 .about-image-items .about-image-1 {
  max-width: 410px;
  position: relative;
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-image-items .about-image-1 {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .about-image-1 {
    max-width: 650px;
  }
}
.about-wrapper-2 .about-image-items .about-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
  max-width: 380px;
  position: absolute;
  bottom: -28%;
  right: -42%;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
    right: -25%;
    max-width: 350px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
    right: 0;
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
    bottom: 0;
    right: -25%;
    max-width: 380px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
    bottom: 0;
    right: 0;
    max-width: 250px;
  }
}
.about-wrapper-2 .about-image-items .about-image-1 .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.about-wrapper-2 .about-image-items .experience-items {
  background-color: #EFEAFF;
  text-align: center;
  z-index: 9;
  position: absolute;
  left: 0;
  padding: 40px;
  border-radius: 0px 0px 127px 127px;
  bottom: -28%;
  left: -13%;
  border-top: 5px solid var(--theme);
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image-items .experience-items {
    left: 0;
    padding: 25px;
    bottom: inherit;
    left: 0;
    top: 0;
    width: 50%;
  }
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-image-items .experience-items {
    padding: 30px;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-image-items .experience-items {
    padding: 20px;
    width: 52%;
  }
}
@media (max-width: 500px) {
  .about-wrapper-2 .about-image-items .experience-items {
    padding: 20px;
    width: 70%;
  }
}
.about-wrapper-2 .about-image-items .experience-items h6 {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.about-wrapper-2 .about-image-items .experience-items h2 {
  color: var(--theme);
  margin-top: 25px;
  margin-bottom: 5px;
  border-top: 1px solid rgba(92, 48, 253, 0.1);
  padding-top: 20px;
}
.about-wrapper-2 .about-counter-area {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-wrapper-2 .about-counter-area .about-counter-items {
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  background-color: rgba(92, 48, 253, 0.1);
  border-radius: 10px;
  padding: 25px 40px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-wrapper-2 .about-counter-area .about-counter-items {
    padding: 20px 25px;
  }
  .about-wrapper-2 .about-counter-area .about-counter-items p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-2 .about-counter-area .about-counter-items {
    text-align: center;
  }
  .about-wrapper-2 .about-counter-area .about-counter-items p {
    font-size: 16px;
  }
}
.about-wrapper-2 .about-counter-area .about-counter-items:hover {
  background-color: var(--theme);
}
.about-wrapper-2 .about-counter-area .about-counter-items:hover h2, .about-wrapper-2 .about-counter-area .about-counter-items:hover p {
  color: var(--white);
}

@media (max-width: 767px) {
  .grow-business-wrapper-2 {
    margin-bottom: -40px;
  }
}
.grow-business-wrapper-2 .grow-business-image {
  max-width: 410px;
  margin-left: 120px;
  position: relative;
}
@media (max-width: 1199px) {
  .grow-business-wrapper-2 .grow-business-image {
    margin-left: 0;
    max-width: 700px;
  }
}
.grow-business-wrapper-2 .grow-business-image img {
  width: 100%;
  height: 100%;
}
.grow-business-wrapper-2 .grow-business-image .grap-shape {
  position: absolute;
  left: -50%;
  top: 7%;
}
@media (max-width: 1199px) {
  .grow-business-wrapper-2 .grow-business-image .grap-shape {
    display: none;
  }
}
.grow-business-wrapper-2 .grow-business-content .grow-counting-area {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .grow-business-wrapper-2 .grow-business-content .grow-counting-area {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .grow-business-wrapper-2 .grow-business-content .grow-counting-area {
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 470px) {
  .grow-business-wrapper-2 .grow-business-content .grow-counting-area {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: initial;
  }
}
.grow-business-wrapper-2 .grow-business-content .grow-counting-area .grow-counting-items h2 {
  color: var(--theme);
  margin-bottom: 5px;
}
.grow-business-wrapper-2 .grow-business-content .grow-counting-area .grow-counting-items p {
  font-size: 20px;
}
@media (max-width: 1399px) {
  .grow-business-wrapper-2 .grow-business-content .grow-counting-area .grow-counting-items p {
    font-size: 16px;
  }
}

.about-wrapper-3 {
  position: relative;
}
.about-wrapper-3 .about-image-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image-1 {
    display: none;
  }
}
.about-wrapper-3 .about-image-2 {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image-2 {
    display: none;
  }
}
.about-wrapper-3 .about-image-2 .icon-box {
  width: 170px;
  height: 170px;
  line-height: 170px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-2);
  position: absolute;
  right: 0px;
  bottom: -65px;
}
.about-wrapper-3 .about-image-2 .icon-box .icon-img {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 96px;
  height: 96px;
  text-align: center;
  line-height: 96px;
  padding: 27px;
}
.about-wrapper-3 .about-image-2 .icon-box .circle-text {
  position: absolute;
  top: 0%;
  left: 5%;
  animation: cir36 10s linear infinite;
}

.about-content-2 {
  position: relative;
  z-index: 9;
}
.about-content-2 p {
  max-width: 490px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 50px;
}

.service-items {
  background-color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-items .thumb {
  padding: 10px;
}
.service-items .thumb img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.service-items .content {
  padding-left: 30px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .service-items .content {
    padding-left: 0;
    padding: 20px 15px;
    padding-right: 0;
  }
}
.service-items .content h5 {
  margin-bottom: 15px;
  margin-top: 5px;
}
.service-items .content h5 a:hover {
  color: var(--theme);
}
.service-items:hover .arrow-btn {
  transform: translateX(95px);
  color: var(--theme);
}
.service-items:hover .arrow-btn i {
  transform: rotate(0);
}
.service-items:hover .arrow-btn::before {
  opacity: 1;
}

.service-card-items {
  margin-top: 30px;
  padding: 40px 45px;
  background: rgba(92, 48, 253, 0.07);
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-card-items {
    text-align: center;
  }
}
.service-card-items .icon {
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
  color: var(--theme);
  font-size: 60px;
}
@media (max-width: 1199px) {
  .service-card-items h3 {
    font-size: 20px;
  }
}
.service-card-items .service-thumb {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 9;
}
.service-card-items .service-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.service-card-items .service-thumb .line-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.service-card-items:hover {
  background-color: var(--theme);
}
.service-card-items:hover .icon {
  color: var(--white);
  filter: grayscale(100%) brightness(300%);
}
.service-card-items:hover h3 a {
  color: var(--white);
}
.service-card-items:hover .service-thumb .line-shape {
  filter: grayscale(100%) brightness(300%);
}
.service-card-items:hover .link-btn {
  color: var(--white);
}
.service-card-items.active {
  background-color: var(--theme);
}
.service-card-items.active .icon {
  color: var(--white);
  filter: grayscale(100%) brightness(300%);
}
.service-card-items.active h3 a {
  color: var(--white);
}
.service-card-items.active .service-thumb .line-shape {
  filter: grayscale(100%) brightness(300%);
}
.service-card-items.active .link-btn {
  color: var(--white);
}

.service-popular-items {
  margin-top: 30px;
  background-color: #F9FAFB;
  padding: 40px 50px;
  border: 1.2px solid #EDEEF0;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .service-popular-items {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .service-popular-items {
    padding: 30px;
  }
}
.service-popular-items .service-image img {
  width: 100%;
  height: 100%;
}
.service-popular-items .service-content {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .service-popular-items .service-content {
    margin-top: 20px;
  }
}
.service-popular-items .service-content h3 {
  margin-bottom: 7px;
}
.service-popular-items .service-content h3 a:hover {
  color: var(--theme);
}
.service-popular-items .service-content p {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .service-popular-items .service-content p {
    margin-bottom: 20px;
  }
}
.service-popular-items .service-content .theme-btn {
  background: rgba(135, 96, 253, 0.2);
  color: var(--theme);
}
.service-popular-items .service-content .theme-btn::before, .service-popular-items .service-content .theme-btn::after {
  background: var(--theme);
}
.service-popular-items .service-content .theme-btn:hover {
  color: var(--white);
}

.service-offer-section {
  padding: 247px 0 120px;
}
@media (max-width: 1899px) {
  .service-offer-section {
    margin-top: -30px;
    padding: 0;
    padding-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .service-offer-section {
    margin-top: -50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .service-offer-section {
    margin-top: -70px;
    padding-bottom: 80px;
  }
}

.service-offer-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(92, 48, 253, 0.1);
  padding: 30px 40px;
}
@media (max-width: 767px) {
  .service-offer-items {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 30px;
    gap: 25px;
  }
}
.service-offer-items .icon {
  position: relative;
}
.service-offer-items .icon::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 40px;
  height: 80px;
  transform: rotate(-30deg);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(92, 48, 253, 0.1) 0%, rgba(92, 48, 253, 0) 100%);
}
.service-offer-items .offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .service-offer-items .offer-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 25px;
  }
}
.service-offer-items .offer-content .content h3 {
  margin-bottom: 3px;
}
.service-offer-items .offer-content .content h3 a:hover {
  color: var(--theme);
}
.service-offer-items .offer-content .arrow-icon {
  color: var(--text);
  transform: rotate(-45deg);
  display: inline-block;
}
.service-offer-items .offer-content .arrow-icon:hover {
  color: var(--theme);
  transform: rotate(0);
}

.service-box-items {
  margin-top: 30px;
  background-color: #171F2F;
  border: 1.2px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  text-align: center;
  padding: 40px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .service-box-items {
    padding: 30px 25px;
  }
}
.service-box-items .content {
  margin-top: 20px;
}
.service-box-items .content h3 {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .service-box-items .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .service-box-items .content h3 {
    font-size: 20px;
  }
}
.service-box-items .content h3 a {
  color: var(--white);
}
.service-box-items .icon {
  color: var(--theme);
  font-size: 60px;
  transition: all 0.3s ease-in-out;
}
.service-box-items:hover {
  background-color: var(--theme);
}
.service-box-items:hover .content p {
  color: var(--white);
}
.service-box-items:hover .icon {
  color: var(--white);
}

@media (max-width: 991px) {
  .service-section-4 .section-title br {
    display: none;
  }
}

.service-video-section {
  background-color: rgba(92, 48, 253, 0.1);
}

.service-video-wrapper .service-video-image {
  position: relative;
  margin-right: 30px;
}
.service-video-wrapper .service-video-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-video-wrapper .service-video-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--header);
  opacity: 0.3;
  border-radius: 20px;
}
.service-video-wrapper .service-video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-video-wrapper .service-video-image .video-box .video-buttton {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .service-video-wrapper .service-video-image .video-box .video-buttton {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
}
@media (max-width: 767px) {
  .service-video-wrapper .service-video-image .video-box .video-buttton {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .service-video-wrapper .service-video-image .video-box .video-buttton {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.service-video-wrapper .service-video-image .video-box .ripple::before, .service-video-wrapper .service-video-image .video-box .ripple::after {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
@media (max-width: 1199px) {
  .service-video-wrapper .service-video-image .video-box .ripple::before, .service-video-wrapper .service-video-image .video-box .ripple::after {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767px) {
  .service-video-wrapper .service-video-image .video-box .ripple::before, .service-video-wrapper .service-video-image .video-box .ripple::after {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .service-video-wrapper .service-video-image .video-box .ripple::before, .service-video-wrapper .service-video-image .video-box .ripple::after {
    width: 70px;
    height: 70px;
  }
}
.service-video-wrapper .service-video-image .experience-text {
  background-color: var(--theme);
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 16px 30px;
  border-radius: 7px;
  transform: rotate(-11.223deg);
  position: absolute;
  bottom: 8%;
  left: 15%;
}
@media (max-width: 767px) {
  .service-video-wrapper .service-video-image .experience-text {
    gap: 12px;
    transform: rotate(0);
    bottom: 0;
    padding: 14px 15px;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    bottom: 4%;
  }
}
.service-video-wrapper .service-video-image .experience-text li {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
@media (max-width: 767px) {
  .service-video-wrapper .service-video-image .experience-text li {
    font-size: 16px;
  }
}
.service-video-wrapper .content .icon-items {
  margin-top: 20px;
}
.service-video-wrapper .content .icon-items h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.service-video-wrapper .content .icon-items h5 i {
  font-size: 24px;
  color: var(--theme);
}

.service-popular-image-2 {
  margin-top: 30px;
  max-width: 410px;
  transform: rotate(-7.773deg);
}
@media (max-width: 1199px) {
  .service-popular-image-2 {
    transform: rotate(0);
    margin: 30px auto 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .service-popular-image-2 {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .service-popular-image-2 {
    height: 400px;
  }
}
.service-popular-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.service-popular-content-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 470px) {
  .service-popular-content-2 {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.service-popular-content-2 .arrow-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  transform: rotate(-45deg);
}
.service-popular-content-2 .arrow-icon:hover {
  background-color: var(--white);
  color: var(--header);
  transform: rotate(0);
}
.service-popular-content-2 .service-content {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 575px) {
  .service-popular-content-2 .service-content {
    gap: 30px;
  }
}
.service-popular-content-2 .service-content .icon {
  font-size: 45px;
  color: var(--theme-2);
}
.service-popular-content-2 .service-content h3 {
  margin-bottom: 5px;
  letter-spacing: -0.72px;
}
.service-popular-content-2 .service-content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.service-popular-content-2 .service-content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(var(--white), var(--white));
}
.service-popular-content-2:hover {
  border-bottom: 1px solid var(--white);
}

.popular-service-box-items {
  margin-top: 30px;
  text-align: center;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  padding: 40px 30px;
}
.popular-service-box-items .icon {
  width: 110px;
  height: 110px;
  line-height: 126px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(92, 48, 253, 0.1);
  font-size: 50px;
  color: var(--theme);
  margin: 0 auto;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.popular-service-box-items .content {
  margin-top: 20px;
}
.popular-service-box-items .content h3 {
  margin-bottom: 5px;
}
.popular-service-box-items .content h3 a:hover {
  color: var(--theme);
}
.popular-service-box-items .content p {
  margin-bottom: 10px;
}
.popular-service-box-items:hover {
  box-shadow: 0px 10px 20px rgba(92, 48, 253, 0.2);
  border-radius: 12px;
}
.popular-service-box-items:hover .icon {
  background-color: var(--theme);
  color: var(--white);
}
.popular-service-box-items.active {
  box-shadow: 0px 10px 20px rgba(92, 48, 253, 0.2);
  border-radius: 12px;
}
.popular-service-box-items.active .icon {
  background-color: var(--theme);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115px;
  height: 115px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 185, 126, 0.7);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  transition: 0.6s;
  background-color: var(--theme);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme);
  content: "";
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.3px solid var(--white);
  content: "";
}

.array-button {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 20px;
}
.array-button .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-prev:hover {
  background-color: var(--white);
  color: var(--theme);
}
.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  box-shadow: var(---box-shadow);
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .array-button .array-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.mt-10 {
  margin-top: 10px;
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}


.head-color {
  color: var(--header);
}

.footer-bg {
  background-color: var(--header);
}

.footer-bg-2 {
  background-color: #1A1D20;
}

.background-black {
  background-color: var(--black) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.theme-bg {
  background-color: var(--theme);
}

.theme-bg-2 {
  background-color: var(--theme-2) !important;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.mt-50 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .mt-50 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .mt-50 {
    margin-top: 20px;
  }
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.ml-30 {
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .ml-30 {
    margin-left: 0;
  }
}

.ml-minus-30 {
  margin-left: -30px;
}
@media (max-width: 1399px) {
  .ml-minus-30 {
    margin-left: 0;
  }
}

.border-none {
  border-top: none !important;
}

.section-border {
  border-top: 2px solid transparent;
  border-image: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 2px solid transparent;
  border-image-slice: 160;
}

.section-border-2 {
  border-bottom: 2px solid transparent;
  border-image: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 2px solid transparent;
  border-image-slice: 30;
}

.team-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.team-items .team-content {
  position: relative;
  margin-top: 20px;
}
.team-items .team-content .social-profile {
  position: absolute;
  right: 0;
  bottom: 10px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-items .team-content .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-items .team-content .social-profile ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  background: var(--theme);
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 14px;
}
.team-items .team-content .social-profile ul li a:hover {
  background-color: var(--header);
  color: var(--white);
}
.team-items .team-content .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: transparent;
  color: var(--theme);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.team-items .team-content .social-profile .plus-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.team-items .team-content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-items .team-content h4 {
  margin-bottom: 5px;
}
.team-items .team-content h4 a:hover {
  color: var(--theme);
}

.team-card-items {
  margin-top: 30px;
}
.team-card-items .team-image {
  position: relative;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-card-items .team-image .icon-list {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 30px;
  background-color: var(--theme);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
}
.team-card-items .team-image .icon-list ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.team-card-items .team-image .icon-list ul li {
  transform: scaleX(0);
  transition: all 0.5s ease-in-out;
}
.team-card-items .team-image .icon-list ul li a i {
  color: var(--white);
  font-size: 16px;
}
.team-card-items .team-content {
  margin-top: 25px;
}
.team-card-items .team-content h4 a {
  color: var(--white);
}
.team-card-items .team-content h4 a:hover {
  color: var(--theme);
}
.team-card-items .team-content p {
  color: rgba(255, 255, 255, 0.65);
}
.team-card-items:hover .team-image .icon-list {
  opacity: 1;
}
.team-card-items:hover .team-image .icon-list ul li {
  transform: scaleX(1) !important;
}
.team-card-items.style-2 .team-content h4 a {
  color: var(--header);
}
.team-card-items.style-2 .team-content h4 a:hover {
  color: var(--theme);
}
.team-card-items.style-2 .team-content p {
  color: var(--text);
}
.team-card-items.style-2 .team-image img {
  border-radius: 10px;
}

.about-image {
  margin-top: 30px;
}
.about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.team-details-wrapper .team-details-image-area {
  position: relative;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area {
    padding-top: 0;
  }
}
.team-details-wrapper .team-details-image-area::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F9FAFB;
  height: 85%;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area::before {
    display: none;
  }
}
.team-details-wrapper .team-details-image-area .text {
  font-size: 120px;
  text-transform: uppercase;
  color: var(--theme);
  position: relative;
  z-index: 1;
  transform: rotate(-90deg);
  position: absolute;
  top: 25%;
  left: -8px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-image-area .text {
    left: -70px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .text {
    display: none;
  }
}
.team-details-wrapper .team-details-image-area .details-iamge {
  height: 502px;
  position: relative;
  z-index: 9;
}
.team-details-wrapper .team-details-image-area .right-content {
  position: relative;
  z-index: 9;
}
.team-details-wrapper .team-details-image-area .right-content h2 {
  font-size: 40px;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content h2 {
    font-size: 32px;
  }
}
.team-details-wrapper .team-details-image-area .right-content p {
  color: var(--theme);
}
.team-details-wrapper .team-details-image-area .right-content .list {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content .list {
    margin-top: 20px;
  }
}
.team-details-wrapper .team-details-image-area .right-content .list h5 {
  font-size: 18px;
  font-weight: 500;
}
.team-details-wrapper .team-details-image-area .right-content .list h5 a, .team-details-wrapper .team-details-image-area .right-content .list h5 span {
  color: var(--text);
  font-weight: normal;
}
.team-details-wrapper .team-details-image-area .right-content .social-icon {
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-image-area .right-content .social-icon {
    margin-top: 30px;
  }
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-1 {
  background-color: rgb(70, 97, 197);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-2 {
  background-color: rgb(29, 161, 242);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-3 {
  background-color: rgb(255, 46, 46);
}
.team-details-wrapper .team-details-image-area .right-content .social-icon a.color-4 {
  background-color: rgb(0, 115, 176);
}
.team-details-wrapper .team-details-content {
  margin-top: -7px;
  margin-bottom: -5px;
}
.team-details-wrapper .team-details-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-content h2 {
    font-size: 28px;
  }
}
.team-details-wrapper .team-details-content .details-information-area {
  margin-top: 40px;
  margin-bottom: 40px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .pro-head .point {
  font-size: 14px;
  color: var(--text);
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .progress {
  background: var(--bg);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 6px;
  width: 0;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .team-details-content .details-information-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 50%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
.team-details-wrapper .team-details-content .details-information-area .information-content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-details-wrapper .team-details-content .details-information-area .information-content-items .content-box-area .content h3 {
  margin-bottom: 10px;
}

.contact-form-items {
  background-color: #F9FAFB;
  padding: 70px;
}
@media (max-width: 767px) {
  .contact-form-items {
    padding: 60px 40px;
  }
}
@media (max-width: 575px) {
  .contact-form-items {
    padding: 50px 30px;
  }
}
.contact-form-items .title {
  margin-bottom: 40px;
}
.contact-form-items .title h2 {
  font-size: 36px;
  margin-bottom: 5px;
}
.contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
  padding: 18px 30px;
  border: none;
  outline: none;
  background-color: var(--white);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
@media (max-width: 575px) {
  .contact-form-items .form-clt input, .contact-form-items .form-clt textarea {
    padding: 12px 20px;
  }
}
.contact-form-items .form-clt textarea {
  padding: 18px 30px 110px;
}
@media (max-width: 575px) {
  .contact-form-items .form-clt textarea {
    padding: 12px 20px 90px;
  }
}
.contact-form-items .form-clt::placeholder {
  color: var(--text);
}

.faq-content .accordion-item {
  border: 0;
  margin-top: 30px;
  border-radius: 10px;
  background-color: #F9FAFB;
  border-radius: 12px;
}
.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
  color: var(--header);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #F9FAFB;
  padding: 25px 30px 0;
  text-transform: none;
  font-size: 20px;
  border: none;
}
@media (max-width: 575px) {
  .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 18px 22px 0;
  }
}
.faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f054";
  background: var(--white);
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 30px;
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  text-align: center;
  color: var(--theme);
  font-size: 14px;
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f077";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  background-color: var(--theme);
  color: var(--white);
  font-size: 14px;
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  padding: 20px 30px;
  color: var(--header);
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background: #F9FAFB;
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 80px;
  padding-left: 30px;
  padding-top: 15px;
  color: var(--text);
  background: #F9FAFB;
  padding-bottom: 25px;
}
@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}

.cta-video-wrapper {
  position: relative;
}
.cta-video-wrapper .video-box {
  text-align: center;
  margin: 0 auto;
  padding: 170px 0;
}
@media (max-width: 991px) {
  .cta-video-wrapper .video-box {
    padding: 160px 0;
  }
}
@media (max-width: 767px) {
  .cta-video-wrapper .video-box {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .cta-video-wrapper .video-box {
    padding: 120px 0;
  }
}
.cta-video-wrapper .video-box .video-buttton {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .cta-video-wrapper .video-box .video-buttton {
    width: 90px;
    height: 90px;
    line-height: 90px;
  }
}
@media (max-width: 767px) {
  .cta-video-wrapper .video-box .video-buttton {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .cta-video-wrapper .video-box .video-buttton {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
.cta-video-wrapper .video-box .ripple::before, .cta-video-wrapper .video-box .ripple::after {
  width: 100px;
  height: 100px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
@media (max-width: 1199px) {
  .cta-video-wrapper .video-box .ripple::before, .cta-video-wrapper .video-box .ripple::after {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767px) {
  .cta-video-wrapper .video-box .ripple::before, .cta-video-wrapper .video-box .ripple::after {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .cta-video-wrapper .video-box .ripple::before, .cta-video-wrapper .video-box .ripple::after {
    width: 70px;
    height: 70px;
  }
}
.cta-video-wrapper.style-2 .video-box {
  padding: 270px 0;
}
@media (max-width: 991px) {
  .cta-video-wrapper.style-2 .video-box {
    padding: 160px 0;
  }
}
@media (max-width: 767px) {
  .cta-video-wrapper.style-2 .video-box {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .cta-video-wrapper.style-2 .video-box {
    padding: 120px 0;
  }
}

.cta-video-section {
  position: relative;
}
.cta-video-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(66.34% 66.34% at 50% 25.71%, rgba(16, 24, 40, 0.3) 0%, rgba(16, 24, 40, 0.97) 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.cta-video-section.cta-video-2 {
  background-attachment: fixed;
}

.cta-marketing-wrapper {
  background-color: var(--theme);
  padding: 60px 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cta-marketing-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-marketing-wrapper {
    padding: 50px 40px;
  }
  .cta-marketing-wrapper br {
    display: none;
  }
}
@media (max-width: 575px) {
  .cta-marketing-wrapper {
    padding: 40px 30px;
  }
}
.cta-marketing-wrapper h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cta-marketing-wrapper h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .cta-marketing-wrapper h2 {
    font-size: 28px;
  }
}
.cta-marketing-wrapper .thumb {
  position: relative;
}
.cta-marketing-wrapper .thumb .circle-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-newsletter-wrapper {
  background-color: var(--theme);
  position: relative;
  z-index: 9;
}
.cta-newsletter-wrapper .line-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.cta-newsletter-wrapper .line-shape img {
  width: 100%;
  height: 100%;
}
.cta-newsletter-wrapper .cta-newsletter-image img {
  width: 100%;
  height: 100%;
}
.cta-newsletter-wrapper .cta-newsletter-content {
  margin-left: 70px;
  padding-right: 135px;
}
@media (max-width: 1399px) {
  .cta-newsletter-wrapper .cta-newsletter-content {
    margin-left: 0;
    padding-right: 0;
    padding: 30px 30px;
  }
}
@media (max-width: 1199px) {
  .cta-newsletter-wrapper .cta-newsletter-content .section-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper .cta-newsletter-content .section-title h2 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .cta-newsletter-wrapper .cta-newsletter-content br {
    display: none;
  }
}
.cta-newsletter-wrapper .cta-newsletter-content .form-clt {
  position: relative;
  margin-top: 30px;
}
.cta-newsletter-wrapper .cta-newsletter-content .form-clt input {
  border: none;
  outline: none;
  background-color: var(--white);
  color: var(--text);
  width: 100%;
  border-radius: 12px;
  padding: 22px 30px;
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper .cta-newsletter-content .form-clt input {
    padding: 18px 30px;
  }
}
.cta-newsletter-wrapper .cta-newsletter-content .form-clt input::placeholder {
  color: var(--text);
}
.cta-newsletter-wrapper .cta-newsletter-content .form-clt .theme-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper .cta-newsletter-content .form-clt .theme-btn {
    top: 6px;
  }
}

.cta-newsletter-wrapper-2 {
  padding: 80px;
  background-color: var(--theme);
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .cta-newsletter-wrapper-2 {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .cta-newsletter-wrapper-2 {
    padding: 50px 40px;
  }
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper-2 {
    padding: 40px 30px;
  }
}
.cta-newsletter-wrapper-2 .form-clt {
  position: relative;
  margin-top: 20px;
}
.cta-newsletter-wrapper-2 .form-clt input {
  border: none;
  outline: none;
  background-color: var(--white);
  color: var(--text);
  width: 100%;
  border-radius: 12px;
  padding: 22px 30px;
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper-2 .form-clt input {
    padding: 18px 30px;
  }
}
.cta-newsletter-wrapper-2 .form-clt input::placeholder {
  color: var(--text);
}
.cta-newsletter-wrapper-2 .form-clt .theme-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper-2 .form-clt .theme-btn {
    top: 6px;
  }
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 50px;
}

.text-slider {
  font-size: 150px;
  height: 150px;
  line-height: 1;
  font-weight: 500;
  margin-right: 20px;
  color: rgb(255, 255, 255);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
}
.text-slider.style-height {
  height: 65px;
  line-height: 0;
}
.text-slider.style-height-2 {
  height: 71px;
  line-height: 0;
}
@media (max-width: 575px) {
  .text-slider.style-height-2 {
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .text-slider {
    font-size: 50px;
    height: 70px;
    line-height: 65px;
  }
}
.text-slider.style-border {
  position: relative;
  padding-left: 85px;
}
.text-slider.style-border::before {
  position: absolute;
  bottom: 30px;
  left: 0;
  content: "";
  width: 80px;
  height: 14px;
  background-color: transparent;
  border: 1px solid var(--white);
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marque-section-2 {
  background-color: var(--theme);
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.testimonial-wrapper .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper .testimonial-content p {
  font-size: 27px;
  line-height: 140%;
  color: var(--header);
}
@media (max-width: 991px) {
  .testimonial-wrapper .testimonial-content p {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-content p {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-content p {
    font-size: 20px;
  }
}
.testimonial-wrapper .testimonial-content .author-items {
  display: flex;
  align-items: center;
  margin-top: 30px;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-content .author-items {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonial-content .author-items {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-content .author-items {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.testimonial-wrapper .testimonial-content .author-items .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-wrapper .testimonial-content .author-items .author-image img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.testimonial-wrapper .testimonial-content .author-items .author-image .content h5 {
  font-size: 22px;
}
.testimonial-wrapper .testimonial-content .author-items .author-image .content h5 span {
  font-weight: 600;
  font-size: 16px;
}

.testimonial-section-2 {
  background-color: #F9FAFB;
  position: relative;
}
.testimonial-section-2 .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-section-2 .bg-shape img {
  width: 100%;
  height: 100%;
}
.testimonial-section-2 .testimonial-slider-2 {
  margin-bottom: -50px;
}

.testimonial-card-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 65px;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  padding: 20px;
  margin-bottom: 50px;
  border-radius: 16px;
}
@media (max-width: 1600px) {
  .testimonial-card-items {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    text-align: center;
    padding: 40px 25px;
  }
}
.testimonial-card-items .testimonial-image {
  border-radius: 10px;
  background-color: #EFEBFF;
  position: relative;
  z-index: 1;
  padding: 0px 10px;
  border-radius: 16px;
}
.testimonial-card-items .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-card-items .testimonial-content {
  flex-basis: 60%;
}
@media (max-width: 767px) {
  .testimonial-card-items .testimonial-content {
    flex-basis: 100%;
  }
}
.testimonial-card-items .testimonial-content .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .testimonial-card-items .testimonial-content .author-image {
    justify-content: center;
  }
}
.testimonial-card-items .testimonial-content .author-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.testimonial-card-items .testimonial-content .author-image .content h5 {
  font-size: 22px;
}
.testimonial-card-items .testimonial-content .author-image .content h5 span {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.testimonial-card-items .testimonial-content p {
  font-size: 24px;
  letter-spacing: -0.72px;
  color: var(--header);
  line-height: 150%;
}
@media (max-width: 1600px) {
  .testimonial-card-items .testimonial-content p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .testimonial-card-items .testimonial-content p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-card-items .testimonial-content p {
    font-size: 18px;
  }
}
.testimonial-card-items .testimonial-content .star {
  color: var(--theme);
  margin-top: 20px;
}
.testimonial-card-items.style-2 {
  background-color: #1A1D20;
  box-shadow: none;
}
.testimonial-card-items.style-2 .testimonial-content .author-image .content h5 {
  color: var(--white);
}
.testimonial-card-items.style-2 .testimonial-content .author-image .content h5 span {
  color: #696969;
}
.testimonial-card-items.style-2 .testimonial-content p {
  color: var(--white);
}
.testimonial-card-items.style-2 .testimonial-content .star {
  color: var(--theme-2);
}

.testimonial-section-5 .swiper-slide.swiper-slide-active .testimonial-card-items.style-2 {
  background-color: var(--white);
  box-shadow: none;
}
.testimonial-section-5 .swiper-slide.swiper-slide-active .testimonial-card-items.style-2 .testimonial-content .author-image .content h5 {
  color: var(--header);
}
.testimonial-section-5 .swiper-slide.swiper-slide-active .testimonial-card-items.style-2 .testimonial-content .author-image .content h5 span {
  color: #696969;
}
.testimonial-section-5 .swiper-slide.swiper-slide-active .testimonial-card-items.style-2 .testimonial-content p {
  color: var(--header);
}
.testimonial-section-5 .swiper-slide.swiper-slide-active .testimonial-card-items.style-2 .testimonial-content .star {
  color: var(--theme-2);
}

.testimonial-section-3 {
  background-color: var(--theme);
}

@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content {
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial-wrapper-2 .testimonial-content .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--white);
  max-width: 500px;
  padding: 15px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content .author-image {
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .author-image {
    margin-bottom: 20px;
    padding: 14px 20px;
  }
}
.testimonial-wrapper-2 .testimonial-content .author-image img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}
.testimonial-wrapper-2 .testimonial-content .author-image .content h5 {
  font-size: 22px;
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .author-image .content h5 {
    font-size: 19px;
  }
}
@media (max-width: 500px) {
  .testimonial-wrapper-2 .testimonial-content .author-image .content h5 {
    font-size: 16px;
  }
}
.testimonial-wrapper-2 .testimonial-content .author-image .content h5 span {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 500px) {
  .testimonial-wrapper-2 .testimonial-content .author-image .content h5 span {
    font-size: 14px;
  }
}
.testimonial-wrapper-2 .testimonial-content p {
  font-size: 26px;
  color: var(--white);
  line-height: 140%;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content p {
    font-size: 23px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-content p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content p {
    font-size: 16px;
  }
}
.testimonial-wrapper-2 .testimonial-content .star {
  font-size: 14px;
  color: var(--white);
  margin-top: 20px;
}
.testimonial-wrapper-2 .testimonial-image {
  max-width: 440px;
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-image {
    text-align: center;
    margin: 0 auto;
  }
}
.testimonial-wrapper-2 .testimonial-image img {
  width: 100%;
  height: 100%;
}
.testimonial-wrapper-2 .testimonial-image .card-shape-1 {
  position: absolute;
  left: -35%;
  bottom: 0;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-1 {
    left: -30%;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-1 {
    left: -35%;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-1 {
    left: -35%;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-1 {
    width: 300px;
    left: -10%;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-1 {
    left: -8%;
    width: 260px;
  }
}
.testimonial-wrapper-2 .testimonial-image .card-shape-2 {
  position: absolute;
  right: -35%;
  top: 0;
}
@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-2 {
    right: -25%;
    top: 0;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-2 {
    right: -20%;
    top: 0;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-2 {
    right: -35%;
    top: 0;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-image .card-shape-2 {
    width: 300px;
    right: -10%;
  }
}

.testimonial-section-4 {
  background-color: var(--theme);
}

.testimonial-box-items {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 575px) {
  .testimonial-box-items {
    text-align: center;
  }
}
.testimonial-box-items .testimonial-content .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .testimonial-box-items .testimonial-content .author-image {
    justify-content: center;
  }
}
.testimonial-box-items .testimonial-content .author-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.testimonial-box-items .testimonial-content .author-image .content h5 {
  font-size: 18px;
  text-align: left;
}
.testimonial-box-items .testimonial-content .author-image .content h5 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
}
.testimonial-box-items .testimonial-content .star {
  color: var(--theme);
  margin-top: 20px;
}

.testimonial-section-6 {
  background-color: var(--header);
}

.testimonial-wrapper-3 .testimonial-top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 70px;
  margin-bottom: 70px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-top-items {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.testimonial-wrapper-3 .testimonial-top-items .testimonial-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-top-items .testimonial-right {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
}
.testimonial-wrapper-3 .testimonial-top-items .testimonial-right .author-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-wrapper-3 .testimonial-items .testimonial-thumb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 470px;
  margin: 0 auto;
}
.testimonial-wrapper-3 .testimonial-items .testimonial-thumb-item .testi-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.testimonial-wrapper-3 .testimonial-items .testi-content {
  margin-top: 50px;
}
.testimonial-wrapper-3 .testimonial-items .testi-content .content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-wrapper-3 .testimonial-items .testi-content .content h3 {
  font-size: 27px;
  color: var(--white);
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h3 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h3 {
    font-size: 22px;
  }
}
.testimonial-wrapper-3 .testimonial-items .testi-content .content h3 span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.testimonial-wrapper-3 .testimonial-items .testi-content .content h4 {
  font-size: 24px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h4 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 .testimonial-items .testi-content .content h4 {
    font-size: 16px;
  }
}

.brand-wrapper h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
}
.brand-wrapper h6 span {
  color: var(--theme);
}
.brand-wrapper .brand-image {
  text-align: center;
}

.brand-section-2 {
  margin-top: -30px;
  margin-bottom: -15px;
}
@media (max-width: 1199px) {
  .brand-section-2 {
    margin-top: -50px;
  }
}
@media (max-width: 991px) {
  .brand-section-2 {
    margin-top: -70px;
  }
}
.brand-section-2 .container-fluid {
  padding: 0 200px;
}
@media (max-width: 1600px) {
  .brand-section-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .brand-section-2 .container-fluid {
    padding: 0 20px;
  }
}

.brand-wrapper-2 {
  background-color: #F9FAFB;
  border-radius: 10px;
  padding: 80px 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .brand-wrapper-2 {
    padding: 70px 60px;
  }
}
@media (max-width: 991px) {
  .brand-wrapper-2 {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .brand-wrapper-2 {
    padding: 50px 40px;
  }
}
@media (max-width: 575px) {
  .brand-wrapper-2 {
    padding: 40px 30px;
  }
}
.brand-wrapper-2 .radius-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .brand-wrapper-2 .radius-shape {
    display: none;
  }
}
.brand-wrapper-2 .radius-shape-2 {
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: -1;
}
@media (max-width: 991px) {
  .brand-wrapper-2 .radius-shape-2 {
    display: none;
  }
}
.brand-wrapper-2 h5 {
  color: var(--text);
  text-align: center;
  font-weight: 400;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .brand-wrapper-2 h5 {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .brand-wrapper-2 h5 {
    margin-bottom: 25px;
  }
}
.brand-wrapper-2 h5 span {
  color: var(--theme);
}
.brand-wrapper-2 .brand-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .brand-wrapper-2 .brand-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.brand-wrapper-2 .brand-items:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .brand-wrapper-2 .brand-items:not(:last-child) {
    margin-bottom: 30px;
  }
}

.brand-list .brand-list-items {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.72px;
  color: var(--white);
}
.brand-list .mt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.brand-list .mt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.global-partner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .global-partner-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.global-partner-wrapper .global-thumb {
  border-radius: 20px;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  background: #1A1D20;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 30px;
  width: 240px;
  height: 120px;
  line-height: 120px;
}
@media (max-width: 1399px) {
  .global-partner-wrapper .global-thumb:not(:last-child) {
    margin-right: 25px;
  }
}

.brand-text-6 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
}
.brand-text-6 span {
  color: var(--theme);
}

.pricing-card-items {
  margin-top: 30px;
  background: rgba(92, 48, 253, 0.1);
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  padding: 50px 45px;
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .pricing-card-items {
    padding: 45px 40px;
  }
}
@media (max-width: 575px) {
  .pricing-card-items {
    padding: 40px 30px;
  }
}
.pricing-card-items .pricing-shape {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: -1;
}
.pricing-card-items .pricing-header h3 {
  margin-bottom: 5px;
}
.pricing-card-items .pricing-list {
  margin-top: 20px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .pricing-card-items .pricing-list {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .pricing-card-items .pricing-list {
    margin-bottom: 20px;
  }
}
.pricing-card-items .pricing-list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  position: relative;
  padding-left: 15px;
}
@media (max-width: 575px) {
  .pricing-card-items .pricing-list li {
    font-size: 16px;
  }
}
.pricing-card-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-card-items .pricing-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--theme);
  border-radius: 5px;
}
.pricing-card-items .pricing-list li.style-2 {
  opacity: 0.2;
}
.pricing-card-items .pricing-bottom {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .pricing-card-items .pricing-bottom {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .pricing-card-items .pricing-bottom {
    margin-top: 20px;
  }
}
.pricing-card-items .pricing-bottom h2 span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: -7px;
}
.pricing-card-items .pricing-button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .pricing-card-items .pricing-button {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .pricing-card-items .pricing-button {
    margin-top: 20px;
  }
}
.pricing-card-items .pricing-button .theme-btn.style-transparent {
  background-color: transparent;
  border-radius: 14px;
  border: 1.5px solid rgba(43, 43, 107, 0.1);
  color: var(--text);
}
.pricing-card-items .pricing-button .theme-btn.style-transparent::before, .pricing-card-items .pricing-button .theme-btn.style-transparent::after {
  background-color: var(--theme);
}
.pricing-card-items .pricing-button .theme-btn.style-transparent:hover {
  color: var(--white);
}
.pricing-card-items.active {
  background-color: var(--header);
}
.pricing-card-items.active .pricing-header h3, .pricing-card-items.active .pricing-header p {
  color: var(--white);
}
.pricing-card-items.active .pricing-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card-items.active .pricing-list li {
  color: var(--white);
}
.pricing-card-items.active .pricing-bottom {
  margin-top: 40px;
}
.pricing-card-items.active .pricing-bottom p, .pricing-card-items.active .pricing-bottom h2 {
  color: var(--white);
}
.pricing-card-items.active .pricing-bottom p span, .pricing-card-items.active .pricing-bottom h2 span {
  color: var(--white);
}
.pricing-card-items.active .pricing-button .theme-btn {
  background-color: var(--theme);
  color: var(--white);
}
.pricing-card-items.active .pricing-button .theme-btn::before, .pricing-card-items.active .pricing-button .theme-btn::after {
  background-color: var(--white);
}
.pricing-card-items.active .pricing-button .theme-btn:hover {
  color: var(--header);
}
.pricing-card-items.style-2 {
  background-color: #1A1D20;
}
.pricing-card-items.style-2 .pricing-header h3, .pricing-card-items.style-2 .pricing-header p {
  color: var(--white);
}
.pricing-card-items.style-2 .pricing-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card-items.style-2 .pricing-list li {
  color: var(--white);
}
.pricing-card-items.style-2 .pricing-list li::before {
  background-color: var(--white);
}
.pricing-card-items.style-2 .pricing-list li.style-2 {
  opacity: 0.2;
}
.pricing-card-items.style-2 .pricing-bottom h2, .pricing-card-items.style-2 .pricing-bottom p {
  color: var(--white);
}
.pricing-card-items.style-2 .pricing-button .theme-btn.style-transparent {
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.pricing-card-items.style-2.active {
  background-color: var(--theme);
}
.pricing-card-items.style-2.active .pricing-button .theme-btn.style-transparent {
  border: 1.5px solid var(--white);
}

.pricing-section-2 {
  background-color: #EFEBFF;
}

.pricing-card-items-2 {
  margin-top: 30px;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.1);
  padding: 40px 45px;
  border-radius: 10px;
}
.pricing-card-items-2 .pricing-header h3 {
  margin-bottom: 10px;
}
.pricing-card-items-2 .pricing-button {
  margin-top: 30px;
}
.pricing-card-items-2 .pricing-button .theme-btn {
  width: 100%;
  background-color: var(--header);
}
.pricing-card-items-2 .pricing-button .theme-btn::before, .pricing-card-items-2 .pricing-button .theme-btn::after {
  background-color: var(--theme);
}
.pricing-card-items-2 .price-items {
  position: relative;
  margin-top: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.pricing-card-items-2 .price-items .arrow-img {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 10%;
}
.pricing-card-items-2 .price-items h2 {
  color: var(--theme);
}
.pricing-card-items-2 .price-items h2 sub {
  color: var(--theme);
  font-size: 24px;
}
.pricing-card-items-2 .price-items h2 span {
  font-size: 16px;
  color: var(--header);
}
.pricing-card-items-2 .price-items .discount {
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 40px;
  text-align: center;
  line-height: 65px;
  z-index: 9;
}
.pricing-card-items-2 .price-items .discount::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 65px;
  content: "";
  transform: translate(-50%, -50%);
  background-image: url(../../assets/img/pricing-radius.png);
  z-index: -1;
}
.pricing-card-items-2 .price-items .discount h6 {
  color: var(--white);
  font-size: 14px;
}
.pricing-card-items-2 .price-list {
  margin-top: 20px;
}
.pricing-card-items-2 .price-list li {
  font-size: 18px;
  color: var(--header);
}
.pricing-card-items-2 .price-list li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-card-items-2 .price-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.pricing-card-items-2.active {
  background-color: var(--theme);
}
.pricing-card-items-2.active .pricing-header h3 {
  color: var(--white);
}
.pricing-card-items-2.active .pricing-header p {
  color: var(--white);
}
.pricing-card-items-2.active .pricing-button .theme-btn {
  background-color: transparent;
  border: 1px solid var(--white);
}
.pricing-card-items-2.active .pricing-button .theme-btn::before, .pricing-card-items-2.active .pricing-button .theme-btn::after {
  background-color: var(--white);
}
.pricing-card-items-2.active .pricing-button .theme-btn:hover {
  color: var(--header);
}
.pricing-card-items-2.active .price-items {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-card-items-2.active .price-items .arrow-img {
  filter: grayscale(100%) brightness(300%);
}
.pricing-card-items-2.active .price-items h2 {
  color: var(--white);
}
.pricing-card-items-2.active .price-items h2 sub {
  color: var(--white);
}
.pricing-card-items-2.active .price-items h2 span {
  color: var(--white);
}
.pricing-card-items-2.active .price-list li {
  color: var(--white);
}
.pricing-card-items-2.active .price-list li i {
  color: var(--white);
}

.news-box-items {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--white);
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  border-radius: 12px;
}
.news-box-items .news-content p {
  margin-bottom: 5px;
}
.news-box-items .news-content h4 {
  margin-bottom: 15px;
  font-size: 21px;
}
.news-box-items .news-content h4 a:hover {
  color: var(--theme);
}
.news-box-items .news-content .link-btn {
  color: var(--text);
}
.news-box-items .news-content .link-btn:hover {
  color: var(--theme);
}
.news-box-items .news-image {
  margin-top: 30px;
  height: 200px;
  border-radius: 12px;
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  height: 270px;
}
.news-card-items .news-content {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .news-card-items .news-content {
    margin-top: 20px;
  }
}
.news-card-items .news-content h4 {
  margin-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .news-card-items .news-content h4 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 20px;
  }
}
.news-card-items .news-content h4 a:hover {
  color: var(--theme);
}
.news-card-items .news-content .link-btn {
  color: var(--text);
}
.news-card-items .news-content .link-btn:hover {
  color: var(--theme);
}
.news-card-items.style-2 .news-image {
  height: 250px;
  border-radius: 10px;
}
.news-card-items.style-2 .news-content {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 10px 60px rgba(92, 48, 253, 0.2);
  margin-top: 0;
  padding: 30px;
  margin: -45px 35px 0;
  position: relative;
  z-index: 9;
}

.blog-wrapper h1, .blog-wrapper h2, .blog-wrapper h3, .blog-wrapper h4, .blog-wrapper h5, .blog-wrapper h6 {
  font-weight: 600;
}
.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}
.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .array-button {
  position: initial;
}
.blog-wrapper .single-blog-post .array-button .array-prev {
  position: absolute;
  top: 46%;
  left: 2%;
  transform: translateY(-50%);
  z-index: 9;
  border-radius: 0;
}
.blog-wrapper .single-blog-post .array-button .array-next {
  position: absolute;
  top: 46%;
  right: 2%;
  transform: translateY(-50%);
  z-index: 9;
  border-radius: 0;
}
.blog-wrapper .single-blog-post .postbox-audio {
  position: relative;
}
.blog-wrapper .single-blog-post .postbox-audio iframe {
  height: 400px;
  width: 100%;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .postbox-audio iframe {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .postbox-audio iframe {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  border: none;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../../assets/img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 30px;
  color: var(--white);
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 460px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme);
  text-align: center;
  border-radius: 5px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .video-button {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
  display: inline-block;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .video-button {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .video-button {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before, .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::after {
  width: 80px;
  height: 80px;
  box-shadow: 0 0 0 0 rgba(92, 48, 253, 0.8);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before, .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::after {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::before, .blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .ripple::after {
    width: 60px;
    height: 60px;
  }
}
.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.2;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}
@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  font-family: "League Spartan", sans-serif;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme);
}
.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}
.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}
.news-area .main-sidebar .single-sidebar-widget {
  border: 2px solid #ededed;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
}
.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 16px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h4 {
  font-size: 24px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #F9FAFB;
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}
.search_widget form input {
  background-color: #F9FAFB;
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--header);
}
.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
}
.popular-posts .single-post-item:last-child, .popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 100px;
  width: 100px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 5px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 0;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme);
  font-weight: 600;
  font-size: 15px;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}
.widget_categories ul li:last-child a {
  margin-bottom: 0;
}
.widget_categories ul li a {
  position: relative;
  background: #F9FAFB;
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.widget_categories ul li a:hover {
  color: var(--theme);
}
.widget_categories ul li a i {
  margin-right: 10px;
}
.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 11px 26px;
  line-height: 1;
  font-size: 15px;
  font-weight: 600;
  background: #F9FAFB;
  margin-right: 10px;
  margin-bottom: 10px;
}
.tagcloud a:last-child {
  margin-right: 0;
}
.tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap.style-2 ul li {
  display: inline-block;
}
.page-nav-wrap.style-2 ul li .page-numbers.current {
  background-color: var(--theme-2);
}
.page-nav-wrap.style-2 ul li .page-numbers:hover {
  background-color: var(--theme-2);
}
.page-nav-wrap.style-3 ul li {
  display: inline-block;
}
.page-nav-wrap.style-3 ul li .page-numbers.current {
  background-color: var(--theme-3);
}
.page-nav-wrap.style-3 ul li .page-numbers:hover {
  background-color: var(--theme-3);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.social-share a:hover {
  color: var(--theme);
}

.tag-share-wrap {
  padding-bottom: 50px;
}
.tag-share-wrap h4 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}
.comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
  font-size: 16px;
}
.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}
@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 12px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #727475;
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 10px;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
  transform: translate(0);
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}
.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme);
  font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}
@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}
.comment-form label {
  margin-bottom: 4px;
}
.comment-form input, .comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  color: var(--header);
  background-color: #F9FAFB;
}
@media (max-width: 585px) {
  .comment-form input, .comment-form textarea {
    padding: 15px;
  }
}
.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}
@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}
.comment-form .theme-btn {
  display: inline-block;
  line-height: 1.2;
  padding: 24px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}
@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}
.comment-form .theme-btn i {
  margin-right: 10px;
}
.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.comment ul {
  list-style-type: disc;
}
.comment ul ol {
  margin-bottom: 0;
}
.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}
.comment ol ul {
  margin-bottom: 0;
}
.comment ol ol {
  margin-bottom: 0;
}
.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme);
}
.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme);
}
.site_info_widget .social-link {
  margin-top: 35px;
}
.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.case-study-items {
  margin-top: 30px;
}
.case-study-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.case-study-items .content {
  padding-top: 20px;
  overflow: hidden;
}
.case-study-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}
.case-study-items .content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .case-study-items .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .case-study-items .content h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .case-study-items .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .case-study-items .content h3 {
    font-size: 20px;
  }
}
.case-study-items .content h3 a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.case-study-items .content h3 a:hover {
  background-size: 100% 2px;
}
.case-study-items .content .arrow-btn {
  color: var(--white);
}
.case-study-items .content .arrow-btn::before {
  color: var(--white);
}

.case-study-section {
  position: relative;
  z-index: 9;
}
.case-study-section .left-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.case-study-section .right-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.project-wrapper {
  padding: 0 70px;
}
@media (max-width: 1399px) {
  .project-wrapper {
    padding: 0 30px;
  }
}
.project-wrapper .project-box-items {
  margin-top: 30px;
}
.project-wrapper .project-box-items .project-image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}
.project-wrapper .project-box-items .project-content {
  margin-top: 25px;
}
.project-wrapper .project-box-items .project-content p {
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.45);
}
.project-wrapper .project-box-items .project-content h3 a {
  color: var(--white);
  background-image: linear-gradient(var(--theme-2), var(--theme-2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.project-wrapper .project-box-items .project-content h3 a:hover {
  color: var(--theme-2);
  background-size: 100% 2px;
}

.project-card-items {
  margin-top: 30px;
}
.project-card-items .project-image {
  max-width: 410px;
}
.project-card-items .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.project-card-items .project-content {
  margin-top: 20px;
}
.project-card-items .project-content p {
  color: var(--theme);
  font-weight: 500;
  margin-bottom: 5px;
}
.project-card-items .project-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.project-card-items .project-content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme), var(--theme));
  color: var(--theme);
}
.project-card-items.style-2 .project-content p {
  color: rgba(255, 255, 255, 0.55);
}
.project-card-items.style-2 .project-content h3 a {
  color: var(--white);
}
.project-card-items.style-2 .project-content h3 a:hover {
  color: var(--theme);
}

.project-details-wrapper {
  margin-bottom: -8px;
}
.project-details-wrapper .project-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.project-details-wrapper .project-details-content {
  margin-top: 20px;
}
.project-details-wrapper .project-details-content h5 {
  color: var(--theme);
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-content .project-list {
  margin-top: 20px;
}
.project-details-wrapper .project-details-content .project-list li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-content .project-list li i {
  color: var(--theme);
  margin-right: 10px;
}
.project-details-wrapper .project-information {
  padding: 40px 50px;
  background-color: #EFEBFF;
  border-radius: 10px;
  border: 1.2px solid rgba(16, 24, 40, 0.1);
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .project-information {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .project-information {
    padding: 30px;
  }
}
.project-details-wrapper .project-information h4 {
  border-bottom: 1px solid rgba(16, 24, 40, 0.1);
  padding-bottom: 25px;
}
.project-details-wrapper .project-information ul {
  margin-top: 20px;
}
.project-details-wrapper .project-information ul li {
  font-size: 22px;
  justify-content: space-between;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .project-details-wrapper .project-information ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .project-details-wrapper .project-information ul li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .project-information ul li {
    font-size: 16px;
  }
}
.project-details-wrapper .project-information ul li span {
  color: var(--header);
  font-weight: 500;
}
.project-details-wrapper .project-information .social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.project-details-wrapper .project-information .social-icon h5 {
  font-size: 22px;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .project-details-wrapper .project-information .social-icon h5 {
    font-size: 18px;
  }
}
.project-details-wrapper .project-information .social-icon .icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-details-wrapper .project-information .social-icon .icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-color: rgba(16, 24, 40, 0.1);
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
.project-details-wrapper .project-information .social-icon .icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.project-details-wrapper .project-details-img {
  margin-bottom: 30px;
}
.project-details-wrapper .project-details-img .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.project-details-wrapper .p-list li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .p-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.google-map iframe {
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .google-map iframe {
    height: 420px;
  }
}
@media (max-width: 575px) {
  .google-map iframe {
    height: 320px;
  }
}

.contact-section {
  position: relative;
  z-index: 9;
}
.contact-section .pattern-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .contact-section .pattern-shape {
    display: none;
  }
}

.contact-image {
  position: relative;
}
.contact-image img {
  width: 100%;
  height: 100%;
}
.contact-image .circle-musk-shape {
  position: absolute;
  top: 0;
  left: -25%;
}
@media (max-width: 991px) {
  .contact-image .circle-musk-shape {
    display: none;
  }
}

.contact-wrapper .contact-content .contact-list {
  margin-top: 30px;
}
.contact-wrapper .contact-content .contact-list li {
  font-size: 24px;
  color: var(--text);
}
@media (max-width: 767px) {
  .contact-wrapper .contact-content .contact-list li {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper .contact-content .contact-list li {
    font-size: 18px;
  }
}
.contact-wrapper .contact-content .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}
.contact-wrapper .contact-content .contact-list li a {
  color: var(--header);
  text-decoration: underline;
}
.contact-wrapper .contact-content .contact-list li a:hover {
  color: var(--theme);
}
.contact-wrapper .contact-right h3 {
  font-size: 27px;
  margin-bottom: 20px;
}
.contact-wrapper .contact-right .contact-form-items {
  padding: 0;
  background-color: transparent;
}
.contact-wrapper .contact-right .contact-form-items .form-clt input, .contact-wrapper .contact-right .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 16px 20px;
  border-radius: 8px;
  color: var(--text);
  border: 1px solid var(--border);
}
.contact-wrapper .contact-right .contact-form-items .form-clt input::placeholder, .contact-wrapper .contact-right .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper .contact-right .contact-form-items .form-clt textarea {
  padding-bottom: 110px;
}
.contact-wrapper.style-2 {
  margin-top: -72px;
}
.contact-wrapper.style-2 .contact-image {
  max-width: 510px;
}
.contact-wrapper.style-2 .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 305px;
}
.contact-wrapper.style-2 .contact-form-items .form-clt input, .contact-wrapper.style-2 .contact-form-items .form-clt textarea {
  font-weight: 400;
  background-color: #1A1D20;
  border: 1.2px solid rgba(255, 255, 255, 0.1);
}
.contact-wrapper.style-2 .contact-form-items .form-clt input::placeholder, .contact-wrapper.style-2 .contact-form-items .form-clt textarea::placeholder {
  color: var(--white);
}

.map-items .googpemap iframe {
  width: 100%;
  height: 800px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}

.discussed-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
@media (max-width: 1199px) {
  .discussed-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.discussed-items .discussed-content {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1199px) {
  .discussed-items .discussed-content {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .discussed-items .discussed-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.discussed-items .discussed-content h2 {
  color: var(--white);
  font-weight: 400;
}
.discussed-items .discussed-content h2 span {
  color: var(--theme);
  font-family: italic;
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
    margin-bottom: -50px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    margin-bottom: -30px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper {
    margin-bottom: -50px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h4 {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.55);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 10px;
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-color: #2B3852;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  background: var(--white);
  border: none;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 5px;
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 60px;
  height: 55px;
  line-height: 55px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
  transform: rotate(-40deg);
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area {
  margin-top: 25px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items {
  display: flex;
  gap: 20px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items .icon {
  color: var(--theme);
  font-size: 18px;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items .content a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  font-weight: 400;
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items .content p {
  color: rgba(255, 255, 255, 0.55);
}
.footer-widgets-wrapper .single-footer-widget .contact-info-area .contact-items.color-style-2 .icon {
  color: var(--theme-2);
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  display: table;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
  background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content {
  flex-basis: 50%;
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
  margin-bottom: 10px;
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
  font-size: 16px;
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--theme);
}

.footer-bottom {
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .footer-bottom {
    padding: 20px 0;
    text-align: center;
  }
}
.footer-bottom .footer-wrapper {
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
    margin-top: 30px;
  }
}
.footer-bottom .footer-wrapper p {
  color: rgba(255, 255, 255, 0.7019607843);
}
.footer-bottom .footer-wrapper p a {
  color: rgba(255, 255, 255, 0.7019607843);
}
.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .footer-bottom .footer-wrapper .footer-menu {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper .footer-menu li a {
  color: rgba(255, 255, 255, 0.7019607843);
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
  color: var(--theme);
}
.footer-bottom .footer-wrapper .scroll-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--theme);
  border-radius: 5px;
  text-align: center;
  color: var(--white);
  display: inline-block;
  font-size: 24px;
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .scroll-icon:hover {
  background-color: var(--white);
  color: var(--header);
}
.footer-bottom.style-2 {
  border-top: 1.2px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  position: relative;
  margin-top: 35px;
}
.footer-bottom.style-2 .scroll-icon {
  background-color: var(--theme-2);
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
}

.footer-section {
  position: relative;
  z-index: 9;
}
.footer-section .color-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer-section .color-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.footer-section .robot-shape {
  position: absolute;
  bottom: 25%;
  left: 5%;
}
@media (max-width: 1899px) {
  .footer-section .robot-shape {
    display: none;
  }
}
.footer-section .robot-shape-2 {
  position: absolute;
  top: 10%;
  right: 3%;
}
@media (max-width: 1899px) {
  .footer-section .robot-shape-2 {
    display: none;
  }
}

/* =============================================================================
   Breadcrumb and Hero Styles
   ============================================================================= */

.breadcrumb-wrapper.hero-6 {
    background: url('../img/hero/breadcrumb_02.png') no-repeat fixed;
    background-size: 100% 40%;
    padding: 60px 0;
    padding: 60px 0 !important;
    min-height: auto !important;
    position: relative;
    overflow: hidden;
    background-attachment: fixed !important;
    color: black;
}

.breadcrumb-wrapper .page-heading {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-wrapper .page-heading h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: black;
    font-weight: 700;
}

.breadcrumb-wrapper .page-heading p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: black(255, 255, 255, 0.9);
}

.breadcrumb-title {
    font-size: 2.2rem !important;
}

/* =================
   CONTACT WIZARD STYLES
   ================= */

/* Wizard Progress Bar */
.wizard-progress {
    margin-bottom: 2rem;
}

.progress-container {
    position: relative;
    width: 100%;
}

.progress-bar-custom {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -15px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.step-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-top: 5px;
    max-width: 80px;
    line-height: 1.3;
}

.step-item.active .step-label {
    color: #667eea;
    font-weight: 600;
}

/* Wizard Form Container */
.wizard-form-container .card {
    border-radius: 15px;
    overflow: hidden;
}

.step-header .step-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-header .step-description {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Form Styles */
.wizard-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.wizard-form .form-control,
.wizard-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.wizard-form .form-select {
    font-weight: normal !important;
    color: #495057 !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 40px;
    background-color: #ffffff !important;
}

.wizard-form .form-select option {
    font-weight: normal !important;
    color: #495057 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 8px 12px;
}

.wizard-form .form-select option:hover,
.wizard-form .form-select option:focus,
.wizard-form .form-select option:active,
.wizard-form .form-select option:checked,
.wizard-form .form-select option:selected {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    color: #495057 !important;
    font-weight: normal !important;
}

/* Forçar estilos para diferentes navegadores */
.wizard-form select {
    font-weight: normal !important;
    color: #495057 !important;
}

.wizard-form select::-webkit-scrollbar {
    width: 8px;
}

.wizard-form select::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.wizard-form select::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

/* Estilos adicionais para remover cor azul */
.wizard-form .form-select option {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.wizard-form .form-select:focus option:checked,
.wizard-form .form-select:focus option:hover {
    background: linear-gradient(#f8f9fa, #f8f9fa) !important;
    background-color: #f8f9fa !important;
}

/* Reset completo para options */
.wizard-form .form-select option,
.wizard-form select option {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #495057 !important;
    font-weight: normal !important;
    padding: 10px !important;
}

.wizard-form .form-select option:hover,
.wizard-form select option:hover,
.wizard-form .form-select option:checked,
.wizard-form select option:checked,
.wizard-form .form-select option:selected,
.wizard-form select option:selected {
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    color: #495057 !important;
    font-weight: normal !important;
}

/* Desabilitar nice-select nos formulários do wizard */
.wizard-form .nice-select {
    display: none !important;
}

.wizard-form select {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* Garantir que o select nativo seja mostrado */
.wizard-form .form-select {
    display: block !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Forçar reset do nice-select */
.contact-wizard-section .nice-select,
.wizard-form-container .nice-select {
    display: none !important;
}

.contact-wizard-section select,
.wizard-form-container select {
    display: block !important;
}

.wizard-form .form-control:focus,
.wizard-form .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    outline: none;
}

.wizard-form .form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.wizard-form .invalid-feedback {
    font-size: 0.9rem;
    color: #dc3545;
    margin-top: 5px;
}

/* Form Actions */
.form-actions {
    border-top: 1px solid #e9ecef;
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Security Notice */
.security-notice {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.security-notice i {
    font-size: 1.2rem;
}

/* Contact Features - Usando o mesmo padrão dos benefit-icons */

/* Success Page Styles */
.success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-container {
    padding: 3rem 2rem;
}

.success-icon .success-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    }
}

.success-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

.success-content .lead {
    font-size: 1.3rem;
    color: #495057;
}

/* Next Steps */
.next-steps-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.step-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-card h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Success Actions */
.success-actions {
    margin: 2rem 0;
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    border: none !important;
}

.contact-info-box h5 {
    color: #ffffff;
}

.contact-info-box a {
    color: #ffffff !important;
    font-weight: 600;
}

.contact-info-box a:hover {
    color: #f8f9fa !important;
    text-decoration: underline !important;
}

/* Service Preview Cards */
.service-preview-card .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
}

.service-preview-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.service-preview-card .service-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-preview-card h6 {
    color: #2c3e50;
    font-weight: 600;
}

/* Garantir mesmo tamanho para todos os cards de serviços */
.related-services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.related-services-section .col-lg-3 {
    display: flex;
    margin-bottom: 1.5rem;
}

.service-preview-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-preview-card .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-preview-card .card .card-body,
.service-preview-card .card > .p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-preview-card .service-icon {
    flex-shrink: 0;
}

.service-preview-card h6 {
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}

.service-preview-card p {
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.service-preview-card .btn {
    flex-shrink: 0;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-label {
        font-size: 12px;
        max-width: 60px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .step-item.active .step-number {
        transform: scale(1.05);
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-icon .success-circle {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .wizard-form-container .card-body {
        padding: 2rem 1.5rem;
    }
    
    .next-steps-container {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .progress-steps {
        margin-top: -12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .step-label {
        font-size: 11px;
        max-width: 50px;
    }
    
    .success-actions .theme-btn {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    .wizard-form-container .card-body {
        padding: 1.5rem 1rem;
    }
}

.breadcrumb-subtitle {
    font-size: 1.1rem !important;
}

/* Breadcrumb Navigation */
.breadcrumb-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.breadcrumb-items li {
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
}

.breadcrumb-items a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-items a:hover {
    color: white !important;
    text-decoration: none;
}

.breadcrumb-items i {
    font-size: 12px;
    margin: 0 5px;
    color: rgba(0, 0, 0, 0.8);
}

.breadcrumb-items .text-white {
    color: white !important;
}

.breadcrumb-items .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero Shape Elements */
.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.hero-shape-1 {
    top: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-shape-1 img,
.hero-shape-2 img {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

/* Tech Icons and Floating Elements */
.hero-tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon i {
    color: white;
    font-size: 1.5rem;
}

.tech-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.tech-icon-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.tech-icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Hero Section 4 Styles */
.hero-4 .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #101828 !important;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-4 .hero-content p {
    font-size: 1.1rem;
    color: #696969 !important;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-4 .sub-content {
    color: #5C30FD !important;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

/* General Layout Styles */
.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

.highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content .section-title {
    margin-bottom: 30px;
}

.about-content .section-title h2 {
    margin-top: 20px;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-btn {
    margin-top: 35px !important;
}

.section-padding {
    padding: 80px 0;
}

/* Icon Box Styles */
.icon-box {
    width: 90px;
    height: 90px;
    background-color: rgba(92, 48, 253, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5C30FD !important;
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.4s ease-in-out;
    margin-right: 20px;
}

.icon-box i {
    color: #5C30FD !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    display: block !important;
    line-height: 1 !important;
}

.highlight-box:hover .icon-box {
    background-color: #5C30FD !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0px 8px 15px rgba(92, 48, 253, 0.3);
}

.highlight-box:hover .icon-box i {
    color: white !important;
}

/* Problems Section Styles */
.problems-section .problem-card {
    margin-bottom: 30px;
}

.problems-section .card-body {
    padding: 30px;
}

.problems-section .popular-service-box-items {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.problems-section .popular-service-box-items:hover {
    box-shadow: 0px 10px 20px rgba(92, 48, 253, 0.2);
    transform: translateY(-5px);
    border-radius: 12px;
}

.problems-section .popular-service-box-items:hover .icon {
    background-color: #5C30FD;
    transform: scale(1.05);
}

.problems-section .popular-service-box-items:hover .icon i {
    color: white;
}

.problems-section .popular-service-box-items .icon {
    width: 110px;
    height: 110px;
    line-height: 126px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(92, 48, 253, 0.1);
    font-size: 50px;
    color: #5C30FD;
    margin: 0 auto 25px;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problems-section .popular-service-box-items .icon i {
    font-size: 50px;
    color: #5C30FD;
    transition: all 0.4s ease-in-out;
}

.problems-section .popular-service-box-items .content h5,
.problems-section .popular-service-box-items .content h4 {
    color: #101828;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.problems-section .popular-service-box-items .content p {
    color: #696969;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.problem-card .card {
    transition: all 0.3s ease-in-out;
}

.problem-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Solutions Section Styles */
.solutions-section .section-title {
    margin-bottom: 60px;
}

.service-card {
    margin-bottom: 30px;
}

.solutions-section .popular-service-box-items {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
    border: 1px solid #f0f0f0;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.solutions-section .popular-service-box-items .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.solutions-section .popular-service-box-items .icon {
    width: 110px;
    height: 110px;
    line-height: 126px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(92, 48, 253, 0.1);
    font-size: 50px;
    color: #5C30FD;
    margin-bottom: 25px;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solutions-section .popular-service-box-items .icon i {
    font-size: 50px;
    color: #5C30FD;
    transition: all 0.4s ease-in-out;
}

.solutions-section .popular-service-box-items:hover {
    box-shadow: 0px 10px 20px rgba(92, 48, 253, 0.2);
    transform: translateY(-5px);
}

.solutions-section .popular-service-box-items:hover .icon {
    background-color: #5C30FD;
    transform: scale(1.05);
}

.solutions-section .popular-service-box-items:hover .icon i {
    color: white;
}

.solutions-section .popular-service-box-items .content h4 {
    color: #101828;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.solutions-section .popular-service-box-items .content p {
    color: #696969;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solutions-section .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.solutions-section .service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #696969;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.solutions-section .service-features li:last-child {
    border-bottom: none;
}

.solutions-section .service-features i {
    color: #5C30FD;
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 16px;
}

/* Services CTA Styling */
.services-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.services-cta h3 {
    color: white;
    margin-bottom: 20px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.single-service-item-6 {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.single-service-item-6:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Benefits Section Styles */
.benefits-section {
    padding: 80px 0;
}

.benefit-item {
    transition: all 0.4s ease-in-out;
    padding: 30px;
    border-radius: 12px;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    background: transparent !important;
}

.benefit-icon-circle {
    width: 110px;
    height: 110px;
    line-height: 126px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(92, 48, 253, 0.1) !important;
    font-size: 50px;
    color: #5C30FD;
    margin: 0 auto;
    transition: all 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-circle i {
    font-size: 50px;
    color: #5C30FD;
    transition: all 0.4s ease-in-out;
}

.benefit-item:hover .benefit-icon-circle {
    background-color: #5C30FD !important;
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(92, 48, 253, 0.2);
}

.benefit-item:hover .benefit-icon-circle i {
    color: white !important;
}

.benefit-item:hover .benefit-icon {
    background: transparent !important;
}

/* Additional Services Section */
.additional-services-section {
    padding: 80px 0;
}

.service-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.service-icon-circle i {
    font-size: 2.5rem;
    color: #667eea;
}

.additional-service-item:hover .service-icon-circle {
    background: #667eea;
    border-color: #667eea;
    animation: pulse 2s infinite;
}

.additional-service-item:hover .service-icon-circle i {
    color: white;
}

.additional-service-item .card {
    transition: all 0.3s ease-in-out;
}

.additional-service-item:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-section {
    padding: 80px 0;
}

/* Enhanced CTA Styles */
.enhanced-cta-section {
    position: relative;
    overflow: hidden;
}

.enhanced-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6) !important;
}

.cta-card {
    transition: all 0.3s ease-in-out;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* CTA Section Shapes */
.cta-shape-1,
.cta-shape-2 {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.cta-shape-1 {
    top: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.cta-shape-2 {
    bottom: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite reverse;
}

.cta-section-6 {
    position: relative;
    overflow: hidden;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Parallax effect */
@media (min-width: 768px) {
    .breadcrumb-wrapper.hero-6 {
        background-attachment: fixed;
    }
}

/* CTA Responsive */
@media (max-width: 768px) {
    .enhanced-cta-section .row {
        text-align: center;
    }
    
    .enhanced-cta-section .col-lg-6:first-child {
        margin-bottom: 40px;
    }
    
    .enhanced-cta-section h2 {
        font-size: 2rem;
    }
    
    .hero-4 .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 2rem !important;
    }
    
    .breadcrumb-wrapper .page-heading p {
        font-size: 1rem !important;
    }
    
    .breadcrumb-wrapper.hero-6 {
        padding: 40px 0 !important;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .tech-icon i {
        font-size: 1rem;
    }
    
    .breadcrumb-items {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .breadcrumb-items li {
        font-size: 12px;
    }
}

/* =============================================================================
   SERVICE CARDS LAYOUT
   ============================================================================= */
   .service-preview-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    justify-content: space-between;
}

.service-preview-card .card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-preview-card .card .service-icon {
    font-size: 2.5rem;
}

.service-preview-card .card h6 {
    margin-bottom: auto;
}

.service-preview-card .card .btn {
    margin-top: auto;
}

/* =============================================================================
   URGENT CONTACT SECTION
   ============================================================================= */

.urgent-contact-section {
    margin-top: 1rem;
}

.urgent-contact-gradient {
    background: linear-gradient(135deg, #6B73FF 0%, #9B59B6 100%);
    box-shadow: 0 20px 40px rgba(107, 115, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.urgent-contact-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.urgent-contact-btn {
    display: block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.urgent-contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.urgent-contact-btn i {
    font-size: 1.3rem;
    opacity: 0.9;
}

.urgent-contact-gradient h4 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Success Actions Enhancement */
.success-actions .btn {
    border-width: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.success-actions .btn-outline-primary:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .urgent-contact-btn {
        margin-bottom: 1rem;
        font-size: 1rem;
        padding: 18px;
    }
    
    .urgent-contact-gradient {
        padding: 2rem 1.5rem !important;
    }
    
    .success-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .success-actions .btn:last-child {
        margin-bottom: 0;
    }
}

/* =============================================================================
   ERP PAGE ENHANCEMENTS
   ============================================================================= */
   .trust-badges .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 20px;
}

.impact-stats .stat-item {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-stats .stat-item h2 {
    font-size: 3rem;
    font-weight: 600;
}

.hero-cta .btn {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.limited-offer .alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 5px solid #f39c12;
    font-size: 1.1rem;
}

/* ROI Calculator */
.roi-calculator-wrapper {
    border: 2px solid #e9ecef;
    position: relative;
}

.roi-calculator-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(40,167,69,0.05) 100%);
    border-radius: 1rem;
    z-index: 1;
}

.roi-calculator-wrapper > * {
    position: relative;
    z-index: 2;
}

.economia-card {
    border-radius: 15px !important;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.economia-card:hover {
    transform: scale(1.05);
}

.economia-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Success Cases */
.success-case-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.success-case-card:hover {
    border-color: var(--theme-color);
    transform: translateY(-5px);
}

.client-logo {
    font-size: 1.5rem;
}

.case-results ul li {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Demo Form Enhancement */
.demo-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-form-wrapper .form-control,
.demo-form-wrapper .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 500;
}

.demo-form-wrapper .form-control:focus,
.demo-form-wrapper .form-select:focus {
    background: white;
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

/* Animations */
@keyframes pulse-success {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.economia-card:nth-child(1) {
    animation: pulse-success 2s infinite;
    animation-delay: 0s;
}

.economia-card:nth-child(2) {
    animation: pulse-success 2s infinite;
    animation-delay: 0.5s;
}

/* ===== AUTOMATION BENEFITS SECTION ===== */
.automation-benefits-section {
    position: relative;
    overflow: hidden;
}

.process-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-header {
    position: relative;
}

.process-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}

.manual-process .process-header::after {
    border-top: 15px solid #6c757d;
}

.automated-process .process-header::after {
    border-top: 15px solid #0d6efd;
}

.step-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-item {
    position: relative;
    padding-left: 10px;
    border-left: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-left-color: var(--theme-color);
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    margin-left: -10px;
}

.manual-process .step-item:hover {
    border-left-color: #6c757d;
    background: rgba(108, 117, 125, 0.05);
}

.automated-process .step-item:hover {
    border-left-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.total-time {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.total-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Automation Results */
.automation-results {
    position: relative;
}

.result-card {
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.result-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    margin-bottom: 20px;
}

.result-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(108,117,125,0.1), rgba(13,110,253,0.1));
    z-index: -1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.result-card h2 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

/* Animation classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

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

/* Before vs After Comparison */
.manual-process {
    position: relative;
}

.manual-process::before {
    content: 'ATUAL';
    position: absolute;
    top: -15px;
    right: 20px;
    background: #6c757d;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.automated-process::before {
    content: 'COM NOSSO SISTEMA';
    position: absolute;
    top: -15px;
    right: 20px;
    background: #0d6efd;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Modern CTA Form Styles */
.demo-form-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.demo-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header .form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.form-control-modern, .form-select.form-control-modern {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: normal;
    transition: all 0.3s ease;
    background: #fafbfc;
    min-height: 58px;
    appearance: auto;
    color: #495057;
}

.form-select.form-control-modern {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
}

.form-control-modern:focus, .form-select.form-control-modern:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.1);
    background: white;
    transform: translateY(-1px);
}

.form-select.form-control-modern option {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: normal;
    color: #212529;
    background: white;
    border: none;
}

.form-select.form-control-modern option:hover {
    background: #f8f9fa;
    color: #212529;
}

.form-select.form-control-modern option:checked,
.form-select.form-control-modern option:selected {
    background: #e9ecef !important;
    color: #212529 !important;
    font-weight: normal !important;
}

/* Reset completo para o select */
.demo-form-card select.form-select {
    background-color: #fafbfc !important;
    color: #495057 !important;
    font-weight: normal !important;
}

.demo-form-card select.form-select option {
    background-color: white !important;
    color: #212529 !important;
    font-weight: normal !important;
    padding: 8px 12px !important;
}

.demo-form-card select.form-select option:hover {
    background-color: #f8f9fa !important;
}

.demo-form-card select.form-select option:checked {
    background-color: #e9ecef !important;
}

.form-floating > label {
    color: #6c757d;
    font-weight: 500;
    padding-left: 16px;
}

.form-floating > .form-control-modern:focus ~ label,
.form-floating > .form-control-modern:not(:placeholder-shown) ~ label {
    color: #007bff;
    font-weight: 600;
}

.btn-cta-modern {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    border-radius: 15px;
    padding: 16px 24px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255,193,7,0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta-modern:hover::before {
    left: 100%;
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,193,7,0.6);
    background: linear-gradient(135deg, #ffcd3c 0%, #ff9500 100%);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.btn-subtext {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 500;
}

.security-badge {
    background: rgba(40,167,69,0.1);
    border: 1px solid rgba(40,167,69,0.2);
    border-radius: 12px;
    padding: 15px;
}

.security-icons i {
    font-size: 18px;
    animation: pulse 2s infinite;
}

.security-icons i:nth-child(2) {
    animation-delay: 0.3s;
}

.security-icons i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =============================================================================
   About Page Styles
   ============================================================================= */
   .about-commitment-section .commitment-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-commitment-section .commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745, #ffc107);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.about-commitment-section .commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-commitment-section .commitment-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.vision-mission-values-section .vmv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.vision-mission-values-section .vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.vision-mission-values-section .vmv-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0,123,255,0.2);
}

.vision-mission-values-section .vision-card .vmv-icon {
    background: rgba(0,123,255,0.1);
}

.vision-mission-values-section .mission-card .vmv-icon {
    background: rgba(40,167,69,0.1);
}

.vision-mission-values-section .values-card .vmv-icon {
    background: rgba(255,193,7,0.1);
}

.vision-mission-values-section .value-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vision-mission-values-section .value-item:last-child {
    border-bottom: none;
}

.vision-mission-values-section .value-item i {
    margin-top: 5px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-commitment-section .commitment-card,
    .vision-mission-values-section .vmv-card {
        margin-bottom: 20px;
    }
    
    .vision-mission-values-section .vmv-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Enhanced Design Elements */
.step-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 25px !important;
    margin-bottom: 20px;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.step-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 22px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.time-badge, .automation-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(108, 117, 125, 0.2);
    transition: all 0.3s ease;
}

.automation-badge {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
}

.time-badge:hover, .automation-badge:hover {
    transform: scale(1.05);
}

.result-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.result-card h2 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #495057, #212529);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-icon {
    width: 70px !important;
    height: 70px !important;
    font-size: 28px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trust-badges {
        text-align: center;
    }
    
    .trust-badges .badge {
        display: block;
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
    
    .impact-stats .stat-item {
        margin-bottom: 15px;
    }
    
    .impact-stats .stat-item h2 {
        font-size: 2rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .step-item {
        padding: 20px !important;
        margin-bottom: 20px;
    }
    
    .step-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
    
    .result-card {
        margin-bottom: 20px;
    }
    
    .result-card h2 {
        font-size: 2.2rem !important;
    }
    
    .demo-form-card {
        padding: 25px;
        margin-top: 30px;
    }
    
    .form-header .form-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .btn-cta-modern {
        padding: 14px 20px;
    }
    
    .btn-text {
        font-size: 14px;
    }
    
    .btn-subtext {
        font-size: 10px;
    }
    
    .roi-calculator-wrapper {
        padding: 20px !important;
    }
    
    .economia-card {
        margin-bottom: 15px;
    }
    
    .demo-form-wrapper {
        padding: 20px;
        margin-top: 30px;
    }
    
    /* Automation Benefits Responsive */
    .process-card {
        margin-bottom: 30px;
    }
    
    .step-item {
        margin-bottom: 20px !important;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .result-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .result-card h2 {
        font-size: 2rem;
    }
    
    .total-time {
        font-size: 0.9rem;
    }
    
    .automation-results .row {
        gap: 20px;
    }
}
/* ========================================
   CTA ABOUT PAGE STYLES
   ======================================== */

/* Main Container */
.cta-about-page {
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Wrapper with Background */
.cta-about-page__wrapper {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b82c5 100%);
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.25), 
                0 8px 32px rgba(30, 60, 114, 0.15);
}

/* Decorative Elements */
.cta-about-page__decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-about-page__decoration-circle {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-about-page__decoration-square {
    position: absolute;
    bottom: 25%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transform: rotate(15deg);
    animation: ctaFloat 4s ease-in-out infinite reverse;
}

.cta-about-page__decoration-triangle {
    position: absolute;
    top: 45%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: rgba(255, 165, 0, 0.1);
    transform: rotate(45deg);
    border-radius: 8px;
    animation: ctaFloat 5s ease-in-out infinite;
}

/* Header Section */
.cta-about-page__header {
    margin-bottom: 40px;
}

.cta-about-page__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.cta-about-page__badge-icon {
    color: #ffa500;
    font-size: 1rem;
}

.cta-about-page__badge-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title Section */
.cta-about-page__title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-about-page__title-highlight {
    color: #ffa500;
    position: relative;
}

.cta-about-page__title-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffa500;
    border-radius: 2px;
}

/* Benefits Section */
.cta-about-page__benefits {
    margin-bottom: 40px;
}

.cta-about-page__benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-about-page__benefit-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-about-page__benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.3);
    flex-shrink: 0;
}

.cta-about-page__benefit-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.cta-about-page__benefit-content {
    flex: 1;
}

.cta-about-page__benefit-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-about-page__benefit-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Actions Section */
.cta-about-page__actions {
    text-align: left;
}

.cta-about-page__button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #fff;
    padding: 22px 42px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(255, 165, 0, 0.4), 
                0 4px 16px rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.cta-about-page__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 165, 0, 0.5), 
                0 6px 20px rgba(255, 140, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.cta-about-page__button-icon {
    font-size: 1.1rem;
}

.cta-about-page__button-text {
    flex: 1;
}

.cta-about-page__button-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-about-page__button:hover .cta-about-page__button-arrow {
    transform: translateX(5px);
}

.cta-about-page__guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-about-page__guarantee-icon {
    color: #4ade80;
    font-size: 1.1rem;
}

.cta-about-page__guarantee-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Visual Section */
.cta-about-page__visual {
    text-align: center;
    position: relative;
}

.cta-about-page__image-container {
    position: relative;
    display: inline-block;
}

.cta-about-page__image {
    max-width: 300px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.cta-about-page__floating-rocket {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 165, 0, 0.4);
    z-index: 3;
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-about-page__floating-rocket i {
    font-size: 1.3rem;
    color: #fff;
}

.cta-about-page__online-status {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-about-page__online-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: ctaPulse 1.5s ease-in-out infinite;
}

.cta-about-page__online-text {
    color: #1e3c72;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Animations */
@keyframes ctaFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-about-page__wrapper {
        padding: 40px 30px;
    }
    
    .cta-about-page__title {
        font-size: 2.2rem;
    }
    
    .cta-about-page__button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .cta-about-page__visual {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cta-about-page__wrapper {
        padding: 30px 20px;
    }
    
    .cta-about-page__title {
        font-size: 1.9rem;
        text-align: center;
    }
    
    .cta-about-page__benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-about-page__benefit-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cta-about-page__button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-about-page__actions {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cta-about-page {
        margin: 40px 0;
    }
    
    .cta-about-page__wrapper {
        border-radius: 20px;
        padding: 25px 15px;
    }
    
    .cta-about-page__title {
        font-size: 1.7rem;
    }
    
    .cta-about-page__badge {
        padding: 10px 20px;
    }
    
    .cta-about-page__badge-text {
        font-size: 0.8rem;
    }
}

/* ========================================
   URGENT CONTACT FORM STYLES
   ======================================== */

/* Urgency Indicators Section */
.contact-form2-section {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.urgency-indicator {
  padding: 20px;
}

.urgency-indicator i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffa500;
}

.urgency-indicator h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.urgency-indicator p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Urgent Contact Form Styles */
.urgent-contact-section {
    background: #f8f9fa;
}

.urgent-info-banner .info-card {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
}

.urgent-info-banner .info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.urgent-info-banner .info-header i {
    font-size: 1.5rem;
    color: #ffa500;
}

.urgent-info-banner .info-header h4 {
    margin: 0;
    color: white;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #ffa500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h6 {
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.step-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

.urgent-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    color: #dc3545;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.contact-form2-section .section-title {
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-form2-section .section-title i {
    color: #ffa500;
}

.form-label.required::after {
    content: ' *';
    color: #dc3545;
}

/* Urgency Levels */
.urgency-levels .form-check {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.urgency-levels .form-check:hover {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
}

.urgency-levels .form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.urgency-levels .form-check-input:checked + .form-check-label {
    color: #dc3545;
    font-weight: 600;
}

.urgency-levels .form-check-label {
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 8px;
    padding: 5px 0;
}

/* Contact Preferences */
.contact-preferences .form-check {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.contact-preferences .form-check:hover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.contact-preferences .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.contact-preferences .form-check-label {
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 8px;
}

/* Form Controls */
.urgent-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.urgent-form .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.urgent-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.urgent-form .form-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.urgent-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* reCAPTCHA Styles */
.recaptcha-container {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.recaptcha-info {
    color: #495057;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.recaptcha-field {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.recaptcha-field .errorlist {
    color: #dc3545;
    font-size: 0.875rem;
    margin-bottom: 10px;
    list-style: none;
    padding: 0;
}

/* Visual Captcha Styles */
.visual-captcha-container {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.visual-captcha-container:hover {
    border-color: #007bff;
    box-shadow: 0 4px 20px rgba(0,123,255,0.15);
}

.captcha-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #495057;
    font-weight: 500;
}

.captcha-header i {
    color: #007bff;
    font-size: 1.1em;
}

.math-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin: 15px 0 20px 0;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.equation {
    letter-spacing: 2px;
}

.captcha-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.captcha-option {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.captcha-option:hover {
    background: #e3f2fd;
    border-color: #2196f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.captcha-option.selected {
    background: #fff3cd;
    border-color: #ffc107;
}

.captcha-option.correct {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.captcha-option.incorrect {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 20%, 40%, 60%, 80% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
}

.captcha-feedback {
    margin-top: 15px;
}

.success-message,
.error-message {
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message i {
    color: #28a745;
}

.error-message i {
    color: #dc3545;
}

/* Submit Button */
.btn-urgent-contact {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-urgent-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
    color: white;
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Error Messages */
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Form Text */
.form-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Responsive Design for Urgent Form */
@media (max-width: 768px) {
    .urgent-form-card {
        padding: 25px;
        margin: 20px 10px;
    }
    
    .info-steps {
        grid-template-columns: 1fr;
    }
    
    .urgency-levels .form-check {
        padding: 12px 15px;
    }
    
    .contact-preferences .form-check {
        padding: 10px 12px;
    }
    
    .btn-urgent-contact {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .urgency-indicator {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .urgency-indicator i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .captcha-options {
        gap: 8px;
    }
    
    .captcha-option {
        padding: 10px 15px;
        font-size: 1em;
        min-width: 50px;
    }
    
    .math-question {
        font-size: 1.2em;
        padding: 12px 20px;
    }
    
    .visual-captcha-container {
        padding: 15px;
    }
    
    .recaptcha-container {
        padding: 15px;
    }
    
    /* reCAPTCHA responsivo em dispositivos móveis */
    .recaptcha-field iframe {
        transform: scale(0.8);
        transform-origin: center;
    }
}

/* ========================================
   DEMO REQUEST FORM STYLES
   ======================================== */

/* Container principal do formulário de demo */
.demo-request-form-container {
    background: white;
    border-radius: 20px;
    padding: 0;
}

/* Seções do formulário */
.form-section-demo {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.form-section-demo:last-of-type {
    border-bottom: none;
}

/* Títulos das seções */
.section-title-demo {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
}

.section-title-demo i {
    font-size: 1.1em;
}

/* Form controls modernos */
.demo-request-form-container .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    height: calc(3.5rem + 2px);
}

.demo-request-form-container .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    background: #ffffff;
}

.demo-request-form-container .form-floating {
    margin-bottom: 0;
}

.demo-request-form-container .form-floating > label {
    color: #6c757d;
    font-weight: 500;
    padding-left: 16px;
    font-size: 0.9rem;
}

.demo-request-form-container .form-floating > .form-control:focus ~ label,
.demo-request-form-container .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #007bff;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Botão de envio moderno */
.demo-request-form-container .btn-cta-modern {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 15px;
    padding: 18px 30px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-request-form-container .btn-cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}

.demo-request-form-container .btn-cta-modern .btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.demo-request-form-container .btn-cta-modern .btn-text {
    font-size: 1rem;
    font-weight: 700;
}

.demo-request-form-container .btn-cta-modern .btn-subtext {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Badge de segurança */
.demo-request-form-container .security-badge {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.demo-request-form-container .security-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.demo-request-form-container .security-icons i {
    font-size: 1.2rem;
}

/* Estilo para alertas */
.demo-request-form-container .alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.demo-request-form-container .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.demo-request-form-container .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Estilo para captcha visual */
.demo-request-form-container .visual-captcha-container {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.demo-request-form-container .visual-captcha-container:hover {
    border-color: #007bff;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
}

.demo-request-form-container .captcha-header {
    color: #495057;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-request-form-container .math-question {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: bold;
    margin: 15px 0 20px 0;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.demo-request-form-container .captcha-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-request-form-container .captcha-option {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.demo-request-form-container .captcha-option:hover {
    background: #e3f2fd;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.demo-request-form-container .captcha-option.selected {
    background: #fff3cd;
    border-color: #ffc107;
}

.demo-request-form-container .captcha-option.correct {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.demo-request-form-container .captcha-option.incorrect {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
    animation: demo-shake 0.5s;
}

@keyframes demo-shake {
    0%, 20%, 40%, 60%, 80% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
}

/* Responsividade para formulário de demo */
@media (max-width: 768px) {
    .demo-request-form-container {
        margin: 0 -15px;
        border-radius: 15px;
    }
    
    .form-section-demo {
        padding: 15px 0;
    }
    
    .section-title-demo {
        font-size: 0.95rem;
    }
    
    .demo-request-form-container .form-control {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
    
    .demo-request-form-container .btn-cta-modern {
        padding: 16px 25px;
    }
    
    .demo-request-form-container .btn-cta-modern .btn-text {
        font-size: 0.9rem;
    }
    
    .demo-request-form-container .captcha-options {
        gap: 8px;
    }
    
    .demo-request-form-container .captcha-option {
        padding: 10px 15px;
        font-size: 1rem;
        min-width: 50px;
    }
}

@media (max-width: 576px) {
    .demo-request-form-container .math-question {
        font-size: 1.2em;
        padding: 12px 20px;
    }
    
    .demo-request-form-container .visual-captcha-container {
        padding: 20px 15px;
    }
}
