@import url(helper.css);
@font-face {
  font-family: "Somar-Bold";
  src: url(../fonts/somar/Somar-Bold.otf);
}
@font-face {
  font-family: "Somar-Medium";
  src: url(../fonts/somar/Somar-Medium.otf);
}
@font-face {
  font-family: "Somar-Light";
  src: url(../fonts/somar/Somar-Light.otf);
}
@font-face {
  font-family: "Azer-light";
  src: url(../fonts/azer/Azer-light.otf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --main-color: #106836;
  --sub-color: #0C2646;
  /* --subColor2: #77643d; */
}

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

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

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

.sub-back {
  background-color: var(--sub-color) !important;
  border-color: var(--sub-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: "Azer-light";
  text-decoration: none;
  font-size: 21px;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
  color: #0C2646;
}

.somar-light {
  font-family: "Somar-Light";
}

.somar-font {
  font-family: "Somar-Medium";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Somar-Bold";
  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 {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  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: 21px;
  line-height: 1.8;
}

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

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

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
    font-size: 18px;
    text-align: center;
    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;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #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;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
  padding: 15px 35px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  border: 0;
  background: var(--main-color);
  color: #fff;
  font-family: "Somar-Medium";
}
.butn:hover {
  color: #fff;
  box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
  transform: translateY(-2px);
}
.butn.butn-white {
  background: #fff;
  color: var(--main-color);
}
.butn.butn-white:hover {
  background-color: var(--main-color);
  color: #fff;
}
.butn.butn-border {
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.butn.butn-border:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.butn.md-butn {
  padding: 12px 25px;
  font-size: 13px;
}
.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.butn.hvr-scale:hover {
  transform: scale(1.1);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.4s ease;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 20px 0;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-size: 24px;
  margin-inline-end: 20px;
}
.navbar .lang_butn  {
    width: auto;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    color: #666;
}

/* --------------- header --------------- */
.header {
  position: relative;
}
.header .video {
  position: relative;
}
.header .info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 150px 0;
  z-index: 20;
  color: #fff;
}
.header .info h1 {
  position: relative;
  font-size: 115px;
  font-weight: bolder;
  line-height: 1;
}
.header .info .sub-title {
  position: relative;
  font-size: 85px;
  font-weight: 100;
}
.header .shap {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 50%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
  opacity: 0.2;
}

/* --------------- shapes-sec --------------- */
.shapes-sec {
  position: relative;
}
.shapes-sec::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background-image: url(../images/shap-top.png);
  background-position: top;
  background-repeat: repeat-x;
  z-index: 10;
}
.shapes-sec::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30px;
  background-image: url(../images/shap-btm.png);
  background-position: bottom;
  background-repeat: repeat-x;
  z-index: 10;
}

/* --------------- about --------------- */
.about {
  position: relative;
}
.about .content {
  position: relative;
  z-index: 20;
}
.about .content .shap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* --------------- vision --------------- */
.vision {
  position: relative;
  background-image: url(../images/vision-bg.jpg);
  background-size: cover;
  color: #fff;
}
.vision .imgs {
  position: relative;
  clip-path: polygon(92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%, 0 0);
}
.vision .imgs .img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

/* --------------- values --------------- */
.values {
  position: relative;
}
.values .cards {
  display: flex;
  padding-top: 30px;
}
.values .cards .item {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  z-index: 10;
  padding: 20px 30px;
  text-align: center;
  margin-top: 30px;
}
.values .cards .item .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.values .cards .item .arrow {
  position: absolute;
  top: 75px;
  left: -40px;
  width: 100%;
}
.values .cards .item .check {
  position: absolute;
  top: 55px;
  left: -40px;
  width: 100px;
}
.values .cards .item .num {
  position: absolute;
  left: calc(50% - 20px);
  bottom: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  padding-top: 5px;
}
.values .cards .item:nth-of-type(even) .line {
  transform: rotate(180deg);
}
.values .cards .item:nth-of-type(even) .num {
  bottom: auto;
  top: -20px;
}

/* --------------- story --------------- */
.story {
  position: relative;
  background-color: #F0F2F6;
}
.story .cards {
  position: relative;
  z-index: 20;
}
.story .cards::after {
  position: absolute;
  content: "";
  left: 0;
  top: 252px;
  height: 1px;
  width: 100%;
  background-color: #000;
  z-index: -1;
}
.story .cards .row .col-lg-3:nth-of-type(even) .story-item {
  margin-top: 240px;
  flex-direction: column-reverse;
}
.story .story-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.story .story-item .circle {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border-radius: 50%;
  outline: 5px solid rgba(16, 104, 54, 0.1333333333);
}

/* --------------- investments --------------- */
.investments {
  position: relative;
  overflow: hidden;
}
.investments .invest-slider {
  position: relative;
}
.investments .invest-slider .swiper-slide {
  height: auto;
}
.investments .invest-card {
  position: relative;
  padding: 30px;
  height: 100%;
  z-index: 10;
}
.investments .invest-card .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: -1;
}

.swiper-arrows {
  position: relative;
  width: 130px;
  height: 40px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  color: #fff;
  transition: all 0.3s ease;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--main-color);
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  background-color: var(--sub-color);
  color: #fff;
  z-index: 20;
}
.footer .shap {
  position: absolute;
  top: 0;
  left: 30%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.footer .social-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.footer .social-wrapper .social-icons a {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-inline-end: 3px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer .foot-title {
  position: relative;
  font-size: 30px;
  color: #1DA872;
  margin-bottom: 15px;
}
.footer .main-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.footer .main-links li {
  position: relative;
  width: 33%;
}
.footer .main-links li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
}
.footer .foot {
  border-top: 1px solid rgba(255, 255, 255, 0.1333333333);
}


.services-st3 .swiper-slide {
    height: auto;
}
.services-st3 .swiper-button-lock {
    display: flex;
}
.services-st3 .swiper-pagination {
    display: flex;
    justify-content: center;
    bottom: 15px;
}
.services-st3 .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--cr-purble) ;
}
.services-st3 .swiper-button-prev, 
.services-st3 .swiper-rtl .swiper-button-next {
    left: 2%;
}
.services-st3 .swiper-button-next, 
.services-st3 .swiper-rtl .swiper-button-prev {
    right: 2%;
}
/* ======== */
@media screen and (max-width: 991px) {
  .values .cards {
    flex-wrap: wrap;
  }
  .values .cards .item {
    margin: 30px auto;
  }
  .values .cards .item .line {
    transform: rotate(180deg);
  }
  .values .cards .item .num {
    bottom: auto;
    top: -20px;
  }
  .values .cards .item .arrow,
  .values .cards .item .check {
    display: none;
  }
  .story .cards::after {
    display: none;
  }
  .story .cards .row .col-lg-3:nth-of-type(even) .story-item {
    margin-top: 30px;
    flex-direction: column;
  }
  .story .cards .row .col-lg-3 .story-item {
    margin-top: 30px;
    flex-direction: column;
  }
  .story .cards .row .col-lg-3 .story-item .circle {
    display: none;
  }
  .footer .foot-title {
    margin-top: 20px;
  }
  .about .content .shap {
    display: none;
  }
  .vision .info {
    margin-bottom: 30px;
  }
  .fsz-65 {
    font-size: 35px !important;
  }
  .header video {
    min-height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .header .info h1 {
    font-size: 50px;
  }
  .header .info .sub-title {
    font-size: 40px;
  }
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */