@import url(./theme.css);
.site{
	
}
.site-inner-pages{
	padding-top: 80px;
    padding-bottom: 80px;
}
.menu-bar {
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
}
.menu-bar.active {
  border-color: var(--secondery-color);
}
.bar {
  width: 24px;
  height: 2px;
  background-color: var(--secondery-color);
  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: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 5px #ffffff87;
	position: absolute;
    width: 100%;
    top: 0;
    left: 0;
	z-index: 9!important;
	
}
.active-menu .logo {
  inset-inline-start: calc(100% - 106px);
}
.main-menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  padding-top: 30px;
  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;
}
.menu-item > .menu-link {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary-color);
  min-height: 90px;
}
.menu-icon {
  width: 40px;
  height: 40px;
  background-color: #f8f9fc;
  border-radius: var(--border-raduis);
  margin-bottom: 14px;
}
.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 > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video > .overlay{
	    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000059;
}
.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-section .hero-txt {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 0;
  padding: 20px;
}
.txt-content {
  max-width: 70%;
}
.title-content {
  color: var(--white-color);
  font-weight: 700;
  position: relative;
  margin-inline-start: 100px;
}
.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: 55px;
}
.hero-txt .second-line {
  font-size: 70px;
  color: var(--secondery-color);
}
.hero-txt .third-line {
  font-size: 40px;
}
.txt-description {
  font-size: 18px;
  color: var(--white-color);
  margin-inline-start: 100px;
  margin-top: 25px;
}
.action-anchors {
  margin-inline-start: 100px;
  margin-top: 20px;
}
.action-anchors > a {
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--btn-raduis);
}
.consult_anc {
  min-width: 151px;
  color: var(--primary-color);
  background-color: var(--white-color);
  margin-inline-end: 12px;
	text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.learn_anc {
  border: 1px solid var(--white-color);
  width: 125px;
  color: var(--white-color);
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
/* 	transform: translateY(var(--copyright-height)); */
    transition: 0.3s ease;
}

/*   footer:hover {
    transform: translateY(0);
  } */
.footer-list {
  background-color: #006b84ba;
  transition: 0.3s ease;
	    padding-top: 12px;
    padding-bottom: 12px;
}
.footer-inner-pages .footer-list{
	background-color: var(--primary-color)
} 
.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;
}
.footer-list li > a img{
  filter: brightness(0) invert(1);
	    width: 25px;
    height: 25px;
}
.footer-list li.active > a,
.footer-list li.current-menu-item > a{
  background-color: var(--secondery-color);
}
.copyrights {
	margin-top: 15px;
    padding: 0 10px;
}
.copyrights .menu-item{
	background-color: transparent
}
.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);
}
.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: rgba(241, 93, 42, 0.1);
  width: max-content;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondery-color);
}
.page-head .subtitle ,
.page-head .subtitle-small{
  font-size: 32px;
  font-weight: 900;
  color: var(--text-color);
  margin-top: 12px;
  margin-bottom: 20px;
  position: relative;
}
.page-head .subtitle > mark,
.page-head .subtitle-small > mark{
  color: var(--primary-color);
}
.page-head .subtitle-small{
	font-size: 25px;
}
.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: 10px;
  background-color: var(--secondery-color);
  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 {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: calc(var(--btn-raduis) / 2);
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 0;
  inset-inline-start: 10px;
}
#toggleSideNav {
  display: none;
}
.side-nav .side-item {
  width: 100%;
}
.side-nav .side-link {
  height: 30px;
  font-size: 24px;
  color: var(--white-color);
}
.side-nav .side-link.active {
  background-color: rgba(255, 255, 255, 0.15);
}
.side-nav .side-link img{
	filter: brightness(0) invert(1);
	width: 20px;
    height: 20px;
    object-fit: contain;
}
.item-content {
  background-color: var(--white-color);
  border-radius: var(--border-raduis);
  padding: 20px;
	transition: all .7s;
    border: 1px solid #fff;
	position: relative;
    top: 0px;
    inset-inline-start: 0px;
}
.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 .7s;
    top: 10px;
    inset-inline-end: 0px;
	    transform: scale(0);
    opacity: 0;
}
.item-content:hover::before{
	inset-inline-end: 10px;
	    transform: scale(1);
    opacity: 1;
}
.item-content:hover{
	    background-color: #e9faff;
    box-shadow: 10px 10px 0px #dbecf1;
    border-color: #dbecf1;
    top: -10px;
    inset-inline-start: -10px;
}
html[dir="rtl"] .item-content:hover{
	box-shadow: -10px 10px 0px #dbecf1;
}
.item-head {
  display: flex;
  align-items: center;
}
.products-content .item-head .item-icon,
.service-content .item-head .item-icon {
  font-size: 28px;
  color: #939393;
  margin-inline-end: 12px;
/*   background-color: #f8f9fc; */
  padding: 5px 8px;
  border-radius: var(--btn-raduis);
}
.products-content .item-head .item-icon img,
.service-content .item-head .item-icon img{
	    width: 40px;
    height: 40px;
    object-fit: contain;
}
.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;
}
.gradient-btn {
  background: linear-gradient(to right, #1e7da3 0%, #1d5166 100%);
  color: var(--white-color);
}
.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 {
  background-color: var(--white-color);
  padding: 24px;
  border-radius: var(--border-raduis);
}
.form-content .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.form-label {
  font-size: 16px;
  color: var(--text-color);
}
.custom-input {
  height: 44px;
  border-radius: var(--btn-raduis);
  -webkit-text-fill-color: #929292;
  color: #929292;
  background-color: #f8f9fc;
  font-size: 14px;
  padding: 2px 12px;
  border: none;
}
.custom-input:focus {
  background-color: #f8f9fc;
}
textarea.custom-input {
  height: auto;
}
.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 {
  background: linear-gradient(to left, #1e7da3 0%, #1d5166 100%);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  width: 123px;
  height: 45px;
  border-radius: var(--btn-raduis);
}
.mail-us > a {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondery-color);
}
.mail-us > a:hover {
  color: var(--primary-color);
}
/*****************careers*****************/
.jops-section{
	
}
.career-item {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: var(--border-raduis);
	display: block;
	position: relative;
	transition: all .7s;
	top: 0;
	cursor: pointer
}
.career-item a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50
}
.career-item:hover{
	top: -5px;
	    box-shadow: 0 5px 5px #0000002b;
}
.career-item .head .title {
  font-size: 20px;
  font-weight: 700;
}
.career-item .icon,
.career-item .title{
	margin-bottom: 0;
}

.career-item .title{
	font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
    text-transform: capitalize;
}
.career-item i{
	    color: var(--secondery-color);
    font-size: 26px;
    position: absolute;
    inset-inline-end: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.career-item .icon{
	
}
.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: 10px;
    width: 35px;
}
.float-buttons .float-button{
	    width: 35px;
    height: 35px;
    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 .7s
}
.float-buttons .float-button > i{
	font-size: 25px;
}
.float-buttons .float-button > img{
	    width: 20px;
    height: 20px;
    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;
	pointer-events: all;
}
.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: 35px;
    height: 35px;
    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: 5px;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 5px #00000038;
	opacity: 0;
    visibility: hidden;
    transition: all .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;
}

.float-buttons .float-button.float-button-ai{
	background-color: #0d0d0d;
	    box-shadow: 0 0 5px #0d0d0d inset;
	display: none
}
.float-buttons .float-button.float-button-ai > span{
	border-color: #0d0d0d
}
.float-buttons .float-button.float-button-ai p{
	    margin: 0;
    font-weight: 500;
    font-size: 25px;
}

@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*/
/*chatbot*/

.chatbot {
  position: absolute;
  bottom: calc(100% - 10px);
  inset-inline-end: 0%;
  z-index: 5;
/*   transform: translate(0px, -75%); */
  width: clamp(140px, 20vw, 245px);
  cursor: pointer;
}
.chatbot .image-chat-pot-container .img{
	    width: 130px;
	z-index: 1
}

html[dir="rtl"] .chatbot .image-chat-pot-container .img{
	transform: scalex(-1);
}
.chatbot .image-chat-pot-container .img.close-in{
	display: none
}
.chatbot .chat_card {
  display: none;
  position: absolute;
  top: 0px;
  inset-inline-end: 15px;
  transform: translate(0px, -100%);
  width: clamp(280px, 23vw, 400px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	z-index: 10
}
.chatbot .chat_card.open {
  display: block;
}
.chatbot .chat_card .card-header {
  width: 100%;
  padding: 10px 15px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondery-color) 100%);
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.chatbot .chat_card .card-header .logo-respose-chat{
	filter: brightness(0) invert(1);
}
.chatbot .chat_card .card-header .card-header-name{
	    display: flex;
    align-items: center;
    gap: 5px;
}
.chatbot .chat_card .card-header .card-header-name h6{
	font-size: 14px;
    text-shadow: 0 0 1px #fff;
}
.chatbot .chat_card .card-header .iconsss{
	    display: flex;
    align-items: center;
    gap: 5px;
}
.chatbot .chat_card .card-header .iconsss img{
	    width: 25px;
    height: 25px;
    object-fit: contain;
}
.chatbot .chat_card .status {
  color: #E9E9E9;
  font-size: 13px;
  font-weight: 400;
	margin-top: 0;
	margin-bottom: 0;
}
.chatbot .chat_card .status::before {
  content: "";
  display: inline-block;
  margin-inline-end: 5px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.chatbot .chat_card .status.online::before {
  background-color: #81C784;
}
.chatbot .chat_card .status.offline::before {
  background-color: red;
}
.chatbot .chat_card .card-body {
  padding: 12px;
  background-color: #fff;
}
.chatbot .chat_card .card-body .pin-msg {
  padding: 12px;
  border-radius: 12px;
  background: rgba(232, 139, 42, 0.1);
  width: 100%;
}
.chatbot .chat_card .card-body .text-muted {
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
.chatbot .chat_card .card-body .chat_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.chatbot .chat_card .card-body .chat_form textarea.form-control {
	border-color: #e3e6e9;
    border-style: solid;
    border-width: 1px;
}
html[dir="rtl"] .chatbot .chat_card .card-body .chat_form textarea.form-control{
	border-right-width: 1px;
	border-left-width: 0px;
}
.chatbot .chat_card .card-body .chat_form .input-group-text {
  background-color: transparent;
}
html[dir="rtl"] .chatbot .chat_card .card-body .chat_form .input-group-text{
	transform: scaleX(-1);
}
.chatbot .chat_card .card-body .chat_form .chat {
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.chatbot .chat_card .card-body .chat_form .chat .Ai,
.chatbot .chat_card .card-body .chat_form .chat .sender{
	position: relative
}
.chatbot .chat_card .card-body .chat_form .chat .msg {
  border-radius: 6px;
  padding: 7px 10px;
}
.chatbot .chat_card .card-body .chat_form .chat .msg iframe{
	width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    height: auto;
}
.chatbot .chat_card .card-body .chat_form .chat .Ai {
  width: 100%;
	gap: 3px 10px;
}
.chatbot .chat_card .card-body .chat_form .chat .Ai .msg {
  background-color: rgba(232, 139, 42, 0.1);
  color: #1D1D1D;
}
.chatbot .chat_card .card-body .chat_form .chat .sender {
  text-align: left;
  width: 100%;
}
.chatbot .chat_card .card-body .chat_form .chat .sender .msg {
  background-color: #DF5832;
  color: #fff;
}
.chatbot .chat_card .card-body .chat_form .chat .msg-option{
    width: 100%;
    display: flex;
    gap: 5px;
    position: absolute;
    top: calc(100% + 5px);
}
.chatbot .chat_card .card-body .chat_form .chat .Ai .msg-option{
	inset-inline-start: 0;
    padding-inline-start: 36px;
}
.chatbot .chat_card .card-body .chat_form .chat .sender .msg-option{
	inset-inline-end: 0;
    padding-inline-end: 36px;
}
.chatbot .chat_card .card-body .chat_form .chat .msg-option .read-text-option {
	width: 17px;
    height: 17px;
    background-color: var(--primary-color);
    border-radius: 50%;
	    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.chatbot .chat_card .card-body .chat_form .chat .msg-option .read-text-option svg{
	width: 10px;
    height: 10px;
	display: none;
	cursor: pointer;
}
.chatbot .chat_card .card-body .chat_form .chat .msg-option .read-text-option svg.active{
	display: block;
}
.chatbot .chat_card .card-body .chat_form .chat .msg-option .read-text-option svg.waiting-timing{
	animation: rotate 2s infinite
}

.chatbot .chat_card .card-body .chat-content {
  max-height: 250px;
  overflow: auto;
  padding-inline-end: 10px;
	position: relative
}
.chatbot .chat_card .card-body .chat-content .overlay-in{
	    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffffb3;
    z-index: 10;
    transition: all .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
}
.chatbot .chat_card .card-body .chat-content .overlay-in.hide{
	opacity: 0;
	visibility: hidden
}
.chatbot .chat_card .card-body .chat-content .overlay-in .loading-ball{
	    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-style: solid;
    border-width: 5px;
    border-color: var(--primary-color) var(--secondery-color);
    opacity: .5;
	animation: rotate 2s infinite
}
.logo-respose-chat{
	width: 25px;
    height: 25px;
    object-fit: contain;
}

.chatbot .chat_card .card-body .chat_form .chat .waiting-reply-ai{
	
}
.chatbot .chat_card .card-body .chat_form .chat .waiting-reply-ai .msg{
	    background-color: #dedede;
    height: 30px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0;
	animation: upp .5s ease-in-out;
}
.chatbot .chat_card .card-body .chat_form .chat .waiting-reply-ai .msg span{
	    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
	animation: waiting_replay 1s infinite alternate ease-in-out;
}
.chatbot .chat_card .card-body .chat_form .chat .waiting-reply-ai .msg span:nth-of-type(1){
	animation-delay: .1s;
}
.chatbot .chat_card .card-body .chat_form .chat .waiting-reply-ai .msg span:nth-of-type(2){
	animation-delay: .2s;
}
.chatbot .chat_card .card-body .chat_form .chat .waiting-reply-ai .msg span:nth-of-type(3){
	animation-delay: .3s;
}
.chatbot .image-chat-pot-container{
	position: relative;
    width: fit-content;
}
.chatbot .image-chat-pot-container .image-chat-pot-container_text{
    position: absolute;
	z-index: 2;
    bottom: 60%;
    inset-inline-end: 75%;
    min-width: 110px;
    padding: 10px;
    background-color: #00000057;
    border-radius: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondery-color);
    font-weight: bold;
    font-size: 13px;
    backdrop-filter: blur(3px);
}
html[dir="rtl"] .chatbot .image-chat-pot-container .image-chat-pot-container_text{
	    font-size: 11px;
	    min-width: 150px;
	    bottom: 65%;
    inset-inline-end: 85%;
}
.chatbot .chat-voice{
	width: 100%
}
.chatbot .chat-voice .chat-voice-container{
	    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
	margin-top: 6px
}
.chatbot .chat-voice .chat-voice-in{
	    width: 20px;
    height: 20px;
    position: relative;
	cursor: pointer
}
.chatbot .chat-voice .chat-voice-in img{
	    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .7s;
	z-index: 10
}
.chatbot .chat-voice .chat-voice-in .ball-big-rep{
	position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    background-color: var(--secondery-color);
    opacity: .2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    transition: all .7s;
}
.chatbot .chat-voice .chat-voice-in.active .chat-voice_voice_to_text_open{
	opacity: 1
}
.chatbot .chat-voice .chat-voice-in.active .chat-voice_voice_to_text_close{
	opacity: 0
}
.chatbot .chat-voice .line-voice{
	    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}
.chatbot .chat-voice .line-voice > div{
	    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 0%;
    background-color: #6c6c6c;
}
.chatbot .chat-voice .line-voice-container{
	    height: 0px;
	overflow: hidden;
}
.chatbot .chat-voice .counter-voice{
	text-align: end;
}
.chatbot .chat-voice .counter-voice > span{
	    color: var(--secondery-color);
    font-weight: 500;
    font-size: 13px;
}
.expected-questions-chatbots{
	    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    padding: 5px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 5px;
	align-items: center
}
.expected-questions-chatbots_text{
	    margin: 0;
    background-color: #006b84c2;
    padding: 5px 15px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 5px;
}


@keyframes waiting_replay{
	0%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(-5px);
	}
	100%{
		transform: translateY(2px);
	}
}
@keyframes upp{
	0%{
		transform: scale(0);
	}
	100%{
		transform: scale(1);
	}
}
@keyframes rotate{
	0%{
		transform: rotate(0);
	}
	100%{
		transform: rotate(360deg);
	}
}

/*chatbot*/
/*404*/

._404-page .page-content{
	text-align: center
}

._404-page ._404-image ._404-image-container{
	position: relative;
	width: fit-content;
	margin: auto
}
._404-page ._404-image ._404-image-container ._404-number{
	    position: absolute;
    z-index: 2;
    bottom: 60%;
    inset-inline-end: 80%;
    color: var(--secondery-color);
    font-weight: bold;
    font-size: 120px;
    line-height: 1;
    text-shadow: 0 12px 3px var(--primary-color);
}
._404-page ._404-image img{
	width: 260px;
	position: relative;
	z-index: 1
}

/*404*/

@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: 20px;
    height: 30px;
    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);
  }
}

@media screen and (min-width: 992px) {
  .hero-video {
    height: 100vh
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .txt-content {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .hero-video {
    height: 100vh
  }
  .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;
	}
}
@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: 35px;
  }
  .hero-txt .third-line {
    font-size: 20px;
  }
  .action-anchors {
    margin-inline-start: 0px;
    margin-top: 90px;
  }
  .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;
  }
  .breadcrumb {
    display: none;
  }
  .page-title {
    margin-bottom: 24px;
  }
  .custom-tabs .nav-link {
    font-size: 12px;
    padding: 10px 20px;
  }
	.inclusive-content .overview-img{
		width: 100%
	}
	.why-box {
		    width: 60%;
	  }


	.txt-content{
		    padding-inline-end: 30px;
	}
	.float-buttons .float-button.float-button-ai{
		display: flex
	}
	.chatbot .image-chat-pot-container{
		display: none
	}

	.chatbot .chat_card{
		    position: fixed;
		top: 50%;
		bottom: auto;
		left: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% - 30px);
/* 		height: calc(100% - 30px); */
	}
	.chatbot .chat_card .card-body .chat-content{
		max-height: 250px;
	}
}
@media screen and (max-width: 567px){
	.chatbot .image-chat-pot-container .img{
		    width: 90px;
	}
	._404-page ._404-image img{
		    width: 130px;
	}
	._404-page ._404-image ._404-image-container ._404-number{
		    font-size: 70px;
	}
}
@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;
}