:root {
  --color1: #022238;
  --color2: #74613c;
  --color3: #85754e;
  --color4: #858585;
  --color5: #626467;
  --GraphikArabic: "Graphik Arabic";
  --GESSBold: "GE SS Two Bold";
  --GESSMedium: "GE SS Two Medium";
  --GESSLight: "GE SS Two Light";
}

body {
  font-family: var(--GESSMedium);
  font-size: 14px;
  color: #858585;
}
[dir="ltr"] body {
  /* font-family: var(--GraphikArabic); */
  font-family: "Nunito", sans-serif;
}

hr {
  opacity: 1;
  border-top: 2px dashed #dfdfdf;
}
a[href^="tel:"] {
  direction: ltr;
  unicode-bidi: embed;
}
.color1 {
  color: var(--color1);
}
.color2 {
  color: var(--color2);
}
.color3 {
  color: var(--color3);
}
.color4 {
  color: var(--color4);
}
.color5 {
  color: var(--color5);
}

.bg_color1 {
  background-color: #102054;
}
.bg_color2 {
  background-color: #fe8026;
}
.bg_color3 {
  background-color: #213868;
}
.bg_color4 {
  background-color: #2f375a;
}
.bg_color5 {
  background-color: #5c6b8f;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.title_link:hover {
  color: var(--color1) !important;
}

.clamp {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  /* padding-bottom: .2rem; */
}
.clamp-1 {
  -webkit-line-clamp: 1;
}
.clamp-2 {
  -webkit-line-clamp: 2;
}
.clamp-3 {
  -webkit-line-clamp: 3;
}
.clamp-4 {
  -webkit-line-clamp: 4;
}
.clamp-5 {
  -webkit-line-clamp: 5;
}

@media (max-width: 991px) {
  .w_auto {
    width: auto !important;
  }
}

/* $ => Top Header */
.top_head {
  background-color: var(--color1);
}
.top_head a {
  color: #fff;
  font-size: 13px;
  font-weight: 500 !important;
}
.top_head a:hover {
  color: var(--color2);
}
.social-links svg:hover ellipse,
.social-links svg:hover path {
  fill: var(--color3);
}
/* $ => Top Header */

/* $ => Header */
.navbar-brand img {
  width: 200px;
  transition: all 0.3s ease-in-out;
}
.nav-link {
  /* font-size: 14px; */
  color: var(--color1);
}
.nav-link:hover {
  color: var(--color2);
}
.link_langs {
  color: var(--color1);
}
[dir="rtl"] .font_english {
  font-family: var(--GraphikArabic);
  font-weight: 300;
}

.navbar-sticky.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease-in-out;
}
.navbar-sticky.sticky .container-fluid.py-3 {
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
}
.navbar-sticky.sticky .navbar-brand img {
  width: 150px;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@media only screen and (max-width: 991px) {
  .navbar-brand img {
    width: 100px;
  }
  .brand-mobile img {
    width: 150px;
  }
  .navbar-nav .nav-item .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: 0;
  }
}
.navbar .dropdown-menu {
  right: 10px;
  border-radius: 0;
  background-color: #fff;
  border: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 0;
  z-index: 12345;
}
.navbar .dropdown-menu a {
  padding: 10px;
  color: var(--color1);
  font-size: 14px;
}
.navbar .dropdown-menu a:hover {
  background-color: var(--color1);
  color: #fff;
  padding: 10px;
}
@media (min-width: 992px) {
  .navbar .dropdown-menu[data-bs-popper],
  .navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    top: 90%;
    left: 10px;
    transition: 0.2s;
    margin: 0;
  }
  .navbar .dropdown-menu[data-bs-popper],
  .navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    top: 100%;
  }
  [dir="rtl"] .navbar .dropdown-menu[data-bs-popper],
  [dir="rtl"] .navbar .dropdown-menu {
    right: 10px;
    left: auto;
  }
}
header a.dropdown-toggle::after {
  transition: all 0.3s ease-in-out;
}
.dropdown-toggle::after {
  content: "";
  border: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m19 9l-7 6l-7-6'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  position: absolute;
  right: -16px;
}
[dir="rtl"] .dropdown-toggle::after {
  position: absolute;
  left: -16px;
  right: auto;
}
[dir="rtl"] header .dropdown-toggle:hover::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
header .dropdown-toggle:hover::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 991.98px) {
  .sm_w_auto {
    width: auto !important;
  }
  .navbar-toggler {
    background-color: var(--color1);
    color: #fff;
    padding: 8px 13px;
    /* position: absolute;
    left: 30px; */
  }
  .dropdown-toggle::after {
    content: unset;
  }
  header .dropdown-menu[data-bs-popper],
  header .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
    margin: 0;
  }
  header .dropdown-menu[data-bs-popper],
  header .dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .nav-item.dropdown-item {
    position: relative;
  }
  .toggle_dropdown {
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #000;
    position: absolute;
    top: 10px;
    inset-inline-end: 0;
  }
  .toggle_dropdown::after {
    content: "";
    position: absolute;
    inset: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m19 9l-7 6l-7-6'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transition: 0.3s;
  }
  .toggle_dropdown:hover,
  .toggle_dropdown:focus {
    background-color: var(--color22);
    color: #fff;
    transition: 0.3s;
  }
  .toggle_dropdown:hover::after,
  .toggle_dropdown:focus::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .dropdown-menu.showing {
    position: static;
    top: 100%;
    width: 100%;
    right: 0;
    left: 0;
    border-top: 3px solid var(--color5);
  }

  .navbar-sticky.sticky .navbar-brand img {
    width: 80px;
  }
}
.btn_request {
  background-color: var(--color1);
  color: #fff;
}
.btn_request:hover {
  background-color: var(--color2);
  color: #fff;
}
/* # => Header */

/* $ => Home Banner */
.home-banner {
  /* background-color: var(--color1); */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.home-banner .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 700px;
}
@media screen and (max-width: 991.98px) {
  .home-banner .swiper-slide {
    height: 400px;
  }
}

.txt_slide {
  position: absolute;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
}
.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
/* # => Home Banner */

/* $ => About Us */
.about-intro {
  height: 540px;
}
@media screen and (max-width: 991.98px) {
  .about-intro {
    height: 300px;
  }
}
.about-intro .swiper-slide img {
  object-position: top;
}

.pt_7rem {
  padding-top: 6rem;
}
.py_7rem {
  padding: 7rem 0;
}
.navigation_custom {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navigation_custom > div {
  position: static;
  background-color: #858585;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 10px;
  margin: 0;
}
.navigation_custom > div:hover {
  background-color: var(--color1);
}
.navigation_custom .swiper-button-next:after,
.navigation_custom .swiper-button-prev:after {
  font-size: 12px;
  font-weight: bold;
}
/* # => About Us */

/* $ => Services */
.service_card {
  height: 480px;
}
.card-img-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #022238;
  background: linear-gradient(
    180deg,
    rgb(0, 0, 0) 0%,
    rgba(2, 34, 56, 0.5) 100%
  );
  z-index: -1;
  opacity: 0.7;
}
.service_card .card-img {
  transition: 0.3s;
}
.service_card:hover .card-img {
  transform: scale(1.1) rotate(3deg);
}

.btn-light:hover {
  background-color: var(--color2);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .service_card {
    height: 240px;
  }
  .service_card h2 {
    font-size: 18px;
  }
  .service_card p {
    font-size: 12px;
  }
  .service_card .card-img-overlay {
    padding: 1rem !important;
  }
}
/* # => Services */

/* $ => Clients */
.img-clients {
  height: 153px;
  border: 1px solid #eee;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .img-clients {
    height: 100px;
  }
}
/* # => Clients */

/* $ => Blog */
.blog_card .card_img {
  height: 280px;
}
.blog_card img {
  transition: 0.3s;
}
.blog_card .card_img:hover img {
  transform: scale(1.1) rotate(3deg);
}
.card-title {
  color: var(--color2);
}
.card-title:hover {
  color: var(--color1);
}

.navs_swiper_custom.swiper-button-next,
.navs_swiper_custom.swiper-button-prev {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  z-index: 1;
  color: var(--colorBlueBG);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}
.navs_swiper_custom.swiper-button-next,
.navs_swiper_custom.swiper-button-prev {
  top: 50%;
}

[dir="ltr"] .navs_swiper_custom.swiper-button-next {
  right: -50px;
}
[dir="rtl"] .navs_swiper_custom.swiper-button-next {
  right: auto;
  left: -50px;
}
[dir="ltr"] .navs_swiper_custom.swiper-button-prev {
  left: -50px;
}
[dir="rtl"] .navs_swiper_custom.swiper-button-prev {
  left: auto;
  right: -50px;
}

.navs_swiper_custom.swiper-button-next:hover,
.navs_swiper_custom.swiper-button-prev:hover {
  background-color: var(--color2);
  color: #fff;
}
.navs_swiper_custom.swiper-button-next:after,
.navs_swiper_custom.swiper-button-prev:after {
  font-size: 16px;
}

[dir="ltr"] .swiper:hover .navs_swiper_custom.swiper-button-next {
  right: 10px;
}
[dir="rtl"] .swiper:hover .navs_swiper_custom.swiper-button-next {
  right: auto;
  left: 10px;
}
[dir="ltr"] .swiper:hover .navs_swiper_custom.swiper-button-prev {
  left: 10px;
}
[dir="rtl"] .swiper:hover .navs_swiper_custom.swiper-button-prev {
  left: auto;
  right: 10px;
}
/* # => Blog */
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 0.8;
  font-weight: 100 !important;
  font-size: 13px;
}
/* $ => Footer */
footer {
  background-color: #858585;
  color: #fff;
  background-repeat: repeat;
  background-size: cover;
}
.logo_footer {
  width: 90%;
  filter: brightness(0) invert(1);
}
footer a {
  color: #fff !important;
}
footer a.nav-link {
  font-size: 16px;
}

[dir="rtl"] footer .link_langs {
  font-weight: bold !important;
}
footer .link_langs:hover,
footer a:hover {
  color: var(--color1) !important;
}
/* # => Footer */

@media screen and (max-width: 767px) {
  .text_style {
    font-size: 12px !important;
  }
  .w-50,
  .w-75 {
    width: 100% !important;
  }

  .sty_md {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .sty_md > div {
    position: static;
    margin-top: 0;
  }

  footer a.nav-link {
    font-size: 13px;
  }
}

.hover_scale {
  transition: 0.3s;
}
.hover_scale:hover {
  transform: scale(1.1);
}

/* ********************************************************** */
/* ********************************************************** */
/* ********************************************************** */
/* ********************************************************** */
/* ********************************************************** */
/* ********************************************************** */
/* ********************************************************** */

/* $ => About Pages */
.about_banner2 {
  background-size: cover;
  background-position: center center;
  height: 400px;
}

.galler_sw .swiper-slide .img_slide_big {
  height: 400px;
  overflow: hidden;
}
.galler_sw .swiper-slide .img_slide_big img {
  transition: all 0.3s;
  object-position: top;
}

.galler_thum .swiper-slide {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid #ddd;
}
.galler_thum .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.swiper-slide.swiper-slide-thumb-active {
  border: 2px solid var(--color2);
}

@media screen and (max-width: 767px) {
  .galler_sw h5 {
    font-size: 14px;
  }
  .galler_sw .swiper-slide .img_slide_big {
    height: 200px;
  }
  .galler_thum .swiper-slide {
    height: 50px;
  }
}
/* # => About Pages */

/* $ => Media Center */
.media_item .video_item::before,
.video_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: 0.3s;
  opacity: 0;
}
.media_item:hover .video_item::before,
.video_item:hover::before {
  opacity: 1;
}
.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}
.media_item:hover .zoom-icon,
.video_item:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(2);
}

.media_item .video_item {
  height: 220px;
}

.video_item_2 .zoom-icon {
  background-color: #fff;
  border-radius: 100%;
}

.media_item_2:hover .zoom-icon,
.video_item_2:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1.5);
}
/* # => Media Center */

/* $ => Reports */
.report_item {
  transition: 0.3s;
}
.report_item:hover {
  transform: scale(1.01) translateY(-10px);
}
/* # => Reports */

/* $ => Contact */
.map_iframe {
  height: 450px;
}
@media screen and (max-width: 767px) {
  .map_iframe {
    height: 200px;
  }
  .fs-4 {
    font-size: 14px !important;
  }
}
.contact_info a {
  font-weight: 500 !important;
  font-size: 18px;
}
.contact_info a:hover {
  color: var(--color1);
}
.contact_info a svg {
  color: var(--color2);
}
/* # => Contact */
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 0.8;
  font-weight: 100 !important;
  font-size: 13px;
}

[dir="rtl"] [type="email"],
[dir="rtl"] [type="number"],
[dir="rtl"] [type="tel"],
[dir="rtl"] [type="url"] {
  direction: rtl;
}
[dir="rtl"] bdi {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
