:root {
  --primary: #00C7BE;
  --secondary: #333;
  --filterPrimary:invert(57%) sepia(27%) saturate(3643%) hue-rotate(137deg) brightness(99%) contrast(101%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

@font-face {
  font-family: "rb_light";
  src: url(../fonts/rb/light.TTF);
}
@font-face {
  font-family: "rb_regular";
  src: url(../fonts/rb/regular.TTF);
}
@font-face {
  font-family: "rb_bold";
  src: url(../fonts/rb/bold.TTF);
}
* {
  margin: 0px;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "rb_regular";
  scroll-behavior: smooth;
}
*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}
*::selection {
  background-color: var(--primary);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 7px;
}
*::-webkit-scrollbar-track {
  background-color: #eee;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

body {
  direction: rtl;
  overflow-x: hidden;
}

div::-webkit-scrollbar,
ul::-webkit-scrollbar,
nav::-webkit-scrollbar {
  height: 5px;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

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

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

.filterPrimary {
  filter: var(--filterPrimary);
}

.filterSecondary {
  filter: var(--filterSecondary);
}

.filterWhite {
  filter: var(--filterWhite);
}

p,
.p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
  margin-bottom: 0;
}

a {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
a:hover {
  color: var(--primary) !important;
}
a:focus {
  outline: 0;
}

del,
.del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
}
button:focus {
  border: none;
  box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  transition: all 0.3s ease;
  outline: 0;
  box-shadow: none;
}

form .form-group {
  position: relative;
}
form .form-control {
  font-size: 14px;
}
form .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}
form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}
form textarea {
  resize: none;
}
form .form-check-input {
  height: 1em !important;
}

.progress-wrap {
  position: fixed;
  inset-inline-end: 15px;
  bottom: 15px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateY(130%);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 10.5px;
  top: 10.5px;
  height: 25px;
  width: 25px;
  display: block;
  filter: var(--filterPrimary);
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.secImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

.trans_3 {
  transition: all 0.3s linear;
}

/**********************************************
   Start Loader
**********************************************/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999;
  pointer-events: none;
  /*----------- upload loader ------------*/
}
#preloader::after, #preloader::before {
  content: "";
  position: fixed;
  left: 0;
  height: 50%;
  width: 100%;
  background: linear-gradient(to right, #0d1a36, #132650, #0a152e);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#preloader::before {
  top: 0;
}
#preloader::after {
  bottom: 0;
}
#preloader .logo_img {
  width: 300px;
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0.5;
}
#preloader #loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: none;
  transition: all 0.5s ease;
}
#preloader #loading-wrapper.show {
  display: block;
}
#preloader #loading-wrapper #loading-text {
  display: block;
  position: absolute;
  top: calc(50% - 38px);
  left: 50%;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
#preloader #loading-wrapper img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
#preloader #loading-wrapper #loading-content {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}
#preloader #loading-wrapper #loading-content::after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}
#preloader #loading-wrapper #loading-content::before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
#preloader #loading-wrapper #loading-content {
  border: 3px solid transparent;
  border-top-color: #3659A3;
  border-bottom-color: #3659A3;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#preloader #loading-wrapper #loading-content::before {
  border: 3px solid transparent;
  border-top-color: #0aafde;
  border-bottom-color: #0aafde;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#preloader #loading-wrapper #loading-content::after {
  border: 3px solid transparent;
  border-top-color: #E33F74;
  border-bottom-color: #E33F74;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}
#preloader.isdone {
  visibility: hidden;
  transition-delay: 1.5s;
}
#preloader.isdone #loading-wrapper {
  opacity: 0;
  transform: scale(3);
  filter: blur(2px);
}
#preloader.isdone::after, #preloader.isdone::before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 1s;
}
#preloader #content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}
#preloader #header {
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}
#preloader #content {
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/**********************************************
   Start Animations
**********************************************/
@keyframes floating-y {
  0% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-2px);
  }
}
@keyframes floatingX {
  0% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
.slide_ltr {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.slide_ltr.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_ltr.no_scale {
  transform: scale(1);
}

.slide_rtl {
  transform: scale(1.05);
  transition: all 1s ease-in-out;
  transition-delay: 0.1s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.slide_rtl.animated {
  transform: scale(1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.slide_rtl.no_scale {
  transform: scale(1);
}

@keyframes puff-in {
  0% {
    transform: scale(1.2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.puff-in {
  animation: puff-in 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination,
.section .swiper-pagination {
  bottom: 0;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet,
.section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active,
.section .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev,
.section .swiper-button-next,
.section .swiper-button-prev {
  background-image: unset;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 50%;
  background-image: unset;
  background-color: var(--primary);
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before,
.section .swiper-button-next::before,
.section .swiper-button-prev::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s linear;
}
.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover,
.section .swiper-button-next:hover,
.section .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}
.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before,
.section .swiper-button-next:hover::before,
.section .swiper-button-prev:hover::before {
  color: #fff;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev,
.section .swiper-button-next,
.section .swiper-container-rtl .swiper-button-prev {
  right: 2%;
  left: auto;
}
.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before,
.section .swiper-button-next::before,
.section .swiper-container-rtl .swiper-button-prev::before {
  content: "\f105";
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next,
.section .swiper-button-prev,
.section .swiper-container-rtl .swiper-button-next {
  left: 2%;
  right: auto;
}
.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before,
.section .swiper-button-prev::before,
.section .swiper-container-rtl .swiper-button-next::before {
  content: "\f104";
}

.butn {
  position: relative;
  padding: 0.7rem 1.7rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  border: 1px solid transparent;
  border-radius: 0;
}
.butn i {
  margin-inline-end: 7px;
}
.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}
.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}
.butn.primary_border_butn {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}
.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}
.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}
.butn.white_butn {
  background-color: #fff;
  color: #2A2A2A;
}
.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}
.butn:hover {
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff !important;
}
.butn:hover .icon {
  filter: var(--filterWhite);
}

.icon18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar .logo {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.navs-container .navbar .nav-link {
  color: #2A2A2A;
  font-size: 19px;
  margin: 0 1vw;
  position: relative;
  padding: 0.7rem 0.6rem;
}
.navs-container .navbar .nav-link::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  opacity: 0;
}
.navs-container .navbar .nav-link.active::after {
  opacity: 1;
}
.navs-container .navbar .nav_end .iso_logo {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-end: 15px;
}
.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  transform: rotate(45deg);
}
.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  transform: rotate(135deg);
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: 0.5s;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}
.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer .newsletter_box .inner {
  border: 1px solid #B2B2B2;
  background-color: #fff;
  margin-bottom: -130px;
  position: relative;
  z-index: 5;
}
.footer .newsletter_box .inner .img_box {
  height: 280px;
  position: relative;
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.footer .newsletter_box .inner .img_box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.177);
  z-index: 1;
}
.footer .newsletter_box .inner .form_box .form-control {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
  border-radius: 35px;
  min-height: 60px;
}
.footer .newsletter_box .inner .form_box .submit_butn {
  position: absolute;
  inset-inline-end: 5px;
  top: 5px;
  border-radius: 50%;
}
.footer .footer_outer {
  padding-top: 200px;
  background-color: #F3F3F3;
}
.footer .footer_outer .content {
  margin-bottom: 30px;
}
.footer .footer_outer .content .logo {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}
.footer .footer_outer .content .p {
  font-size: 16px;
}
.footer .footer_outer .content .title {
  margin-bottom: 20px;
  font-size: 18px;
}
.footer .footer_outer .content .title::after {
  content: "";
  width: 35px;
  height: 1px;
  display: block;
  background-color: var(--primary);
  margin-top: 15px;
}
.footer .footer_outer .content .links a {
  display: block;
  margin-bottom: 15px;
  position: relative;
  padding-inline-start: 15px;
  font-size: 15px;
  color: #666;
}
.footer .footer_outer .content .links a::before {
  content: "\f111";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  font-size: 6px;
  position: absolute;
  top: 9px;
  inset-inline-start: 0;
  color: var(--primary);
}
.footer .footer_outer .content .contacts .item {
  font-size: 15px;
  margin-bottom: 15px;
}
.footer .footer_outer .content .contacts .item i {
  color: var(--primary);
  margin-inline-end: 5px;
}
.footer .footer_outer .foot {
  padding: 15px 0;
  background-color: #000000;
}
.footer .footer_outer .foot .p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6862745098);
}
/*.footer .footer_outer .foot .p a {*/
/*    display: none;*/
/*}*/
.footer .footer_outer .foot .p .alyomLogo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline-start: 5px;
}
.footer .footer_outer .foot .social_links a {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  background: #1f1f1f;
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 14px;
}
.footer .footer_outer .foot .social_links a:hover {
  background-color: var(--primary);
  color: #fff !important;
}
.footer .footer_outer .pattern {
  width: 15%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}

.whatsapp-btn {
  position: fixed;
  left: 70px;
  bottom: 15px;
  z-index: 999;
  width: 45px;
  height: 45px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/

.header .item {
  min-height: 95vh;
  padding: 0 0 50px 0;
}
.header .item .almulhim {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .item .title_bordered {
  font-size: calc(12vw + 22px);
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7490196078);
}
.header .item .txt_box .title {
  color: #fff;
  font-size: calc(2vw + 15px);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.header .item .txt_box .title::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  display: block;
  margin-top: 15px;
}
.header .item .txt_box .p {
  color: #fff;
}
.header .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-image: transparent;
  background-color: rgba(0, 0, 0, 0.3333333333);
  z-index: 1;
}
.header .item .lines {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.header .item .lines::after, .header .item .lines::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
}
.header .item .lines::after {
  left: 20%;
}
.header .item .lines::before {
  right: 20%;
}
.header .swiper_header .swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 28px;
  right: 9%;
  bottom: 35%;
  direction: ltr;
}
.header .swiper_header .swiper-pagination .swiper-pagination-current {
  font-size: 60px;
  color: #E6F2FB;
}
.header .swiper_header .swiper-button-next,
.header .swiper_header .swiper-button-prev {
  border-color: #fff;
  background-color: transparent;
  top: unset;
  bottom: 100px;
}
.header .swiper_header .swiper-button-next::before,
.header .swiper_header .swiper-button-prev::before {
  color: #fff;
}
.header .swiper_header .swiper-button-next,
.header .swiper_header .swiper-container-rtl .swiper-button-prev {
  left: 80px;
  right: unset;
}
.header .swiper_header .swiper-button-prev,
.header .swiper_header .swiper-container-rtl .swiper-button-next {
  left: 150px;
  right: unset;
}

.about_sec .bg {
  height: 70%;
  top: unset;
  bottom: 70px;
}
.about_sec::before {
  content: "";
  width: 330px;
  height: 260px;
  border-radius: 40%;
  background-color: rgba(0, 199, 190, 0.2);
  filter: blur(50px);
  position: absolute;
  top: -10%;
  right: -10%;
}

.services_sec {
  background: #141319;
}
.services_sec .txt_box .ul li {
  color: #fff;
  margin-bottom: 10px;
  display: block;
  position: relative;
  padding-inline-start: 20px;
  font-size: 16px;
  line-height: 1.7;
}
.services_sec .txt_box .ul li::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  display: inline-block;
  font-size: 8px;
  position: absolute;
  top: 7px;
  inset-inline-start: 0;
  color: var(--primary);
}
.services_sec .serv_card {
  background-color: #1D1C24;
  padding: 50px 4vw;
  position: relative;
  height: calc(100% - 25px);
  margin-bottom: 25px;
  text-align: center;
}
.services_sec .serv_card .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
  filter: var(--filterPrimary);
}

.services_sec .serv_card .icon-more {
  object-fit: contain;
    display: inline-flex;
    margin: 0;
    color: var(--primary);
    margin-top: 30px;
}

.services_sec .serv_card .title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}
.services_sec .serv_card .p {
  font-size: 16px;
  color: #C3C3C3;
  min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.services_sec .serv_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}

.title_w_line {
  position: relative;
}
.title_w_line::after {
  content: "";
  width: 35px;
  height: 1px;
  display: inline-block;
  margin-inline-start: 15px;
  background-color: var(--primary);
}

.iso_sec .item {
  margin-bottom: 25px;
}
.iso_sec .item .iso_logo {
  width: 170px;
  height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
}

.iso_sec .item .iso_img {
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 25px auto;
}

.iso_sec .item .title {
  text-align: center;
  color: #535353;
  font-weight: bold;
  font-size: 18px;
}
.iso_sec .bg {
  top: unset;
  bottom: -100px;
}

.partners_sec {
  background-color: #F3F3F3;
}
.partners_sec .logo {
  max-width: 85%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
}
.partners_sec .swiper-button-next,
.partners_sec .swiper-button-prev {
  width: 35px;
  height: 35px;
  top: unset;
  bottom: 90px;
}

.feedback_sec .swiper-slide {
    height: auto;
}

.feedback_sec .feedback_card {
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.0666666667);
  position: relative;
  padding: 40px 2vw;
  background-color: #fff;
  transform: scale(0.99);
  height: 100%;
}
.feedback_sec .feedback_card .p {
  color: #2F2F2F;
}
.feedback_sec .feedback_card .prod_data .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline-end: 15px;
}
.feedback_sec .feedback_card .prod_data .name {
  font-size: 17px;
}
.feedback_sec .feedback_card::before {
  display: block;
  content: "";
  background: url(../images/icons/quotes.svg) no-repeat center;
  background-size: contain;
  width: 60px;
  height: 40px;
  margin-bottom: 20px;
}
.feedback_sec .pattern {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 34%;
}

.statics_sec .item {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.statics_sec .item .icon_box {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  padding: 13px;
  border-radius: 50%;
  background-color: var(--primary);
  margin-inline-end: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.statics_sec .item .icon_box .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.statics_sec .item .counter {
  font-size: 45px;
  margin-inline-end: 15px;
}
.statics_sec .item .txt_content h5 {
  font-size: 20px;
  font-weight: bold;
}
.statics_sec .item .txt_content .p {
  font-size: 15px;
}
.statics_sec .title_bordered {
  font-size: calc(12vw + 22px);
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(98, 98, 98, 0.1607843137);
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.innerhead {
  position: relative;
  background-color: #8C8C8C;
  padding: 50px 0;
  color: #fff;
}
.innerhead a {
  color: #fff;
}
.innerhead .img-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.innerhead .log {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.innerhead .links {
  padding: 30px 0;
}
.innerhead .content {
  position: relative;
}
.innerhead .content::after {
  position: absolute;
  content: "";
  left: 35%;
  top: calc(50% - 10px);
  width: 30%;
  height: 20px;
  border-top: 20px dotted #fff;
  opacity: 0.1;
}

.about-pg-about {
  position: relative;
}
.about-pg-about .text {
  font-size: 18px;
}
.about-pg-about .imgs {
  position: relative;
}
.about-pg-about .imgs img {
  position: relative;
}
.about-pg-about .imgs img:nth-of-type(1) {
  width: 50%;
  height: 300px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-inline-start: auto;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
.about-pg-about .imgs img:nth-of-type(2) {
  width: 70%;
  height: 350px;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -150px;
  z-index: 10;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
.about-pg-about .imgs .gear {
  position: absolute;
  right: 50px;
  top: 50px;
  height: 200px;
  z-index: 20;
  filter: drop-shadow(10px 10px 3px rgba(0, 0, 0, 0.3333333333));
}
.about-pg-about .exp-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-pg-about .exp-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/exp-bg1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.5;
  animation: rotate-center 30s linear infinite both;
}
.about-pg-about .exp-wrapper .box {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9450980392);
}
.about-pg-about .exp-wrapper .box h2 {
  font-size: 50px;
  font-weight: bold;
  color: var(--primary);
}
.about-pg-about .bg {
  transform: rotate(180deg);
}

.about-pg-vision {
  position: relative;
  background-color: #141319;
}
.about-pg-vision .cards {
  position: relative;
}
.about-pg-vision .cards .item {
  position: relative;
  background-color: #1D1C24;
  color: #fff;
  border-radius: 15px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0196078431);
  padding: 50px;
  text-align: center;
  margin-bottom: 30px;
  height: calc(100% - 30px);
}
.about-pg-vision .cards .item .icon {
  height: 50px;
  margin-bottom: 20px;
  filter: invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(1000%) contrast(103%);
}
.about-pg-vision .cards .item h3 {
  color: var(--primary);
  margin-bottom: 15px;
}
.about-pg-vision .cards .item .text {
  font-size: 14px;
  color: #777;
}

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
.rotate-center {
  animation: rotate-center 20s linear infinite both;
}
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.boss-word {
  position: relative;
  padding: 100px 0;
  background-image: linear-gradient(to bottom, #f5f5f5, transparent);
}
.boss-word .pattern {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 34%;
}
.boss-word .content-box {
  position: relative;
  background-color: #1D1C24;
  color: #fff;
  padding: 5vw;
  z-index: 20;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.031372549);
}
.boss-word .content-box::before {
  position: absolute;
  content: "";
  left: -20px;
  top: -20px;
  width: 30%;
  height: 30%;
  z-index: -1;
  border-top: 10px solid var(--primary);
  border-left: 10px solid var(--primary);
}
.boss-word .content-box::after {
  position: absolute;
  content: "";
  right: -20px;
  bottom: -20px;
  width: 30%;
  height: 30%;
  z-index: -1;
  border-bottom: 10px solid var(--primary);
  border-right: 10px solid var(--primary);
}
.boss-word .content-box .text {
  font-size: 16px;
  color: #666;
}
.boss-word .img {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.boss-word .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-pg-det {
  position: relative;
}
.service-pg-det .banner-box {
  position: relative;
  padding: 80px 0;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  z-index: 20;
}
.service-pg-det .banner-box::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}
.service-pg-det .banner-box .content {
  position: relative;
  z-index: 20;
}
.service-pg-det .banner-box .content h1 {
  font-size: 60px;
  margin-bottom: 30px;
}
.service-pg-det .services-details {
  position: relative;
  margin-top: 50px;
}
.service-pg-det .services-details .nav-pills {
  padding: 30px;
  border: 1px solid var(--primary);
  border-radius: 20px;
}
.service-pg-det .services-details .nav-pills .nav-item .nav-link {
  width: 100%;
  padding: 15px 30px;
  background-color: #f0f0f0;
  border-radius: 30px;
  color: #000;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
}
.service-pg-det .services-details .nav-pills .nav-item .nav-link:hover, .service-pg-det .services-details .nav-pills .nav-item .nav-link.active {
  background-color: #111;
  color: #fff;
}
.service-pg-det .services-details .service-det-tab .imgs .img {
  position: relative;
  margin-top: 30px;
}
.service-pg-det .services-details .service-det-tab .imgs .img img {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.team-pg {
  position: relative;
}
.team-pg .team-cards .item {
  position: relative;
  margin-bottom: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 5px;
  height: calc(100% - 30px);
}
.team-pg .team-cards .item .img {
  position: relative;
  height: 330px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 10;
}
.team-pg .team-cards .item .img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8196078431), transparent);
}
.team-pg .team-cards .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-pg .team-cards .item .img .social-icons {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.team-pg .team-cards .item .img .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1333333333);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 12px;
  color: #fff;
}
.team-pg .team-cards .item .img .social-icons a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff !important;
}
.team-pg .team-cards .item .info {
  position: relative;
  padding: 15px 10px;
  text-align: center;
}

.team-pg .team-cards .item .info h4 {
    font-size: 18px;
}

.all-team {
  position: relative;
  background-color: #141319;
  color: #fff;
  padding: 80px 0 200px;
}
.all-team .main-img {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 80px;
  z-index: 20;
  outline: 1px solid rgba(255, 255, 255, 0.2);
  outline-offset: 10px;
}
.all-team .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.all-team .shap {
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  opacity: 0.1;
}

.contact-pg {
  position: relative;
}
.contact-pg .bg {
  left: 0;
  right: auto;
  top: 20%;
  width: 30vw;
  height: 30vw;
}
.contact-pg .info-cards {
  position: relative;
  padding: 30px;
  background-image: linear-gradient(45deg, transparent, #edeaea);
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.contact-pg .info-cards .card-title {
  font-size: 20px;
  margin-bottom: 30px;
}
.contact-pg .info-cards .item {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0;
  line-height: 2;
}
.contact-pg .info-cards .item .icon {
  font-size: 25px;
  color: var(--primary);
  border-inline-end: 2px solid var(--primary);
  padding-inline-end: 15px;
  margin-inline-end: 30px;
  width: 60px;
  flex-shrink: 0;
}
.contact-pg .info-cards .item .social-links a {
  font-size: 16px;
  margin-inline-end: 20px;
}
.contact-pg .map {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
}
.contact-pg .map iframe {
  margin-bottom: -6px;
}
.contact-pg .form-box {
  position: relative;
  background-image: linear-gradient(45deg, #141319, #2f2d3a);
  border: 1px solid rgba(0, 199, 190, 0.1333333333);
  border-radius: 20px;
  margin-top: 150px;
}
.contact-pg .form-box .info-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 400px;
  padding: 50px;
  text-align: center;
  background-image: url(../images/about-1.png);
  background-size: cover;
  color: #fff;
  min-height: calc(100% + 80px);
  margin-top: -80px;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
}
.contact-pg .form-box .info-box::after {
  position: absolute !important;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 0 !important;
}
.contact-pg .form-box .info-box::before {
  position: absolute;
  content: "";
  top: 0;
  left: -1px;
  width: 150px;
  height: 80px;
  background-color: #fff;
  z-index: 5;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 0, 0 100%);
          clip-path: polygon(0 100%, 0 0, 100% 0, 0 100%);
}
.contact-pg .form-box .info-box * {
  position: relative;
  z-index: 5;
}
.contact-pg .form-box .info-box .social-links {
  position: relative;
  margin-top: 20px;
}
.contact-pg .form-box .info-box .social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.contact-pg .form-box .form {
  position: relative;
  padding: 3vw;
  color: #fff;
}
.contact-pg .form-box .form .form-group {
  position: relative;
  margin-top: 20px;
}
.contact-pg .form-box .form .form-group .form-control {
  border: 0;
  border-radius: 10px;
  background-color: #1D1C24;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.0196078431);
  border: 1px solid rgba(153, 153, 153, 0.2);
  margin-top: 15px;
  min-height: 55px;
  padding: 10px 20px;
}

.gallery-pg {
  position: relative;
}
.gallery-pg .nav-pills.main-pills {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  background-image: linear-gradient(45deg, #141319, #2f2d3a);
  padding: 10px 5px;
  border-radius: 10px;
  border: 1px solid rgba(0, 199, 190, 0.1333333333);
  margin-bottom: 50px;
}
.gallery-pg .nav-pills.main-pills .nav-item .nav-link {
  position: relative;
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 10px;
  margin: 0 5px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0666666667);
}
.gallery-pg .nav-pills.main-pills .nav-item .nav-link.active {
  background-color: var(--primary);
  color: #fff;
}
.gallery-pg .tab-title .nav-pills {
  justify-content: flex-end;
}
.gallery-pg .tab-title .nav-pills .nav-item .nav-link {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  padding: 10px 30px;
  color: #000;
  margin-inline-start: 30px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7607843137) !important;
}
.gallery-pg .tab-title .nav-pills .nav-item .nav-link.active {
  color: var(--primary) !important;
  text-decoration: underline;
  background-color: #fff;
}
.gallery-pg .img-gallery {
  position: relative;
}
.gallery-pg .img-gallery .gallery {
  position: relative;
}
.gallery-pg .img-gallery .gallery .img {
  position: relative;
  display: block;
}
.gallery-pg .img-gallery .gallery .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-pg .img-gallery .gallery .img.img-lg {
  height: 540px;
  margin-top: 4px;
}
.gallery-pg .img-gallery .gallery .img.img-sm {
  height: 268px;
  margin-top: 4px;
}
.gallery-pg .videos .videos-slider {
  position: relative;
  overflow: hidden;
}
.gallery-pg .videos .videos-slider .item {
    position: relative;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    display: block;
}
.gallery-pg .videos .videos-slider .item .img {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-pg .videos .videos-slider .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-pg .videos .videos-slider .item .play-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--primary);
  font-size: 20px;
  z-index: 10;
}


.feedback_sec .swiper-button-prev,
.feedback_sec .swiper-button-next {
    top: 50px;
    left: 10px;
    right: auto;
}
.feedback_sec .swiper-button-next {
    left: 70px;
}

/**********************************************
    Start Edit pg-header
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit another Page 
**********************************************/
/**********************************************
    Start Edit Media screens 
**********************************************/
@media screen and (max-width: 991px) {
  .order_md_1 {
    order: -1;
  }
  
  .header .swiper_header .swiper-pagination {
    left: 24px !important;
    bottom: 10px;
  }
  
  .header .swiper_header .swiper-button-next, .header .swiper_header .swiper-button-prev {
      bottom: 20px;;
  }
  
  .header .swiper_header .swiper-button-next, .header .swiper_header .swiper-container-rtl .swiper-button-prev {
      left: 24px;
  }
  
  .header .swiper_header .swiper-button-prev, .header .swiper_header .swiper-container-rtl .swiper-button-next {
      left: 90px;
  }
  
  .social_links {
      justify-content: center !important;
      margin-top: 15px;
  }
  
  .services_sec .serv_img {
        width: 100%;
        height: 20%;
    }
    
    .about-pg-vision .cards .item {
        margin-bottom: 15px;
    }
    
    .gallery-pg .img-gallery .gallery .img {
        position: relative;
        display: block;
        height: 350px !important;
        margin: 10px 0;
    }
    
    .footer .newsletter_box .inner .form_box {
        padding: 30px;
    }
    
    .header .item {
        padding-bottom: 150px;
    }
    
    .gallery-pg .tab-title .nav-pills {
        justify-content: flex-start;
    }
    
    .gallery-pg .tab-title .nav-pills .nav-item .nav-link {
        padding: 8px 20px;
        margin-inline-start: 10px;
        margin-top: 10px;
    }
    
    .all-team .main-img {
        height: max-content;
    }
    
    .contact-pg .info-cards .item .inf a {
        display: block;
        margin-inline-start: 0 !important;
    }

}
/**********************************************
    Start Edit EN direction 
**********************************************/
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}

/**********************************************
    dark theme 
**********************************************/
.theme-dark {
  background-color: #22202d;
  color: #fff;
}
.theme-dark .navbar {
  background-color: #fff;
}
.theme-dark .footer {
  color: #141319;
}
.theme-dark .boss-word {
  background: #22202d;
}
.theme-dark .contact-pg .info-cards {
  background: #141319;
  color: #fff;
}
.theme-dark .contact-pg .info-cards a:not(.color-primary) {
  color: #fff;
}
.theme-dark .contact-pg .bg {
  opacity: 0.1;
}
.theme-dark .contact-pg .form-box {
  border: 0;
}
.theme-dark .contact-pg .form-box .info-box::before {
  background: #22202d;
}
.theme-dark .gallery-pg .tab-title .nav-pills .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.3333333333);
}
.theme-dark .gallery-pg .tab-title .nav-pills .nav-item .nav-link.active {
  color: #fff;
}
.theme-dark .team-pg .team-cards .item {
  background-color: #141319;
  color: #fff;
}
.theme-dark p, .theme-dark .p {
  color: #999;
}/*# sourceMappingURL=style.css.map */

/*------- new style --------*/
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}

.statics_sec .row {
    align-items: center;
}

.contact-pg .form-box .form .form-group .form-control {
    color: #fff;
}

.services_sec .serv_card .icon {
    
}





