:root {
  --bacground: #b9d6ff66;
  --black: #000;
  --white: #fff;
  --color-50: #b9d6ff;
  --color-100: #91aee9;
  --color-200: #6a88c0;
  --color-300: #426499;
  --color-400: #174273;
  --color-500: #133861;
  --netu-50: #fbfbfb;
  --netu-400: #727272;
  --Success: #4caf50;
  --Blue: #2196f3;
  --Error: #f44336;
  --Warning: #ffcc00;
  --text-color: #fff;
  --hightline: #174273;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("../SiteFont/Lato-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

* {
  margin: 0;
  list-style: none;
  outline: none !important;
}

html {
  height: 100%;
  overflow-x: clip;
  font-size: 14px;

}

body {
  font-family: "Lato", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: clip;
}

.site-container {
  padding: 0 2rem;
}

.header.site-container {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

header {
  height: auto;
}

header .logo {
  cursor: pointer;
  margin: 10px 0;
}

.hero {
  color: var(--text-color);
}

.hero img {
  width: 100%;
  filter: brightness(0.8);
}

.filter-0 {
  filter: none !important;
}

.desktop-menu ul,
aside.mobile-menu {
  font-size: 1rem;
  font-weight: 600;
}

aside.mobile-menu {
  background: var(--white);
  z-index: 4;
  height: 100vh;
  left: -100%;
  top: 0;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.4);
  transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
  transition-duration: 0.8s;
  padding: 1.25rem 1.875rem;
}

aside.mobile-menu span {
  color: var(--color-400);
}

.left-0 {
  left: 0 !important;
}

header ul {
  gap: 42px;
}

header ul li {
  padding: 0.53125rem 0;
  transition: 0.3s;
  position: relative;
}

aside.mobile-menu li {
  padding: 0 0.53125rem;
  width: fit-content;
}

header ul li,
aside.mobile-menu li {
  cursor: pointer;
  color: var(--black);
}

header ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 8%;
  background-color: var(--hightline);
  inset: 0;
  top: 100%;
  transition: 0.3s;
}

header ul li:hover {
  color: var(--hightline);
}

header ul li:hover::after {
  width: 100%;
}

.hamburger-menu {
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger-menu span {
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}
.hamburger-menu span:nth-child(2) {
  width: 75%;
}

.hamburger-menu:hover span {
  width: 100%;
}

.circle {
  transition: 0.2s;
  transform: translateX(0px);
}

.circle {
  background-color: var(--color-400);
  border-radius: 100%;
  padding: 9.98px;
  border: 2px solid var(--color-400);
}

.circle img {
  width: 14px;
}

.circle .sun {
  position: absolute;
  transform: translateY(-35px);
}

.swiper-hero .swiper-slide > img {
  height: 450px;
  overflow: hidden;
  object-fit: cover;
}

.swiper-slide img {
  width: 100%;
}

.hero-text {
  color: var(--text-color);
  transform: translate(0, -70px);
}

.hero-text,
.hero-text-p {
  gap: 20px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text p,
.btn-site {
  font-size: 1.1875rem;
}

.btn {
  color: var(--text-color);
  background: var(--color-400);
  gap: 14px;
}

.btn-site {
  padding: 0 50px;
  height: 70px;
  border: 0;
  border-radius: 3px;
}

.btn-site img {
  width: auto;
}

.swiper-navigation-icon {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  width: 60px;
  height: 60px;
  padding: 10px;
  font-size: 1.4375rem;
  border-radius: 3px;
  color: var(--white);
  transition: 0.2s;
  /* background: var(--color-400); */
  border: 1px solid var(--text-color);
}

/* .swiper-hero .swiper-button-prev,
.swiper-hero .swiper-button-next {
  background: var(--color-400);
  border:0
} */

.swiper-button-prev,
.swiper-button-next {
  background: var(--color-400);
}

.swiper-hero .swiper-button-next {
  left: auto;
  right: 50px;
}

.swiper-hero .swiper-button-prev {
  right: auto;
  left: 50px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-500);
}

.swiper-button-prev::after {
  content: "<";
  font-size: 1.4375rem;
  color: var(--text-color);
}

.swiper-button-next::after {
  content: ">";
  font-size: 1.4375rem;
  color: var(--text-color);
}

.Leading-sol .swiper-button-prev::after,
.Leading-sol .swiper-button-next::after {
  color: var(--text-color);
}

.Leading-sol .swiper-button-prev:hover,
.Customers .swiper-button-prev:hover {
  background: var(--color-300);
}

.Leading-sol .swiper-button-next:hover,
.Customers .swiper-button-next:hover {
  background: var(--color-300);
}

.services.site-container {
  height: 298px;
  color: var(--text-color);
}

.swiper-services {
  color: var(--black);
}




.swiper-services .swiper-slide img {
  width: 90px;
}

.Leading-sol.site-container,
.footer.site-container {
  background: url(../SiteImgs/bg.webp) center center / cover no-repeat scroll;
}

.Leading-sol.site-container,
.services.site-container,
.Customers.site-container,
.footer.site-container,
.How.site-container {
  background-color: var(--color-400);
}

.site-container {
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
}

.services.site-container .text h2 {
  color: var(--text-color);
}

.text-services h2 {
  max-width: 50%;
}

.btn-site.btn-services {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  height: auto;
  border: 2px solid var(--white);
}

button {
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-500);
  color: var(--text-color);
}

.TextServices {
  top: -40%;
  gap: 53px;
}

.swiper-services .swiper-slide {
  background: var(--white);
  gap: 15px;
  border-radius: 5px;
  height: 160px;
  width: calc(20% - 10px);
}

.swiper-services .Implementation {
  gap: 15px;
  padding-bottom: 30px;
}

.Awards.site-container,
.Real-patent.site-container,
.Records.site-container,
.Switcher.site-container,
.Platfroms.site-container {
  background-color: var(--netu-50);
}

.site-container .Awards {
  gap: 58px;
}

.imagerotate {
  -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.Awards .certificates img:not(.imagerotate) {
  border-radius: 100%;
  width: 50%;
  height: 50%;
}

.Awards {
  color: var(--black);
}

.Awards .certificates img.ebseg-patent {
  left: 25%;
  top: 5%;
}

.Awards img.ebseg-patent-award {
  width: 40%;
}

.best-digital-customer,
.anniversary25 {
  bottom: 15%;
  z-index: 1;
}

.anniversary25 {
  left: 45%;
}
.best-digital-customer {
  right: 45%;
}

.gradient-heading {
  background-image: linear-gradient(
    to left,
    var(--color-400),
    var(--color-200)
  );
  background-clip: text;
  color: transparent;
  font-weight: 900;
}

.Awards-container,
.CX-container {
  gap: 58px;
  color: var(--black);
}

.Awards span {
  color: var(--netu-400);
  font-size: 1.125rem;
}

.Records-container {
  row-gap: 1rem;
}

.Records .Record-box {
  padding: 0.625rem;
  width: 25%;
}

.Records .Record-icon-box {
  background-color: var(--color-400);
  padding: 1rem;
  width: 30%;
}

.Records .Record-box,
.Records .Record-icon-box {
  border-radius: 8px;
}

.odometer,
.odometer-value,
#plus {
  font-size: 2rem;
}

.Records .Record-box h5::after {
  content: "";
  width: 40%;
  height: 6px;
  background-color: var(--color-400);
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  margin-top: 2px;
  border-radius: 5px;
}

a {
  text-decoration: none;
}

.Leading-sol.site-container,
.Customers.site-container,
.footer.site-container {
  color: var(--text-color);
}

.Leading-sol.site-container .front-slide span {
  font-size: 1.1875rem;
}

.Leading-sol.site-container .btn-site {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  transition: 0.2s;
}

.Leading-sol.site-container .btn-site img {
  filter: grayscale(1) invert(1) brightness(100%);
}

.Leading-sol.site-container .btn-site:hover {
  background: var(--color-400);
  color: var(--white);
  border: 1px solid var(--white);
}

.Leading-sol.site-container .btn-site:hover img {
  transition-delay: 1ms;
  filter: grayscale(0) brightness(1);
}

.Leading-sol-container {
  gap: 58px;
}

.swiper-Leading-sol {
  height: 774px;
  padding: 2.625rem 1.6rem;
  width: calc(100% - 100px);
}

.swiper-Leading-sol .swiper-slide {
  height: 320px;
  border-radius: 5px;
  perspective: 1000px;
}
.swiper-Leading-sol .swiper-slide .front-slide {
  gap: 20px;
}

.swiper-Leading-sol .swiper-slide .front-slide p {
  font-size: 1.4375rem;
}

.swiper-Leading-sol .img-container {
  width: 100px;
  height: 100px;
  background: var(--color-500);
  border-radius: 5px;
}

.swiper-Leading-sol .img-container img {
  width: 60px;
  height: 60px;
  filter: grayscale(1) invert(1) brightness(100%);
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  box-shadow: 12px 11px 11px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s;
}
.front-slide,
.back-slide {
  backface-visibility: hidden;
  padding: 1.875rem;
  border: 1px solid var(--white);
  border-radius: 5px;
}

.front-slide {
  transform: rotateY(0deg);
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.back-slide {
  background:
    linear-gradient(
      to right bottom,
      rgba(66, 100, 153, 0.842),
      /* <-- اللون الأول مع opacity */ var(--color-500)
    ),
    url(../SiteImgs/hybrid-team.webp) center center/cover no-repeat scroll;
  gap: 20px;
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
  transition: 0.5s ease-out;
}

.back-slide p,
.back-slide span {
  font-size: 1rem;
}
.back-slide a {
  color: var(--netu-50);
}

.swiper-Leading-sol .swiper-slide:hover .flip-card {
  transform: rotateY(180deg);
}

.swiper-Leading-sol .swiper-button-next,
.swiper-digital .swiper-button-next {
  right: 30px;
  top: 60%;
}

.swiper-Leading-sol .swiper-button-prev,
.swiper-digital .swiper-button-prev {
  left: 30px;
  top: 60%;
}

.Real-patent-container {
  gap: 32px;
}

.Real-patent-container h3,
.Outsourcing-contanier h3 {
  font-weight: 900;
  color: var(--color-300);
}

.swiper-real-patent {
  padding: 0 50px;
}
.swiper-real-patent .swiper-slide {
  gap: 10px;
  padding: 15px 7px;
  box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, 0.096);
  background-color: var(--white);
}

.swiper-real-patent .btn-site {
  padding-left: 40px;
}

.swiper-real-patent .img-container {
  height: 162px;
}
.swiper-real-patent .img-container img {
  width: 37%;
  height: auto;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--text-color);
}

.Outsourcing.site-container,
.How.site-container {
  background: var(--bacground);
}

.Outsourcing-contanier {
  gap: 38px;
}

.outsourcing-items {
  padding: 0 3.125rem;
  gap: 50px;
}

.outsourcing-items div {
  width: calc(30% - 50px);
  height: 400px;
}

.outsourcing-items .item.NearShore {
  background: url(../SiteImgs/nearshore-team.webp) center center/cover no-repeat
    scroll;
}
.outsourcing-items .item.OffShore {
  background: url(../SiteImgs/offshore-team.webp) center center/cover no-repeat
    scroll;
}
.outsourcing-items .item.OnShore {
  background: url(../SiteImgs/onshore-team.webp) center center/cover no-repeat
    scroll;
}
.outsourcing-items .item.Hybrid {
  background: url(../SiteImgs/hybrid-team.webp) center center/cover no-repeat
    scroll;
}

.outsourcing-items .item div {
  background-color: var(--color-300);
  color: var(--text-color);
  padding: 1.67rem 2.5rem;
  inset: auto 0 0 0;
  transform: translateY(82%);
  transition: transform 0.4s ease;
  gap: 24px;
}

.outsourcing-items .item:hover div {
  transform: translateY(0);
}

.outsourcing-items .item div h5 {
  font-size: 1.4375rem;
}

.outsourcing-items .item div p {
  font-size: 1.1875rem;
}

.outsourcing-items .item div h5 {
  font-size: 1.4375rem;
}
.outsourcing-items .item div p {
  font-size: 1.1875rem;
}

.swiper-customers {
  width: 60%;
}

.swiper-customers .swiper-slide {
  flex-wrap: wrap;
  gap: 20px;
}

.swiper-slide .customer-frame {
  border: 1px solid var(--text-color);
  padding: 30px;
  border-radius: 5px;
}

.footer .info span {
  margin-left: 12px;
}

.footer .social-links a {
  border: 1px solid var(--text-color);
  padding: 1.875rem 1.25rem;
  height: 40px;
  transition: 0.2s;
  width: calc(90% / 5);
}

.footer .social-links a:hover {
  background: var(--color-500);
}

.footer .newsletter div p {
  font-size: 1.1875rem;
}

.footer .newsletter input {
  height: 70px;
  background-color: var(--text-color);
  border: 0;
  padding: 0.625rem 3.125rem;
}

.footer .newsletter .btn-site {
  background-color: var(--text-color);
  color: var(--color-400);
}

.footer .quick-links a {
  color: var(--text-color);
}

.Right {
  background-color: var(--color-300);
  color: white;
  height: 40px;
  font-size: 0.6875rem;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 1;
}

.Platforms {
  background-color: var(--netu-50);
}

.Platfroms-container {
  gap: 32px;
}

.swiper-platforms {
  padding: 0 50px;
}

.swiper-platforms .swiper-slide {
  gap: 10px;
  padding: 15px 7px;
  box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, 0.096);
  background-color: var(--white);
}

.swiper-platforms .img-container {
  height: 162px;
}

.swiper-platforms .img-container img {
  width: 37%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(19%) sepia(39%) saturate(1965%)
    hue-rotate(185deg) brightness(98%) contrast(93%);
}

.swiper-platforms .swiper-button-prev .swiper-platforms .swiper-button-next {
  border-color: var(--black);
}

.Best-CX.site-container {
  background-color: var(--bacground);
}

.Video.site-container iframe,
.Video.site-container Video {
  height: 317px;
  width: 50%;
}

.Best-CX-container {
  gap: 32px;
  color: var(--black);
}

.Best-CX-container h3 {
  font-weight: 900;
  color: var(--color-300);
}

.Best-CX.content {
  gap: 56px;
}

.Best-CX img {
  width: 33%;
}

.Best-CX li {
  list-style: disc;
}

.sidebar-service {
  width: 25%;
}

.sidebar-service .menu-service {
  padding: 0.875rem 0.9375rem 0.875rem 1.125rem;
  background: var(--color-300);
  color: var(--text-color);
  transition: 0.2s;
  cursor: pointer;
}
.sidebar-service .menu-service::before {
  content: "+";
  position: absolute;
  font-size: 1.5rem;
  right: 0.9375rem;
}

.sidebar-service .menu-service:hover {
  background: var(--color-500);
}

.menu-service.menuactive {
  background: var(--color-500);
}

.side-img {
  width: 75%;
}
.side-img img {
  width: 40%;
}
.input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "a b c"
    "d e f"
    "g h h";
}

.item-a {
  grid-area: a;
}
.item-b {
  grid-area: b;
}
.item-c {
  grid-area: c;
}
.item-d {
  grid-area: d;
}
.item-e {
  grid-area: e;
}
.item-f {
  grid-area: f;
}
.item-g {
  grid-area: g;
}
.item-h {
  grid-area: h;
}

.form_input::placeholder {
  color: var(--netu-400);
}

.form_input {
  font-size: 1rem;
  padding: 1.3rem 2rem;
  background-color: var(--netu-50);
  color: var(--black);
  border-radius: 8px;
  border: none;
  border-bottom: 0.3rem solid transparent;
  transition: all 0.3s;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 0.3rem solid #1b7be5;
}

.form_input::placeholder {
  color: var(--black);
}

.form_input:placeholder-shown + .form_label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form_label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.form_input:focus:invalid {
  border-bottom: 0.3rem solid #043577;
}

textarea {
  max-width: 100%;
  height: 140px;
  padding: 30px;
  border-radius: 0.3rem;
}

.btn.buton-contact {
  text-decoration: none;
  padding: 0.9375rem 2.5rem;
  display: inline-block;
  transition: all 2s;
  position: relative;
  font-size: 1rem;
  border-radius: 100px;
  cursor: pointer;
  border: none;
}
.btn.buton-contact::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
  border-radius: 100px;
  background-color: var(--color-400);
}

.buton-contact:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn.buton-contact:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  transform: skew(-10deg);
  border-radius: 100px;
  color: #ffffff;
}

a.special,
span.special {
  color: var(--color-400);
}

a {
  color: inherit;
}

.Steps-swiper-container span {
  color: var(--netu-400);
}

.Steps-swiper-container .Best-CX img {
  width: 40%;
}

.Steps-swiper-container .Best-CX .content {
  width: 40%;
}

.sidebar-service .menu-service::before {
  content: none;
}

.sidebar-service {
  gap: 24px;
}

.Switcher ul li {
  list-style: disc;
}

.Box {
  padding: 1.1875rem;
  background-color: var(--bacground);
  border: 1px solid var(--netu-50);
  border-radius: 5px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  width: 90%;
}

.swiper-slide {
  height: auto;
}

.half-swiper .Awards-swiper {
  width: 40%;
}
.half-swiper li {
  list-style: disc;
}

.hero h1 {
  text-align: center;
}

.head_list {
  padding: 0.875rem 0.9375rem 0.875rem 1.125rem;
  background: var(--color-400);
  color: var(--text-color);
}

.points.site-container {
  background-color: var(--bacground);
}
.points ul li {
  list-style: disc;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-200);
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-400);
}

.swiper-pagination {
  z-index: 1;
}

.steps-swipeer .swiper-slide img {
  width: auto;
}

.steps-swipeer .content {
  width: 40%;
}

.steps-swipeer .Steps-swiper li {
  list-style: disc;
}

.Awards .content {
  width: 50%;
}

.img-award {
  background-color: var(--color-400);
  border-radius: 100%;
  padding: 0.5rem;
}

.img-award img {
  width: 50px;
}

.award-date {
  color: var(--color-400);
}

.award-box {
  box-shadow: 3px 3px 13px 0 rgba(0, 0, 0, 0.096);
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  flex-grow: 1;
}

.Digital-Banking-Omni li {
  list-style: decimal;
}

.Digital.site-container {
  background: url(../SiteImgs/bg.webp) center center / cover no-repeat scroll;
  background-color: var(--color-400);
  color: var(--text-color);
}

.swiper-digital {
  padding: 2.625rem 1.6rem;
  width: calc(100% - 100px);
}

.swiper-digital .swiper-slide {
  border-radius: 5px;
  perspective: 1000px;
  border: 1px solid var(--text-color);
  padding: 1rem;
}

.swiper-digital .img-container {
  background: var(--color-500);
  border-radius: 5px;
  padding: 1rem 1.2rem;
}

.swiper-digital .img-container img {
  width: 50px;
  height: 50px;
}

.back-light-blue {
  background-color: var(--bacground);
}
.back-dark-blue {
  background-color: var(--color-400);
}
.back-light-netu {
  background-color: var(--netu-50);
}

.customer-frame img {
  height: auto;
  width: auto;
  max-height: 50px;
}

.award-box.news {
  width: calc((100% / 4) - 25px);
  background: var(--bacground);
}

.more-news {
  font-size: 1.2rem;
  color: var(--color-300);
  font-weight: bold;
  font-style: italic;
}

.list-decimal {
  list-style-type: decimal;
}
.list-dotted {
  list-style-type: disc;
}

.award-box.news h4 {
  font-size: 1rem;
}

.text-color {
  color: var(--text-color);
}

/*media for desktop (lg)*/
@media (width <= 1200px) {
  .swiper-slide img {
    width: auto;
  }
  .outsourcing-items {
    flex-wrap: wrap;
  }
  .outsourcing-items div {
    width: 100%;
  }
  header ul {
    gap: 10px;
  }
  .footer .social-links a {
    width: auto;
  }
}

/*media for tablet (md)*/
@media (width <= 992px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  .swiper-services .swiper-slide {
    width: calc(34% - 10px);
  }
  .swiper-services .swiper-button-next {
    left: auto;
    right: 0px;
  }
  .swiper-services .swiper-button-prev {
    right: auto;
    left: 0px;
  }
  .swiper-button-next,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .text-services h2 {
    max-width: 100%;
  }

  .swiper-Leading-sol {
    height: auto;
  }
  header ul {
    gap: 32px;
  }

  .Awards span {
    height: 76px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .swiper-Leading-sol {
    padding: 2.625rem 0.625rem;
  }
  .swiper-Leading-sol .swiper-slide .front-slide p {
    font-size: 1.2rem;
  }

  .front-slide {
    padding: 1.3em 1rem;
  }
  .certificates {
    width: 75%;
  }
  .Records .Record-box {
    width: 33%;
  }
  .Best-CX.content img {
    width: 100%;
  }
  .input-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "a b"
      "c d"
      "e f"
      "g h ";
  }

  .Video.site-container iframe,
  .Video.site-container Video,
  .Best-CX .content {
    width: 100%;
  }

  .Best-CX.MENA-2024 img {
    width: 100%;
  }

  .Best-CX img {
    width: 75%;
  }

  .Steps-swiper-container .Best-CX img {
    width: 75%;
  }

  .Steps-swiper-container .Best-CX .content {
    width: 100%;
  }

  .Awards img.ebseg-patent-award {
    width: 100%;
  }

  .Box {
    width: 100%;
  }
  .half-swiper .Awards-swiper,
  .half-swiper .Awards-swiper img {
    width: 100%;
  }

  .Awards .content {
    width: 100%;
  }

  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
  }

  .sidebar-service,
  .side-img,
  .side-img img {
    width: 100%;
  }

  .swiper-digital {
    width: 100%;
  }

  .steps-swipeer .content {
    width: 100%;
  }

  .award-box.news {
    width: 100%;
  }
  .w-md-100 {
    width: 100%;
  }
  .w-md-50 {
    width: 50%;
  }
}

/*media for mobile (sm)*/
@media (width <= 768px) {
  .swiper-services .swiper-slide {
    width: calc(50% - 10px);
  }

  .hero-text {
    max-width: 80%;
  }
  .swiper-hero .swiper-button-next {
    left: auto;
    right: 10px;
  }

  .swiper-hero .swiper-button-prev {
    right: auto;
    left: 10px;
  }
  .swiper-real-patent .img-container img {
    width: 30%;
    height: auto;
  }
  .Records .Record-icon-box {
    padding: 0.7rem;
    width: 50%;
  }

  .hero img {
    height: 400px;
    width: auto;
  }
}

/* special case mobile */
/*media for mobile (xsm)*/
@media (width <= 576px) {
  .site-container {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .swiper-hero .swiper-button-next,
  .swiper-services .swiper-button-next {
    left: auto;
    right: 10px;
  }

  .swiper-hero .swiper-button-prev,
  .swiper-services .swiper-button-prev {
    right: auto;
    left: 10px;
  }

  .swiper-button-next,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .Awards-container {
    gap: 0;
  }

  .outsourcing-items {
    padding: 0;
  }

  .swiper-Leading-sol .swiper-slide .back-slide span {
    height: 145px;
    overflow: hidden;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }

  .certificates {
    width: 100%;
  }

  .swiper-real-patent .img-container img {
    width: 47%;
    height: auto;
  }

  .Records .Record-box {
    width: 50%;
  }
  .input-container {
    width: 100%;
  }
  .input-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f"
      "g"
      "h";
  }
}

/* special case mobile */
/*media for mobile (xxsm)*/

@media (width <= 400px) {
  .swiper-services .swiper-slide {
    width: calc(100% - 10px);
  }
  .logo img {
    width: 100px;
  }

  .footer .social-links a {
    width: calc(90% / 5);
  }
}

/* ===== GLOBAL LOADER ===== */
#global-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

#global-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  background-image: url("../SiteImgs/Logo.gif");
  background-repeat: no-repeat;
  background-size: 210px;
  background-position: center center;
  width: 500px;
  height: 500px;
}

/* ===== HIDE CONTENT UNTIL LOADED ===== */
#header,
#page-content,
#footer {
  visibility: hidden;
}
