@import url(./theme.css);
/* custom */

.color-primary {
  color: var(--primary-color);
}

.color-secondary {
  color: var(--secondery-color);
}
.color-secondary-2 {
  color: var(--secondery-color-2);
}

.color-gradient-primary {
  color: linear-gradient(90deg, #E88B2A 0.03%, #E26730 73.39%, #DF5832 100.28%);
}

.color-dark {
  color: #3B3B3B;
}

.btn-primary-gradient, .btn-primary-gradient:active {
  background: linear-gradient(90deg, #E88B2A 0.03%, #E26730 73.39%, #DF5832 100.28%) !important;
  color: white !important;
}

.btn-primary, .btn-primary:active {
  background: #E88B2A !important;
  color: white !important;
}

/* fonts */
.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-25 {
  font-size: 25px;
}

.fs-38 {
  font-size: 38px;
}

.fs-42 {
  font-size: 42px;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.gradient-text, .border-gradient-btn span, .border-gradient-btn:active span {
  background: linear-gradient(90deg, #E88B2A 0.03%, #E26730 73.39%, #DF5832 100.28%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  flex-wrap: nowrap;
  padding: 13px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: #E88B2A !important;
  color: #fff !important;
  border: 1px solid #E88B2A !important;
  transition: all 0.3s ease;
}
.btn-primary:hover, .btn-primary:active {
  opacity: 0.9;
}

.white-btn {
  background: #fff !important;
  color: #E88B2A !important;
  border: 1px solid #fff !important;
  transition: all 0.3s ease;
}
.white-btn:hover, .white-btn:active {
  opacity: 0.9;
}
.white-btn * {
  color: #E88B2A;
}

.border-white-btn {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #fff !important;
  transition: all 0.3s ease;
}
.border-white-btn:hover, .border-white-btn:active {
  opacity: 0.9;
}
.border-white-btn * {
  color: #E88B2A;
}

.border-gradient-btn, .border-gradient-btn:active {
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, #E88B2A 0.03%, #E26730 73.39%, #DF5832 100.28%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.readmore_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  font-size: 17px;
}
.readmore_btn i{
      font-size: 22px;
    position: relative;
    top: 2px;
}

.bi::before {
  vertical-align: -0.2em;
}

.full-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

.img {
  max-width: 100%;
  max-height: 100%;
}

.gradient-layout {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-0, -0);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgba(29, 29, 29, 0.85);
}

.buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
}

.max-width-50 {
  max-width: 50%;
}

.max-width-35 {
  width: 35%;
  max-width: 35%;
}

.max-width-20 {
  max-width: 20%;
}

.border-radius {
  border-radius: 12px;
}

.img-section-parent {
  max-height: 500px;
}


/* custom  */
.menu-bar {
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
}
.menu-bar.active {
  border-color: var(--secondery-color);
}
.bar {
  width: 24px;
  height: 2px;

  margin: 2px 0;
  transition: 0.3s ease;
}
.menu-bar.active .bar {
  width: 12px;
}
.menu-bar.active .bar:first-child {
  transform: translate(0, 7px) rotate(-45deg);
}
.menu-bar.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-bar.active .bar:last-child {
  transform: translate(0, -5px) rotate(45deg);
}
.active-menu .search-btn,
.active-menu .lang-anc {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header .logo {
  position: absolute;
  inset-inline-start: 50px;
  transition: 0.5s ease;
  width: 106px;
}
.header .logo img {
  width: 150px;
}
.header {
  background-color: var(--bg-header);
}
.active-menu .logo {
  inset-inline-start: calc(100% - 106px);
}
.main-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  background-color: #d0d0d0;
  position: absolute;
  padding-top: 56px;
  padding-bottom: 120px;
  max-height: 100vh;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.active-menu {
  overflow: hidden;
}
.active-menu .main-menu {
  opacity: 1;
  visibility: visible;

  z-index: 1040;
}
.menu-img {
  aspect-ratio: 289 / 390;
  border-radius: var(--border-raduis);
  overflow: hidden;
}
.menu-item {
  background-color: var(--white-color);
  border-radius: var(--btn-raduis);
  padding: 10px;
  transition: all .7;
  position: relative;
  overflow: hidden;
}
.main-menu .menu-item::before{
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 0%;
  height: 100%;
  transition: all .7s;
      background: linear-gradient(90deg, rgba(232, 140, 42, 0.459) 0.6%, rgba(226, 104, 48, 0.295) 37.72%, rgba(247, 236, 223, 0.568) 99.33%);
}
.menu-item > .menu-link {
  font-weight: 500;
  font-size: 18px;
  color: #1D1D1D;
  min-height: 150px;
  position: relative;
  z-index: 2;
  transition: all .7s;
}


.menu-icon {
  width: 45px;
    height: 45px;
    background-color: #f8f9fc;
    border-radius: 6px;
    margin-bottom: 14px;
}
.menu-icon img{
  filter: brightness(0) saturate(100%) invert(10%) sepia(12%) saturate(254%) hue-rotate(155deg) brightness(93%) contrast(95%);
}

.main-menu .menu-item:hover::before,
.main-menu .menu-item.current-menu-item::before{
  width: 100%;
}
.main-menu .menu-item:hover .menu-icon img,
.main-menu .menu-item.current-menu-item .menu-icon img{
filter: brightness(0) saturate(100%) invert(55%) sepia(98%) saturate(462%) hue-rotate(343deg) brightness(96%) contrast(88%);
}
.main-menu .menu-item:hover .menu-link,
.main-menu .menu-item.current-menu-item .menu-link{
  color: var(--secondery-color-2);
}

.search-box {
  transform: scaleY(0);
  position: absolute;
  width: 100%;
  background-color: var(--white-color);
  transition: 0.3s ease;
  transform-origin: top;
  z-index: 999;
}
.search-box.active {
  transform: scaleY(1);
}
.search-form {
  min-width: 320px;
  margin: 20px 0;
  display: flex;
}
.search-box .search-input {
  height: 45px;
  padding: 5px 20px;
  font-size: 14px;
  color: var(--text-color);
  -webkit-text-fill-color: var(--text-color);
  background-color: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-raduis);
  outline: none;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.08);
  border-radius: var(--border-raduis);
  transition: 0.5s ease;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 99;
  display: none;
}
.search-overlay.active {
  display: block;
}
.close-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  font-size: 24px;
  color: var(--primary-color);
}
.close-btn:hover {
  color: var(--secondery-color);
}
.hero-video {
  position: relative;
}

.hero-video > video,
.hero-video > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.hero-section .hero-video::after {
  content: none;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("../images/overlay.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}
/* html[dir="rtl"] .hero-section .hero-video::after,
html[dir="rtl"] .hero-video > video,
html[dir="rtl"] .title-content::before{
	    transform: scaleX(-1);
} */
.hero-video .overlay{
	background-color: #0000008c;
}
.hero-section .hero-txt {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 0;
  z-index: 5;
}
.hero-section .hero-txt,
.hero-section .hero-txt > .container {
  height: 100%;
}
.hero-section .hero-txt > .container {
  display: flex;
  align-items: center;
  position: relative;
}
.hero-section .hero-txt .main-image {
  position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 30%;
    z-index: 0;
}
.hero-section .hero-txt .main-image img {
  width: 100%;
}
.txt-content {
  width: 60%;
  position: relative;
  padding-inline-start: 50px;
  z-index: 1;
}
.txt-content .symbol-icon {
  position: absolute;
  top: 0px;
  inset-inline-start: -110px;
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.title-content {
  color: var(--white-color);
  font-weight: 700;
  position: relative;
}
.title-content::before {
  content: /*url("../images/shape1.svg")*/ none;
  position: absolute;
  inset-inline-start: -200px;
  top: -65px;
  display: inline-block;
}
.hero-txt .first-line {
  font-size: 30px;
  font-weight: 400;
}
.hero-txt .second-line {
  font-size: 70px;
  color: var(--secondery-color-2);
}
.hero-txt .third-line {
  font-size: 45px;
}
.txt-description {
  font-size: 18px;
  color: var(--white-color);
  margin-top: 10px;
  margin-bottom: 10px;
}
.action-anchors {
  margin-top: 20px;
}
.action-anchors > a {
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--btn-raduis);
}
.consult_anc {
  min-width: 150px;
  color: var(--secondery-color-2);
  background-color: var(--white-color);
  margin-inline-end: 12px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.7s;
  gap: 5px;
  position: relative;
}
.consult_anc .word,
.consult_anc .line,
.consult_anc svg,
.consult_anc svg path {
  transition: all 0.7s;
}
.consult_anc .word {
  position: relative;
  inset-inline-start: 0;
}
.consult_anc .line {
  background-color: var(--secondery-color-2);
  width: 0px;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  inset-inline-start: 15px;
  opacity: 0;
}
.consult_anc:hover svg path:nth-of-type(1) {
  opacity: 0;
}
.consult_anc:hover .word {
  inset-inline-start: 16px;
}
.consult_anc:hover .line {
  width: 15px;
  opacity: 1;
}

.learn_anc {
  border: 1px solid var(--white-color);
  width: 125px;
  color: var(--white-color);
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 50;
  transform: translateY(var(--copyright-height));
  transition: 0.3s ease;
  overflow: hidden;
}

footer:hover {
  transform: translateY(0);
}
.footer-list {
  background-color: var(--bg-footer);
  transition: 0.3s ease;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer-list .menu-item {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.footer-list li > a {
  color: #fff;
  background-color: transparent;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 16px;
  border-radius: calc(var(--btn-raduis) / 2);
  text-shadow: 0 0 1px #fff;
  transition: all 0.7s;
  position: relative;
}
.footer-list li > a img {
  filter: brightness(0) invert(1);
  width: 25px;
  height: 25px;
  transition: all 0.7s;
}
.footer-list li > a img,
.footer-list li > a span {
  position: relative;
  z-index: 2;
}

.footer-list li > a::before {
  content: "";
  position: absolute;
  display: block;
  border-radius: calc(var(--btn-raduis) / 2);
  inset-inline-start: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--secondery-color-2) 0%,
    var(--secondery-color) 70%,
    var(--primary-color) 100%
  );
  transition: all 0.7s;
}
.footer-list li.active > a::before,
.footer-list li.current-menu-item > a::before,
.footer-list li:hover > a::before {
  width: 100%;
}
.copyrights {
  background-color: var(--white-color);
}
.active-menu .footer-list {
  opacity: 0;
}
.copy-text,
.company-name {
  color: var(--text-color);
  font-weight: 300;
  font-size: 14px;
}
.copy-text p,
.company-name p {
  margin-bottom: 0;
}
.copy-text a,
.company-name a {
  color: inherit;
}
.company-name:hover {
  color: var(--primary-color);
}
.copyrights ul {
  gap: 12px;
}
.copyrights ul > li {
  padding: 0;
}
.copyrights ul > li > a {
  color: var(--secondery-color);
  font-weight: 500;
  text-decoration: none;
}
.copyrights ul > li > a:hover {
  color: var(--primary-color);
}
.cursor {
  display: inline-block;
  width: 3px;
  height: 45px;
  margin-inline-end: 4px;
  background: var(--secondery-color);
  animation: blink 0.8s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    background: var(--secondery-color);
  }
  40%,
  50% {
    background: transparent;
  }
}

/************about page************/
#content {
  padding-bottom: 60px;
}
.page-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 12px;
}
.breadcrumb {
  padding: 16px 0;
}
.breadcrumb > ul > li {
  position: relative;
}
.breadcrumb > ul > li:not(:last-child):after {
  content: "\f101";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin: 0 8px;
  color: #8e8e8e;
  font-size: 10px;
}
html[dir="rtl"] .breadcrumb > ul > li:not(:last-child):after {
  content: "\f100";
}
.breadcrumb > ul > li > a {
  color: #8e8e8e;
  font-size: 14px;
  text-transform: capitalize;
}
.breadcrumb > ul > li.active > a {
  color: var(--secondery-color-2);
}
.about-img {
  /*   aspect-ratio: 435 / 499; */
  /*   max-width: 435px; */
  margin: auto;
}
/* html[dir="rtl"] .about-img{
	transform: scalex(-1);
} */
.page-head .title {
  border-radius: calc(var(--btn-raduis) * 2);
  background-color: #e88b2a2e;
  width: max-content;
  padding: 7px 16px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondery-color-2);
}
.page-head .subtitle,
.page-head .subtitle-small {
  font-size: 45px;
  font-weight: 900;
  color: var(--text-color);
  margin-top: 12px;
  margin-bottom: 5px;
  position: relative;
}
.page-head .subtitle > mark,
.page-head .subtitle-small > mark {
  color: var(--primary-color);
}
.page-head .subtitle-small {
  font-size: 25px;
}
.description-def {
  margin: 0;
  color: #8a8a8a;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.about-list > li {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #434645;
  display: flex;
}

.about-list > li::before {
  content: "\f00c";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: var(--white-color);
  font-size: 12px;
  background-color: var(--secondery-color-2);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  margin-inline-end: 12px;
}
.mission-section {
  /* margin-top: 120px; */
}
.msision-img {
  border-radius: var(--border-raduis);
  overflow: hidden;
  position: relative;
  aspect-ratio: 378 / 469;
  max-width: 378px;
  margin: auto;
}
.img-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
}
.missions {
  background-image: url("../images/map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mission-box {
  position: relative;
}
.mission-box:not(:last-child) {
  margin-bottom: 14px;
}
.mission-icon {
  width: 50px;
  height: 50px;
  background-color: #e7e8ea;
  border-radius: 10px;
  border: 4.5px solid var(--white-color);
  flex-shrink: 0;
  position: relative;
}
.mission-icon::before {
  content: "";
  border: 4px solid #26bf19;
  border-inline-start: none;
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 16px);
  inset-inline-end: -9px;
  border-end-end-radius: 10px;
  border-start-end-radius: 10px;
  z-index: -1;
}
.mission-box:nth-child(2) .mission-icon::before {
  border-color: #ffc700;
}
.mission-box:nth-child(3) .mission-icon::before {
  border-color: #2a84f1;
}
.mission-box:nth-child(4) .mission-icon::before {
  border-color: #f15d2a;
}
.mission-box:nth-child(5) .mission-icon::before {
  border-color: #1d84a8;
}
.mission-txt {
  color: #0d1e27;
  font-size: 16px;
  font-weight: 500;
}
.mission-box .line {
  display: inline-block;
  border: 2.47px solid #26bf19;
  border-inline-start: none;
  border-block-start: none;
  position: absolute;
  inset-inline-start: 0;
}
.mission-box:first-child .line {
  width: 101px;
  height: 84px;
  border-end-end-radius: 20px;
  top: 100%;
}
.mission-box:nth-child(2) .line {
  width: 219px;
  height: 48px;
  border-end-end-radius: 20px;
  top: 100%;
  border-color: #ffc700;
}
.mission-box:nth-child(3) .line {
  width: 240px;
  height: 0px;
  border-end-end-radius: 20px;
  top: 50%;
  border-color: #2a84f1;
}
.mission-box:nth-child(4) .line {
  width: 219px;
  height: 48px;
  border-end-end-radius: 20px;
  bottom: 100%;
  border-color: #f15d2a;
  transform: rotateX(180deg);
}
.mission-box:last-child .line {
  width: 101px;
  height: 84px;
  border-end-end-radius: 20px;
  bottom: 100%;
  border-color: #1d84a8;
  transform: rotateX(180deg);
}

.about-section-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 60px;
}
.about-section-container
  .about-section:nth-of-type(even)
  .row
  > div:first-of-type,
.mission-section-container
  .mission-section:nth-of-type(even)
  .row
  > div:first-of-type {
  order: 2;
}
.about-section-container
  .about-section:nth-of-type(even)
  .row
  > div:last-of-type,
.mission-section-container
  .mission-section:nth-of-type(even)
  .row
  > div:last-of-type {
  order: 1;
}
.mission-section-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
/****************services*******************/
.side-nav {
  width: 64px;
  border-radius: var(--btn-raduis);
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px 0;
  inset-inline-start: 10px;
}
.side-nav .side-list{
  gap: 5px;
}
#toggleSideNav {
  display: none;
}
.side-nav .side-item {
  width: 100%;
}
.side-nav .side-link {
    font-size: 24px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    text-align: center;
        padding: 10px 2px;
        transition: all .7s;
}
.side-nav .side-link.active,
.side-nav .side-link:hover {
      border-inline-start: 2px solid #1B1D1E;
    background: rgba(29, 29, 29, 0.15);
}
.side-nav .side-link img {
  filter: brightness(0) invert(1);
      width: 25px;
    height: 25px;
    margin-bottom: 3px;
  object-fit: cover;
}
.side-nav .side-link span{
      font-size: 13px;
    color: #fff;
    text-shadow: 0 0 0px #fff;
}
.item-content {
  background-color: var(--white-color);
  border-radius: var(--border-raduis);
  padding: 20px;
  transition: all 0.7s;
  border: 1px solid #fff;
  position: relative;
  top: 0px;
  inset-inline-start: 0px;
  flex-grow: 1;
}
.item-content::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/star.svg");
  width: 53px;
  height: 53px;
  background-repeat: no-repeat;
  background-size: 50px;
  transition: all 0.7s;
  top: 10px;
  inset-inline-end: 0px;
  transform: scale(0);
  opacity: 0;
}
.item-content:hover .item-head .item-icon img {
  filter: invert(60%) sepia(60%) saturate(709%) hue-rotate(342deg)
    brightness(96%) contrast(89%);
}
.item-content:hover::before {
  inset-inline-end: 10px;
  transform: scale(1);
  opacity: 1;
}
.item-content:hover {
  background-color: #fff2e5;
  box-shadow: 10px 10px 0px #fff2e5;
  border-color: #fcd0c3;
  top: -10px;
  inset-inline-start: -10px;
}
html[dir="rtl"] .item-content:hover {
  box-shadow: -10px 10px 0px #fff2e5;
}
.item-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bpo-content .item-head .item-icon {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(237, 237, 238, 0.3450980392);
  flex-shrink: 0;
  border-radius: 10px;
}
.bpo-content .item-head .item-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: invert(65%) sepia(0%) saturate(1146%) hue-rotate(211deg)
    brightness(90%) contrast(95%);
}

.item-head .item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
}
.item-breif {
  font-size: 14px;
  color: #424446;
  margin: 16px 0;
  /*text-align: justify;*/
}
.read-more {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondery-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.read-more > i {
  font-size: px;
}
.item-content:hover .read-more > i {
  animation-duration: 1.1s;
  animation-name: arrow;
  animation-iteration-count: infinite;
}
@keyframes arrow {
  0% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(2px);
  }
}
/*****************single service******************/
.service-card .card-content {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(232, 250, 255, 1) 100%
  );
  border-radius: var(--border-raduis);
  display: flex;
  flex-direction: column;
}
.service-card-container:nth-child(even) .service-card .card-content {
  background: linear-gradient(
    to top,
    rgba(232, 250, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.service-card-container:nth-child(even) .service-card .card-details {
  order: 1;
}
.service-card-container:nth-child(even) .service-card .card-image {
  order: 2;
}
.card-image {
  aspect-ratio: 1 / 1;
}
.card-details {
  padding: 20px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
}
.card-description {
  font-size: 14px;
  color: #434645;
  text-align: justify;
}
/***************single product******************/
.custom-tabs {
  margin-bottom: 20px;
}
.custom-tabs .navTabs {
  background-color: var(--white-color);
  border-radius: var(--btn-raduis);
  padding: 4px;
  width: fit-content;
  justify-content: center;
}
.custom-tabs .nav-link {
  color: #424446;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 8px;
  text-transform: capitalize;
}
.custom-tabs .nav-link.active {
  color: var(--secondery-color);
  font-weight: 500;
  background-color: #feefea;
}
.single-service-content .overview-img {
  aspect-ratio: 389 / 429;
  max-width: 389px;
}
.single-product-content .overview-row .subtitle::after {
  content: url(../images/shape2.svg);
  position: absolute;
  bottom: -13px;
  inset-inline-start: 0;
}
.overview-row .description {
  font-size: 18px;
  font-weight: 500;
  color: #424446;
  margin-top: 17px;
}
.why-box {
  position: relative;
  border-radius: var(--border-raduis);
  overflow: hidden;
}
.why-img {
  /*aspect-ratio: 234 / 429;*/
}
.why-txt {
  /*position: absolute;
  top: 0;*/
  padding: 15px 15px 0px 15px;
  /*background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .5) 0%,
    rgba(0, 0, 0, 0) 100%
  );*/
  width: 100%;
}
.why-txt .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 5px;
}
.why-txt .description {
  font-weight: bold;
  font-size: 20px;
  color: #000 /*var(--white-color)*/;
  margin-top: 0;
  text-align: center;
}
.why-content .item-head {
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}
.why-content .item-head .item-title {
  font-weight: 500;
  font-size: 16px;
  margin-top: 0px;
  position: relative;
  top: 5px;
}
.why-content .item-breif {
  margin-top: 8px;
}
.why-content .item-head .item-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.actions-btns {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.act-btn {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--btn-raduis);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  min-width: 155px;
}
.act-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.page-description {
  font-size: 16px;
  color: #424446;
  margin-bottom: 24px;
}
.solution-item {
  aspect-ratio: 131 / 32;
}
.solution-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.form-content .title {
  font-size: 35px;
  font-weight: bold;
  color: var(--white-color);
  margin-bottom: 30px;
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--bg-footer);
  margin-inline-start: -15px;
}
.form-label {
  font-size: 16px;
  color: var(--text-color);
}
.custom-input {
  height: 50px;
  border-radius: var(--btn-raduis);
  -webkit-text-fill-color: #fff;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
  padding: 5px 15px;
  border: 2px solid #fff;
}
.custom-input:focus {
  border-color: var(--secondery-color-2);
}
textarea.custom-input {
  height: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: none;
  min-height: 150px;
  max-height: 150px;
}
.custom-input::-webkit-input-placeholder {
  color: #fff;
  transition: all 0.7s;
}
.custom-input::-moz-placeholder {
  color: #fff;
  transition: all 0.7s;
}
.custom-input:-ms-input-placeholder {
  color: #fff;
  transition: all 0.7s;
}
.custom-input:-moz-placeholder {
  color: #fff;
  transition: all 0.7s;
}

.custom-select {
  min-height: 44px;
  -webkit-text-fill-color: #929292;
  color: #929292;
  background-color: #f8f9fc;
  font-size: 14px;
  border: none;
}
.ss-content .ss-list {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ss-main .ss-values .ss-placeholder {
  padding: 2px 12px;
}
.ss-content .ss-list .ss-option {
  padding: 5px 12px;
}
.ss-main .ss-arrow {
  width: 24px;
}
.ss-content .ss-list .ss-option:hover,
.ss-content .ss-list .ss-option.ss-selected,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background-color: var(--primary-color);
  -webkit-text-fill-color: var(--white-color);
  color: var(--white-color);
}
.ss-main .ss-values .ss-value {
  background-color: var(--primary-color);
  -webkit-text-fill-color: var(--white-color);
  color: var(--white-color);
}
.btn-submit {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  width: 123px;
  height: 45px;
  border-radius: calc(var(--btn-raduis) / 2);
}
.mail-us > a {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondery-color);
}
.mail-us > a:hover {
  color: var(--primary-color);
}
/*****************careers*****************/
.career-item {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: var(--border-raduis);
}
.career-item .title {
  font-size: 20px;
  font-weight: 700;
}
.description {
  color: #3e4144;
  font-size: 14px;
  margin-top: 12px;
}
/*********contact******/
.branch-img {
  aspect-ratio: 195 / 160;
  max-height: 160px;
}
.contact-methods .title {
  font-size: 14px;
  color: #424446;
}
.contact-methods .value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
.conatct-page .tab-content {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: var(--border-raduis);
  margin-top: 12px;
}
.conatct-page .custom-tabs .navTabs {
  width: 100%;
}
/**************fqa**************/
.fqa-row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}
.accordion-button,
.accordion-button:not(.collapsed) {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  background-color: var(--white-color);
  box-shadow: none;
  gap: 5px;
  padding: 12px;
}
.accordion-button::before {
  content: "";
  background-image: url(../images/icon1.png);
  display: inline-block;
  width: 20px;
  height: 22px;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  margin-inline-end: 5px;
}
.accordion-item:not(:last-child) {
  margin-bottom: 12px;
}
.accordion-item,
.accordion-item:first-of-type {
  border-radius: var(--btn-raduis);
  overflow: hidden;
  border: none;
}
.accordion-body {
  background-color: var(--white-color);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  color: #3e4144;
  text-align: justify;
  padding: 12px;
}
.accordion-button::after {
  width: 16px;
  height: 16px;
  background-size: 10px;
  border: 1px solid #929292;
  border-radius: 50%;
  background-position: center;
}
.accordion-button:not(.collapsed)::after {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
/********single service***********/
.head {
  gap: 8px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}
.modules-row .head {
  flex-direction: column;
}
.head .title {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}
.item {
  background-color: var(--white-color);
  border-radius: var(--btn-raduis);
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.who-items {
  border-radius: var(--btn-raduis);
  overflow: hidden;
}
.who-items .item {
  border-radius: unset;
}
.getting-start-img {
  aspect-ratio: 409 / 396;
  max-width: 409px;
}
/**/

.message-field {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  margin-top: 5px;
}
.custom-page,
.search-page {
  padding-top: 50px;
}
.search-page {
  padding-bottom: 50px;
}
.inclusive-content .overview-img {
  width: 80%;
  margin-inline-start: auto;
}
.inclusive-content .overview-img img {
  width: 100%;
}
/* html[dir="rtl"] .overview-img img{
	transform: scaleX(-1);
} */
/**/
/*float-buttons*/

.float-buttons {
  position: fixed;
  z-index: 10;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 50px;
}
.float-buttons .float-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background-color: red;
  position: relative;
  color: #fff;
  cursor: pointer;
}
.float-buttons .float-button > a {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 20;
}
.float-buttons .float-button > i,
.float-buttons .float-button > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s;
}
.float-buttons .float-button > img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.float-buttons .float-button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 1px solid;
}
.float-buttons .float-button.float-button-whatsup {
  background-color: #24cc63;
  box-shadow: 0 0 5px #219a4e inset;
}
.float-buttons .float-button.float-button-whatsup > span {
  border-color: #24cc63;
}

.float-buttons .float-button.float-button-phone {
  background-color: #0d6cac;
  box-shadow: 0 0 5px #0a5a90 inset;
}
.float-buttons .float-button.float-button-phone > span {
  border-color: #0d6cac;
}

.float-buttons .float-button.float-button-email {
  background-color: #d93d06;
  box-shadow: 0 0 5px #c43604 inset;
}
.float-buttons .float-button.float-button-email > span {
  border-color: #d93d06;
}

.float-buttons .float-button.float-button-social-media {
  background-color: #1da1f2;
  box-shadow: 0 0 5px #1a91da inset;
}
.float-buttons .float-button.float-button-social-media > span {
  border-color: #1da1f2;
}

.float-buttons .float-button.float-button-social-media > .close {
  transform: translate(-50%, -50%) scale(0, 0);
}

.float-buttons .float-button.float-button-social-media .float-button {
  width: 40px;
  height: 40px;
  font-size: 25px;
}

.float-buttons
  .float-button.float-button-social-media
  .float-button.float-button-facebook {
  background-color: #0862f6;
  box-shadow: 0 0 5px #0957d6 inset;
}
.float-buttons
  .float-button.float-button-social-media
  .float-button.float-button-facebook
  > span {
  border-color: #0862f6;
}

.float-buttons
  .float-button.float-button-social-media
  .float-button.float-button-linkedin {
  background-color: #0073ae;
  box-shadow: 0 0 5px #006599 inset;
}
.float-buttons
  .float-button.float-button-social-media
  .float-button.float-button-linkedin
  > span {
  border-color: #0073ae;
}

.float-buttons
  .float-button.float-button-social-media
  .float-button.float-button-instagram {
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.float-buttons
  .float-button.float-button-social-media
  .float-button.float-button-instagram
  > span {
  border-color: #fcb045;
}

.float-buttons .float-button > span:first-of-type {
  animation: float_buton_big 2s infinite;
}
.float-buttons .float-button > span:nth-of-type(2) {
  animation: float_buton_big 3s infinite;
}
.float-buttons .float-button > span:nth-of-type(3) {
  animation: float_buton_big 4s infinite;
}

.float-buttons .float-button .social-media-links {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: calc(0% + 20px);
  display: flex;
  gap: 10px;
  background-color: #fff;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 0 5px #00000038;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s;
  z-index: -1;
}
.float-buttons .float-button .social-media-links.open {
  inset-inline-end: calc(100% + 20px);
  opacity: 1;
  visibility: visible;
}
.float-buttons .float-button .social-media-links::before {
  content: "";
  position: absolute;
  display: block;
  background-color: transparent;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 10px 0 10px 10px;
  inset-inline-start: 100%;
  top: 50%;
  transform: translateY(-50%);
}
html[dir="rtl"] .float-buttons .float-button .social-media-links::before {
  border-color: transparent #fff transparent transparent;
  border-width: 10px 10px 10px 0;
}

@keyframes float_buton_big {
  from {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(1.8, 1.8);
    opacity: 0;
  }
}

/*float-buttons*/
/*contact us page*/

.contact-content {
  display: flex;
  position: relative;
}
.contact-content::before {
  content: "";
  display: block;
  position: absolute;
  border: 3px solid var(--primary-color);
  width: calc(100% - 100px);
  height: calc(100% - 140px);
  box-shadow: 0 0 3px var(--primary-color) inset;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
}
.contact-content .form-contact-us {
  position: relative;
  background-color: var(--bg-footer);
  width: 55%;
}
.contact-content .map {
  width: 45%;
}
.contact-content .map .map-in {
  width: 100%;
  height: 100%;
  flex-grow: 1;
}
.contact-content .map .map-in iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-content .form-contact-us .symbol-icon {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.info-content {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 25%;
  padding: 20px;
  z-index: 5;
}
.info-content > h3 {
  color: var(--white-color);
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
}
.info-content .info-content-in {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info-content .info-content-in > div {
  width: 100%;
}
.info-content p,
.info-content a {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 18px;
}
.info-content a {
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.info-content a svg {
  width: 20px;
  height: 20px;
}

.links-media-contact {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  perspective: 500px;
}
.links-media-contact a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 20px;
  transition: all 0.7s;
}
.links-media-contact a:hover {
  transform: scale(1.3) rotateY(360deg);
}

.form-content {
  padding: 40px 130px;
  position: relative;
  z-index: 5;
}
.form-content .contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/*contact us page*/
/*digital transformation*/

.about-tranformation .about-video {
  width: 50%;
}
.about-tranformation .about-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-tranformation .about-content {
  width: 50%;
  flex-grow: 1;
}

.hexagon-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hexagon-container .hexagon-wrapper {
  padding: 1px 1px 1px 0px;
  background: #e88b2a;
  -webkit-clip-path: polygon(50% 0, 100% 27%, 100% 78%, 49% 100%, 0 78%, 0 26%);
  clip-path: polygon(50% 0, 100% 27%, 100% 78%, 49% 100%, 0 78%, 0 26%);
}
.hexagon-container .hexagon-wrapper:last-child {
  padding: 1px 0px 1px 1px;
}
.hexagon-container .hexagon {
  aspect-ratio: 1/1;
  background: #f8f9fc;
  width: 100%;
  height: 100%;
  min-height: 160px;
  -webkit-clip-path: polygon(50% 0, 100% 27%, 100% 78%, 49% 100%, 0 78%, 0 26%);
  clip-path: polygon(50% 0, 100% 27%, 100% 78%, 49% 100%, 0 78%, 0 26%);
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  text-align: center;
}
.hexagon-container .hexagon h6 {
  margin-bottom: 0;
  color: #242424;
  font-weight: bold;
  font-size: 15px;
}
.description-2 {
  margin-top: 0;
  color: #3e4144;
  font-size: 19px;
}
.about-video {
  max-height: 500px;
  background: #d9d9d9;
  position: relative;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}
.about-video video{
  width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-video .play-video {
  position: absolute;
  overflow: hidden;
  line-height: 0.3;
  background-color: var(--white-color);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.7s;
}
.about-video .play-video svg {
  width: 25px;
  height: 25px;
}
.about-video:hover .play-video {
  transform: translate(-50%, -50%) scale(1.3, 1.3);
}
.about-video .close-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #00000042;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}
.about-video .close-video svg {
  width: 60px;
  height: 60px;
}

/*digital transformation*/
/*services card*/

.services_cards .card,
.services_cards .menu-page .card-menu,
.menu-page .services_cards .card-menu {
  border-radius: 16px;
  background: linear-gradient(0deg, #fff 66.63%, #f4c696 100%);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  gap: 16px;
  text-align: start;
  padding: 20px;
  border: 0px;
  transition: all 0.7s ease;
}

.services_cards .card:hover {
  background: linear-gradient(0deg, #fff 10%, #f4c696 100%);
  transform: scale(1.05, 1.05);
  box-shadow: 0 0 5px #0000001d;
}

.services_cards .card ul li,
.services_cards .menu-page .card-menu ul li,
.menu-page .services_cards .card-menu ul li {
  padding-inline-start: 24px;
  position: relative;
}
.services_cards ul {
  list-style: none;
  padding: 0;
}

.services_cards .card ul li::before,
.services_cards .menu-page .card-menu ul li::before,
.menu-page .services_cards .card-menu ul li::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  background-image: url("../images/icons/checkmark2.svg");
  background-repeat: no-repeat;
  left: 0;
  top: 6%;
}
.services_cards .card .card-img,
.services_cards .menu-page .card-menu .card-img,
.menu-page .services_cards .card-menu .card-img {
  width: 100%;
  aspect-ratio: 1/0.65;
  border-radius: 16px;
}
.services_cards .card h4 {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 20px;
  color: #343434;
}
.services_cards .card p {
  margin-bottom: 0;
}
.services_cards .card p,
.services_cards .card ul li {
  line-height: 1.5;
  color: #3d3d3d;
  font-size: 15px;
  text-shadow: 0 0 0px #3d3d3d;
}

/*services card*/
/*bpo-row*/

.bpo-row {
  display: flex;
  flex-wrap: wrap;
}
.bpo-row .bpo-row-item {
  padding: 10px;
    width: 33.33333%;
    display: flex;
}
.bpo-row .bpo-row-item:nth-of-type(5n + 4),
.bpo-row .bpo-row-item:nth-of-type(5n + 5){
  width: 50%;
}

/*bpo-row*/
/*parteners*/

.partner_swipper, .news_swipper {
  height: 63vh;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../images/partner_bg.png");
  background-position: center;
  background-size: contain;
  text-align: center;
  margin: auto;
  background-repeat: no-repeat;
}
.partner_swipper .swiper-wrapper, .news_swipper .swiper-wrapper {
  height: calc(100% - 25px);
}
.partner_swipper .swiper-slide, .news_swipper .swiper-slide {
  border-radius: 8px;
  background: rgba(237, 237, 238, 0.3450980392);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
      height: calc(25% - 9.75px);
}
.partner_swipper .swiper-slide img, 
.news_swipper .swiper-slide img{
    max-width: 100%;
    max-height: 100%;
}
.partner_swipper .swiper-pagination, .news_swipper .swiper-pagination {
  position: static !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 13px;
}
.partner_swipper .swiper-pagination .swiper-pagination-bullet, .news_swipper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color) !important;
  width: 16px;
  border-radius: 20px;
}
.partner_swipper .swiper-pagination .swiper-pagination-bullet-active, .news_swipper .swiper-pagination .swiper-pagination-bullet-active {
  width: 48px;
}

/*parteners*/
/*counters-site*/

.counters-site{
      display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}
.counters-site > div > span{
        position: relative;
    display: inline-flex
;
    color: #1B1D1E;
    font-weight: bold;
    font-size: 35px;
    padding: 0 20px;
}
.counters-site > div > span > span{
      position: absolute;
    top: 10px;
    line-height: 1;
    inset-inline-end: 0;
    width: 20px;
    height: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.counters-site > div > p{
      margin-bottom: 0;
    color: #434645;
    font-weight: 500;
    font-size: 16px;
}

.chooice_card .card, .chooice_card .menu-page .card-menu, .menu-page .chooice_card .card-menu {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 3.3rem 2rem;
  margin-bottom: 30px;
  position: relative;
}
.chooice_card .card::before, .chooice_card .menu-page .card-menu::before, .menu-page .chooice_card .card-menu::before {
  content: "";
  position: absolute;
  width: 90px;
      height: 90px;
    border-radius: 50%;
  top: -50px;
  background-color: #fff;
}
.chooice_card .card:first-child, .chooice_card .menu-page .card-menu:first-child, .menu-page .chooice_card .card-menu:first-child, .chooice_card .card:last-child, .chooice_card .menu-page .card-menu:last-child, .menu-page .chooice_card .card-menu:last-child {
  background: #EFEBE7;
}
.chooice_card .card:first-child .abs_circle, .chooice_card .menu-page .card-menu:first-child .abs_circle, .menu-page .chooice_card .card-menu:first-child .abs_circle, .chooice_card .card:last-child .abs_circle, .chooice_card .menu-page .card-menu:last-child .abs_circle, .menu-page .chooice_card .card-menu:last-child .abs_circle {
  background: linear-gradient(90deg, var(--secondery-color-2) 0.03%, var(--secondery-color) 73.39%, var(--primary-color) 100.28%);
}
.chooice_card .card:nth-child(2), .chooice_card .menu-page .card-menu:nth-child(2), .menu-page .chooice_card .card-menu:nth-child(2) {
  background: linear-gradient(90deg, var(--secondery-color-2) 0.03%, var(--secondery-color) 73.39%, var(--primary-color) 100.28%);
  color: #fff !important;
}
.chooice_card .card:nth-child(2) .abs_circle, .chooice_card .menu-page .card-menu:nth-child(2) .abs_circle, .menu-page .chooice_card .card-menu:nth-child(2) .abs_circle {
  background-color: #EFEBE7;
}
.chooice_card .card:nth-child(2) .abs_icon path, .chooice_card .menu-page .card-menu:nth-child(2) .abs_icon path, .menu-page .chooice_card .card-menu:nth-child(2) .abs_icon path {
  fill: #EFEBE7;
}
.chooice_card .card .abs_circle, .chooice_card .menu-page .card-menu .abs_circle, .menu-page .chooice_card .card-menu .abs_circle {
  top: calc(-50px + 5px);
  width: calc(90px - 10px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
      position: absolute;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    height: auto;
}
.chooice_card .card .abs_icon, .chooice_card .menu-page .card-menu .abs_icon, .menu-page .chooice_card .card-menu .abs_icon {
  position: absolute;
  bottom: -22px;
}
.chooice_card .card p, .chooice_card .menu-page .card-menu p, .menu-page .chooice_card .card-menu p {
  font-size: 16px;
  font-weight: 500;
}
.chooice_card .card h6{
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.chooice_card .card p{
  margin-bottom: 0;
  font-size: 18px;
}
.chooice_card-custom{
      gap: 50px 16px;
}

.about-us-con-img {
  display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-us-con-img .about-us-con-img_img{
  width: calc(40% - 20px);
}
.about-us-con-img .about-us-con-img_img img{
  width: 100%;
}
.about-us-con-img .about-us-con-img_text{
  width: calc(60% - 20px);
}

/*counters-site*/
/*solutions*/

.solutions .img-section-parent img, .solutions .img-section-parent .partner_swipper, .solutions .img-section-parent .news_swipper {
  border-radius: 12px;
}
.solutions .img-section-parent::after {
  content: "";
  position: absolute;
  background-color: var(--secondery-color-2);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset-block-start: 6px;
  inset-inline-start: 18px;
  transform: rotate(5deg);
}
html[dir="rtl"] .solutions .img-section-parent::after{
  transform: rotate(-5deg);
}
.solutions .img-section-parent{
  width: 35%;
}

/*solutions*/
/*contact center*/

.contact_center_cards {
  margin-bottom: 30px;
}
.contact_center_cards .card, .contact_center_cards .menu-page .card-menu, .menu-page .contact_center_cards .card-menu {
  background: #EFEBE7;
  padding: 12px 12px 45px 12px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.contact_center_cards .card .card-img, .contact_center_cards .menu-page .card-menu .card-img, .menu-page .contact_center_cards .card-menu .card-img {
  width: 100%;
  aspect-ratio: 1/0.9;
}
.contact_center_cards .card .abs_icon, .contact_center_cards .menu-page .card-menu .abs_icon, .menu-page .contact_center_cards .card-menu .abs_icon {
  position: absolute;
  bottom: -22px;
}
.contact_center_cards{
      gap: 30px 15px;
}
.contact_center_cards .card {
  border: 0;
}

/*contact center*/
/*our clients*/

.tabs {
  border-radius: 12px;
  background: #FFF;
  padding: 4px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.tabs .list-aside-item {
  padding: 10px clamp(10px, 2.4vw, 100px);
  border-radius: 8px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.tabs .list-aside-item:hover {
  color: #D9D9D9;
}
.tabs .list-aside-item.active {
  background-color: rgba(232, 139, 42, 0.1);
  color: #E88B2A !important;
}


.client-swipper-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px 10px;
}
.client_swipper {
  aspect-ratio: 2/1;
  margin-right: 0;
}
.client_swipper .swiper-wrapper {
  height: calc(100% - 22px);
  background-color: #D9D9D9;
}
.client_swipper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background-color: #F8F9FC;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.client_swipper .swiper-pagination {
  position: static !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 13px;
}
.client_swipper .swiper-pagination .swiper-pagination-bullet-active {
  background: #E88B2A !important;
}

.client_swipper .swiper-slide{
height: calc(33.3333% - 0.666667px);
}

.client_swipper-btn {
  position: absolute;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  transform: translate(-unset, -unset);
  position: relative !important;
  width: 35px;
  height: 35px;
    border-radius: 50%;
  margin: 0px;
  background: linear-gradient(90deg, #E88B2A 0.03%, #E26730 73.39%, #DF5832 100.28%);
  color: #fff;
  z-index: 1;
}
.client_swipper-btn svg{
    width: 22px;
    height: 22px;
}
.client_swipper-btn::after {
  content: " ";
}

/*our clients*/
/*news*/


.news_swipper {
  height: auto;
  background-image: unset;
  overflow: visible;
}
.news_swipper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background-color: transparent;
}
.news_swipper .swiper-pagination {
  padding-top: 35px;
}
.news_swipper .card, .news_swipper .menu-page .card-menu, .menu-page .news_swipper .card-menu {
  top: -50px;
  align-items: start;
  text-align: start;
  border: 1px solid #BDBDBD;
  width: 100%;
}
.news_swipper .card img, .news_swipper .menu-page .card-menu img, .menu-page .news_swipper .card-menu img, .news_swipper .card .partner_swipper, .news_swipper .menu-page .card-menu .partner_swipper, .menu-page .news_swipper .card-menu .partner_swipper, .news_swipper .card .news_swipper, .news_swipper .menu-page .card-menu .news_swipper, .menu-page .news_swipper .card-menu .news_swipper {
  border-radius: 12px;
}
.news_swipper .card::after, .news_swipper .menu-page .card-menu::after, .menu-page .news_swipper .card-menu::after {
  content: "";
  position: absolute;
  background-color: #E88B2A;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset-block-start: 33px;
  inset-inline-start: 38px;
  transform: rotate(6deg);
}
.news_swipper .card .swipper_img, .news_swipper .menu-page .card-menu .swipper_img, .menu-page .news_swipper .card-menu .swipper_img {
  aspect-ratio: 1.5/1;
  max-height: 300px;
}

.card, .menu-page .card-menu {
  border-radius: 12px;
  background: #FFF;
  padding: 20px;
  border: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
  position: relative;
}
.card .card_title, .menu-page .card-menu .card_title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.card .card_desc, .menu-page .card-menu .card_desc {
  color: #424446;
  font-size: 14px;
  font-weight: 400;
}

.card-icon {
  width: -moz-max-content;
  width: max-content;
}
.news_swipper .swipper_img{
      width: 70%;
          aspect-ratio: 1 / .7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 5px #00000036;
}
.news_swipper .swipper_img img{
      width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_details_list{
  padding: 0;
}
.news_details_list .news_details_img {
  border-radius: 12px;
  overflow: hidden;
      width: 150px;
    height: 100px;
            flex-shrink: 0;
}
.news_details_list_item a{
  position: absolute;
  inset: 0;
  z-index: 10;
}

/*news*/
.custom-slider-os{
	    display: flex;
    width: 100%;
    position: relative;
	        height: calc(100vh - (var(--header-height) + var(--footer-height)));
}
.custom-slider-os .custom-slider-os-item{
	    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 1199px) {
  .side-nav {
    transform: translate(-100%, -50%);
    transition: transform 0.3s ease;
    inset-inline-start: 0px;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
  }
  html[dir="rtl"] .side-nav{
    transform: translate(100%, -50%);
  }
  .side-nav.visible {
    transform: translate(0, -50%)!important;
  }
  #toggleSideNav {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 40px;
    background-color: var(--primary-color);
    position: absolute;
    color: var(--white-color);
    inset-inline-start: calc(100% - 1px);
    top: 50%;
    transform: translateY(-50%);
    border-start-end-radius: 5px;
    border-end-end-radius: 5px;
    transition: 0.3s ease;
  }
  #toggleSideNav i {
    transition: transform 0.3s ease;
    animation: arrow 1.1s infinite;
  }
  .side-nav.visible #toggleSideNav i {
    animation: none;
    transform: rotate(180deg);
  }
  .form-content {
    padding: 40px 80px;
  }
  .info-content {
    width: 40%;
  }
  .bpo-row .bpo-row-item ,
  .bpo-row .bpo-row-item:nth-of-type(5n + 4),
  .bpo-row .bpo-row-item:nth-of-type(5n + 5){
      width: 50%;
  }
  .about-us-con-img .about-us-con-img_img,
  .about-us-con-img .about-us-con-img_text{
    width: 100%;
  }
  .about-us-con-img .about-us-con-img_img img{
        width: 50%;
    display: block;
    margin: auto;
  }
  .about-us-con-img .about-us-con-img_text{
    text-align: center;
  }
  .counters-site{
    justify-content: center;
  }
  .news_details_list .news_details_img{
        width: 110px;
  }
  .hero-section .hero-txt .main-image{
        width: 35%;
  }
}

@media screen and (min-width: 992px) {
  .hero-video {
    height: calc(100vh - (var(--header-height) + var(--footer-height)));
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .txt-content {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .hero-video {
    height: calc(100vh - (var(--header-height) + var(--footer-height)));
  }
  .txt-content {
    max-width: unset;
  }
  .footer-list li > a > span {
    display: none;
  }
  /****************single product*****************/
  .why-box {
    width: 40%;
    margin: auto;
  }
  /**********single service******/
  .single-service-content .overview-img {
    aspect-ratio: 389 / 240;
    margin: auto;
  }
  .getting-start-img {
    aspect-ratio: 409 / 250;
    margin: auto;
  }
  .about-section-container
    .about-section:nth-of-type(even)
    .row
    > div:first-of-type,
  .mission-section-container
    .mission-section:nth-of-type(even)
    .row
    > div:first-of-type {
    order: 1;
  }
  .about-section-container
    .about-section:nth-of-type(even)
    .row
    > div:last-of-type,
  .mission-section-container
    .mission-section:nth-of-type(even)
    .row
    > div:last-of-type {
    order: 2;
  }
  .inclusive-content .overview-img {
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
  .contact-content {
    flex-wrap: wrap;
  }
  .contact-content .form-contact-us,
  .contact-content .map {
    width: 100%;
  }
  .contact-content .map {
    height: 400px;
  }
  .info-content {
    width: 100%;
    position: static;
    width: 100%;
  }
  .contact-content::before {
    top: 5%;
    transform: translate(-50%, 0);
    height: 540px;
    width: calc(100% - 50px);
  }
  .about-tranformation .about-video {
    flex-grow: 1;
  }
  .img-section-parent {
    max-width: 95%;
    text-align: center;
  }
  .solutions .img-section-parent,
  .img-section-parent{
        width: 80%;
    margin: auto;
  }
  .solutions .solutions-text{
    text-align: center;
  }
  .solutions .solutions-text .buttons{
    justify-content: center!important;
    flex-wrap: wrap;
  }
  .order-revers > div:first-of-type{
    order: 2;
  }
  .order-revers > div:last-of-type{
    order: 1;
  }
  .news_details_list {
    width: 100%;
    max-width: 100%;
  }
  .txt-content .symbol-icon{
        inset-inline-start: -30px;
    width: 100px;
    height: 100px;
  }
  .txt-content{
        width: 100%;
  }
  .hero-txt .first-line{
    font-size: 20px;
  }
  .hero-txt .second-line{
    font-size: 40px;
  }
  .hero-txt .third-line{
    font-size: 30px;
  }
  .hero-section .hero-txt .main-image{
    width: 45%;
        opacity: .8;
  }
}
@media screen and (min-width: 768px) {
  .mission-box:first-child,
  .mission-box:last-child {
    padding-inline-start: 70px;
  }
  .mission-box:nth-child(2),
  .mission-box:nth-child(4) {
    padding-inline-start: 185px;
  }
  .mission-box:nth-child(3) {
    padding-inline-start: 240px;
    margin: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .txt-description {
    margin-inline-start: 0px;
  }
  .title-content {
    margin-inline-start: 0px;
  }

  .title-content::before {
    inset-inline-start: -150px;
  }
  .hero-txt .first-line,
  .hero-txt .second-line {
            font-size: 25px;
  }
  .hero-txt .third-line {
    font-size: 20px;
  }
  .action-anchors {
    margin-inline-start: 0px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .menu-img {
    display: none;
  }
  .copy-text,
  .company-name {
    font-size: 12px;
  }
  .footer-list li > a {
    display: none;
    padding: 8px 12px;
  }
  .menu-item > .menu-link {
    font-size: 16px;
  }
  .mission-box .line {
    display: none;
  }
  /***********services*******/
  .page-head .subtitle {
    font-size: 26px;
  }
  .item-head .item-title {
    font-size: 18px;
  }
  .act-btn {
    font-size: 13px;
  }
  .custom-tabs .nav-link {
    font-size: 12px;
    padding: 10px 20px;
  }
  .inclusive-content .overview-img {
    width: 100%;
  }
  .why-box {
    width: 60%;
  }
  .float-buttons .float-button {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }
  .float-buttons .float-button > img {
    width: 25px;
    height: 25px;
  }
  .txt-content {
    padding-inline-end: 30px;
  }
  .bpo-row .bpo-row-item ,
  .bpo-row .bpo-row-item:nth-of-type(5n + 4),
  .bpo-row .bpo-row-item:nth-of-type(5n + 5){
      width: 100%;
      padding-left: 0;
      padding-right: 0;
  }
  .about-us-con-img .about-us-con-img_img img{
    width: 70%;
  }
  .counters-site > div{
    width: calc(50% - 15px);
  }
  .hero-section .hero-txt .main-image{
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .form-content {
    padding: 40px 50px;
  }
  .form-content .title {
    font-size: 30px;
  }
  .hexagon-container {
    grid-template-columns: unset;
  }
  .hexagon-container .hexagon-wrapper {
    width: 50%;
    margin: auto;
    padding: 1px !important;
  }
  .counters-site > div,
  .about-us-con-img .about-us-con-img_img img{
    width: 100%
  }
  .solutions .img-section-parent{
        width: 90%;
  }
  .news_swipper .swipper_img{
    width: 90%;
  }
  .single_news_images{
    width: 100%;
  }
  .txt-content{
            padding-inline-end: 20px;
        padding-inline-start: 20px;
  }
  .txt-content .symbol-icon{
            inset-inline-start: -25px;
        width: 60px;
        height: 60px;
        opacity: .7;
  }
  .hero-txt .first-line{
        font-size: 23px;
  }
}
@media screen and (max-width: 400px) {
  .why-box {
    width: 75%;
  }
}
@media screen and (max-width: 350px) {
  .why-box {
    width: 100%;
  }
}

.wpml-ls-statics-footer {
  display: none !important;
}
