@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
:root {
  --colorMain: #1E88E5;   /* الأزرق الفاتح - نفس كلمة App في الشعار */
  --colorBlue: #0D47A1;   /* الأزرق الغامق - نفس شكل المكعب */
  --colorAlt: #1565C0;    /* درجة وسطية بين الأزرقين */
  --colorMove: #1E88E5;   /* للأزرار والهوفر - نفس الأزرق الفاتح */

  --bgLG: linear-gradient(to right, #0D47A1 0%, #1E88E5 51%, #0D47A1 100%);
  --bgLG2: linear-gradient(45deg, #0D47A1 10%, #1E88E5 100%, #0D47A1 90%);
  --textLG: linear-gradient(to right, #0D47A1 0%, #1E88E5 51%, #0D47A1 100%);

  --CairoFont: "Cairo", sans-serif;
  --TajawalFont: "Tajawal", sans-serif;
}


html {
  scroll-padding-top: calc(125px - 30px);
}
body {
  font-family: var(--CairoFont);
}
* {
  letter-spacing: 0 !important;
  cursor: none;
}

.ball {
  width: 15px;
  height: 15px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--colorMove);
  border: 0;
  border-radius: 50%;
  mix-blend-mode: revert;
  z-index: 999;
  pointer-events: none;
}
@media (max-width: 767px) {
  .ball {
    display: none;
  }
  * {
    cursor: default;
  }
}

a,
a:hover {
  text-decoration: none;
  -webkit-transitiontransition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
a * {
  cursor: pointer;
}
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.lines-1 {
  -webkit-line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
}

#colored {
  background: var(--colorAlt);
  color: yellow;
}

.btn-primary {
  background-image: var(--bgLG);
  padding: 15px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  border: 0;
  font-family: var(--CairoFont);
}

.btn-primary:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

/* $ => Header */
header {
  border-bottom: 1px solid #f1f1f1;
}
header nav.navbar ul li.nav-item .nav-link {
  font-weight: bold;
  padding: 1rem 0;
  cursor: pointer;
  margin: auto 0.8rem;
}
header nav.navbar ul li.nav-item .nav-link.active,
header nav.navbar ul li.nav-item .nav-link:hover {
  color: var(--colorMove);
}
.dropdown {
  display: flex;
  flex-direction: column;
  min-width: 230px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  position: absolute;
  top: 100%;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.97) translateY(5px);
  transition: 0.1s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(-5px);
}
.dropdown .dropdown-item {
  padding: 0.5rem;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}
.dropdown li:last-child .dropdown-item {
  border-bottom: 0;
}
.dropdown .dropdown-item:hover {
  color: var(--colorMove);
}

.navbar-sticky.sticky {
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  animation: goDown 0.5s ease-in-out forwards;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@keyframes goDown {
  0% {
    top: -60px;
  }
  100% {
    transform: translateY(60px);
  }
}
.navbar-sticky.sticky .logo img {
  width: 90px;
  transition: 0.3s;
}
.navbar-sticky.sticky nav.navbar ul li.nav-item .nav-link {
  font-size: 16px;
  padding: 0.5rem 0.5rem;
}
/* # => Header */

/* $ => Home Banner */
.section-homebanner {
  padding-top: 100px;
  height: 570px;
  position: relative;
  overflow: hidden;
}
.content-banner h1 {
  font-family: var(--TajawalFont);
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 2rem;
  color: #8e54e9;
  background-image: var(--textLG);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-banner p {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.7;
}

.image-banner {
  position: relative;
}
.image-banner .img_banner {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}
.image-banner .img_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner_shapes img {
  position: absolute;
}
.banner_shapes img.shape-6 {
  top: -45px;
  left: 50%;
  height: 80px;
  transform: translateX(-50%);
}
.banner_shapes img.shape-7 {
  top: 25%;
  left: 200px;
  transform: translateY(-50%);
  z-index: -1;
}
.banner_shapes img.shape-8 {
  bottom: 0;
  right: auto;
  left: 0;
  height: 100px;
}
.banner_shapes img.shape-9 {
  bottom: -40px;
  left: 118px;
  width: 220px;
}
.banner_shapes img.shape-5 {
  top: 60%;
  left: -70px;
  transform: translateY(-50%);
  width: 100px;
  animation: rotated 80s linear infinite;
}
.banner_shapes img.shape-11 {
  bottom: -30px;
  left: 50px;
  /* width: 20px; */
  animation: rotated 25s linear infinite;
}
.banner_shapes img.shape-10 {
  top: -20px;
  right: 30px;
  /* width: 20px; */
  animation: rotated 25s linear infinite;
}

.shapes img {
  position: absolute;
}
.shapes img:nth-child(1) {
  animation: jumpTwo 6s linear infinite;
}
.shapes img.shape-1 {
  top: 50%;
  left: 50px;
}
.shapes img.shape-2 {
  top: 0px;
  right: auto;
  left: 50%;
  width: 100px;
  animation: jumpThree 5s linear infinite;
}
.shapes img.shape-3 {
  bottom: 100px;
  right: -30px;
  z-index: -1;
  animation: jumpFive 4s linear infinite;
}
.shapes img.shape-4 {
  bottom: 20px;
  left: 55%;
  width: 100px;
  animation: jumpFour 3.5s linear infinite;
}
.shapes img.shape-5 {
  top: 0;
  right: auto;
  left: 0;
}
.shapes img.shape-10 {
  top: 0;
  right: auto;
  left: 0;
}
.shapes img.shape-11 {
  top: 0;
  right: auto;
  left: 0;
}
.shapes img.shape-12 {
  top: 0;
  right: -60px;
  z-index: -1;
  width: 350px;
  animation: jumpFive 2.5s linear infinite;
}
@keyframes jumpTwo {
  0% {
    transform: translateZ(0);
  }
  40% {
    transform: translate3d(0, 20px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes jumpThree {
  0% {
    transform: translateZ(0);
  }
  40% {
    transform: translate3d(0, -15px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes jumpFour {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes jumpFive {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes rotatedCircle {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(-1turn);
  }
}
/* # => Home Banner */

/* $ => About Us */
.about-imgs > div {
  padding: 0.3rem;
}
.about-imgs > div.img_about1 {
  padding-top: 4rem;
}
.about-txt strong.h1 {
  margin-bottom: 1rem;
  font-family: var(--TajawalFont);
  font-weight: bold;
  color: #000;
}
.about-txt strong.h6 {
  line-height: 1.6;
  font-weight: 600;
  color: #888;
}
.about-list {
  margin-top: 2rem;
}
.about-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #666;
}
.about-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  min-width: 35px;
  max-width: 35px;
  height: 35px;
  background: var(--bgLG2);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 1.1rem;
}

.about-icons {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 28%;
  left: 45%;
  transform: translateX(-50%);
  text-align: center;
}
.about-icons img {
  height: 70px;
  margin: auto 2rem;
}
.about-icons span {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.shapes_about img {
  position: absolute;
}
.shapes_about img.shape_x {
  top: 43%;
  left: 25%;
  /* width: 16px; */
  animation: rotated 25s linear infinite;
}
.shapes_about img.shape_x2 {
  bottom: 10px;
  right: 300px;
  /* width: 16px; */
  animation: rotated 25s linear infinite;
}
.shapes_about img.shape_xc {
  top: 60px;
  left: 70px;
  animation: rotated 25s linear infinite;
}
.shapes_about img.shape_xc2 {
  bottom: 0;
  left: 50%;
  animation: rotatedCircle 25s linear infinite;
}
.shapes_about img.shape_line_c {
  top: 10px;
  right: 70px;
  width: 85px;
  animation: jumpFive 5s linear infinite;
}
.shapes_about img.shape_circle {
  left: -70px;
  bottom: 0;
  animation: rotatedCircle 100s linear infinite;
}
/* # => About Us */

/* $ => Services */
.title-section1 strong {
  font-family: var(--TajawalFont);
  font-weight: bold;
  font-size: 55px;
  position: relative;
  color: #000;
}
.title-section1 strong::before {
  /* content: ""; */
  position: absolute;
  bottom: 0px;
  right: 3px;
  background-color: #e4e4e4;
  width: 23%;
  height: 40%;
  z-index: -1;
}
.title-section1 p {
  font-family: var(--TajawalFont);
  line-height: 1.4;
}

.service-item {
  border: 1px solid #ddd;
  height: 100%;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.service-item .abs-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  transition: 0.3s linear;
  transform: scale(0.8) translate(-20px, -20px);
}
.service-item .abs-img img {
  /* width: 100%;
  height: 100%;
  object-fit: none; */
  width: 80px;
}
.service-item:hover .abs-img {
  opacity: 0.8;
  transform: scale(1) translate(5px, 5px);
}
.service-item .icon {
  margin-bottom: 1.5rem;
  width: 60px;
  height: 60px;
}
.service-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-item .service-name {
  font-weight: bold;
  font-size: 1.5rem;
  font-family: var(--TajawalFont);
  margin-bottom: 1rem;
  color: var(--colorMain);
}
.service-item a {
  color: #333;
  display: block;
  margin-top: 2rem;
}
.service-item a svg {
  transition: 0.3s linear;
  transform: rotate(-45deg);
}
.service-item:hover a svg {
  transform: rotate(0);
  color: var(--colorBlue);
}
/* # => Services */

/* $ => Testimonials */
.shape-circle-1 {
  position: absolute;
  left: -150px;
  bottom: 0;
  width: 300px;
}
.shape-x-1 {
  position: absolute;
  left: 200px;
  top: 150px;
  animation: rotated 20s linear infinite;
}
.testimonials-title strong {
  font-family: var(--TajawalFont);
  font-weight: 700;
}
.testi-img {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: auto;
}
.testi-img img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.testi-img img.logo-icon {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.testi-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: -1;
}
.fa-star {
  color: #ffaa17;
}
.comma-icon svg {
  width: 80px;
  height: 80px;
  opacity: 0.08;
}
.txt-comment p {
  font-size: 20px;
  line-height: 1.8;
}

.user-info {
  margin-top: 2rem;
}
.user-info .user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.user-info .user-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.user-info .user-name span {
  font-size: 13px;
  font-weight: 600;
  color: #23a815;
}

.navs-arrows {
  position: absolute;
  bottom: 0px;
  left: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navs-arrows > div {
  position: static;
  color: #333;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: 0.3s;
}
.navs-arrows .swiper-button-next:after,
.navs-arrows .swiper-button-prev:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;

  font-size: 24px;
}
.navs-arrows .swiper-button-next:after {
  content: "\f178";
}
.navs-arrows .swiper-button-prev:after {
  content: "\f177";
}
.navs-arrows > div:hover {
  background-image: var(--bgLG2);
  color: #fff;
}
/* # => Testimonials */

/* $ => Pricing Table */
.pricing-item {
  margin: 15px auto;
  overflow: hidden;
  position: relative;
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.pricing-item .pricing-header {
  padding: 30px 0 40px 0;
  position: relative;
  text-align: center;

  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0D47A1),
    to(#1E88E5)
  );
  background: linear-gradient(to right, #0D47A1, #1E88E5);
}

.pricing-item .pricing-header::after {
  content: "";
  display: block;
  width: 140%;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/pricing/waving-01.png");
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
}
.pricing-item:hover .pricing-header::after {
  -webkit-animation: moveit 10s infinite;
  animation: moveit 10s infinite;
}
.pricing-item .pricing-header .waves::after {
  content: "";
  display: block;
  width: 150%;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/pricing/waving-01.png");
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.pricing-item:hover .pricing-header .waves::after {
  -webkit-animation: moveit 4s infinite;
  animation: moveit 4s infinite;
}
.pricing-item .pricing-header .waves::before {
  content: "";
  display: block;
  width: 150%;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/pricing/waving-01.png");
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.pricing-item:hover .pricing-header .waves::before {
  -webkit-animation: moveit 7s infinite;
  animation: moveit 7s infinite;
}

@-webkit-keyframes moveit {
  0% {
    left: 0;
  }
  50% {
    left: -50px;
  }
  100% {
    left: 0;
  }
}
@keyframes moveit {
  0% {
    left: 0;
  }
  50% {
    left: -50px;
  }
  100% {
    left: 0;
  }
}
.pricing-item .pricing-header .pricing-title {
  margin: -14px 0 4px 0;
  color: #f7f7f7;
  line-height: 40px;
  font-size: 24px;
  font-weight: 700;
}
.pricing-item .pricing-price .price {
  margin: 0;
  font-size: 55px;
  font-weight: 900;
  line-height: 46px;
  color: #fff;
}
.pricing-item .pricing-price .price span {
  padding: 0 5px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.pricing-item .pricing-list {
  padding: 15px 0;
  margin-bottom: 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 40px;
}
.pricing-item .pricing-list li {
  margin: 0 30px;
  margin-bottom: 10px;
  position: relative;
  list-style-type: none;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  line-height: 33px;

  display: flex;
  align-items: baseline;
}
.pricing-item .pricing-list li i {
  position: relative;
  font-size: 13px;
  border: 1px solid #ddd;
  text-align: center;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
}
.pricing-bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
/* # => Pricing Table */

/* $ => Footer */
footer {
  border-top: 1px solid #eee;
}
footer p {
  font-size: 16px;
}
.footer-description p {
  color: #333;
  font-weight: 500;
  width: 59%;
  padding-top: 20px;
}
.footer-description p {
  color: #999;
  font-size: 16px;
  width: 80%;
}
footer strong.h4 {
  font-size: 24px;
  text-transform: uppercase;
  color: #787878;
  font-weight: bold;
  margin: 0;
  margin-bottom: 30px;
}
ul.footer-menu li {
  padding-bottom: 10px;
}
ul.footer-menu li a {
  font-size: 15px;
  font-weight: 700;
  color: #666;
  text-transform: capitalize;
}
ul.footer-menu li a i {
  padding-left: 20px;
}
.footer-map {
  display: flex;
  align-items: baseline;
}
.footer-contacts i {
  color: var(--colorMain);
  font-size: 18px;
  width: 40px;
  text-align: center;
}
.footer-map p {
  color: #666;
}
.footer-contacts a {
  color: #666;
  font-size: 16px;
  display: block;
  padding-top: 20px;
}

ul.footer-menu li a:hover,
.footer-contacts a:hover {
  color: var(--colorMain);
}

footer .social-icons a {
  border: 1px solid #eee;
}

.footer-copyright {
  padding-top: 25px;
  margin-top: 50px;
  border: 1px solid #eee;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  padding-bottom: 25px;
}
.footer-copyright a {
  color: #787878;
  font-size: 14px;
  padding-left: 20px;
}
.footer-copyright p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
/* # => Footer */

/*
  =============================
          ## Pages ##
  =============================
*/

/* $ => About Page */
.about-title,
.about-content .h5 {
  font-family: var(--TajawalFont);
  color: #000;
}
.about-title {
  font-weight: bold;
}
.about-content .sub-title {
  font-weight: 600;
  color: var(--colorMove);
}
.about-content p {
  font-weight: 500;
  line-height: 1.8;
  font-size: 24px;
}

.about-counter {
  margin-top: 3rem;
}
.about-counter .item {
  margin: 0 1rem;
  border: 1px solid #eee;
  width: 200px;
  padding: 1rem 2rem;
}
.about-counter .item strong {
  font-size: 70px;
  font-weight: 800;
}
.about-counter .item span {
  font-size: 20px;
  font-weight: 500;
}

.shape-dots2 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 185px;
}

.img-about-features {
}

.about-features_content h1 {
  font-weight: bold;
  margin-bottom: 30px;
  font-family: var(--TajawalFont);
}
.about-features_content ul li {
  margin-bottom: 1rem;
  font-size: 16px;
  display: flex;
  align-items: baseline;
  line-height: 1.8;
}
.about-features_content ul li strong {
  display: block;
  color: var(--colorMove);
}
.about-features_content ul li .icon svg {
  width: 35px;
  height: 35px;
  color: var(--colorMove);
}

.about-icons.about-awards {
}
/* # => About Page */

/* $ => Brands */
.brand-item {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px;
}
.brand-item img {
  max-height: 100%;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.brand-item:hover img {
  opacity: 1;
}
/* # => Brands */

/* $ => Services */
.service-content .service-title {
  font-family: var(--TajawalFont);
  font-weight: bold;
}
.service-content p {
  font-size: 20px;
}

.service-item-one {
  text-align: center;
  padding: 1rem;
  padding-top: 50px;
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}
.service-item-one .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ddd;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
}
.service-item-one .icon svg {
  color: var(--colorMove);
}
.service-item-one strong {
  font-size: 18px;
  font-family: var(--TajawalFont);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--colorMove);
}
.service-item-one p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  color: #787878;
}

.request-service {
  position: relative;
  margin-top: 150px;
  border-top: 1px solid #ddd;
}
.box-request {
  background-color: var(--colorBlue);
  color: #fff;
  padding: 4rem 3rem;
  border-radius: 20px;
  position: relative;
  margin-top: -210px;
  z-index: 1;
}
.box-request::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/services/abstract-bg.svg");
  opacity: 0.7;
  z-index: -1;
}
.box-request strong.h1 {
  font-family: var(--TajawalFont);
  font-weight: bold;
  font-size: 45px;
  color: #fff;
  line-height: 1.8;
}
.request-phone .icon svg {
  width: 4em;
  height: 4em;
}
.request-phone strong {
  font-size: 20px;
}
.request-phone a {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  display: block;
  transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.box-request:hover .request-phone a {
  transform: scale(1.3);
}

.accordion-item {
  border-color: #f2eef8;
}
.accordion-button {
  background-color: #fbf9ff;
  color: #444;
  font-weight: 700;
  line-height: 1.8;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--colorMove);
  box-shadow: none;
}
.accordion-button::after {
  content: "\f078";
  width: 1.5rem;
  height: 1.5rem;
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.accordion-button:not(.collapsed)::after {
  content: "\f077";
  background-image: none;
  transform: rotate(0);
}

.accordion-item .accordion-body p {
  font-weight: 600;
  color: #666;
}
.accordion-item .accordion-body ul li {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  color: #666;
}
.accordion-item .accordion-body ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  border-radius: 3px;
  background: var(--bgLG2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 0.7rem;
}

.img-faq {
  max-height: 370px;
}
/* # => Services */

/* $ => Clients */
.sec-clients {
  background-color: var(--colorBlue);
}
.txt-clients {
  color: #fff;
}
.swiper-clients {
  background-color: transparent;
  padding: 1rem 0;
}
.client-item {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* # => Clients */

/* $ => Services Two */
.page-banner {
  background: #ddd;
  height: 767px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bgLG2);
  opacity: 0.7;
  z-index: -1;
}

.parallax-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.parallax-wrapper > div {
  width: 100%;
  height: 100%;
}
.parallax-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .banner-txt {
  color: #fff;
}
.page-banner .banner-txt h1 {
  font-weight: bold;
  font-size: 50px;
  font-family: var(--TajawalFont);
}
.page-banner .banner-txt p {
  font-size: 24px;
  line-height: 1.8;
}

.section-title3 {
  margin-bottom: 5rem;
}
.section-title3 span {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  color: #444;
}
.section-title3 span::after,
.section-title3 span::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 99%;
  display: block;
  border-bottom: 1px solid #000;
  opacity: 0.15;
}
.section-title3 span::before {
  left: 100%;
  margin-left: 16px;
}
.section-title3 span::after {
  right: 100%;
  margin-right: 16px;
}
.section-title3 strong {
  font-family: var(--TajawalFont);
  font-weight: bold;
  color: #333;
}
/* # => Services Two */

/* $ => Service Three */
.page-title {
  padding: 2rem 0;
  background-color: #f7f7f7;
}
.page-title h1 {
  font-family: var(--TajawalFont);
  font-weight: bold;
  margin: 0;
}
.page-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-title ul li {
  display: inline-block;
  line-height: normal;
  font-weight: 500;
  color: #6f6f6f;
}
.page-title ul > li:not(:last-child)::after {
  content: "";
  font-family: Font Awesome\5 Free;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.6;
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 0.5rem;
}
.page-title ul li a {
  color: #6f6f6f;
  font-weight: 600;
}
.page-title ul li a:hover {
  color: var(--colorMove);
}
/* # => Service Three */

/* # => Service Details */
.service-txt h1 {
  font-family: var(--TajawalFont);
  font-weight: bold;
}
.service-txt p {
  font-size: 20px;
  line-height: 1.8;
}

.service-services .item {
  /* background-color: #f1fbfd; */
  padding: 2rem 1rem;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.3s linear;
}
.service-services .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s linear;
  opacity: 0.03;
}
.service-services .row > div:nth-child(odd) .item::before {
  background-color: var(--colorBlue);
}
.service-services .row > div:nth-child(even) .item::before {
  background-color: var(--colorAlt);
}
.service-services .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.service-services .item:hover::before {
  opacity: 1;
}
.service-services .item .icon {
  width: 70px;
  height: 70px;
  margin-bottom: 2rem;
}
.service-services .item svg {
  width: 100%;
  height: 100%;
  fill: var(--colorAlt);
  stroke: var(--colorAlt);
}
.service-services .item strong {
  font-family: var(--TajawalFont);
  margin-bottom: 14px;
  font-weight: 700;
  color: #444;
}
.service-services .item ul li {
  color: #333;
  margin-bottom: 8px;
  display: flex;
  line-height: 1.8;
}
.service-services .item ul li i {
  margin-top: 5px;
  color: #666;
}
.service-services .item ul li p {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}
.service-services .item:hover svg {
  fill: #fff;
  stroke: #fff;
}
.service-services .item:hover ul li i,
.service-services .item:hover strong,
.service-services .item:hover p {
  color: #fff;
}
/* # => Service Details */

/* $ => Blogs */
.item-blog .img-blog {
  display: block;
  height: 250px;
  overflow: hidden;
}
.item-blog img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.item-blog:hover img {
  opacity: 0.8;
}
.info-blog {
  background-color: #fff;
  border: 1px solid #eee;
  border-top: 0;
}
.info-blog .date {
  font-size: 14px;
  color: #444;
  font-weight: 600;
}
.item-blog a.blog-title {
  display: block;
  color: #444;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--TajawalFont);
  margin-bottom: 10px;
}
.item-blog a.blog-title:hover {
  color: var(--colorMove);
}
.item-blog p {
  font-size: 15px;
  margin: 0;
}

.blog-details h1 {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--TajawalFont);
}
.blog-details .date {
  color: #444;
  font-weight: 600;
  font-size: 15px;
}
.blog-details .txt h4 {
  font-family: var(--TajawalFont);
  margin-top: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}
.blog-details .txt strong {
  margin-bottom: 10px;
  color: #444;
}
.blog-details .txt p {
  font-weight: 600;
}
.blog-details .txt ul li {
  padding-bottom: 5px;
  color: #444;
  font-weight: 600;
}

blockquote {
  background: #f9f9f9;
  border-right: 6px solid #ccc;
  margin: 1.5em 10px;
  padding: 2em 10px;
  font-weight: 600;
  line-height: 1.8;
}
blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  color: #ccc;
  font-size: 3em;
  line-height: 0.1em;
  margin-left: 0.25em;
  vertical-align: -0.4em;
  opacity: 0.4;
}
blockquote p {
  display: inline;
}

.social-share a {
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 29px;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #232323;
  background-color: transparent;
  border-radius: 100%;
}
.social-share a.facebook-f:hover {
  border-color: #3b5998;
  color: #3b5998;
}
.social-share a.twitter:hover {
  border-color: #020202;
  color: #020202;
}

.news-slider .swiper-slide a {
  display: block;
  height: 350px;
}
.news-slider .swiper-slide a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
  cursor: zoom-in;
}
.news-slider .swiper-slide:hover a img {
  opacity: 0.5;
}

.news-slider .swiper-button-next,
.news-slider .swiper-button-prev {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
  color: var(--mainColor);
  transition: 0.4s;
}
.news-slider .swiper-button-next {
  left: -50px;
}
.news-item-slider .swiper-button-prev,
.news-slider .swiper-button-prev,
.project-slider .swiper-button-prev {
  right: -50px;
}
.news-slider .swiper-button-next:hover,
.news-slider .swiper-button-prev:hover {
  background-color: var(--mainColor);
  color: #fff;
}
.news-slider .swiper-button-next:after,
.news-slider .swiper-button-prev:after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background: none;
  font-size: 20px;
}
.news-slider .swiper-button-next:after {
  content: "\f060";
}
.news-slider .swiper-button-prev:after {
  content: "\f061";
}
.news-slider:hover .swiper-button-next {
  left: 10px;
}
.news-slider:hover .swiper-button-prev {
  right: 10px;
}
/* # => Blogs */

/* $ => Contact Us */
.page-contact {
  position: relative;
  z-index: 1;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.page-contact::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background-color: #0c0300;
  opacity: 0.6;
  z-index: -1;
}
.title_divider {
  position: relative;
  font-weight: bold;
  padding-bottom: 1rem;
  font-family: var(--TajawalFont);
}
.title_divider::after {
  content: "";
  width: 40px;
  height: 3px;
  background-color: var(--colorMove);
  position: absolute;
  bottom: 0;
  right: 0;
}
.items .item {
  display: flex;
}
.items .item .icon {
  width: 47px;
  height: 47px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background-image: var(--bgLG2);
  color: #fff;
}
.items .item .txt {
  padding: 0 10px;
}

.form form {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 40px;
}
.form form .form-control {
  border-radius: 0;
  border: 0;
  padding: 1rem;
  font-size: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.social-icons a:hover {
  transform: translateY(-1px);
}
.social-icons a.linkedin {
  border-color: #0072b1;
  color: #0072b1;
}
.social-icons a.linkedin:hover {
  background-color: #0072b1;
  color: #fff;
}
.social-icons a.facebook-f {
  border-color: #3b5998;
  color: #3b5998;
}
.social-icons a.facebook-f:hover {
  background-color: #3b5998;
  color: #fff;
}
.social-icons a.twitter {
  border-color: #020202;
  color: #020202;
}
.social-icons a.twitter:hover {
  background-color: #020202;
  color: #fff;
}
/* # => Contact Us */

/* $ =>  */
/* # =>  */

/*
  =============================
  ## Media CSS || Responsive ##
  =============================
*/

@media (min-width: 1500px) {
  header nav.navbar ul li.nav-item .nav-link {
    font-size: 18px;
    padding: 0.5rem 1rem;
  }

  .about-txt strong.h1 {
    font-size: 3.5rem;
  }
  .about-icons img {
    height: 90px;
    margin: auto 3rem;
  }
  .about-list li,
  .about-txt strong.h6 {
    font-size: 1.2rem;
  }
  .txt-comment p {
    font-size: 22px;
  }
  .user-info .user-img {
    width: 60px;
    height: 60px;
  }
  .user-info .user-name strong {
    font-size: 20px;
  }
  .user-info .user-name span {
    font-size: 16px;
  }
  .pricing-item .pricing-list li {
    margin: 0 26px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .about-features_content ul li strong {
    font-size: 18px;
  }
  .about-features_content ul li p {
    font-size: 17px;
  }

  footer p,
  ul.footer-menu li a {
    font-size: 17px;
  }
  .footer-copyright p {
    font-size: 16px;
    font-weight: bold;
  }

  .service-content .service-title {
    font-size: 3.5rem;
  }
  .service-content p {
    font-size: 22px;
  }

  .service-item-one .icon {
    width: 70px;
    height: 70px;
  }
  .service-item-one strong {
    font-size: 20px;
  }
  .service-item-one p {
    font-size: 16px;
  }

  .accordion-item .accordion-body ul li,
  .accordion-item .accordion-body p {
    font-size: 18px;
  }
  .accordion-item .accordion-body ul li {
    margin-bottom: 10px;
  }

  .section-title3 {
    margin-bottom: 6rem;
  }
  .section-title3 span {
    font-size: 18px;
    font-weight: 700;
  }
  .section-title3 strong {
    font-size: 3rem;
  }

  .item-blog a.blog-title {
    font-size: 18px;
  }
  .blog-details .date,
  .info-blog .date {
    font-size: 15px;
  }
  .item-blog p {
    font-size: 17px;
  }
  .blog-details h1 {
    font-size: 28px;
  }
  .blog-details .txt strong,
  .blog-details .txt ul li,
  blockquote,
  .blog-details .txt p {
    font-size: 18px;
  }
}

@media (max-width: 1399px) {
  .about-features_content ul li {
    line-height: 1.6;
  }
}

@media (max-width: 1270px) {
  .shapes img.shape-1 {
    top: 61%;
    width: 70px;
  }
  .shapes img.shape-3 {
    bottom: 80px;
    width: 90px;
  }
  .shapes img.shape-4 {
    width: 70px;
  }
  .shapes img.shape-2 {
    width: 70px;
  }
  .shapes img.shape-12 {
    width: 270px;
  }
  .banner_shapes img.shape-5 {
    top: 50%;
    left: -50px;
    width: 70px;
  }
}

@media (max-width: 1199.98px) {
  .testi-img {
    width: 240px;
    height: 240px;
    margin-left: 1rem;
  }
  .testi-img img:nth-child(1) {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  header .offcanvas {
    height: 100vh;
  }

  .dropdown {
    display: none;
    position: static;
    border: 1px solid var(--colorBlue);
  }
  .menu.show,
  .dropdown.active {
    display: block;
  }

  .section-homebanner {
    height: 470px;
  }
  .content-banner h1 {
    font-size: 40px;
  }
  .content-banner p {
    font-size: 21px;
  }
  .shapes img.shape-12 {
    width: 230px;
  }

  .image-banner .img_banner {
    width: 250px;
    height: 250px;
  }
  .banner_shapes img.shape-6 {
    top: -35px;
    height: 60px;
  }
  .banner_shapes img.shape-7 {
    top: 30%;
    left: 185px;
    height: 80px;
  }
  .banner_shapes img.shape-9 {
    bottom: -22px;
    left: 110px;
    width: 150px;
  }

  .about-txt {
    padding-top: 3rem;
  }
  .about-imgs {
    padding: 0 8rem;
  }
  .about-imgs > div,
  .about-imgs > div img {
    width: 100%;
  }
  .shapes_about img.shape_x {
    display: none;
  }
  .shapes_about img.shape_line_c {
    right: 230px;
    width: 90px;
  }
  .shapes_about img.shape_xc {
    top: 100px;
  }
  .about-icons {
    bottom: 10%;
  }

  .testi-img {
    width: 240px;
    height: 240px;
    margin-left: auto;
  }
  .testimonials-swiper .swiper-slide {
    text-align: center;
    padding-top: 2rem;
  }
  .service-item {
    padding: 2rem 1rem;
  }
  .user-info {
    justify-content: center;
    /* flex-direction: column; */
  }
  .navs-arrows {
    position: static;
  }

  .box-request {
    text-align: center;
  }
  .box-request strong.h1 {
    display: block;
    margin-bottom: 2.5rem !important;
    font-size: 30px;
  }
  .request-phone .icon svg {
    width: 5em;
    height: 5em;
  }
}

@media (max-width: 767.98px) {
  header nav.navbar ul li.nav-item .nav-link {
    font-size: 1rem;
  }

  .section-homebanner {
    height: auto;
    padding-bottom: 4rem;
  }
  .content-banner {
    text-align: center;
  }
  .image-banner {
    margin-top: 5rem;
  }
  .shapes img.shape-4 {
    display: none;
  }

  .about-icons {
    left: 35%;
  }
  .about-icons > div {
    padding: 0 10px;
  }
  .about-icons span {
    font-size: 11px;
  }
  .about-icons img {
    height: 45px;
    margin: auto 2rem;
  }
  .shapes_about img.shape_x2 {
    bottom: 150px;
    right: 480px;
  }
  .shapes_about img.shape_xc,
  .shapes_about img.shape_xc2 {
    width: 14px;
  }
  .shapes_about img.shape_xc {
    top: 10px;
  }
  .shapes_about img.shape_circle {
    left: -40px;
    width: 80px;
  }

  .about-txt strong.h1 {
    font-size: 1.5rem;
  }
  .about-txt strong.h6 {
    font-size: 14px;
  }

  .title-section1 strong {
    margin-bottom: 2rem;
    font-size: 40px;
  }
  .shape-x-1 {
    left: 30px;
    top: 390px;
    width: 16px;
  }

  .about-content p {
    line-height: 1.6;
    font-size: 15px;
  }
  .shape-dots2 {
    bottom: -79px;
    right: 0;
    width: 70px;
    z-index: -1;
  }
  .about-counter .item strong {
    font-size: 40px;
  }

  .txt-clients {
    text-align: center;
  }

  footer .header-logo img.w-50 {
    width: 22% !important;
  }

  .footer-copyright {
    margin-top: 0;
  }

  .about-features_content.px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .accordion-button {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 579.98px) {
  body {
    font-size: 13px;
  }
  .about-icons {
    flex-direction: column;
    left: 32%;
    bottom: 3%;
  }
  .about-icons > div {
    margin-bottom: 1rem;
  }

  .about-imgs {
    padding: 0 6rem;
  }
  .shapes_about img.shape_line_c {
    top: 35px;
    right: 140px;
    width: 50px;
  }

  .about-list li {
    font-size: 14px;
  }
  .about-list li::before {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .shapes_about img.shape_x2 {
    right: auto;
    left: 80px;
  }

  .testi-img {
    width: 200px;
    height: 200px;
  }
  .testi-img::before {
    left: 30%;
  }
  .testi-img img.logo-icon {
    width: 60px;
  }

  .title-section1 strong {
    font-size: 30px;
  }
  .title-section1 p {
    font-size: 16px;
  }
  .service-item .service-name {
    font-size: 1.2rem;
  }

  .box-request strong.h1 {
    font-size: 20px;
  }
  .request-phone strong {
    font-size: 16px;
  }
  .request-phone a {
    font-size: 26px;
  }
  .request-phone .icon svg {
    width: 4em;
    height: 4em;
  }
}

@media (max-width: 480.98px) {
  .logo img {
    width: 90px;
  }

  .btn-primary {
    font-size: 14px;
  }

  .content-banner h1 {
    font-size: 30px;
    margin-bottom: 1rem;
  }
  .content-banner p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .shapes img.shape-1 {
    top: 60%;
    left: 0;
    width: 50px;
  }
  .shapes img.shape-2 {
    width: 50px;
  }
  .shapes img.shape-3 {
    bottom: 60px;
    width: 50px;
    right: -25px;
  }
  .shapes img.shape-12 {
    width: 200px;
  }

  .shapes_about img.shape_x2 {
    left: 30px;
  }

  .about-icons {
    left: 25%;
    bottom: -5%;
  }
  .about-icons span {
    font-size: 10px;
  }
  .about-icons img {
    height: 40px;
    margin: auto 1rem;
  }

  .txt-comment p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 360.98px) {
  .logo img {
    width: 70px;
  }
  .content-banner h1 {
    font-size: 32px;
  }
  .content-banner p {
    font-size: 16px;
  }
  .btn-primary,
  .btn-primary.p-3 {
    font-size: 13px;
    padding: 12px 1rem !important;
  }

  /* .banner_shapes img.shape-5 {
    top: 60%;
    left: -20px;
    width: 50px;
  }
  .shapes img.shape-12 {
    width: 130px;
  } */

  .content-banner h1 {
    margin-bottom: 1rem;
  }
  .content-banner p {
    margin-bottom: 1rem;
  }

  .image-banner .img_banner {
    width: 200px;
    height: 200px;
  }
  .banner_shapes img.shape-6 {
    top: -25px;
    height: 45px;
  }
  .banner_shapes img.shape-7 {
    left: 160px;
    height: 60px;
  }
  .banner_shapes img.shape-5 {
    left: -22px;
    width: 50px;
  }
  .banner_shapes img.shape-9 {
    bottom: -18px;
    left: 90px;
    width: 120px;
  }

  .shapes img.shape-1 {
    top: 50%;
    left: 10px;
    width: 45px;
  }
  .shapes img.shape-3 {
    bottom: 45px;
    width: 45px;
    right: -20px;
  }

  .btn-primary,
  .btn-primary.p-3 {
    font-size: 11px;
    padding: 10px 0.7rem !important;
  }
  .btn-primary i {
    font-size: 13px;
  }

  .testi-img {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 300.98px) {
  .logo img {
    width: 60px;
  }

  .about-icons {
    position: static;
    flex-direction: row;
    transform: translate(0);
    margin-top: 2rem;
  }
  .about-imgs {
    padding: 0 2rem;
  }
  .about-txt strong.h1 {
    font-size: 1.2rem;
  }
  .shapes_about img.shape_line_c {
    right: 70px;
  }

  .about-counter .item {
    margin: auto 0.5rem;
    width: 100px;
    padding: 1rem 1rem;
  }
  .about-counter .item strong {
    font-size: 26px;
  }
  .about-counter .item span {
    font-size: 13px;
  }
}


.pricing-list .label {
  color: #000;   /* أسود */
  font-weight: 600; /* يخليها أوضح */
}


/* رجّع المؤشر الطبيعي */
body, * {
  cursor: auto !important;
}

/* أخفي الدائرة */
.ball {
  display: none !important;
}

/* عند المرور على الروابط أو الأزرار */
a, button, .btn, [role="button"] {
  cursor: pointer !important;
}


html {
  scroll-behavior: smooth;
}


