:root {
  --fa-style-family-sharp: "Font Awesome 6 Sharp";
  --fa-font-sharp-duotone-thin: normal 100 1em / 1 "Font Awesome 6 Sharp Duotone";
}



.ruled-section {
  background-color: #000;
  color: white;
  padding: 0 0 60px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
 
  font-family: "Sofia Sans", sans-serif;

  line-height: 1.3;
}

.wrapper {
  width: 100%;
}

.ruled-line {
  position: relative;
  height: 120px;

   border-top: 1px solid #333333;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  letter-spacing: normal;
  word-spacing: normal;
}

.ruled-line span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

/* Number styling */
.ruled-line .big-number {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  font-size: 78px;
  color: #c2c2c2;
}

/* Text description */
.ruled-line .desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
  color: #909090;
}

/* Alignment classes */
.ruled-line .left {
  text-align: left;
}

.ruled-line .right {
  margin-left: auto;
  text-align: right;
}

.ruled-line .center {
  margin: 0 auto;
  text-align: center;
}

.ruled-line .left-center {
  margin-left: 25%;
  transform: translateX(-25%);
  text-align: center;
}

.ruled-line .left-centered {
  margin-left: 35%;
  transform: translateX(-25%);
  text-align: center;
}

.right-center {
  margin-left: 70%;
  transform: translateX(-70%);
  text-align: center;
  white-space: nowrap;
}

.client54{
 margin-left: 80%;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .ruled-line {
    height: 10vh;
  }

  .ruled-line span {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    justify-content: flex-start;
    max-width: 100%;
  }

  .ruled-line .big-number {
    font-size: 45px;
  }

  .ruled-line .desc {
    font-size: 16px;
  }

  .ruled-line .left,
  .ruled-line .right,
  .ruled-line .center,
  .ruled-line .left-center,
  .ruled-line .right-center,
  .ruled-line .left-centered,
  .client54 {
    margin: 0;
    transform: none;
    text-align: left;
  }

}

@media (min-width: 1600px) {
  .ruled-section {
    padding: 0 0 80px 0;
    height: 100vh;
     margin-top: -2% !important;
  }

  .ruled-line {
    height: 130px;
  }

  .ruled-line .big-number {
    font-size: clamp(4rem, 6vw, 8rem);
    font-weight: 300;
    font-size: 100px;
  }

  .ruled-line .desc {
    font-size: 1.2rem;
    font-weight: 300;

  }
}

/* NavBars */

.rightside-header-div p {
  position: relative;
}

/* Common animation */
@keyframes fadeInLeftItem {
  to {
    opacity: 1;
    transform: none;
    /* transform: translateX(0); */
  }
}

/* Reset all relevant elements */
.header-main-div a,
.rightside-header-div p,
.rightside-header-div .lets-talk-img-div,
.rightside-header-div .nav-icon {
  opacity: 0;
  transform: none;
  animation: fadeInLeftItem 0.7s ease-out forwards;
}

/* Staggered order */
.leftside-header-div a {
  animation-delay: 0.9s;
}

.rightside-header-div .lets-talk-img-div:nth-of-type(1) {
  animation-delay: 1.3s;
  /* Services */
}

.rightside-header-div .lets-talk-img-div:nth-of-type(2) {
  animation-delay: 1.6s;

}

.rightside-header-div .lets-talk-img-div:nth-of-type(3) {
  animation-delay: 1.9s;

}

.rightside-header-div .lets-talk-img-div {
  animation-delay: 2.2s;
}

.rightside-header-div p.nav-icon {
  animation-delay: 2.5s;
}




/* Mobile NavBars */


@keyframes fadeInLeftItemMobile {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Default state: items hidden and shifted */
.mbl-toggle-div .animate-item {
  opacity: 0;
  transform: translateX(-30px);
}

/* When nav is opened, animate in items */
.mbl-toggle-div.open .animate-item {
  animation: fadeInLeftItemMobile 0.6s ease forwards;
}

/* Stagger effect for each item */
.mbl-toggle-div.open .animate-item:nth-of-type(1) {
  animation-delay: 0.1s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(2) {
  animation-delay: 0.2s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(3) {
  animation-delay: 0.3s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(4) {
  animation-delay: 0.4s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(5) {
  animation-delay: 0.5s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(6) {
  animation-delay: 0.6s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(7) {
  animation-delay: 0.7s;
}

.mbl-toggle-div.open .animate-item:nth-of-type(8) {
  animation-delay: 0.8s;
}