header {
  overflow: hidden;
  position: relative;
  padding: 100px 0 0;
  background-color: #fff;
}

/* sub-title, title, para */
header .sub-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--lightBlue);
  font-family: var(--secondary-font);
}
header .title {
  margin-bottom: 30px;
  color: var(--darkBlue);
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),2.7rem);
}
header .para {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 45px;
  color: var(--lightBlue);
}
@media only screen and (max-width: 1199.98px) {
  header .sub-title {
    font-size: 16px;
  }
  header .para {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991.98px) {
  header .sub-title {
    font-size: 18px;
  }
  header .title {
    font-size: clamp(2.01rem,calc(.5rem + 4.9004vw),3.247rem);
  }
  header .para {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  header {
    padding: 60px 0;
  }
  header .para {
    font-size: 14px;
  }
}

/* users */
header .users {
  overflow: hidden;
  padding: 8px 12px;
  position: relative;
  border-radius: 50px;
  border: 1px solid var(--border);
  background-color: rgba(255,255,255,0.1);
}
header .users::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  z-index: 1;
  position: absolute;
  background-image: conic-gradient( rgba(253, 0, 76, 0.1), rgba(254, 144, 0, 0.1), rgba(255, 240, 32, 0.1), rgba(62, 223, 75, 0.1), rgba(51, 99, 255, 0.1), rgba(177, 2, 183, 0.1), rgba(253, 0, 76, 0.1));
}
header .users .user {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
}
header .users .user:not(:first-child) {
  margin-left: -10px;
}

/* count, text */
header .box .count {
  font-size: 18px;
  font-weight: bold;
  color: var(--darkBlue);
}
header .box .text {
  font-size: 14px;
  font-weight: 500;
  color: var(--lightBlue);
}
@media only screen and (max-width: 1199.98px) {
  header .users {
    padding: 4px 6px;
  }
  header .users .user {
    width: 36px;
    height: 36px;
  }
  header .box .count {
    font-size: 16px;
  }
}

/* center-box */
header .center-box {
  position: relative;
  background-color: #B5E7FF;
  height: 100%;
  border-radius: 28px;
  z-index: 2;
  padding: 40px 30px;
}
header .center-box img {
  width: 70%;
}

/* features */
header .features::-webkit-scrollbar {
  width: 0;
}
header .features li {
  font-size: 16px;
  font-weight: 500;
  color: var(--darkBlue);
}
header .features li:not(:last-child) {
  margin-bottom: 30px;
}
/* ----------------------------------- */

/* box */
.se-iii .box {
  position: relative;
  border-radius: 12px;
  background-color: var(--primary);
  background: radial-gradient(109.18% 191.18% at 50% 50%, rgba(54, 54, 204, 0.79) 19.92%, rgba(73, 73, 231, 0.32) 85.29%), url("../images/backgournds/card-bg.png") center, var(--primary);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px;
  height: 330px;
  box-shadow: -4px 4px 0 var(--primary-shadow);
  overflow: hidden;
}
.se-iii .box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* box-title , box-para */
.se-iii .text {
  position: relative;
  z-index: 3;
}
.se-iii .box-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}
.se-iii .box-para {
  font-size: 16px;
  color: #ddd;
}

/* box-icon */
.se-iii .box-icon {
  position: absolute;
  width: 160px;
  right: -15px;
  bottom: -15px;
  z-index: 1;
}
[dir="rtl"] .se-iii .box-icon {
  right: unset;
  left: -15px;
}

/* media-query */
@media only screen and (max-width: 991.98px) {
  /* box */
  .se-iii .box {
    height: unset;
    padding: 30px;
  }

  /* box-title , box-para */
  .se-iii .text {
    max-width: 80%;
  }

  /* box-icon */
  .se-iii .box-icon {
    width: 160px;
  }
}
@media only screen and (max-width: 767.98px) {
  /* box-title , box-para */
  .se-iii .box-title {
    font-size: 18px;
  }
  .se-iii .box-para {
    font-size: 14px;
  }

  /* box-icon */
  .se-iii .box-icon {
    width: 100px;
    right: 10px;
    bottom: 10px;
  }
  [dir="rtl"] .se-iii .box-icon {
    right: unset;
    left: 10px;
  }
}