@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #004884;
  --sub-color: #E5ECF2;
  /* --subColor2: #77643d; */
}

.main-color {
  color: var(--main-color) !important;
}

.mainBack {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Cairo", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

h5,
h6 {
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

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

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

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

.section-padding {
  padding: 100px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  -webkit-box-shadow: 15px 15px 30px #0001;
          box-shadow: 15px 15px 30px #0001;
}

.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
  border-color: var(--main-color);
  background-color: var(--main-color);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  border-width: 1px;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.butn:hover {
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0 0 25px #0002;
          box-shadow: 0 0 25px #0002;
  color: var(--main-color);
}

.butn.butn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--main-color);
}

.butn.butn-white:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.butn.butn_dark1 {
  background-color: #15151b;
  border-color: #15151b;
  color: #fff;
}

.butn.butn_dark1:hover {
  background-color: #fff;
  border-color: #fff;
  color: #15151b;
}

.butn.sm_butn {
  padding: 12px 20px;
  font-size: 13px;
  border-width: 1px;
}

.butn.md_butn {
  padding: 11px 25px;
  font-size: 15px;
  border-width: 1px;
}

.butn.butn_line {
  background-color: transparent;
  color: var(--main-color);
}

.butn.butn_line:hover {
  background-color: var(--main-color);
  color: #fff;
}

.butn.butn_line_gray {
  background-color: transparent;
  color: var(--main-color);
  border-color: #1818181c;
}

.butn.butn_line_gray:hover {
  background-color: var(--main-color);
  color: #fff;
}

.butn.butn_line_white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.butn.butn_line_white:hover {
  background-color: #fff;
  color: var(--main-color);
}

.butn.size_1 {
  min-width: 192px;
}

.btn_float_squar {
  position: relative;
  border-color: var(--main-color);
  background-color: var(--main-color);
  padding: 12px 30px;
  color: #fff;
  border: 2px solid var(--main-color);
  font-size: 17px;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn_float_squar:hover {
  background-color: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0 0 25px #0002;
          box-shadow: 0 0 25px #0002;
  color: var(--main-color);
}

.btn_float_squar:hover::after {
  left: 0;
  top: 0;
  border-color: #fff;
}

.btn_float_squar::after {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--main-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn_float_squar.butn-dark1 {
  border-color: #15151b;
  background-color: #15151b;
  color: #fff;
}

.btn_float_squar.butn-dark1::after {
  border: 1px solid #15151b;
}

.btn_float_squar.butn-light1 {
  border-color: #fff;
  background-color: #fff;
  color: var(--main-color);
}

.btn_float_squar.butn-light1::after {
  border: 1px solid #fff;
}

/* --------------- section-head --------------- */
.section-head {
  position: relative;
}

.section-head h6 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 40px 15px;
  margin-bottom: 20px;
}

.section-head h6::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 30%;
  height: 40%;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
}

.section-head h6::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 30%;
  height: 40%;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

.section-head h2 {
  font-size: 50px;
  color: var(--main-color);
}

.swiper-pagination {
  bottom: 0;
}

.swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 10px;
  height: 10px;
  background-color: var(--main-color);
  margin: 6px !important;
}

/* --------------- navbar --------------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 30px 6vw;
  color: #fff;
}

.navbar .navbar-brand {
  height: 80px;
}

.navbar .navbar-brand .logo-fixed {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-size: 15px;
  margin: 0 10px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
}

.navbar .lang {
  font-size: 16px;
  -webkit-border-start: 1px solid #fff;
          border-inline-start: 1px solid #fff;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
  -webkit-margin-start: 25px;
          margin-inline-start: 25px;
}

.navbar.fixed-nav {
  background: #fff;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  padding: 5px 5vw;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  color: var(--main-color);
}

.navbar.fixed-nav .navbar-brand {
  height: 70px;
}

.navbar.fixed-nav .navbar-brand .logo-abs {
  display: none;
}

.navbar.fixed-nav .navbar-brand .logo-fixed {
  display: inline-block;
}

.navbar.fixed-nav .navbar-nav .nav-item .nav-link {
  color: var(--main-color);
}

.navbar.fixed-nav .butn.butn-white {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.navbar.fixed-nav .lang {
  -webkit-border-start: 1px solid var(--main-color);
          border-inline-start: 1px solid var(--main-color);
}

/* --------------- header --------------- */
.header {
  position: relative;
}

.header .imgs_slider .img {
  min-height: 100vh;
  height: 700px;
  overflow: hidden;
  position: relative;
}

.header .imgs_slider .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}

.header .content {
  padding: 0 6vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  color: #fff;
}

.header .content .info {
  position: relative;
  padding-bottom: 150px;
  -webkit-padding-start: 6vw;
          padding-inline-start: 6vw;
  border-right: 1px solid #fff;
}

.header .content .info h6 {
  font-size: 20px;
}

.header .content .info h1 {
  font-size: 45px;
  line-height: 1.7;
  font-weight: bold;
  margin-top: 30px;
}

.header .content .info .btn_float_squar {
  margin-top: 70px;
}

.header .swiper-notification {
  display: none;
}

.header .slider_controls {
  position: absolute;
  left: 6vw;
  bottom: 20px;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 8vw);
}

.header .slider_controls .arrows {
  position: relative;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.header .slider_controls .swiper-button-next,
.header .slider_controls .swiper-button-prev {
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: static;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin: 0;
}

.header .slider_controls .swiper-button-next:hover,
.header .slider_controls .swiper-button-prev:hover {
  background-color: var(--main-color);
}

.header .slider_controls .swiper-button-next:hover::after,
.header .slider_controls .swiper-button-prev:hover::after {
  color: #fff;
}

.header .slider_controls .swiper-button-next::after,
.header .slider_controls .swiper-button-prev::after {
  font-size: 21px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .slider_controls .swiper-pagination {
  display: block;
  min-height: 100px;
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  color: #fff;
  font-size: 25px;
}

.header .slider_controls .swiper-pagination span {
  color: #fff;
  margin: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* --------------- about --------------- */
.about {
  position: relative;
  padding: 130px 0;
}

.about::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 30px solid var(--sub-color);
  pointer-events: none;
}

.about .imgs {
  position: relative;
  height: 540px;
}

.about .imgs::before {
  position: absolute;
  content: "";
  right: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
  border: 5px solid var(--main-color);
  opacity: 0.1;
  border-radius: 0;
}

.about .imgs > img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
  z-index: 5;
}

.about .imgs > img:first-of-type {
  width: 60%;
  height: 60%;
}

.about .imgs > img:last-of-type {
  width: 60%;
  height: 60%;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  margin-top: -100px;
}

.about .imgs .exp-box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 30px;
  text-align: center;
  margin-top: 12px;
  background-color: #fff;
  z-index: 10;
  width: 220px;
  height: 180px;
  -webkit-box-shadow: 10px 10px 30px #0002;
          box-shadow: 10px 10px 30px #0002;
}

.about .imgs .exp-box .icon {
  height: 50px;
  margin-bottom: 10px;
}

.about .imgs .exp-box h2 {
  color: var(--main-color);
  font-size: 40px;
  margin-bottom: 10px;
}

.about .imgs .exp-box h6 {
  font-size: 15px;
}

.about .numbers {
  position: relative;
  padding-top: 80px;
  width: calc(100% + 90px);
}

.about .numbers .item {
  position: relative;
  padding: 30px 15px;
  text-align: center;
  background-image: linear-gradient(-145deg, #00488415, transparent);
  margin-top: 12px;
  height: calc(100% - 12px);
}

.about .numbers .item .icon {
  height: 50px;
  margin-bottom: 10px;
}

.about .numbers .item h2 {
  color: var(--main-color);
  font-size: 30px;
  margin-bottom: 5px;
}

.about .numbers .item h6 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.about .numbers .item small {
  display: block;
  font-size: 10px;
}

.about .section-head h2 {
  font-size: 40px !important;
}

/* --------------- sectors --------------- */
.sectors {
  position: relative;
  padding: 100px 0;
  z-index: 20;
}

.sectors .container {
  position: relative;
  z-index: 20;
}

.sectors .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.sectors .cards .item {
  position: relative;
  display: block;
  margin-top: 20px;
  overflow: hidden;
  width: 25%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sectors .cards .item .img {
  position: relative;
  height: 500px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sectors .cards .item .img::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0005;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sectors .cards .item .img img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sectors .cards .item .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 50px;
  color: #fff;
  text-align: center;
  -webkit-transform: translateY(calc(100% - 130px));
          transform: translateY(calc(100% - 130px));
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.sectors .cards .item .info .title {
  font-size: 18px;
  margin-bottom: 30px;
}

.sectors .cards .item .info i {
  font-size: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sectors .cards .item .info p {
  font-size: 16px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  /*height: 80px;*/
  /*overflow: hidden;*/
}

.sectors .cards .item:hover {
  width: 40%;
}

.sectors .cards .item:hover .info {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sectors .cards .item:hover .info p {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.sectors .lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  z-index: -1;
}

.sectors .lines span {
  width: 1px;
  height: 100%;
  background-color: var(--sub-color);
}

@media screen and (max-width: 991px) {
  .sectors {
    padding: 50px 0;
  }
  .sectors .projects .project_card .img {
    height: 350px;
  }
}

/* --------------- activities --------------- */
.activities {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--sub-color)), to(transparent));
  background-image: linear-gradient(to right, var(--sub-color), transparent);
}

.activities .cards {
  position: relative;
}

.activities .cards .item {
  position: relative;
  padding: 50px;
  background-color: #fff;
  border-radius: 0;
  border: 2px solid #00488422;
  -webkit-box-shadow: 10px 10px 0 #00488411;
          box-shadow: 10px 10px 0 #00488411;
  margin-top: 60px;
  overflow: hidden;
  z-index: 20;
  min-height: 185px;
}

.activities .cards .item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(100%, #ffffffbf), to(transparent));
  background-image: linear-gradient(to left, #fff, #ffffffbf 100%, transparent);
  z-index: -1;
}

.activities .cards .item .icon {
  height: 60px;
}

.activities .cards .item .text {
  font-size: 15px;
  font-weight: 600;
}

.activities .cards .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}

.activities .line {
  position: absolute;
  width: 70%;
  bottom: 0;
  right: 0;
  opacity: 0.2;
}

.activities .grid {
  position: absolute;
  width: 60%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
}

/* --------------- activities style 2 --------------- */
.activities-st2 {
  position: relative;
  background-image: -webkit-gradient(linear, right top, left top, from(var(--sub-color)), to(transparent));
  background-image: linear-gradient(to left, var(--sub-color), transparent);
  z-index: 20;
}

.activities-st2 .accordion .accordion-item {
  position: relative;
  background-color: #ffff;
  margin-bottom: 15px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.activities-st2 .accordion .accordion-item .accordion-button {
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 16px;
  font-weight: bold;
  padding: 30px;
}

.activities-st2 .accordion .accordion-item .accordion-button .num {
  opacity: 0.5;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.activities-st2 .accordion .accordion-item .accordion-body {
  padding: 0 30px 30px;
}

.activities-st2 .accordion .accordion-item .accordion-body .text {
  font-size: 15px;
  color: #777;
}

.activities-st2 .accordion .accordion-item .accordion-body .link {
  margin-top: 20px;
  color: var(--main-color);
  font-weight: bold;
  font-size: 12px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.activities-st2 .main-img {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 0 25%;
}

.activities-st2 .main-img .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 300px;
  height: 300px;
}

.activities-st2 .main-img .txt {
  position: absolute;
  top: 20%;
  inset-inline-end: -30px;
  padding: 13px 20px;
  background-color: #fff;
  font-weight: bolder;
  border-radius: 5px;
  font-size: 13px;
  -webkit-box-shadow: 5px 5px 20px #0001;
          box-shadow: 5px 5px 20px #0001;
  width: 140px;
  text-align: center;
}

.activities-st2 .imgs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -150px;
}

.activities-st2 .imgs .item {
  position: relative;
  display: inline-block;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.activities-st2 .imgs .item .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 170px;
  height: 170px;
}

.activities-st2 .imgs .item .txt {
  position: absolute;
  bottom: 20%;
  inset-inline-end: -60px;
  padding: 13px 20px;
  background-color: #E6F2FB;
  font-weight: bolder;
  border-radius: 5px;
  font-size: 13px;
  -webkit-box-shadow: 5px 5px 20px #0001;
          box-shadow: 5px 5px 20px #0001;
  width: 140px;
  text-align: center;
}

.activities-st2 .imgs .item:nth-of-type(2) {
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  margin-top: 170px;
}

.activities-st2 .imgs .item:nth-of-type(2) .txt {
  background-color: #000;
  color: #fff;
  left: auto;
  right: -60px;
}

.activities-st2 .imgs .item:nth-of-type(3) {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  margin-top: 100px;
}

.activities-st2 .imgs .item:nth-of-type(3) .txt {
  background-color: #E6F2FB;
  left: auto;
  right: -60px;
}

.activities-st2 .grid {
  position: absolute;
  width: 60%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.portfolio {
  position: relative;
  background-image: url(../images/hero2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: 120px 0;
}

.portfolio::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

.portfolio .container {
  position: relative;
  z-index: 10;
}

.portfolio .title_box {
  position: relative;
  height: calc(100% - 20px);
  z-index: 20;
}

.portfolio .title_box::after {
  position: absolute;
  content: "";
  right: -50px;
  bottom: 50px;
  height: 100%;
  width: 100%;
  border: 20px solid #fff;
  opacity: 0.1;
  z-index: -1;
}

.portfolio .title_box .cont {
  padding: 30px;
  -webkit-box-shadow: 0 0 20px #0001;
          box-shadow: 0 0 20px #0001;
  background-color: #fff;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  z-index: 30;
}

.portfolio .title_box .cont h2 {
  font-size: 50px;
  color: var(--main-color);
  margin-bottom: 50px;
}

.portfolio .title_box .cont .arrows {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.portfolio .title_box .cont .arrows .swiper-button-next,
.portfolio .title_box .cont .arrows .swiper-button-prev {
  position: static;
  margin: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid #9995;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.portfolio .title_box .cont .arrows .swiper-button-next::after,
.portfolio .title_box .cont .arrows .swiper-button-prev::after {
  font-size: 18px;
  color: #000;
}

.portfolio .title_box .cont .arrows .swiper-button-next:hover,
.portfolio .title_box .cont .arrows .swiper-button-prev:hover {
  background-color: #172b56;
}

.portfolio .title_box .cont .arrows .swiper-button-next:hover::after,
.portfolio .title_box .cont .arrows .swiper-button-prev:hover::after {
  color: #fff;
}

.portfolio .projects_slider {
  position: relative;
}

.portfolio .projects_slider .swiper-slide {
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.portfolio .projects_slider .swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.portfolio .projects_slider .swiper-slide-next {
  opacity: 1;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.portfolio .projects_slider .swiper-slide-next ~ .swiper-slide {
  opacity: 1;
  -webkit-transform: scale(0.75) translateX(15%);
          transform: scale(0.75) translateX(15%);
  opacity: 1;
}

.portfolio .project_card {
  position: relative;
}

.portfolio .project_card .img {
  display: block;
  height: 500px;
}

.portfolio .project_card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio .project_card .info {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  padding: 20px;
  margin-top: 20px;
  -webkit-box-shadow: 0 0 20px #0001;
          box-shadow: 0 0 20px #0001;
  background-color: #fff;
}

.portfolio .project_card .info .date {
  font-size: 11px;
  color: var(--main-color);
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.portfolio .project_card .info .proj_title {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: bold;
}

.portfolio .project_card .info .text {
  font-size: 12px;
}

.portfolio .project_card .info .link {
  margin-top: 15px;
  color: var(--main-color);
  font-weight: bold;
  font-size: 12px;
}

.portfolio .lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  pointer-events: none;
  z-index: 5;
}

.portfolio .lines span {
  width: 1px;
  height: 100%;
  background-color: #fff2;
}

/* --------------- clients --------------- */
.clients {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.clients .clients-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.clients .client {
  position: relative;
  height: 130px;
  padding: 20px;
  display: block;
}

.clients .client img {
  max-width: 70%;
  margin: 0 auto;
  display: block;
}

.clients .client::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 30%;
  height: 30%;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  opacity: 0.2;
}

.clients .client::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  opacity: 0.2;
}

.clients .client img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  background-image: url(../images/grid.png);
  background-color: var(--sub-color);
  padding-top: 100px;
  z-index: 20;
}

.footer::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
  background-image: linear-gradient(to bottom, #fff, transparent);
}

.footer .top_info {
  padding: 100px 0 70px;
}

.footer .foot_logo {
  height: 100px;
}

.footer .sub-title {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.footer .sub-title::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 30%;
  height: 40%;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
}

.footer .download-wrapper .item {
  position: relative;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.footer .download-wrapper .item .icon {
  font-size: 20px;
  color: var(--main-color);
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--sub-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
}

.footer .download-wrapper .item .arrow {
  font-size: 20px;
  color: var(--main-color);
}

.footer .download-wrapper .item:hover {
  -webkit-box-shadow: 10px 10px 30px #0001;
          box-shadow: 10px 10px 30px #0001;
}

.footer .contact_list {
  margin-top: 40px;
}

.footer .contact_list li {
  margin: 10px 0;
}

.footer .links li {
  margin: 20px 0;
  font-weight: 600;
}

.footer .links li a {
  font-size: 15px;
}

.footer .links li a:hover {
  text-decoration: underline;
}

.footer .foot {
  padding: 30px 0;
  border-top: 1px solid #00488433;
  text-align: center;
}

.footer .social-links {
  position: relative;
  margin-top: 30px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px #00000005;
          box-shadow: 5px 5px 10px #00000005;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.footer .social-links a:hover {
  background-color: var(--main-color);
  color: #fff;
}

/* --------------- pg_header --------------- */
.pg_header {
  background: var(--main-color);
  padding: 150px 0 70px 0;
  position: relative;
}

.pg_header .grid {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* --------------- sector_det_pg --------------- */
.sector_det_pg .imgs > img:first-of-type {
  width: 80%;
  height: 100%;
  display: block;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.sector_det_pg .imgs img:last-of-type {
  width: 40%;
  border: 8px solid #fff;
  height: 40%;
  margin-top: 0;
  position: absolute;
  bottom: 15%;
  inset-inline-start: 0;
  -webkit-box-shadow: 0 0 25px 0 #0002;
          box-shadow: 0 0 25px 0 #0002;
}

.sector_det_pg .imgs::before {
  right: 11%;
}

.sectors_sect_det .cards .item {
  width: 100%;
}

.sectors_sect_det .cards .item .info {
  padding: 30px 2vw;
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}

.sectors_sect_det .cards .item .info p {
  -webkit-transition-delay: 0s !important;
          transition-delay: 0s !important;
}

.sectors_sect_det .cards .item:hover {
  width: 100% !important;
}

.sectors_sect_det .cards .item:hover .info {
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
}

/* --------------- activity_det_pg --------------- */
.activity_det_pg .txt_box {
  background-color: #fff;
  padding: 45px;
  margin-top: -135px;
  position: relative;
  z-index: 5;
  inset-inline-start: 15px;
}

.activity_det_pg .about {
  padding: 0;
  background-color: #f9f9f95b;
}

.activity_det_pg .about::after {
  display: none !important;
}

.ul li {
  color: #77797C;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}

.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(--main-color);
}

.activities_act_det {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--sub-color)), to(transparent));
  background-image: linear-gradient(to bottom, var(--sub-color), transparent);
}

.activities_act_det .accordion .accordion-item {
  -webkit-box-shadow: 3px 15px 10px 0 #a7a7a711;
          box-shadow: 3px 15px 10px 0 #a7a7a711;
}

/* --------------- pg_header --------------- */
.project_det_pg {
  padding: 70px 0;
  position: relative;
}

.project_det_pg .inner {
  border: 1px solid #eee;
  padding: 45px 2vw;
}

.project_det_pg .inner .box {
  position: relative;
}

.project_det_pg .inner .box .imgs {
  height: 550px;
}

.project_det_pg .inner .data_row {
  z-index: 5;
}

.project_det_pg .inner .data_row .data_box {
  padding: 25px 20px;
  background-color: #f9f9f9;
  margin-bottom: 25px;
}

.project_det_pg .inner .data_row .data_box i {
  font-size: 30px;
  color: #004884;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.project_det_pg .inner .data_row .data_box p {
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}

.project_det_pg .inner .data_row .data_box h6 {
  font-weight: 500;
  font-size: 15px;
}

.project_det_pg .info .date {
  font-size: 14px;
  color: var(--main-color);
}

.project_det_pg .info .date .item {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
}

.portolio_proj_det {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), color-stop(#fff), to(#fff));
  background-image: linear-gradient(to bottom, #f5f5f5, #fff, #fff);
}

.portolio_proj_det::after {
  display: none;
}

/* --------------- content_pg --------------- */
.content_pg {
  padding: 100px 0;
}

.content_pg h5 {
  font-size: 20px;
}

.content_pg .p {
  font-size: 17px;
}

.content_pg .ul li {
  color: #444;
  margin-bottom: 5px;
  display: block;
  position: relative;
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  font-size: 17px;
}

.content_pg .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;
}

.content_pg .pattern {
  position: absolute;
  top: 30%;
  left: -70px;
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact_pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.contact_pg .contact_box {
  padding: 45px 2vw;
  -webkit-box-shadow: 0 8px 30px 0 #96969623;
          box-shadow: 0 8px 30px 0 #96969623;
  border-radius: 10px;
  margin-bottom: 35px;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  background-image: linear-gradient(-145deg, #00488415, transparent);
}

.contact_pg .contact_box .icon_box {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  font-size: 25px;
  background-color: #fff;
  color: var(--main-color);
}

.contact_pg .contact_box .txt_content {
  text-align: center;
}

.contact_pg .contact_box .txt_content .title {
  font-size: 18px;
  color: #000;
}

.contact_pg .contact_box .txt_content .p {
  color: #575757;
  font-size: 16px;
}

.contact_pg .contact_box .txt_content .social_links a {
  color: var(--main-color);
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  font-size: 20px;
}

.contact_pg .contact_box .txt_content .social_links a:hover {
  background-color: var(--main-color);
  color: #fff !important;
}

.contact_pg .form_box {
  position: relative;
}

.contact_pg .form_box .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.contact_pg .form_box .form-group .form-control {
  background-color: #F4F4F4;
  border-radius: 5px;
  border-color: #F4F4F4;
  -webkit-padding-start: 50px;
          padding-inline-start: 50px;
}

.contact_pg .form_box .form-group .icon {
  color: var(--main-color);
  font-size: 20px;
  position: absolute;
  top: 16px;
  inset-inline-start: 20px;
}

.contact_pg .form_box .form-group input, .contact_pg .form_box .form-group select {
  height: 60px !important;
}

.contact_pg .form_box .form-group textarea {
  padding-top: 23px;
}

.contact_pg .form_box .butn {
  height: 60px;
  border-radius: 5px;
}

/* --------------- to_top --------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar {
    position: relative;
    background-color: #111;
    padding: 15px;
  }
  .navbar.fixed-nav .navbar-toggler {
    background-color: var(--main-color);
  }
  .navbar .navbar-collapse {
    padding: 20px 0;
  }
  .section-head h2 {
    font-size: 35px;
  }
  .header .content .info h1 {
    font-size: 25px;
  }
  .header .slider_controls {
    width: calc(100% - 21vw);
  }
  .about::after {
    border-width: 5px;
  }
  .about .numbers {
    width: 100%;
  }
  .activities-st2 {
    overflow: hidden;
  }
  .sectors .cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 15px;
    gap: 0;
  }
  .sectors .cards .item {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .sectors .cards .item .img {
    height: 300px;
  }
  .sectors .cards .item .info {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .sectors .cards .item .info p {
    opacity: 1;
    /*height: 70px;*/
  }
  .activities-st2 .imgs-side {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  .activities-st2 .imgs-side .main-img {
    margin-top: 20px;
    margin: 0 auto 0 10%;
  }
  .activities-st2 .imgs-side .imgs {
    margin-top: -120px;
    right: -20%;
  }
  
  .about .imgs {
      margin-top: 20px;
  }
  
  .header {
      overflow: hidden;
  }
  
  .header .slider_controls {
      left: 16vw !important;
  }
  
  .pg_header {
      padding: 50px 0;
  }
  
  
}

/* ======= */
html[dir="ltr"] {
}

html[dir="ltr"] body {
  direction: ltr;
  font-family: 'Poppins', sans-serif;
}
/*# sourceMappingURL=style.css.map */