/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  box-sizing: border-box;
  font-family: 'Manrope' !important;
}

ul,
li,
ol {
  list-style: none;
}
a,
a:hover {
  text-decoration: none;
}

/* =========================
   ROOT THEME COLORS (QBIZ)
========================= */
:root {
  /* Main Colors */
  --primary: #3c1a7d; 
  --secondary: #e0155a; 
  --dark: #28184e;
  --white: #ffffff;
  --sec-bg: #f7f5ff;
  --sap-bg: #549af0 ;
  /* Fonts */
  --font-body: 'Manrope', sans-serif;
  --font-heading: 'BarlowCondensed';
}
.text-black{
  color: var(--dark) !important;
}
.sap-bg{
  background: var(--sap-bg)!important;
}

/* =========================
   UTILITY CLASSES
========================= */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.sec-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.sec-space {
  padding: 50px 0;
}

.text-primary {
  color: var(--primary) !important;
}

.text-primary-dark {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-dark {
  color: var(--dark);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.bg-primary {
  background-color: var(--primary) !important;
}
.sec-bg {
  background-color: var(--sec-bg) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}
.border-primary {
  border-color: var(--primary) !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}

.border-accent {
  border-color: var(--accent) !important;
}

.bg-gradient-primary {
  background: var(--primary);
}

.bg-gradient-light {
  background: linear-gradient(135deg, #f3f5fd 0%, #fbf5f5 100%);
}

.from-indigo-50 {
  background: #fff5f8 !important;
}
.box-shadow-cust {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.barlow-condensed {
  font-family: 'BarlowCondensed' !important;
}

.sup-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

/* =========================
   COMPONENTS
========================= */
/* Cards */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card {
  background: var(--primary) !important;
  color: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon {
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-full-fill {
  height: -webkit-fill-available;
}
/* =========================
   SMOOTH BUTTON ANIMATIONS
========================= */

/* ---------- FILL BUTTON ---------- */
/* ===== MODERN FILLED BUTTON ===== */
.button-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.8s ease;
}

.button-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.button-fill:hover::before {
  left: 140%;
}


.button-fill:active {
  transform: scale(0.96);
}




/* ---------- STROKE BUTTON ---------- */
/* ===== MODERN STROKE BUTTON ===== */
.btn-stroke {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.35s ease;
  overflow: hidden;
}
.btn-stroke.btn-stroke-white{
   color: var(--white);
   border-color: var(--white);
}
.btn-stroke::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
  z-index: 0;
}
.btn-stroke:hover.btn-stroke-white span{
   color: var(--primary) !important;
}
.btn-stroke:hover.btn-stroke-white::before{
   background: var(--white);
}

.btn-stroke span {
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}


.btn-stroke:hover::before {
  transform: scaleX(1);
}

.btn-stroke:hover span {
  color: var(--white);
}



.btn-stroke:active {
  transform: scale(0.96);
}



/* ---------- ICON BUTTON ---------- */
.button-icon {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  width: 180px;
  height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid var(--primary) !important;
  background-color: var(--primary) !important;
  cursor: pointer;
  transition: transform 0.25s ease;
  will-change: transform;
}

.button__text {
  transform: translateX(20px);
  color: var(--white);
  font-weight: 600;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.button__icon {
  position: absolute;
  right: 0;
  height: 100%;
  width: 40px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: width;
}

.button-icon:hover .button__icon {
  width: 100%;
}

.button-icon:hover .button__text {
  opacity: 0;
  transform: translateX(0);
}

.button-icon:active {
  transform: scale(0.96);
}


/* =========================
   ANIMATIONS & EFFECTS
========================= */
/* Marquee */
.services-marquee {
  width: 100%;
  overflow: hidden;
  font-family: var(--default-font-family) !important;
  padding: 10px 0;
}

.services-marquee span {
  font-family: var(--default-font-family) !important;
}

.services-track {
  display: inline-flex;
  white-space: nowrap;
  animation: services-scroll 28s linear infinite;
}

@keyframes services-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



.services-text {
  font-size: 5rem;
  letter-spacing: 4px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  opacity: 1;
}

.services-dot {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 10px;
}

/* Brands Marquee */
.marquee {
  display: flex;
  animation: marquee 20s linear infinite;
}



@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-revert {
  display: flex;
  animation: marquee-revert 20s linear infinite;
}



@keyframes marquee-revert {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Circle Animation */
.circle-animation {
  animation: bounceUpDown 4s linear infinite;
}

@keyframes bounceUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(150px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Floating Animation */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Check Animation */
.check-icon {
  animation: checkPop 0.6s ease-out;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================
   FORM STYLES
========================= */
.form-container {
  overflow: hidden;
}

.form-input {
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input:hover:not(:focus) {
  border-color: #94a3b8;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent) 100%
  );
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:hover::after {
  left: 100%;
}

.required::after {
  content: '*';
  color: var(--secondary);
  margin-left: 4px;
}

/* =========================
   FOOTER
========================= */
.footer-link {
  display: inline-block;
  position: relative;
  color: var(--white); /* default text */
  transition: all 0.35s ease;
}

/* Animated Gradient Underline */
.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .contact-icon+div{
  max-width: 220px;
}

/* Hover Effect */
.footer-link:hover {
  color: var(--sec-bg);
  transform: translateX(4px);
}

.footer-link:hover::after {
  width: 100%;
}


.social-icon {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* =========================
   ACCORDION
========================= */
[data-accordion-target][aria-expanded='true'] i {
  transform: rotate(180deg);
}

#servicesDropdown {
  transform: none !important;
  margin: 30px 0 0 0 !important;
}

/* =========================
   LOADER
========================= */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

/* ---------------- */

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--primary);
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.value-icon {
  transition: all 0.5s ease;
}
.value-card {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24) !important;
}

.value-card:hover .value-icon {
  transform: rotateY(180deg);
  background: var(--primary);
}

.value-card:hover .value-icon i {
  color: white;
}

.section-divider {
  height: 3px;
  width: 80px;
  background: var(--primary);
  margin: 0 auto 30px;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin: 0 12px;
  color: #9ca3af;
}

.hover-lift {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.stats-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-logo-hover {
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.8;
}

.partner-logo-hover:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  margin: 3rem 0;
}

.gradient-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.stat-card {
  /* background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%); */
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}


.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-button {
  padding: 1.5rem 0;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--secondary);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.active {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}


.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}
/* -------------- */

.job-card {
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.job-card:hover {
  border-color: var(--career-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.job-tag-remote {
  background-color: #e0f2fe;
  color: #0369a1;
}

.job-tag-fulltime {
  background-color: #dcfce7;
  color: #166534;
}

.job-tag-internship {
  background-color: #fef3c7;
  color: #92400e;
}

.job-tag-senior {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.job-details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.job-details-content.show {
  max-height: 1000px;
}

.apply-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.apply-form-overlay.show {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.apply-form-container {
  background-color: white;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.apply-form-overlay.show .apply-form-container {
  transform: translateY(0);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

  .contact-hero {
        background: linear-gradient(135deg, #fff5f8 0%, #f0f4ff 100%);
      }
      
      .contact-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }
      
      .map-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }
      
      .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }
      
      .form-step {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
      }
      
      .form-step.active {
        opacity: 1;
        transform: translateY(0);
      }


        .event-card {
        box-shadow: none !important;
        padding: 0 !important;
      }
      
    
      
      .event-tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-right: 8px;
        margin-bottom: 8px;
      }
      
      .event-tag-upcoming {
        background-color: #dcfce7;
        color: #166534;
      }
      
      .event-tag-past {
        background-color: #e0f2fe;
        color: #0369a1;
      }
      
      .event-tag-workshop {
        background-color: #fef3c7;
        color: #92400e;
      }
      
      .event-tag-conference {
        background-color: #f3e8ff;
        color: #6b21a8;
      }
      
      .event-tag-webinar {
        background-color: #fce7f3;
        color: #9d174d;
      }
      
      .event-details-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
      }
      
      .event-details-content.show {
        max-height: 1000px;
      }
      
      .register-form-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      
      .register-form-overlay.show {
        display: flex;
        opacity: 1;
        align-items: center;
        justify-content: center;
      }
      
      .register-form-container {
        background-color: white;
        border-radius: 16px;
        max-width: 600px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        transform: translateY(-20px);
        transition: transform 0.3s ease;
      }
      
      .register-form-overlay.show .register-form-container {
        transform: translateY(0);
      }
      
      .speaker-card {
        transition: all 0.3s ease;
      }
      
      .speaker-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }
      
      .calendar-date {
        width: 70px;
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-weight: bold;
      }
      
      .calendar-date .month {
        font-size: 0.8rem;
        text-transform: uppercase;
      }
      
      .calendar-date .day {
        font-size: 1.5rem;
        line-height: 1;
      }
    #header{
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
    }


      .onboarding-gradient {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      }
      .onboarding-card {
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
      }
      .onboarding-card:hover {
        transform: translateY(-5px);
        border-left-color: #667eea;
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
      }
      .step-circle {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.5rem;
        position: relative;
      }
      .step-circle::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 100px;
        background: #e5e7eb;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
      }
      .last-step::after {
        display: none;
      }
      .process-line {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: 2px;
        background: linear-gradient(to bottom, #667eea, #764ba2);
        z-index: 0;
      }
      @media (max-width: 768px) {
        .process-line {
          left: 30px;
        }
        .step-circle::after {
          left: 30px;
        }
      }
      .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
      }
      .stat-card {
        /* background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%); */
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }
      .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
      }
      button{
        cursor: pointer !important;
      }
      #gallery-tabs button{
        color: #1e2939 !important;
        background: #e5e7eb !important;
      }
      #gallery-tabs button[aria-selected="true"]{
        color: #fff !important;
        background: var(--primary) !important;
      }
.swiper-pagination-bullet {
  width: 25px;
  height: 4px;
  border-radius: 10px;
  background: #000000;
  margin: 0 5px !important;
  transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  width: 40px;
}
.bottom-bar a:hover{
  color: var(--sec-bg) !important;
  transition: all 0.3s ease;
}
/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f3f4f6;
  padding:10px ;
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: var(--sap-bg);
  border-radius: 10px;
  
}




/* =========================
   FONT FACES
========================= */
/* Manrope Font */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Barlow Condensed Font */
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Thin.ttf')
    format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-ExtraLight.ttf')
    format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Light.ttf')
    format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Regular.ttf')
    format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Medium.ttf')
    format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-SemiBold.ttf')
    format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Bold.ttf')
    format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-ExtraBold.ttf')
    format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BarlowCondensed';
  src: url('../fonts/Barlow_Condensed/BarlowCondensed-Black.ttf')
    format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */
@media (min-width: 640px) {
  .sec-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sec-space {
    padding: 60px 0;
  }

}
@media (max-width: 640px) {

    .social-icon{
    display: none;
  }

}

@media (min-width: 768px) {
  .sec-wrapper {
        padding-left: 30px;
    padding-right: 30px;
  }
  .sec-space {
    padding: 60px 0;
  }
}

@media (min-width: 1024px) {
  .sec-wrapper {
       padding-left: 40px;
    padding-right: 40px;
  }
  .sec-space {
    padding: 80px 0;
  }
}

@media (min-width: 1280px) {
 .sec-wrapper {
       padding-left: 50px;
    padding-right: 50px;
  }
  .sec-space {
    padding: 80px 0;
  }
}


.clients-logo img, .partner-logo-hover img{
 min-width: 250px !important;
  height: 120px !important;
  object-fit: contain !important;
  padding: 4px;
}