:root {
  --primary-font-family: "IBM Plex Sans Arabic", sans-serif;
  --primary-color: #003b4d;
  --secondary-color: #1f8899;
  --dark-color: #002526;
  --green-color: #8BC34A;
}

.col_1 {
  width: 8.3333333333%;
  padding: 0 15px;
}

.col_2 {
  width: 16.6666666667%;
  padding: 0 15px;
}

.col_3 {
  width: 25%;
  padding: 0 15px;
}

.col_4 {
  width: 33.3333333333%;
  padding: 0 15px;
}

.col_6 {
  width: 50%;
  padding: 0 15px;
}
@media (max-width: 460px) {
  .col_6 {
    width: 100%;
  }
}

.col_7 {
  width: 58.3333333333%;
  padding: 0 15px;
}

.col_8 {
  width: 66.6666666667%;
  padding: 0 15px;
}

.col_9 {
  width: 75%;
  padding: 0 15px;
}

.col_10 {
  width: 83.3333333333%;
  padding: 0 15px;
}

.col_11 {
  width: 91.6666666667%;
  padding: 0 15px;
}

.col_12 {
  width: 100%;
  padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  white-space: normal;
}

body {
  direction: rtl;
  font-family: var(--primary-font-family);
  font-size: 16px;
  text-align: right;
  background-color: var(--primary-color);
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

textarea {
  font-family: var(--primary-font-family);
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

input[type=button], input[type=submit], input[type=reset] {
  -webkit-appearance: none;
}

.container {
  width: 1160px;
  margin: auto;
}
@media screen and (max-width: 1160px) {
  .container {
    width: 1024px;
  }
}
@media (max-width: 1040px) {
  .container {
    width: 740px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

.justify-content-space-between {
  justify-content: space-between;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.txt_color {
  color: var(--secondary-color);
}

section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@keyframes zoomOut {
  from {
    transform: translate3d(0px, 0px, 0px) scale(1.2, 1.2);
  }
  to {
    transform: translate3d(0px, 0px, 0px) scale(1, 1);
  }
}
.main_header {
  position: fixed;
  top: 0;
  width: 100%;
  right: 0;
  z-index: 9999;
  background-color: hsla(194.03, 100%, 15.1%, 0.1);
}
.main_header.scrolled {
  background-color: #013444;
}
.main_header .header_content {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media (max-width: 1040px) {
  .main_header .header_content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main_header .header_content .brand_wrapper {
    position: absolute;
    top: 10px;
  }
}
.main_header .header_content .brand_wrapper img {
  width: 80px;
  display: block;
}

.main_nav_icon {
  display: none;
  position: absolute;
  top: 28px;
  left: 20px;
  background-color: var(--green-color);
  width: 48px;
  height: 48px;
  border-radius: 6px;
}
.main_nav_icon span {
  position: absolute;
  height: 1px;
  width: 16px;
  background-color: #fff;
  display: block;
  left: 16px;
}
.main_nav_icon span:nth-child(1) {
  top: 16px;
}
.main_nav_icon span:nth-child(2) {
  top: 24px;
}
.main_nav_icon span:nth-child(3) {
  top: 32px;
}
@media (max-width: 768px) {
  .main_nav_icon {
    display: block;
  }
}

@media (max-width: 768px) {
  .main_menu_wrapper {
    width: 100%;
    height: 84px;
  }
}
@media (max-width: 768px) {
  .main_menu_wrapper nav {
    display: none;
  }
}
.main_menu_wrapper nav.open {
  display: block;
  background-color: var(--primary-color);
  padding: 15px;
  margin: 95px -20px 0;
  height: 100vh;
}
.main_menu_wrapper nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}
@media (max-width: 768px) {
  .main_menu_wrapper nav ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul {
    gap: 0 10px;
  }
}
@media (max-width: 768px) {
  .main_menu_wrapper nav ul li {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #1e5354;
    padding-bottom: 10px;
  }
  .main_menu_wrapper nav ul li:last-child {
    border-bottom: 0;
    border: none;
    margin-bottom: 0;
  }
}
.main_menu_wrapper nav ul a {
  padding: 5px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  display: block;
  background: none;
}
.main_menu_wrapper nav ul a:hover {
  background-color: var(--secondary-color);
  color: #fff !important;
  -webkit-border-radius: 10px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 10px;
  -moz-border-radius-bottomleft: 0;
  border-radius: 10px;
  border-bottom-left-radius: 0;
}
@media (max-width: 1040px) {
  .main_menu_wrapper nav ul a {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.main_menu_wrapper nav ul a span {
  padding: 0 5px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  display: inline-block;
}
@media (max-width: 768px) {
  .main_menu_wrapper nav ul a {
    color: #fff;
    padding: 0 15px;
    font-size: 16px;
  }
}
.main_menu_wrapper nav ul a.active-section {
  color: var(--green-color);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 30px;
}
@media (max-width: 768px) {
  .main_menu_wrapper nav ul a.active-section {
    background: none;
    color: #fff;
  }
}

section.hero {
  position: relative;
  padding: 150px 0 60px;
  height: 100vh;
  min-height: 800px;
  /*
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/01.jpg);
  background-attachment: fixed;*/
  /*
  &:after {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background-color: var(--primary-color);
      top: 0;
      right: 0;
      z-index: 1;
      opacity: .7;
  }*/
  /*
  &:before {
      content: "";
      position: absolute;
      display: block;
      height: 800px;
      width: 800px;
      background-image: url(../images/shape__01.svg);
      background-repeat: no-repeat;
      top: 0;
      left: 0;
      z-index: 2;
      opacity: 0.2;
      background-size: cover;
      background-position: center bottom;
  }*/
}
section.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
section.hero .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  section.hero {
    background-position: left bottom;
    height: inherit;
    min-height: inherit;
    padding-bottom: 0;
  }
}
section.hero .headline_container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 120px;
}
section.hero .headline_container.home {
  animation: zoomOut 2s ease-out;
}
@media (max-width: 768px) {
  section.hero .headline_container {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  section.hero .headline_container {
    padding-top: 60px;
  }
}
section.hero .headline_container .headline {
  text-align: center;
}
section.hero .headline_container .headline h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1040px) {
  section.hero .headline_container .headline h2 {
    font-size: 30px;
  }
}
section.hero .headline_container .headline h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
}
section.hero .headline_container .headline h3 strong {
  font-weight: 700;
  display: block;
}
section.hero .actions_list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1040px) {
  section.hero .actions_list {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  section.hero .actions_list {
    width: 100%;
    justify-content: center;
  }
}
section.hero .actions_list a {
  transition: all 0.5s ease-in;
  font-size: 18px;
  background: var(--secondary-color);
  padding: 10px 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  -webkit-border-radius: 10px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 10px;
  -moz-border-radius-bottomleft: 0;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  height: 50px;
  font-weight: 600;
}
section.hero .actions_list a:first-child {
  background-color: var(--green-color);
}
section.hero .actions_list a:first-child:hover {
  background: #649b25;
}
@media (max-width: 480px) {
  section.hero .actions_list a {
    font-size: 16px;
    padding: 5px 10px;
  }
}
section.hero .actions_list a:hover {
  background: var(--dark-color);
}
section.hero .actions_list a svg {
  height: 24px;
}
section.hero .hero_infos__wrapper {
  position: absolute;
  width: 100%;
  bottom: -1px;
  right: 0;
  padding: 80px 0;
  padding: 120px 0 120px 0;
  background-color: #003C4D;
  background: linear-gradient(to bottom, rgba(0, 60, 77, 0.1882352941), #003C4D 30%, #003C4D 52%, #003c4d 100%);
}
@media (max-width: 768px) {
  section.hero .hero_infos__wrapper {
    position: relative;
  }
}
section.hero .hero_infos__wrapper .hero_infos__container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-around;
  color: #BDCF13;
}
@media (max-width: 768px) {
  section.hero .hero_infos__wrapper .hero_infos__container {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}
section.hero .hero_infos__wrapper .hero_infos__container .item {
  text-align: center;
}
section.hero .hero_infos__wrapper .hero_infos__container .item .num {
  font-size: 42px;
  display: block;
  font-weight: 700;
  direction: ltr;
}
section.hero .hero_infos__wrapper .hero_infos__container .item .label {
  font-size: 22px;
}

.career-page-content {
  background-image: url(../images/career.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  height: 100vh;
}
.career-page-content .content {
  width: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 40px;
  border-radius: 40px;
}

section.hero.hero_page {
  height: 380px;
  min-height: 380px;
  background: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-color: var(--primary-color);
}
section.hero.hero_page.hero_career {
  background-image: url(../images/career.jpg);
}
section.hero.hero_page.hero_career:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 60, 77, 0), rgba(0, 60, 77, 0.9803921569) 20%, #003C4D 52%, #003c4d 100%);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0.9;
}
section.hero.hero_page .headline_container {
  padding-top: 60px;
}

section.about-us {
  position: relative;
  padding: 240px 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/shutterstock_24214766672_1.png);
  height: 1150px;
  padding-top: 500px;
  /*
  &:after {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 100%;
      background-color: var(--primary-color);
      top: 0;
      right: 0;
      z-index: 1;
      opacity: .95;
  }*/
}
@media (max-width: 1040px) {
  section.about-us {
    height: 750px;
    padding-top: 286px;
    background-position: 20% 0;
  }
}
section.about-us:before {
  content: "";
  position: absolute;
  display: block;
  height: 180px;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 60, 77, 0), rgba(0, 60, 77, 0.7098039216) 30%, #003C4D 52%, #003c4d 100%);
}
section.about-us .container {
  position: relative;
  z-index: 2;
}
section.about-us .content {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 40px;
  border-radius: 40px;
}
@media (max-width: 768px) {
  section.about-us .content {
    width: 100%;
  }
}
section.about-us .content h2 {
  font-size: 42px;
}
@media (max-width: 768px) {
  section.about-us .content h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  section.about-us .content h2 {
    font-size: 26px;
  }
}
section.about-us .content p {
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
}
@media (max-width: 768px) {
  section.about-us .content p {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  section.about-us .content p {
    font-size: 18px;
  }
}
section.about-us .content p strong {
  color: var(--secondary-color);
}

.portfolio__content {
  display: flex;
  flex-wrap: wrap;
  /* Add some styles for visual separation */
}
.portfolio__content .col {
  box-sizing: border-box;
}
.portfolio__content .col-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.portfolio__content .col-1 .row {
  flex: 1;
  display: flex;
}
.portfolio__content .col-1 .row:first-child {
  flex: 2;
}
.portfolio__content .col-1 .row:first-child .sub-col {
  width: 50%;
}
.portfolio__content .col-1 .row:last-child {
  flex: 1;
  width: 100%;
}
.portfolio__content .col-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.portfolio__content .col-2 .row {
  flex: 1;
  width: 100%;
}
.portfolio__content .col-3 {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.portfolio__content .col-3 .row:first-child {
  flex: 1;
  width: 100%;
}
.portfolio__content .col-3 .row:last-child {
  flex: 2;
  display: flex;
}
.portfolio__content .col-3 .row:last-child .sub-col {
  width: 50%;
}
.portfolio__content .col-4 {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.portfolio__content .col-4 .row:first-child {
  flex: 2;
  display: flex;
}
.portfolio__content .col-4 .row:first-child .sub-col {
  width: 50%;
}
.portfolio__content .col-4 .row:last-child {
  flex: 1;
  width: 100%;
}
.portfolio__content .row, .portfolio__content .sub-col {
  box-sizing: border-box;
}
.portfolio__content .row img, .portfolio__content .sub-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #003C4D;
}
.portfolio__content .row img:hover, .portfolio__content .sub-col img:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .portfolio__content .col {
    width: 100%;
  }
}

section.services-section {
  position: relative;
  --bg-image: url("../images/services/01.jpg");
}
section.services-section:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background-image: url(../images/services/01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-image: var(--bg-image);
}
section.services-section.fade-in:after {
  opacity: 1;
}
section.services-section .container {
  position: relative;
  z-index: 2;
}
section.services-section .container {
  position: relative;
  z-index: 2;
}
section.services-section h2 {
  font-size: 42px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  section.services-section h2 {
    font-size: 32px;
    text-align: right;
  }
}
@media (max-width: 480px) {
  section.services-section h2 {
    font-size: 26px;
  }
}
section.services-section h3 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  section.services-section h3 {
    font-size: 32px;
    text-align: right;
  }
}
@media (max-width: 480px) {
  section.services-section h3 {
    font-size: 26px;
  }
}
section.services-section .services_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  gap: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.3843137255);
  border-radius: 40px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media (max-width: 1040px) {
  section.services-section .services_wrapper {
    width: 100%;
  }
}
section.services-section .services_wrapper .service_item {
  position: relative;
  width: calc(33.3333333333% - 20px);
  padding: 20px;
  background: rgba(255, 255, 255, 0.3843137255);
  border-radius: 20px;
  display: flex;
  border: 4px solid #fff;
}
section.services-section .services_wrapper .service_item.active {
  background-color: var(--green-color);
  border: 4px solid var(--green-color);
}
@media (max-width: 1040px) {
  section.services-section .services_wrapper .service_item {
    width: 44%;
  }
}
@media (max-width: 480px) {
  section.services-section .services_wrapper .service_item {
    width: 100%;
  }
}
section.services-section .services_wrapper .service_item .service_content h4 {
  font-size: 16px;
}
section.services-section .services_wrapper .service_item .service_content h4 a {
  color: #fff;
}
section.services-section .services_wrapper .service_item .icon_wrapper {
  position: relative;
}
section.services-section .services_wrapper .service_item .icon_wrapper img {
  width: 80px;
  position: relative;
  z-index: 2;
}

.service-section-wrapper {
  position: relative;
  /*
  background-image: url(../images/02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-top: 1px solid #1d7381;*/
  /*
  &:before {
      content: "";
      position: absolute;
      display: block;
      height: 800px;
      width: 800px;
      background-image: url(../images/shape__01.svg);
      background-repeat: no-repeat;
      top: -23px;
      right: -120px;
      z-index: 2;
      opacity: 0.1;
      background-size: contain;
      background-position: center bottom;
      transform: rotate(90deg);
      max-width:80%;
      @media (max-width: 480px) {
          display: none;
      }
  }*/
}
.service-section-wrapper:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0.9;
}
.service-section-wrapper .container {
  position: relative;
  z-index: 2;
}
.service-section-wrapper .container {
  position: relative;
  z-index: 3;
}
.service-section-wrapper:nth-child(even) {
  background-color: #04313e;
}
.service-section-wrapper h2.title {
  position: relative;
  font-size: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .service-section-wrapper h2.title {
    font-size: 22px;
  }
}
.service-section-wrapper h2.title:before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.service-section-wrapper h2.title:after {
  position: absolute;
  top: -30px;
  font-size: 40px;
  content: attr(service-number);
  display: none;
}
.service-section-wrapper .description {
  padding-right: 80px;
}
.service-section-wrapper .description p {
  font-size: 18px;
  margin-bottom: 5px;
}
.service-section-wrapper .description .spz {
  color: #8BC34A;
  width: fit-content;
  padding: 2px 5px;
  font-size: 34px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .service-section-wrapper .description .spz {
    font-size: 22px;
  }
}
.service-section-wrapper .description .spz_2 {
  background-color: #8BC34A;
  width: fit-content;
  padding: 2px 15px;
  font-size: 28px;
  -webkit-border-radius: 10px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 10px;
  -moz-border-radius-bottomleft: 0;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .service-section-wrapper .description .spz_2 {
    font-size: 22px;
  }
}
.service-section-wrapper .list-item-service {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 60px;
  padding-right: 80px;
}
.service-section-wrapper .list-item-service .item-service {
  width: calc(25% - 60px);
}
@media (max-width: 1040px) {
  .service-section-wrapper .list-item-service .item-service {
    width: calc(33.3333333333% - 60px);
  }
}
@media (max-width: 768px) {
  .service-section-wrapper .list-item-service .item-service {
    width: calc(50% - 60px);
  }
}
@media (max-width: 480px) {
  .service-section-wrapper .list-item-service .item-service {
    width: 100%;
  }
}
.service-section-wrapper .list-item-service .item-service .icon_wrapper {
  width: 100px;
  margin-bottom: 20px;
  position: relative;
}
.service-section-wrapper .list-item-service .item-service .icon_wrapper svg {
  width: 100px;
  height: 100px;
}
@media (max-width: 768px) {
  .service-section-wrapper .list-item-service .item-service .icon_wrapper {
    width: 80px;
  }
}
.service-section-wrapper .list-item-service .item-service .icon_wrapper:after {
  content: "";
  height: 2px;
  width: 100px;
  position: absolute;
  bottom: 0;
  background-color: var(--green-color);
}
.service-section-wrapper .list-item-service .item-service .content {
  padding-right: 20px;
  position: relative;
}
.service-section-wrapper .list-item-service .item-service .content:after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  opacity: 0.3;
  border-radius: 100%;
}
.service-section-wrapper .list-item-service .item-service .content h3 {
  position: relative;
  font-size: 24px;
  margin-top: 10px;
  z-index: 2;
}
.service-section-wrapper .list-item-service .item-service .content span {
  font-size: 18px;
}

.partners-section {
  position: relative;
  background-image: url(../images/03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.partners-section:after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  background-color: var(--primary-color);
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0.9;
}
.partners-section .container {
  position: relative;
  z-index: 2;
}
.partners-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .partners-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .partners-section h2 {
    font-size: 26px;
  }
}
.partners-section .content {
  background: rgba(255, 255, 255, 0.1803921569);
  padding: 20px;
  border-radius: 15px;
}
.partners-section .content .list-partners-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 150px;
}
.partners-section .content .element_client {
  background-color: #fff;
  padding: 10px;
  width: 200px;
  min-width: 200px;
  height: 140px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}
.partners-section .content .element_client img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
}
.partners-section .row_partners {
  display: flex;
  animation: slide 34s linear infinite;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 1520px;
}

@keyframes slide {
  100% {
    transform: translateX(-520px);
  }
}
.main_footer {
  padding: 60px 0;
  text-align: center;
  position: relative;
  background-color: #113C4C;
}
.main_footer .container {
  position: relative;
  z-index: 2;
}
.main_footer .brand_wrapper {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .main_footer .brand_wrapper {
    margin-top: 60px;
  }
}
.main_footer .brand_wrapper img {
  width: 160px;
}
@media (max-width: 480px) {
  .main_footer .brand_wrapper img {
    width: 80px;
  }
}
.main_footer .company_details {
  color: #ffffff;
}
.main_footer .company_details span {
  display: block;
  text-align: center;
}
.main_footer .company_details span strong {
  display: block;
}
@media (max-width: 1040px) {
  .main_footer .col_6 {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .main_footer .col_6 {
    width: 100%;
  }
}
@media (max-width: 1040px) {
  .main_footer #contact {
    width: calc(100% - 300px);
  }
}
@media (max-width: 768px) {
  .main_footer #contact {
    width: 100%;
    padding: 0;
  }
}

.contact-form-lp {
  text-align: right;
}
@media (max-width: 768px) {
  .contact-form-lp {
    margin-top: 60px;
  }
}
.contact-form-lp .head_section {
  margin-bottom: 40px;
}
.contact-form-lp .head_section h3 {
  font-size: 28px;
  color: #fff;
}
.contact-form-lp .head_section p {
  font-size: 18px;
  color: #fff;
}
.contact-form-lp label {
  color: #fff;
  margin-top: 5px;
}
.contact-form-lp .wpcf7-form input[type=text], .contact-form-lp .wpcf7-form input[type=tel], .contact-form-lp .wpcf7-form input[type=email] {
  padding: 5px 10px;
  width: 100%;
  border: none;
  direction: rtl !important;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: var(--primary-font-family);
  background-color: rgba(255, 255, 255, 0.1843137255);
  color: #fff;
}
.contact-form-lp .wpcf7-form input[type=text]::placeholder, .contact-form-lp .wpcf7-form input[type=tel]::placeholder, .contact-form-lp .wpcf7-form input[type=email]::placeholder {
  color: #fff;
}
.contact-form-lp br {
  display: none;
}
.contact-form-lp .wpcf7-form textarea {
  padding: 5px 10px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #e8e8e8;
  direction: rtl !important;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 5px;
  font-family: var(--primary-font-family);
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1843137255);
  color: #fff;
  border: none;
}
.contact-form-lp .wpcf7-form textarea::placeholder {
  color: #fff;
}
.contact-form-lp .wpcf7-form input[type=submit] {
  padding: 10px 30px;
  border-radius: 5px;
  font-family: var(--primary-font-family);
  border: none;
  background-color: var(--green-color);
  font-size: 16px;
  cursor: pointer;
  -webkit-appearance: none;
  color: #fff;
  width: 100%;
}
.contact-form-lp .third_cols {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .contact-form-lp .third_cols {
    display: block;
  }
}

.social_media_wrapper {
  margin-top: 20px;
}
.social_media_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.social_media_wrapper ul li {
  list-style: none;
}
.social_media_wrapper ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp_email__wrapper {
  padding: 20px 0;
  gap: 10px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.whatsapp_email__wrapper a {
  flex-direction: row-reverse;
  color: #fff;
  display: flex;
  align-content: center;
  gap: 10px;
}
.whatsapp_email__wrapper .num {
  display: inline-block;
  direction: ltr;
}

.map__link {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.map__link svg {
  min-height: 24px;
}

.copyright {
  background-color: #04151b;
  text-align: center;
  padding: 20px 0;
  color: #fff;
}

a.scroll_Top {
  display: flex;
  width: 40px;
  height: 40px;
  position: fixed;
  border-radius: 100%;
  bottom: 60px;
  right: 50px;
  z-index: 99;
  padding: 6px;
  background-color: var(--secondary-color);
}
@media (max-width: 768px) {
  a.scroll_Top {
    display: none;
  }
}

.portfolio_elements_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.portfolio_elements_wrapper .portfolio_element {
  width: calc(50% - 10px);
  background: rgba(0, 0, 0, 0.0705882353);
  -webkit-border-radius: 20px;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 20px;
  -moz-border-radius-bottomleft: 0;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  padding: 30px;
}
@media (max-width: 1040px) {
  .portfolio_elements_wrapper .portfolio_element {
    width: 100%;
  }
}
.portfolio_elements_wrapper .portfolio_element .company_name {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.portfolio_elements_wrapper .portfolio_element .company_name svg {
  width: 40px;
  height: 40px;
}
.portfolio_elements_wrapper .portfolio_element .company_name svg .inner_icon {
  fill: #fff;
}
.portfolio_elements_wrapper .portfolio_element .title {
  padding-right: 40px;
  color: #8BC34A;
  margin-bottom: 15px;
}
.portfolio_elements_wrapper .portfolio_element p {
  padding-right: 40px;
  display: flex;
  gap: 10px;
}
.portfolio_elements_wrapper .portfolio_element p svg {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.portfolio_elements_wrapper .portfolio_element p svg .inner_icon {
  fill: #fff;
}/*# sourceMappingURL=style.css.map */