:root {
  --colorBlue: #263871;
  --colorBlueAlt: #2f4784;
  --colorGray: #bcbdc0;
  --colorGrayAlt: #e6e6e6;

  --bgLinear: linear-gradient(
    0deg,
    rgba(241, 246, 226, 0.7) 0%,
    rgba(160, 213, 230, 0.7) 100%
  );
  --bgLinear2: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(38, 56, 113, 0.8) 100%
  );

  --fontExpo: "Expo Arabic", sans-serif;
  --fontMetropolis: "Metropolis", sans-serif;
}

/* html {
  scroll-padding-top: calc(100px - 30px);
} */
body {
  font-family: var(--fontMetropolis);
}
[dir="rtl"] body {
  font-family: var(--fontExpo);
}

* {
  letter-spacing: 0 !important;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transitiontransition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.c_primary {
  color: var(--colorBlue) !important;
}

.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.lines-1 {
  -webkit-line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
}

.btn.btn-primary {
  color: #fff;
  background-color: var(--colorBlue);
  border-color: var(--colorBlue);
}
.btn-outline-primary {
  color: var(--colorBlue);
  border-color: var(--colorBlue);
}
.btn.btn-primary.active,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover {
  background-color: var(--colorBlueAlt);
  border-color: var(--colorBlueAlt);
}

.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn.btn-outline-light.active,
.btn.btn-outline-light:active,
.btn.btn-outline-light:focus,
.btn.btn-outline-light:hover {
  color: #fff;
  background-color: var(--colorBlueAlt);
  border-color: var(--colorBlueAlt);
}

.link-all i {
  transform: rotate(-45deg);
}

/* $ => Header */
.navbar-brand img {
  width: 250px;
}
.navbar-nav .nav-link {
  color: #fff;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}
.d_actions a.text-white:hover,
.navbar-nav .nav-link:hover {
  color: var(--colorGray) !important;
}
.dropdown .dropdown-toggle {
  position: relative;
  margin-left: 0.8rem;
}
.dropdown-toggle::after {
  content: unset;
}
.dropdown .dropdown-toggle::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  font-weight: 900;
  color: #ddd;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s;
  font-size: 14px;
}
.dropdown .dropdown-toggle.show::before {
  color: var(--colorMain);
}
.dropdown-menu {
  min-width: 230px;
  background-color: #fff;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 0;
  transform: scale(0.97) translateY(5px);
  transition: all 0.1s ease-in-out;
  display: block;
  visibility: hidden;
  opacity: 0;
}
.dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: scale(1) translateY(-5px);
}
.dropdown-menu .dropdown-item {
  padding: 0.8rem 1rem;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}
.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
  background-color: var(--colorBlue);
  color: #fff;
}
@media (min-width: 992px) {
  .dropdown-menu[data-bs-popper],
  .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    top: 90%;
    transition: 0.2s;
    margin: 0;
    transform: scale(0.97) translateY(-5px);
  }
  .dropdown-menu[data-bs-popper],
  .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    top: 100%;
    transform: scale(1) translateY(0px);
  }
}
/* # => Header */

/* $ => Home Banner */
.home-banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 767px;
  position: relative;
  z-index: 1;
}
.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bgLinear2);
  z-index: -1;
}
/* # => Home Banner */

/* $ => Services */
.sec-services {
  position: relative;
  /* z-index: 1; */
}
.sec-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-01.svg);
  opacity: 0.6;
  /* z-index: -1; */
}
.service_item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  height: 450px;
}
.service_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bgLinear2);
  opacity: 0.6;
  z-index: 1;
}
.service_item .img_service {
  height: 100%;
}
.service_item .img_service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.service_item:hover .img_service img {
  transform: scale(1.1);
}
.service_item .service_info {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 20px;
  padding: 1rem;
  z-index: 2;
}
.service_item .service_info strong {
  margin-bottom: 0.5rem;
  color: #333;
}
.service_item:hover .service_info strong {
  color: var(--colorBlueAlt);
}
.service_item .service_info p {
  color: #000;
}

.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(--colorBlue);
  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%;
}
.navs_swiper_custom.swiper-button-next {
  right: -50px;
}
.navs_swiper_custom.swiper-button-prev {
  left: -50px;
}
.navs_swiper_custom.swiper-button-next:hover,
.navs_swiper_custom.swiper-button-prev:hover {
  background-color: var(--colorBlueAlt);
  color: var(--colorGrayAlt);
}
.navs_swiper_custom.swiper-button-next:after,
.navs_swiper_custom.swiper-button-prev:after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background: none;
  font-size: 20px;
}
.navs_swiper_custom.swiper-button-next:after {
  content: "\f061";
}
.navs_swiper_custom.swiper-button-prev:after {
  content: "\f060";
}
.swiper:hover .navs_swiper_custom.swiper-button-next {
  right: 10px;
}
.swiper:hover .navs_swiper_custom.swiper-button-prev {
  left: 10px;
}
/* # => Services */

/* $ => Clients */
.sec-clients {
  background-color: var(--colorBlue);
  position: relative;
  z-index: 1;
}
.sec-clients::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-03.svg);
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.05;
  z-index: -1;
}
.sec-clients .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  text-align: center;
}
.sec-clients .title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-02.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  /* opacity: 0.05; */
  z-index: -1;
}
.sec-clients .title strong {
  font-size: 60px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.client-item {
  background-color: #f1f6e2;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* # => Clients */

/* $ => Testimonials */
.sec-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-01.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 30%;
  opacity: 0.8;
  /* z-index: -1; */
}
/* .testi-img {
  position: relative;
  width: 300px;
  height: 300px;
}
.testi-img img.img_user {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.testi-img img.img-shape {
  position: absolute;
  top: -100px;
  right: 0;
  width: 200px;
}
.testi-img img.logo-icon {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 200px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.1));
  z-index: 1;
}
.testi-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: -1;
} */
.fa-star {
  color: #ffaa17;
}
.comma-icon svg {
  width: 80px;
  height: 80px;
  opacity: 0.08;
}
.txt-comment p {
  font-size: 20px;
  line-height: 1.8;
}

.user-info {
  margin-top: 2rem;
}
.user-info .user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.user-info .user-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.user-info .user-name span {
  font-size: 13px;
  font-weight: 600;
  color: var(--colorBlueAlt);
}

.navs-arrows {
  position: absolute;
  bottom: 0px;
  left: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navs-arrows > div {
  position: static;
  color: #333;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: 0.3s;
}
.navs-arrows .swiper-button-next:after,
.navs-arrows .swiper-button-prev:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;

  font-size: 24px;
}
.navs-arrows .swiper-button-next:after {
  content: "\f178";
}
.navs-arrows .swiper-button-prev:after {
  content: "\f177";
}
.navs-arrows > div:hover {
  background-image: var(--bgLinear2);
  color: #fff;
}
/* # => Testimonials */

/* $ => Blog */
.title.shape_after strong {
  position: relative;
}
.title.shape_after strong::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-line.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  z-index: -1;
}

.blog-item {
}
.blog-item .img-blog {
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.blog-item .img-blog img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-item .blog-inf {
  padding: 1.5rem 1rem;
}
.blog-item .blog-inf .blog-date {
  margin-bottom: 1rem;
  font-size: 13px;
}
.blog-item .blog-inf .blog-title {
  color: var(--colorBlue);
  margin-bottom: 0.8rem;
  font-weight: bold;
}
.blog-item .blog-inf .blog-title:hover {
  color: var(--colorBlueAlt);
}
.blog-item .blog-inf p {
  font-weight: 400;
  font-size: 15px;
  color: #666;
}
/* # => Blog */

/* $ => Call Us */
.sec-callus {
  padding: 3rem 0;
  z-index: 1;
  position: relative;
  height: 350px;
  background-size: cover;
  background-attachment: fixed;
}
.sec-callus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--colorBlue);
  background-image: var(--bgLinear2);
  z-index: -1;
  opacity: 0.8;
}
.sec-callus .btn-primary {
  box-shadow: 0 2px 10px rgba(241, 246, 226, 0.4);
}
/* # => Call Us */

/* $ => Footer */
footer {
  background-color: var(--colorBlue);
  position: relative;
  z-index: 1;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-03.svg);
  background-repeat: repeat;
  background-size: 200px;
  opacity: 0.05;
  z-index: -1;
}

.wedget-footer strong {
  color: var(--colorGrayAlt);
  margin-bottom: 1rem;
}
.wedget-footer .links a {
  display: block;
  padding: 0.3rem 0;
  color: var(--colorGray);
}
.wedget-footer .links a:hover {
  color: var(--colorGrayAlt);
}

.copyrights {
  border-top: 1px solid #3f5488;
}

.social-footer a {
  color: var(--colorGray);
  font-size: 24px;
  margin: 0.5rem 0.8rem;
}
.social-footer a:hover {
  color: var(--colorGrayAlt);
}
/* # => Footer */

/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/

.breadcrumb-area {
  padding: 200px 0 0px;
  position: relative;
  /* background-color: var(--colorBlue); */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  z-index: 1;
}
.breadcrumb-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bgLinear2);
  /* background-image: url(../imgs/shapes/shape-03.svg);
  background-repeat: repeat;
  background-size: 200px; */
  /* opacity: 0.5; */
  z-index: -1;
}
.breadcrumb-inner {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  width: 400px;
  margin: auto;
  padding: 1.5rem 0.5rem;
  text-align: center;
}
.breadcrumb-area h1 {
  color: var(--colorBlue);
}
.breadcrumb-list ul li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  font-weight: 600;
  color: #555;
  font-size: 14px;
}
.breadcrumb-list ul li:last-child {
  margin-right: 0;
}
[dir="rtl"] .breadcrumb-list ul li {
  margin-right: 0;
  margin-left: 30px;
}
[dir="rtl"] .breadcrumb-list ul li:last-child {
  margin-right: 0;
  margin-left: 0;
}
.breadcrumb-list ul li:after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  font-size: 10px;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--colorGray);
}
[dir="rtl"] .breadcrumb-list ul li:after {
  content: "\f053";
  right: auto;
  left: -20px;
}
.breadcrumb-list ul li:last-child:after {
  content: unset;
}
.breadcrumb-list ul li a {
  color: var(--colorBlueAlt);
}
.breadcrumb-list ul li a:hover {
  color: var(--colorGray);
}

/* $ => About Page */
.bg_pages {
  position: relative;
  z-index: 1;
}
.bg_pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/shapes/shape-01.svg);
  opacity: 0.6;
  z-index: -1;
}
.box-intro {
  width: 600px;
  margin: auto;
  text-align: center;
  padding: 50px;
  position: relative;
  margin-bottom: 5rem;
}
.box-intro::before,
.box-intro::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  border: 12px solid var(--colorGrayAlt);
}
.box-intro::before {
  left: 0;
  border-right: 0;
  border-radius: 50px 0 0 50px;
}
.box-intro::after {
  right: 0;
  border-left: 0;
  border-radius: 0 50px 50px 0;
}
.box-intro .comma-icon {
}
.comma-icon svg {
  width: 40px;
  height: 40px;
  opacity: 0.08;
}
.box-intro p {
  font-size: 24px;
}
.about-msgs img {
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .box-intro {
    width: 100%;
    padding: 50px 20px;
  }
  .box-intro p {
    font-size: 18px;
  }
}
/* # => About Page */

/* $ => Services Page */
.sticky_top {
  position: sticky;
  top: 150px;
}
.wwd-sidebar {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 20px;
}
.wwd-sidebar strong {
  display: block;
  font-weight: 900;
  color: var(--blackColor);
  font-size: 18px;
}
.wwd-sidebar strong img {
  width: 30px;
}
.wwd-sidebar ul {
  margin-top: 1.5rem;
  padding-left: 1rem;
}
[dir="rtl"] .wwd-sidebar ul {
  padding-left: 0;
  padding-right: 1rem;
}
.wwd-sidebar ul li svg,
.wwd-sidebar ul li i {
  display: none;
}
.wwd-sidebar ul li.active svg,
.wwd-sidebar ul li.active i {
  display: block;
}
.wwd-sidebar ul li a {
  color: #666;
  display: block;
  font-size: 14px;
  padding: 0.6rem 0;
  font-weight: 600;
  border-bottom: 1px dashed #eee;
}
.wwd-sidebar ul li:last-child a:last-child {
  border-bottom: 0;
}
.wwd-sidebar ul li.active a,
.wwd-sidebar ul li a:hover {
  color: var(--colorBallBlue);
}
[dir="rtl"] .fa-arrow-right {
  transform: rotate(180deg);
}
/* # => Services Page */

/* $ => Blog Page */
.blog-details p {
  color: #444;
  font-weight: 400;
}
.blog-details img {
  margin: 1rem auto !important;
}
/* # => Blog Page */

/* $ => Jobs Form */
.box-jobs {
  width: 70%;
  background-color: #fff;
  padding: 3rem 2rem;
}

@media screen and (max-width: 767px) {
  .box-jobs {
    width: 100%;
  }
}
/* # => Jobs Form */

/* $ => Contact Us */
.box-contacts .item {
  color: #000;
  padding: 1.5rem 1rem;
  background-color: var(--colorBlue);
  margin: auto 1rem;
  border-radius: 16px;
  color: #fff;
  width: 400px;
}
.box-contacts .item:hover {
  background-color: var(--colorBlueAlt);
  transform: translateY(-5px);
}
.box-contacts .item div {
  width: 150px;
}
.box-contacts .item .icon {
  min-width: 50px;
  max-width: 50px;
  width: 50px;
  min-height: 50px;
  max-height: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--bgLinear);
  color: var(--colorBlueAlt);
  border-radius: 8px;
}
/* # => Contact Us */

/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/
/**********************************/

@media (max-width: 1399px) {
  .sec-clients .title strong {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .navbar-brand img {
    width: 210px;
  }

  /* .testi-img {
    width: 240px;
    height: 240px;
  } */
}

@media (max-width: 1099px) {
  .sec-clients .title strong {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.8rem 0.5rem;
  }
  .dropdown-menu {
    display: none;
  }
  .dropdown-menu.show {
    display: block;
  }
  .offcanvas {
    background-color: var(--colorBlue);
  }

  .sec-clients .title {
    height: 150px;
  }
  .sec-clients {
    padding: 2rem 0;
  }

  .sec-testimonials::before {
    background-size: 50%;
  }

  /* .testi-img {
    width: 200px;
    height: 200px;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .testi-img img.logo-icon {
    width: 150px;
  } */
}

@media (max-width: 767px) {
  .home-banner {
    height: 560px;
  }

  .breadcrumb-inner {
    width: auto;
  }

  .box-contacts.d-flex {
    flex-wrap: wrap;
  }
  .box-contacts .item {
    width: 100%;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .box-contacts .item div {
    justify-content: center !important;
    margin-bottom: .5rem;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar-brand img {
    width: 150px;
  }

  .txt-comment p {
    font-size: 14px;
  }
  .user-info .user-img {
    width: 40px;
    height: 40px;
  }
  .user-info .user-name strong {
    font-size: 13px;
  }
  .user-info .user-name span {
    font-size: 12px;
  }

  .navs-arrows {
    left: 20px;
  }
  .navs-arrows > div {
    width: 40px;
    height: 40px;
  }
  .navs-arrows .swiper-button-next:after,
  .navs-arrows .swiper-button-prev:after {
    font-size: 18px;
  }
}
