/* File: font.css */
@font-face {
  font-family: "MainFont";
  src: local("MainFont"), url("../fonts/Segoe_UI.ttf") format("truetype");
}

@font-face {
  font-family: "LightFont";
  src: local("LightFont"), url("../fonts/Segoe_UI_Light.ttf") format("truetype");
}

@font-face {
  font-family: "BoldFont2";
  src: local("BoldFont2"), url("../fonts/Segoe_UI_Bold.ttf") format("truetype");
}

@font-face {
  font-family: "BoldFont";
  src: local("BoldFont"), url("../fonts/geometos_bold.otf") format("truetype");
}

@font-face {
  font-family: "UltraFont";
  src: local("UltraFont"), url("../fonts/geometos_ultra.otf") format("truetype");
}

@font-face {
  font-family: "ReqularFont";
  src: local("ReqularFont"),
    url("../fonts/geometos_reqular.otf") format("truetype");
}

/*___________ Fonts Ar ___________*/
@font-face {
    font-family: 'ArabicBoldFont';
    src: local('ArabicBoldFont'),
        url('../fonts/expo_arabic_bold.ttf') format('truetype'),
}

@font-face {
    font-family: 'ArabicReqularFont';
    src: local('ArabicReqularFont'),
        url('../fonts/expo_arabic_reqular.ttf') format('truetype'),
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

:root {
  --dark-color: #dbdbdb;
  --animated-transition: 0.5s;
}

/* ---------------------start inmtion---- */

/* endinmeion--------------------------------------- */
@keyframes moveing-right {
  100% {
    transform: translateX(8px);
  }
}

body {
  font-family: 'ArabicReqularFont';
}

html[dir=ltr] body {
  font-family: "MainFont";
}

.title {
  font-family: 'ArabicBoldFont';
}

html[dir=ltr] .title {
  font-family: "UltraFont";
}

.black-section {
  /* background: radial-gradient(circle at 50% 50%, rgba(64, 64, 64, 1) 0%, rgba(0, 0, 0, 1) 49%, rgba(0, 0, 0, 1) 100%); */
  background-image: url("../imgs/background-black.png");
  background-size: cover;
}

.light-section {
  background-color: #fff;
}

section {
  padding-top: 0px;
  padding-bottom: 50px;
}

.section {
  height: 100vh;
}

.title-bold {
  font-family: "BoldFont2";
}

.black-shadow {
  text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3);
}

.light-shadow {
  text-shadow: 0px 3px 2px rgba(255, 255, 255, 0.3);
}

.main-color {
  color: var(--dark-color);
}

.text-black {
    color: #000 !important;
}

.background-color {
  background-color: var(--dark-color);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(68, 68, 68, 0) 0%, #000000 100%);
  z-index: 1;
  top: 0;
  left: 0;
}

.button {
  /*border-color: #000 !important;*/
  width: fit-content;
  transition: var(--animated-transition);
}
.button-noBorder {
  width: fit-content;
  transition: var(--animated-transition);
}
.button div {
  color: #000;
  transition: var(--animated-transition);
}
.button svg {
  transition: var(--animated-transition);
}
.button-noBorder svg {
  fill: #fff;
}
.button-noBorder svg {
  transition: var(--animated-transition);
}
.button:hover {
  background-color: #000;
}
.button:hover div {
  color: #fff;
}
.button:hover svg {
  fill: #fff;
  animation: moveing-right var(--animated-transition) linear infinite;
}
.button-noBorder:hover svg {
  fill: #fff;
  animation: moveing-right var(--animated-transition) linear infinite;
}

/* ---------- Swiper Main Section ---------- */
html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.main-section .content {
  z-index: 2;
  top: 50%;
  left: 100px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination span {
  border: 1px solid #fff;
  /* transition: var(--animated-transition); */
  background-color: transparent;
}
.swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* ---------- Header ---------- */
.navbar {
  position: fixed !important;
  width: 100%;
  z-index: 5;
  height: 70px;
}
.navbar .container {
  /* background-color: var(--dark-color); */
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(1px);
  background-color: rgba(22, 22, 23, 0.8);
  border-radius: 26px;
}
.navbar .title {
  transition: var(--animated-transition);
  padding: 0 !important;
}

.navbar .language-button svg {
  width: 25px;
}

.navbar .language-button svg path {
  fill: var(--dark-color);
}

.navbar .menu li a,
.navbar .menu li span {
  /*font-family: "ReqularFont";*/
  color: var(--dark-color);
  cursor: pointer;
}

.navbar .menu li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}


html[dir=rtl] input,
html[dir=rtl] textarea {
  direction: rtl !important;
}
html[dir=rtl] .title-bold {
  font-family: "ArabicBoldFont";
}



html[dir=rtl] .menu-mobile ul li a,
html[dir=rtl] .menu-mobile ul li span {
  font-family: "ArabicReqularFont";
}

html[dir=ltr] .menu-mobile ul li a,
html[dir=ltr] .menu-mobile ul li span {
  font-family: "ReqularFont";
}

html[dir=ltr] .title-bold {
  font-family: "BoldFont";
}
.navbar .menu li::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--dark-color);
  transition: var(--animated-transition);
}

.navbar .menu li:hover::before {
  width: 100%;
}

.navbar .menu li.active::before {
  width: 100%;
}

/* .navbar .menu li.active a{
    color: #FFF;
} */

.navbar.active .title {
  color: #fff !important;
}

.navbar .products-menu {
  width: 200px;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(1px);
  background-color: rgba(255, 255, 255, 0.15);
  top: 54px;
  padding: 0;
  left: -50px;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  overflow: hidden;
  opacity: 0;
  transition: var(--animated-transition);
  visibility: hidden;
}

.navbar li.product:hover .products-menu {
  opacity: 1 !important;
  visibility: visible;
}

.navbar .products-menu li::before {
  content: none !important;
}

.navbar .products-menu li {
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: var(--animated-transition);
}

.navbar .products-menu li:hover {
  background-color: #fff !important;
}

.navbar .products-menu li:hover::before {
  width: 100%;
}

/* __________ menu mobile __________ */
.menu-mobile {
  transition: var(--animated-transition);
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  display: none;
  font-family: "ReqularFont";
  visibility: hidden;
  z-index: 5;
  background: transparent;
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(1px);
  background-color: rgba(22, 22, 23, 0.8);
}

.menu-mobile ul.box {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-mobile ul li a,
.menu-mobile ul li span {
  color: #b4b4b4;
  transition: var(--animated-transition);
}

.menu-mobile ul li.item:hover > a,
.menu-mobile ul li.item:hover > span {
  color: #fff;
}

.menu-mobile ul li.item.active a,
.menu-mobile ul li.item.active span {
  color: #fff;
}

.menu-mobile.active {
  width: 100%;
  height: 100%;
  opacity: 1;
  /* z-index: 2; */
  visibility: visible;
}

.menu-mobile .products-menu {
  transition: var(--animated-transition);
  opacity: 0;
  height: 0;
}

/* .menu-mobile ul li.sub-menu a {
    font-size: 13px;
    transition: var(--animated-transition);
} */

.menu-mobile ul li.product:hover .products-menu {
  opacity: 1;
  height: 220px;
}

.menu-mobile ul li.sub-menu:hover > a,
.menu-mobile ul li.sub-menu:hover > a span {
  color: #fff;
}

/* __________ Icon Menu __________ */

.icon-menu {
  display: none;
  width: 40px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.icon-menu span {
  display: block;
  position: absolute;
  height: 5px;
  width: 50%;
  background: var(--dark-color);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.icon-menu.active span {
  background: #fff;
}

.icon-menu span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

.icon-menu span:nth-child(odd) {
  left: 0px;
  border-radius: 9px 0 0 9px;
}

.icon-menu span:nth-child(1),
.icon-menu span:nth-child(2) {
  top: 0px;
}

.icon-menu span:nth-child(3),
.icon-menu span:nth-child(4) {
  top: 10px;
}

.icon-menu span:nth-child(5),
.icon-menu span:nth-child(6) {
  top: 20px;
}

.icon-menu.active span:nth-child(1),
.icon-menu.active span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-menu.active span:nth-child(2),
.icon-menu.active span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-menu.active span:nth-child(1) {
  left: 5px;
  top: 7px;
}

.icon-menu.active span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

.icon-menu.active span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

.icon-menu.active span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

.icon-menu.active span:nth-child(5) {
  left: 5px;
  top: 17px;
}

.icon-menu.active span:nth-child(6) {
  left: calc(50% - 5px);
  top: 17px;
}

/* ---------- Our Costomers Section ---------- */
.our-costomer {
  background-image: url("../imgs/white-wall.jpg");
  background-size: cover;
}
.our-costomer .overlay {
  background: #fff !important;
  opacity: 0.5;
}
.our-costomer .container {
  position: relative;
  z-index: 3;
}
.costomers-slide .overlay {
  transition: var(--animated-transition);
}
.costomers-slide .swiper-slide:hover .overlay {
  opacity: 0;
}
.costomers-slide .swiper-slide-active .overlay {
  opacity: 0;
}

/* ---------- Contact Us Section ---------- */
.contact-us .box {
  width: 650px;
  max-width: 100%;
}
.contact-us input,
.contact-us textarea {
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3);
  border: none !important;
  max-width: 100%;
  padding-bottom: 11px;
  padding-top: 11px;
  resize: none;
}
.button-dark {
  border-color: #fff !important;
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}
/*.contact-us .button div {*/
/*  font-family: "LightFont";*/
/*  font-size: 15px;*/
/*}*/
.button-dark:hover {
  background-color: #fff !important;
}
.button-dark:hover div {
  color: #000 !important;
}
.button-dark div {
  color: #fff !important;
}

.form-control:focus {
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.3) !important;
}

/* ---------- Footer ---------- */
footer .links .link {
  border-bottom: 2px solid #212529;
}

footer .text-gray {
  /*font-family: "LightFont";*/
  color: #888888;
  /*font-size: 14px;*/
}

footer .links .link-text {
  font-size: 14px;
}

footer .links svg {
  width: 13px;
  transition: var(--animated-transition);
}

footer .link:hover svg {
  animation: moveing-right var(--animated-transition) linear infinite;
}

footer .social-links .link-text {
  font-family: "BoldFont2";
  font-size: 18px;
}

.nav-footer .nav,
.nav-footer .nav a {
  font-size: 13px;
  color: #888888;
  transition: var(--animated-transition);
}

.nav-footer .nav:hover a {
  color: var(--dark-color);
}

/* __________ Product Page __________ */
.product-page {
  padding: 0 !important;
  z-index: 2;
}
/* .product-page .container {
    height: 100vh;
} */
.product-page .content {
  width: 400px;
}

/* .product-page .product-img {
    bottom: 100px;
} */

.product-page .content svg {
  width: 40px;
  fill: #fff;
  cursor: pointer;
  transition: var(--animated-transition);
}

.product-page .content svg:active {
  fill: #a5a5a5;
}

.product-page .content svg {
  max-width: 40px;
  fill: #fff;
  cursor: pointer;
  transition: var(--animated-transition);
}

.product-page .title-bold {
  transition: var(--animated-transition);
}

.product-page .details {
  transition: var(--animated-transition);
}
/* .product-page .title-bold.pre-animation {
    opacity: 0;
}

.product-page .details.pre-animation {
    opacity: 0;
} */

/* ___________ Animation Products Page __________ */
.product-page .product-img,
.product-page .content {
  transition: 1s;
}

.product-page .container.moveToSection2 .product-img {
  width: 50% !important;
  transform: translateX(350px);
}

.product-page .container.moveToSection2 .content {
  transform: translate(-370px, 100px);
}

.product-page .content.pre-animation {
  opacity: 0 !important;
}

/* __________ Form Buy Section __________ */
.formBuySection {
  padding-top: 100px;
  padding-bottom: 100px;
}
.formBuySection .input-group .input-group-text {
  background-color: #fff;
  border: none !important;
  border-right: 2px solid #e0e0e0 !important;
  border-radius: 4px 0 0 4px !important;
}

/* __________ About Page __________ */
.aboutPage-section1 {
  /* height: 100vh; */
  width: 100%;
  padding: 0 !important;
}
.aboutPage-section1 .title {
  font-size: 80px;
}

.aboutPage-section2 .card {
  height: 500px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 24px;
}

.aboutPage-section3 {
  height: 100vh;
  overflow: hidden;
  /* padding: 0 !important; */
}

.aboutPage-section3 .overlay {
  background-color: var(--dark-color) !important;
  opacity: 0.5 !important;
}

.aboutPage-section3 .background {
  /* background-image: url('../imgs/company-img.jpg');
    background-size: cover; */
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
}

.aboutPage-section3 .box {
  z-index: 2;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(1px);
  background-color: rgba(255, 255, 255, 0.15);
}

.aboutPage-section3 .cards {
  z-index: 2;
}
.aboutPage-section3 .card {
  height: 200px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 14px;
}
.aboutPage-section3 .card .name {
  font-family: "MainFont";
}

.aboutPage-section3 svg path {
  transition: 0.2s;
}

.aboutPage-section3 .left:active svg path,
.aboutPage-section3 .right:active svg path {
  fill: #e6e6e6;
}

.aboutPage-section3 svg {
  width: 20px;
  height: auto !important;
  cursor: pointer;
}

/* __________ Jobs Page __________ */
.jobs {
  height: 100vh;
}

.jobs .upload {
  flex: none !important;
  color: #6c757d !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.upload::file-selector-button {
  font-family: "MainFont" !important;
  padding: 16px !important;
}

@media (max-width: 1199px) {
  .product-page .container.moveToSection2 .product-img {
    transform: translateX(250px) !important;
  }

  .product-page .container.moveToSection2 .content {
    transform: translate(-250px, 100px) !important;
  }
}

@media (max-width: 992px) {
  .product-page .container.moveToSection2 .product-img {
    transform: translateX(200px) !important;
  }

  .product-page .container.moveToSection2 .content {
    font-size: 25px !important;
    transform: translate(-200px, 100px) !important;
    width: 350px !important;
  }

  .product-page .container.moveToSection2 .title-bold {
    font-size: 30px !important;
  }



  /* __________ About Page __________ */
  .aboutPage-section2 .container {
    flex-direction: column !important;
  }

  .aboutPage-section2 .card {
    width: 100% !important;
  }

  .aboutPage-section3 .content {
    flex-direction: column !important;
  }

  .aboutPage-section3 .box,
  .aboutPage-section3 .cards {
    width: 75% !important;
  }
}

@media (max-width: 767px) {
  /* ---------- Header ---------- */
  .icon-menu {
    display: block;
  }

  .menu {
    display: none !important;
  }

  .menu-mobile {
    display: block;
  }

  /* ---------- Main Section ---------- */
  .main-section .content {
    left: 50%;
    transform: translateX(-50%);
  }
  /*.main-section .content .title-bold {*/
  /*  text-align: center !important;*/
  /*}*/


  /* ---------- Contact Us Section ---------- */
  .contact-us input,
  .contact-us textarea {
    width: 75% !important;
  }

  /* ---------- Footer ---------- */
  .nav-footer {
    justify-content: space-between;
  }
  .nav-footer .nav {
    width: fit-content !important;
    flex: inherit !important;
  }

  /* ___________ Animation Products Page __________ */
  .product-page .container.moveToSection2 .product-img {
    transform: translate(0, -150px) !important;
    width: 75% !important;
  }

  .product-page .container.moveToSection2 .content {
    transform: translate(0, 200px) !important;
    width: 300px !important;
  }
  /* .product-page .container.moveToSection2 .product-img {
        transform: translateX(0) !important;
    }
    
    .product-page .container.moveToSection2 .content {
        transform: translate(0) !important;
        width: 300px !important;
    }
    
    .product-page .container {
        flex-direction: column-reverse !important;
    } */
    .detials {
    font-size: 16px !important;
  }
  .title {
        font-size: 25px !important;
    }
}

@media (max-width: 575px) {
  .nav-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  footer .content {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
  }
  .nav-footer .nav,
  .nav-footer .nav a {
    font-size: 11px !important;
  }
  .detials-sm {
    font-size: 13px !important;
  }
  .title-sm {
        font-size: 18px !important;
    }
}

/* mmmmmmmmmmmmmmmmmmmmmmm murad start  */

.scroller {
}

.orange {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text {
  color: #fff;
}

.black {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #07070700;
}

.blue {
  background-color: #00000000;
  height: 5px;
}

.text-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  background-color: black;
  color: black;

  height: 100%;
}

.panel-text {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;

  transform: translateY(100%);
  opacity: 0;
}

.p-wrap {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 80vh;
}

.panel {
  position: initial;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;

  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url("../images/5ed12171d9d512cb2feead83_5.jpg");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.panel._2 {
  z-index: 1;
  background-image: url("../images/5f5a5b3515c4dd0c2c455925_110642301_938622823267359_7859124022958180678_n201.jpg");
}

.panel.blue {
  z-index: auto;
}

.panel.red {
  z-index: auto;
  background-image: none;
}

.panel.orange {
  z-index: auto;
  background-image: none;
}

.panel.purple {
  z-index: auto;
  background-image: none;
}

/*-===================== moorad end ====================- */
