/* About page styles */

/* bg-marquee */

.about-hero {
  background-image: url("/assets/img/about-bg-hero.jpg");
}

.about-hero .rs-section-subtitle {
  color: #ffffff !important;
}

/*  */

.rs-about-company {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* about info section css */

.about-info-sec {
  position: relative;
  overflow: visible;
}

.about-info-sec .about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.about-info-sec .about-label::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #d40000;
  border-radius: 50%;
}

.about-info-sec .about-who {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0 18px 72px 0;
  padding: 48px 52px 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(210, 0, 0, 0.07), transparent 42%),
    #ffffff;
  border: 1px solid #ececec;
  border-radius: 28px;
  box-shadow: 18px 18px 0 #d20000;
}

.about-info-sec .about-who-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  grid-template-areas:
    "title text"
    "connect text";
  gap: 20px 56px;
  align-items: end;
}

.about-info-sec .about-who-title {
  grid-area: title;
  margin-bottom: 0;
}

.about-info-sec .about-who-text {
  grid-area: text;
  margin-bottom: 0;
}

.about-info-sec .about-who-connect {
  grid-area: connect;
}

.about-info-sec .about-who-watermark {
  position: absolute;
  top: -18px;
  right: 18px;
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  user-select: none;
}

.about-info-sec .about-who-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  max-width: 760px;
}

.about-info-sec .about-who-top span {
  color: #d20000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-info-sec .about-who-top small {
  color: #8a93a0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.about-info-sec .about-who .rs-process-title {
  margin-bottom: 18px;
  max-width: 760px;
}

.about-info-sec .about-who .rs-section-subtitle {
  text-align: left;
  margin: 0 0 32px;
  max-width: 760px;
  color: #1b1b1b;
}

.about-info-sec .about-who-connect {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 460px;
}

.about-info-sec .about-who-connect span {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.about-info-sec .about-who-connect .line {
  flex: 1;
  height: 1px;
  background: #d20000;
}

.about-info-sec .about-who-connect .rs-btn {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .about-info-sec .about-who {
    margin: 0 10px 48px 0;
    padding: 32px 24px 28px;
    box-shadow: 10px 10px 0 #d20000;
  }

  .about-info-sec .about-who-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "connect";
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-info-sec .about-who {
    padding: 28px 18px 24px;
    border-radius: 20px;
    box-shadow: 8px 8px 0 #d20000;
  }

  .about-info-sec .about-who-top {
    flex-wrap: wrap;
  }

  .about-info-sec .about-who-connect {
    flex-wrap: wrap;
    max-width: 100%;
    gap: 12px;
  }

  .about-info-sec .about-who-connect .line {
    display: none;
  }
}

.about-info-sec .about-stats {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.about-info-sec .stat-box:first-child {
  border: 0;
}

.about-info-sec .stat-box {
  padding: 30px 0;
  transition: .35s;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #ddd;
}

.about-info-sec .stat-box:hover {
  transform: translateY(-8px);
}

/* Floating Animation */

.about-info-sec .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rsFloat 3s ease-in-out infinite;
  transform-origin: center;
}

.about-info-sec .stat-icon i {
  font-size: 40px;
  color: #111;
}

.about-info-sec .stat-box:nth-child(1) .stat-icon {
  animation-delay: 0s;
}

.about-info-sec .stat-box:nth-child(2) .stat-icon {
  animation-delay: .5s;
}

.about-info-sec .stat-box:nth-child(3) .stat-icon {
  animation-delay: 1s;
}

.about-info-sec .stat-box h3 {
  font-size: 52px;
  font-weight: 400;
  font-family: var(--default-font);
  color: #111;
  margin-bottom: 5px;
}

.about-info-sec .stat-box p {

  margin: 0;
  font-size: 17px;
}

.about-info-sec .about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.about-info-sec .about-image-card img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.about-info-sec .about-content-card {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  backdrop-filter: blur(15px);
  padding: 35px;
  border-radius: 22px;

}

.about-info-sec .about-content-card p {
  margin: 0;

  font-size: 17px;
  line-height: 1.9;
}

.about-info-sec .about-content-card a {
  color: #d40000;
  font-weight: 600;
  text-decoration: none;
}

.about-info-sec .about-content-card a:hover {
  text-decoration: underline;
}

@media(max-width:991px) {

  .about-info-sec .about-who {
    margin-bottom: 40px;
  }

  .about-info-sec .letconnect {
    max-width: 100%;
  }

  .about-info-sec .about-stats {
    flex-direction: row;
  }

  .about-info-sec .stat-box {
    flex: 1;
  }

  .about-info-sec .about-content-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -20px;
    border-radius: 20px;
  }

}

@media(max-width:767px) {

  .about-info-sec .about-stats {
    flex-direction: column;
  }

}

/* about logo dev */

.rs-about-company {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.rs-about-company:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: #fff3f3;
}

.rs-about-company:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -120px;
  border: 1px solid rgba(212, 0, 0, .08);
  border-radius: 50%;
}

/* Left */

.rs-company-left {
  position: sticky;
  top: 120px;
  z-index: 2;
}

.rs-company-left .rs-label {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 40px;
  color: #d40000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.rs-company-left h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.rs-company-left p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Right */

.rs-company-logos {
  background: #fff;
  border-radius: 28px;
  padding: 45px;
  border: 1px solid #ececec;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden;
}

.rs-company-logos:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(212, 0, 0, .05),
      transparent 35%);
  pointer-events: none;
}

.rs-company-logos img {
  width: 100%;
  position: relative;
  z-index: 2;
  transition: .5s;
}

.rs-company-logos:hover img {
  transform: scale(1.02);
}

/* Mobile */

@media(max-width:991px) {

  .rs-company-left {
    position: relative;
    top: auto;
  }

  .rs-company-left h2 {
    font-size: 38px;
  }

  .rs-company-logos {
    padding: 25px;
  }

}

.company_numbers {
  font-size: 52px;
  font-weight: 400;
  font-family: var(--default-font);
  color: #111;
  margin-bottom: 5px;
}

/* =========================================================
   REDSPIDER DIGITAL PRODUCTS & SOLUTIONS
   NEW ABOUT SERVICES SECTION
   ========================================================= */

.service-container-red.services {
  position: relative;
  overflow: hidden;

  width: 100%;

  padding: 70px 8%;

  color: #ffffff;

  background:
    linear-gradient(135deg,
      rgba(144, 13, 9, 0.94) 0%,
      rgba(144, 13, 9, 0.94) 60%,
      rgba(144, 13, 9, 0.94) 100%),
    url("/assets/img/Web-Design-Services-And-Web-Designer-Dubai-1.jpg.webp");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* =========================================================
   CONTENT WRAPPER
   ========================================================= */

.service-container-red.services .service-section-inner {
  position: relative;

  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  z-index: 3;
}

/* =========================================================
   DECORATIVE LIGHT
   ========================================================= */

.service-container-red.services::after {
  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 70%);

  pointer-events: none;

  z-index: 2;
}

/* =========================================================
   HEADING
   ========================================================= */

.service-container-red.services h2 {
  position: relative;

  margin: 0 0 50px;

  padding: 0;

  color: #ffffff !important;

  font-size: 34px !important;
  line-height: 1.2;

  font-weight: 700 !important;

  z-index: 3;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */

.service-container-red.services .grid {
  position: relative;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  column-gap: 50px;
  row-gap: 45px;

  width: 100%;

  z-index: 3;
}

/* =========================================================
   SERVICE ITEM
   ========================================================= */

.service-container-red.services .service {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  width: 100%;
  min-width: 0;

  margin: 0;
  padding: 0;
}

/* =========================================================
   ICON
   ========================================================= */

.service-container-red.services .service .icon {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  margin-top: 3px;

  object-fit: contain;

  display: block;

  filter: brightness(0) invert(1);
}

/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.service-container-red.services .service>div {
  flex: 1 1 auto;

  min-width: 0;
}

/* =========================================================
   SERVICE TITLE
   ========================================================= */

.service-container-red.services .service h3 {
  margin: 0 0 8px !important;
  padding: 0;

  font-size: 19px !important;
  line-height: 1.3 !important;

  font-weight: 700 !important;
}

/* =========================================================
   SERVICE TITLE LINK
   ========================================================= */

.service-container-red.services .service h3 a {
  color: #ffffff !important;

  text-decoration: none !important;

  transition: all 0.3s ease;
}

.service-container-red.services .service h3 a:hover {
  color: #ffe1e1 !important;
}

/* =========================================================
   DESCRIPTION
   ========================================================= */

.service-container-red.services .service p {
  margin: 0 !important;
  padding: 0;

  color: rgba(255, 255, 255, 0.90) !important;

  font-size: 14px !important;
  line-height: 1.55 !important;

  font-weight: 400;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .service-container-red.services {
    padding: 65px 6%;
  }

  .service-container-red.services .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 40px;
    row-gap: 40px;
  }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .service-container-red.services {
    padding: 55px 6%;
  }

  .service-container-red.services h2 {
    margin-bottom: 40px;

    font-size: 28px !important;
  }

  .service-container-red.services .grid {
    grid-template-columns: 1fr;

    column-gap: 0;
    row-gap: 32px;
  }

}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .service-container-red.services {
    padding: 45px 20px;
  }

  .service-container-red.services h2 {
    font-size: 25px !important;
  }

  .service-container-red.services .service {
    gap: 14px;
  }

  .service-container-red.services .service .icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;
  }

  .service-container-red.services .service h3 {
    font-size: 17px !important;
  }

  .service-container-red.services .service p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

}
