:root {
  --primary: #7e2980;
  --secondary: #333;
  --filterPrimary: invert(19%) sepia(58%) saturate(2245%) hue-rotate(275deg) brightness(95%) contrast(92%);
  --filterSecondary: invert(0%) sepia(100%) saturate(19%) hue-rotate(19deg) brightness(101%) contrast(106%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

/*-------- ar fonts -----------*/
@font-face {
    font-family: Helvetica_ar_bold;
    src: url(../fonts/HelveticaNeueLTArabic-Bold.ttf)
}

@font-face {
    font-family: Helvetica_ar_light;
    src: url(../fonts/HelveticaNeueLTArabic-Light.ttf)
}

@font-face {
    font-family: Helvetica_ar_roman;
    src: url(../fonts/HelveticaNeueLTArabic-Roman.ttf)
}

@font-face {
  font-family: 'helvetica_neue_medium';
  src: url(../fonts/helvetica_neue/medium.otf);
}

@font-face {
  font-family: 'helvetica_neue_Bold';
  src: url(../fonts/helvetica_neue/BoldExt.otf);
}

@font-face {
  font-family: 'helvetica_neue_regular';
  src: url(../fonts/helvetica_neue/roman.otf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}
html { scroll-behavior: smooth; } 
body {
  direction: ltr;
  overflow-x: hidden;
  font-family: 'helvetica_neue_medium';
}

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

.navs-container {
    position: relative;
    z-index: 99;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

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

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.bg_primary {
  background-color: var(--primary);
}

.bg_gray {
  background-color: #F8F8F8;
}

.bg_dark {
  background-color: #403D40;
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

form textarea {
  resize: none;
}

.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icon.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: var(--primary);
  left: 13px;
  top: 20.5px;
  height: 19px;
  width: 30px;
  display: block;
}

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

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

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

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 60px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-image: unset;
  background-color: #E8E8E8;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: 1;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-button-prev::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 100%;
  height: 100%;
  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;
  text-align: center;
  font-size: 15px;
  color: #333;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: relative;
  z-index: 9;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px dashed var(--primary);
  border-radius: 8px;
  position: absolute;
  z-index: -1;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

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

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 1%;
  left: auto;
}

.swiper-container .swiper-button-next::after,
.swiper-container .swiper-container-rtl .swiper-button-prev::after {
  content: '\f0da';
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  top: 5px;
  right: -5px;
  border-top-color: transparent;
  border-left-color: transparent;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 1%;
  right: auto;
}

.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-container-rtl .swiper-button-next::after {
  content: '\f0d9';
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  top: -5px;
  left: -5px;
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.butn {
  position: relative;
  padding: .9rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: 'helvetica_neue_medium';
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn:hover {
  background-color: #682169;
  border: 1px solid #682169;
  color: #fff !important;
}

.butn:hover i {
  animation: floatingX .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.line_prim {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.line_prim::before {
  content: '';
  width: 100%;
  background-color: rgba(126, 41, 128, 0.12);
  height: 18px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.pagination-wrapper .pagination {
  justify-content: center!important;
}
.pagination-wrapper .pagination .page-link {
  border-radius: 5px !important;
  background-color: transparent;
  color: var(--primary);
  margin: 0 4px;
  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;
  padding: 0;
  width: 45px;
  height: 40px;
}

.pagination-wrapper .pagination .page-link:hover, .pagination-wrapper .pagination .page-link.active
, .pagination-wrapper .pagination .active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar {
  padding: 1rem;
}

.navs-container .navbar .logo {
  width: 265px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 10px 0;
}

.navs-container .navbar .nav-link {
  font-family: 'helvetica_neue_medium';
  font-size: 16px;
  margin: 0 7px;
  color: #062229;
  text-transform: uppercase;
}

.navs-container .navbar .lang_butn {
  font-family: 'El Messiri';
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  padding: 70px 0 0 0;
  text-transform: uppercase;
}

.footer .text-capitalize {
    text-transform: uppercase !important;
}

.footer .content {
  margin-bottom: 30px;
}

.footer .content .logo {
  width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.footer .social_links a {
  width: 36px;
  height: 35px;
  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: 1px solid var(--primary);
  border-radius: 50%;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  text-transform: uppercase;
  color: var(--primary);
}

.footer .social_links a:hover {
    background-color: var(--primary);
    color: #fff !important;
}

.footer .content .links a {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  color: #1F1D1F;
  font-weight: 400;
}

.footer .foot {
  border-top: 1px solid #ddd;
}

.footer .foot .copyright_p {
  font-family: 'Roboto', sans-serif;
}

.footer .foot .nesma_logo {
  width: 50px;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header .item {
  min-height: calc(100vh - 93px);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header .item .headline {
  color: rgba(126, 41, 128, 0.65);
  line-height: 1;
  font-family: 'Anton', sans-serif;
  font-size: calc(15vw + 35px);
  text-transform: uppercase;
  position: absolute;
  top: 42%;
  left: 0;
  -webkit-transform: translate(0%, -58%);
          transform: translate(0%, -58%);
  z-index: 1;
  pointer-events: none;
  width: 100%;
  text-align: center;
}

.header .item .title {
  position: relative;
  font-family: 'helvetica_neue_medium';
  line-height: 72px;
  font-size: 52px;
  font-size: calc(.5vw + 35px);
  text-transform: uppercase;
}

.header .item .title::before {
  content: '';
  width: 100px;
  height: 5px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.header .swiper-pagination {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  bottom: 0;
  right: 3%;
  left: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin: 10px 0;
  border: 2px solid #fff;
  background-color: transparent;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: .9;
}

.header .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 15px;
  background: #fff;
  border: 2px solid #fff;
  opacity: 1;
}

.services-sec .serv_item .icon {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 45px auto;
}

.services-sec .serv_item .content {
  display: block;
  text-align: center;
}

.services-sec .serv_item .content .counter {
  font-weight: bold;
}

.services-sec .serv_item .content .label {
  font-size: .9rem;
  color: #062229;
  font-family: 'helvetica_neue_medium';
  font-weight: 500;
  line-height: 1.23;
}

.services-sec .route {
  position: absolute;
  left: -3%;
  top: 66px;
  width: 94%;
}

.services-sec .route2 {
  position: absolute;
  left: 0%;
  top: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-sec .sec-img {
  height: 530px;
  border-radius: 0 0 30px 0;
}

.about-sec .text-box {
  -webkit-padding-start: 3vw;
          padding-inline-start: 3vw;
}

.about-sec .text-box .title {
  line-height: 1;
  font-weight: bold;
  font-size: calc(1.5vw + 35px);
  font-size: 62px;
  text-transform: uppercase;
}

.about-sec .text-box .p {
  line-height: 1.83;
  font-size: 18px;
  color: #062229;
  font-family: 'helvetica_neue_regular';
}

.link_butn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 0;
}

.link_butn span {
  font-family: 'helvetica_neue_medium';
  position: relative;
  padding: 1rem 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: var(--primary);
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.link_butn span i {
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
}

.link_butn span .send_icon {
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.link_butn::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-style: solid;
  border-width: 6px;
  -webkit-transform: translate(8px, 8px);
          transform: translate(8px, 8px);
  z-index: -2;
  border: 1px dashed var(--primary);
  border-radius: 8px;
}

.link_butn:hover span {
  -webkit-transform: translate(8px, 8px);
          transform: translate(8px, 8px);
}

.timeline-sec {
  height: 500px;
  margin-bottom: 5rem;
}

.timeline-sec .timeline_item {
  width: 206px;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.timeline-sec .timeline_item .year {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 25px;
  font-weight: bold;
}

.timeline-sec .timeline_item .timeline_mark {
  width: 60px;
  height: 160px;
  margin-top: 0;
}

.timeline-sec .timeline_item .det {
  position: relative;
  left: 45px;
  font-size: 14px;
  margin-top: -25px;
  text-shadow: 0px 0px 0px #fff;
  color: #65677b;
  font-weight: 500;
  font-family: 'helvetica_neue_regular';
  line-height: 1.71;
}

.timeline-sec .timeline_item:nth-child(1) {
  top: 160px;
  left: 0%;
}

.timeline-sec .timeline_item:nth-child(2) {
  top: 110px;
  left: 0;
}

.timeline-sec .timeline_item:nth-child(3) {
  top: 100px;
  left: 0;
}

.timeline-sec .timeline_item:nth-child(4) {
  top: 120px;
  left: 12%;
}

.timeline-sec .timeline_item:nth-child(5) {
  top: 94px;
  left: 19%;
  width: 250px;
}

.timeline-sec .route {
  position: absolute;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  -o-object-fit: fill;
     object-fit: fill;
  /*-webkit-transform: translateY(-50%);*/
          transform: translateY(-50px);
  pointer-events: none;
}

.features-sec {
  background-color: #F2F3F4;
}

.features-sec .sec_head {
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
}

.features-sec .feature_card {
  padding: 1.5vw 2vw;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.features-sec .feature_card .icon {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.features-sec .feature_card .content .title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.42;
}

.features-sec .feature_card .content .p {
  font-size: 19px;
  color: #59667d;
  font-weight: 500;
  line-height: 1.79;
  overflow: hidden;
}

.features-sec .feature_card .content .more_link {
  font-weight: bold;
}

.features-sec .col-lg-6:nth-child(2) .feature_card .content .p {
  height: 204px;
}

.features-sec .col-lg-6:nth-child(3) .feature_card .content .p {
  height: 102px;
}

.news-sec .sec_head {
  font-weight: bold;
  text-transform: uppercase;
}

.news-sec .news_card {
  position: relative;
  padding-top: 15px;
  margin-bottom: 15px;
}

.news-sec .news_card .img-box {
  height: 400px;
  position: relative;
}

.news-sec .news_card .img-box .date {
  padding: 15px 5px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: -15px;
  left: 25px;
  width: 75px;
  text-align: center;
  border-top: 4px solid var(--primary);
  -webkit-box-shadow: 0 2px 12px 0 rgba(6, 34, 41, 0.08);
          box-shadow: 0 2px 12px 0 rgba(6, 34, 41, 0.08);
  font-weight: 700;
}

.news-sec .news_card .img-box .date .month {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.38;
  color: #062229;
}

.news-sec .news_card .card-body {
  padding: 2rem 1rem;
}

.news-sec .news_card .card-body .title {
  font-weight: bold;
  line-height: 1.71;
  color: #062229;
  font-size: 21px;
}

.news-sec .news_card .card-body .more_link {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.89;
}

.downloading-sec {
  background-color: #F2F3F4;
  padding: 120px 0;
}

.downloading-sec .makka_logo {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.downloading-sec .text-box .sec_head {
  font-size: calc(.5vw + 35px);
  line-height: 1.5;
  font-weight: bold;
}

.downloading-sec .text-box .p {
  font-size: 21px;
  font-weight: 500;
  color: #062229;
  line-height: 1.71;
}

.downloading-sec .text-box .down_link {
  width: 150px;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  display: inline-block;
  border-radius: 8px;
}

.downloading-sec .text-box .down_link .sec-img {
  border-radius: 8px;
}

.downloading-sec .text-box .down_link:hover {
  -webkit-animation: pulse 1s infinite;
          animation: pulse 1s infinite;
}

.downloading-sec .screens_img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 90%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-sec .sec_head {
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-sec .makka_logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-sec .contact_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-sec .p {
  color: #062229;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.79;
}

.contact-sec .contact_card .title {
  font-weight: bold;
  line-height: 1.89;
  font-size: 18px;
}

.contact-sec .contact_card .phone {
  font-weight: 800;
  font-size: 24px !important;
  line-height: 1.42;
  color: #062229;
  direction: ltr;
}

.contact-sec .contact_card .icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
    margin-top: 15px;
}

.contact-sec .form_box .label {
  font-size: 13px;
  display: block;
  margin-bottom: .1rem;
  font-weight: bold;
  color: #062229;
}

.contact-sec .form_box .form-control {
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0 2px 0 0 #062229;
          box-shadow: 0 2px 0 0 #062229;
  font-weight: bold;
}

.contact-sec .form_box .form-control:focus {
  border: none !important;
  -webkit-box-shadow: 0 2px 0 0 var(--primary) !important;
          box-shadow: 0 2px 0 0 var(--primary) !important;
}

.contact-sec .form_box .num-grpup .form-control {
  -webkit-padding-start: 70px;
          padding-inline-start: 70px;
}

.contact-sec .form_box .num-grpup .flag_dropdown {
  position: absolute;
  bottom: 16px;
  left: 13px;
}

.contact-sec .form_box .num-grpup .flag_dropdown .flag_img {
  width: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .form_box .num-grpup .flag_dropdown .dropdown-menu {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/**********************************************
    Start Edit pg-header 
**********************************************/
.pg-header .bread {
  color: #888;
}

.pg-header .bread .icon {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: invert(49%) sepia(0%) saturate(4787%) hue-rotate(71deg) brightness(527%) contrast(223%);
          filter: invert(49%) sepia(0%) saturate(4787%) hue-rotate(71deg) brightness(527%) contrast(223%);
  opacity: .8;
}

.pg-header .bread .pg_link {
  color: #868C8F;
  margin: 0 10px;
  text-transform: capitalize;
  font-family: 'helvetica_neue_regular';
}

.pg-header .bread .pg_link.active {
  font-weight: bold;
  color: #fff;
}

.pg-header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/**********************************************
    Start Edit about Page 
**********************************************/
.about-pg .about_card .p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  min-height: 193px;
}

.about-pg .about_card .sec-img {
  border-radius: 30px 0;
  height: 300px;
}

.about-pg .text-box {
  background-color: #F8F4F9;
  padding: 70px 0;
  margin-top: 70px;
}

.about-pg .text-box .p {
  line-height: 1.83;
  font-size: 18px;
  color: #062229;
  font-family: 'helvetica_neue_regular';
}

.about-pg .text-box .p *{
  line-height: 1.83;
  font-size: 18px;
}

.about-pg .box {
  border-radius: 30px 0;
  margin-top: 70px;
  background-color: #F8F4F9;
}

.about-pg .box .txt_content {
  padding: 20px 5vw;
}

.about-pg .box .txt_content .p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  color: #707070;
}

.about-pg .box .sec-img {
  border-radius: 30px 0;
  height: 530px;
}

/**********************************************
    Start Edit story Page 
**********************************************/
.story-pg .story_inner .sec-img {
  height: 530px;
  border-radius: 30px 0;
  object-position: bottom;
}

.story-pg .story_inner .card-body {
  padding: 60px 4vw;
  background-color: #F8F4F9;
  width: 90%;
  display: block;
  margin: -100px auto 0 auto;
  position: relative;
  z-index: 1;
}

.story-pg .story_inner .card-body .p {
  line-height: 1.83;
  font-size: 18px;
  color: #062229;
  font-family: 'helvetica_neue_regular';
}

.story-pg .story_inner .p *{
  line-height: 1.83;
  font-size: 18px;
}

.story-pg .company_card {
  text-align: center;
  position: relative;
  background-color: #f9f9f9;
  padding: 50px 2vw;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.story-pg .company_card .company_logo {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  margin: 0 auto;
  max-width: 80%;
}

.story-pg .company_card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(126, 41, 128, 0.95);
  padding: 25px 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-transform: translateY(102%);
          transform: translateY(102%);
}

.story-pg .company_card .title {
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}

.story-pg .company_card .data {
  color: #eee;
  margin-bottom: 0;
}

.story-pg .company_card:hover .content {
  -webkit-transform: translateY(0%) scale(0.8);
          transform: translateY(0%) scale(0.8);
}

.story-pg2 {
  background-color: #F5F6F8;
}

.story-pg2 .main_inner {
  background-color: #fff;
  padding: 4vw;
}

.story-pg2 .main_inner .box {
  background-color: #F8F8F8;
}

.story-pg2 .main_inner .box .sec-img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.story-pg2 .main_inner .box .text_box {
  -webkit-padding-end: 3vw;
          padding-inline-end: 3vw;
}

.story-pg2 .main_inner .box .text_box .p {
  font-size: 18px;
  line-height: 1.82;
  color: #062229;
  font-family: 'helvetica_neue_regular';
}

.story-pg2 .main_inner .company_logo {
  width: 65%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.story-pg2 .main_inner::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #F5F6F8;
  height: 30px;
  top: unset;
}

.story-pg2 .swiper-container .swiper-button-next,
.story-pg2 .swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 46%;
  -webkit-transform: translateX(54%);
          transform: translateX(54%);
}

.story-pg2 .swiper-container .swiper-button-prev,
.story-pg2 .swiper-container .swiper-container-rtl .swiper-button-next {
  left: 46%;
  -webkit-transform: translateX(-54%);
          transform: translateX(-54%);
}

.story-pg2 .swiper-button-next,
.story-pg2 .swiper-button-prev {
  top: 90%;
}

/**********************************************
    Start Edit drives Page 
**********************************************/
.drives-pg .box .txt_content {
  padding: 20px 3vw;
}

.drives-pg .box .txt_content .line_prim::before {
  background-color: rgba(255, 255, 255, 0.12);
}

.drives-pg .box .txt_content .custom_ul,
.drives-pg .box .txt_content ul {
  -webkit-padding-start: 25px;
  padding-inline-start: 25px;
}

.drives-pg .box .txt_content .custom_ul .li,
.drives-pg .box .txt_content ul li {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}

.drives-pg .box .txt_content .custom_ul .li::before {
  content: '-';
  display: inline-block;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -17px;
  top: -2px;
  font-size: 20px;
}

.drives-pg .box .txt_content .p {
  font-size: 18px;
  color: #f5f5f5;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.82;
}
.drives-pg .box .txt_content .p *{
  font-size: 18px;
  color: #f5f5f5;
  font-weight: 500;
  line-height: 1.82;
}

.drives-pg .box .sec-img {
  height: 500px;
}

.drives-pg .value_item {
  background-color: #F2F3F4;
  padding: 35px 10px;
}

.drives-pg .value_item .sec-img {
  height: 270px;
}

.drives-pg .value_item .p {
  color: #062229;
  line-height: 1.83;
  font-size: 18px;
}

.drives-pg2 .box {
  min-height: 700px;
  position: relative;
}

.drives-pg2 .box .txt_content {
  padding: 40px 4vw;
  background-color: #fff;
  position: absolute;
  bottom: 25px;
  z-index: 3;
  width: 50%;
}

.drives-pg2 .box .txt_content .line_prim::before {
  background-color: rgba(126, 41, 128, 0.12);
}

.drives-pg2 .box .txt_content .custom_ul .li,
.drives-pg2 .box .txt_content .custom_ul .li::before,
.drives-pg2 .box .txt_content .p {
  color: #707070;
}

.drives-pg2 .box:nth-child(1) .txt_content {
  right: 25px;
}

.drives-pg2 .box:nth-child(2) .txt_content {
  left: 25px;
}

/**********************************************
    Start Edit facts Page 
**********************************************/
.facts-pg .serv_item .content {
  background-color: #F2F3F4;
  padding: 35px 10px 45px 10px;
  position: relative;
  margin-top: 60px;
}

.facts-pg .serv_item .content::before {
  content: '';
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 55px;
  height: 23px;
  background-color: #F2F3F4;
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.facts-pg .serv_item .sec-img {
  height: 276px;
}

.facts-pg2 .inner {
  -webkit-margin-start: 10vw;
          margin-inline-start: 10vw;
}

.facts-pg2 .serv_item {
  margin-bottom: 40px;
  position: relative;
}

.facts-pg2 .serv_item .icon {
  width: 70px;
  height: 70px;
  margin: 0;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.facts-pg2 .serv_item .content {
  background-color: #F2F3F4;
  height: 100%;
  height: 250px;
  padding: 20px 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.facts-pg2 .serv_item .content .counter {
  text-align: start;
  font-size: 2.5rem;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.facts-pg2 .serv_item .content .label {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-align: center;
}

.facts-pg2 .serv_item .content::before {
  content: '';
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 23px;
  height: 55px;
  background-color: #F2F3F4;
  position: absolute;
  top: 50%;
  left: -23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.facts-pg2 .serv_item .sec-img {
  height: 250px;
}

.facts-pg2 .serv_item:hover .content {
  background-color: var(--primary);
}

.facts-pg2 .serv_item:hover .content .counter,
.facts-pg2 .serv_item:hover .content .label {
  color: #fff;
}

.facts-pg2 .serv_item:hover .content::before {
  background-color: var(--primary);
}

.facts-pg2 .serv_item:last-child {
  -webkit-margin-start: 5vw;
          margin-inline-start: 5vw;
}

.facts-pg2 .serv_item:last-child .icon {
  opacity: 0;
}

.facts-pg2 .route2 {
  position: absolute;
  top: 0;
  left: calc(10vw + 17%);
  width: 140px;
  height: calc(100% - 190px);
  -o-object-position: bottom;
     object-position: bottom;
}

/**********************************************
    Start Edit contact Page 
**********************************************/
.contact-pg {
  background-color: #F5F6F8;
}

.contact-pg .careers_box .img_box {
  height: 500px;
  position: relative;
}

.contact-pg .careers_box .img_box .sec-img {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  display: block;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  top: 10%;
}

.contact-pg .careers_box .img_box::before {
  content: '';
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: var(--primary);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.contact-pg .careers_box .img_box .icon {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: -45px;
  right: -45px;
  z-index: 5;
}

.contact-pg .careers_box .text_box {
  background-color: #fff;
  padding: 36px 3vw;
  margin-top: 50px;
}

.contact-pg .careers_box .text_box .p {
  font-family: 'helvetica_neue_regular';
  color: #062229;
}

.contact-pg .careers_box .text_box .icon {
  width: 30px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-pg .contact_box {
  background-color: #fff;
  padding: 50px 0 0 0;
}

.contact-pg .contact_box .contact_data .logo {
  width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 30px auto;
}

.contact-pg .contact_box .contact_data .contact_item {
  padding: 15px;
}

.contact-pg .contact_box .contact_data .contact_item .icon_outer {
  width: 80px;
  height: 77px;
  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;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

.contact-pg .contact_box .contact_data .contact_item .icon_outer .icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-pg .contact_box .contact_data .contact_item .title {
  font-size: 1.1rem;
  font-family: 'helvetica_neue_medium';
}

.contact-pg .contact_box .form_box {
  -webkit-padding-start: 1vw;
          padding-inline-start: 1vw;
  -webkit-padding-end: 3vw;
          padding-inline-end: 3vw;
}

.contact-pg .contact_box .form_box .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}

.contact-pg .contact_box .form_box .form-control:focus {
  border: none !important;
  border-bottom: 1px solid var(--primary) !important;
}

/**********************************************
    Start Edit impact Page 
**********************************************/
.impact-pg {
  background-color: #F5F6F8;
}

.impact-pg .main_inner {
  background-color: #fff;
  padding: 4vw;
}

.impact-pg .main_inner .box .sec-img {
  min-height: 450px;
}

.impact-pg .main_inner .box .text_box {
  padding: 50px 2vw;
}

.impact-pg .main_inner .box .text_box .p {
  font-size: 18px;
  line-height: 1.82;
  color: #062229;
  font-family: 'helvetica_neue_regular';
}

.impact-pg .main_inner .box .text_box .logos_box {
  padding: 2vw;
}

.impact-pg .main_inner .box .text_box .logos_box .impact_logo {
  width: 100%;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5px 0;
}

.impact-pg .main_inner .box.bg_primary .line_prim::before {
  background-color: rgba(255, 255, 255, 0.12);
}

/**********************************************
    Start Edit features Page 
**********************************************/
.features-pg .text_box {
  padding: 50px 2vw 150px 2vw;
  -webkit-padding-start: 12vw;
          padding-inline-start: 12vw;
}

.features-pg .text_box .title.text-white .line_prim::before {
  background-color: rgba(255, 255, 255, 0.12);
}

.features-pg .text_box .custom_ul {
  counter-reset: container;
}

.features-pg .text_box .custom_ul .li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 18px 0;
}

.features-pg .text_box .custom_ul .li .num_box {
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  position: relative;
}

.features-pg .text_box .custom_ul .li .num_box .num {
  font-size: 17px;
  font-weight: 600;
  line-height: 51px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  background-color: #9b449d;
}

.features-pg .text_box .custom_ul .li .num_box .num::before {
  position: absolute;
  content: '';
  height: 64px;
  width: 64px;
  border: 1px solid;
  border-radius: 50px;
  left: -7px;
  top: -7px;
  border-color: rgba(255, 255, 255, 0.15);
}

.features-pg .text_box .custom_ul .li .num_box .num::after {
  counter-increment: container;
  content: counter(container, decimal-leading-zero);
  font-family: var(--base-bodyfont);
  color: #fff;
}

.features-pg .text_box .custom_ul .li .num_box::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 70px;
  bottom: -20px;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.15);
  width: 1px;
}

.features-pg .text_box .custom_ul .li .txt {
  width: calc(100% - 80px);
}

.features-pg .text_box .custom_ul .li .txt .title {
  font-size: 1.1rem;
}

.features-pg .text_box .custom_ul .li .txt .p {
  font-size: 16px;
  color: #eee;
  font-family: 'Roboto', sans-serif;
}

.features-pg .text_box .custom_ul .li:last-child .num_box::before {
  display: none;
}

.features-pg .vid_box {
  -webkit-margin-start: 10vw;
          margin-inline-start: 10vw;
  margin-top: -150px;
  background-color: #fff;
  border-radius: .25rem;
  -webkit-box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.1);
          box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.1);
  padding: 45px 50px;
}

.features-pg .vid_box .box_title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
  -webkit-border-end: 1px solid #ddd;
          border-inline-end: 1px solid #ddd;
}

.features-pg .vid_box .vid_inner .icon_box {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.features-pg .vid_box .vid_inner .icon_box .button {
  background-color: var(--primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: relative;
  display: block;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  z-index: 6;
}

.features-pg .vid_box .vid_inner .icon_box .button.is-play .button-outer-circle {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.features-pg .vid_box .vid_inner .icon_box .button.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.features-pg .vid_box .vid_inner .icon_box .button.is-play .triangle {
  -webkit-animation: fadeIn 7s ease;
          animation: fadeIn 7s ease;
}

.features-pg .vid_box .vid_inner .icon_box .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
          animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

.features-pg .vid_box .vid_inner .icon_box .button .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
          animation: smallScale 3s infinite;
}

.features-pg .vid_box .vid_inner .icon_box .button .has-delay-short {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes smallScale {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

.features-pg .sec-img {
  height: 520px;
  min-height: 100%;
}

.features-pg .txt_p {
  font-size: 18px !important;
  line-height: 1.8;
  color: #eee;
  font-family: 'Roboto', sans-serif;
}
.features-pg .txt_p *{
  font-size: 18px !important;
  line-height: 1.8;
  color: #eee;
  font-family: 'Roboto', sans-serif;
}

.features-pg::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  width: 70%;
  height: calc(100% - 185px);
  right: unset;
  background-color: var(--primary);
  z-index: 1;
  top: 70px;
}

.services-pg .text_box {
  position: relative;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 70px 8vw 70px 8vw;
  margin-left: -100px;
  z-index: 5;
}

.services-pg .text_box .p {
  line-height: 1.83;
  font-size: 18px;
  color: #062229;
  font-family: 'helvetica_neue_regular';
}
.services-pg .text_box .p *{
  line-height: 1.83;
  font-size: 18px;
  font-family: 'helvetica_neue_regular';
}

.services-pg .text_box .statics_box {
  position: relative;
}

.services-pg .text_box .statics_box .counter {
  font-weight: bold;
}

.services-pg .text_box .statics_box .label {
  color: #062229;
}

.services-pg .text_box .statics_box::before {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 45%;
  -webkit-transform: translateX(-55%);
          transform: translateX(-55%);
  width: 1px;
  content: "";
  background-color: #e5e5e5;
}

.services-pg .sec-img {
  height: 700px;
}

.services-pg2 {
  background-color: #f8f8f8;
}

.services-pg2 .service_card {
  position: relative;
  background-color: white;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 50px 2vw;
  margin-bottom: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-align: center;
}

.services-pg2 .service_card .icon {
  width: 60px;
  height: 60px;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.services-pg2 .service_card .counter {
  color: var(--primary);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.services-pg2 .service_card .title {
  font-family: 'helvetica_neue_medium';
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 1.1rem;
}

.services-pg2 .service_card:hover {
  background-color: var(--primary);
}

.services-pg2 .service_card:hover .title,
.services-pg2 .service_card:hover .counter {
  color: #fff;
}

.services-pg2 .service_card:hover .p {
  color: #eee;
}

.services-pg2 .service_card:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.services-pg2 .service_card:hover .more_link {
  color: #fff;
}

.services-pg2 .service_card:hover .more_link.line_prim::before {
  background-color: rgba(255, 255, 255, 0.12);
}

/**********************************************
    Start Edit news-det Page 
**********************************************/
.news-det .img_box {
  position: relative;
  min-height: 450px;
  height: 100%;
}

.news-det .img_box .date {
  padding: 15px 5px;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: -15px;
  left: 25px;
  width: 75px;
  text-align: center;
  border-top: 4px solid var(--primary);
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

/**********************************************
    Start Edit doing Page 
**********************************************/
.doing-pg .sec-img {
  height: 700px;
}

.doing-pg .text_box {
  padding: 20px 2vw;
}

.doing-pg .text_box .p *{
  font-size: 19px;
  color: #59667d;
  font-weight: 500;
  line-height: 1.79;
}

.doing-pg .text_box .custom_ul {
  counter-reset: container;
}

.doing-pg .text_box .custom_ul .li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 7px 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.doing-pg .text_box .custom_ul .li .num_box {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  position: relative;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.doing-pg .text_box .custom_ul .li .num_box .num {
  font-size: 17px;
  font-weight: 600;
  line-height: 51px;
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  background-color: #9b449d;
}

.doing-pg .text_box .custom_ul .li .num_box .num::before {
  position: absolute;
  content: '';
  height: 50px;
  width: 50px;
  border: 1px solid;
  border-radius: 50px;
  left: -7px;
  top: -7px;
  border-color: rgba(155, 68, 157, 0.2);
}

.doing-pg .text_box .custom_ul .li .num_box .num::after {
  content: '';
  background: url(../images/icon-3.svg) no-repeat center;
  width: 20px;
  height: 10px;
  background-size: contain;
  position: absolute;
  top: 13px;
  left: 8px;
  display: block;
}

.doing-pg .text_box .custom_ul .li .txt {
  width: calc(100% - 80px);
}

.doing-pg .text_box .custom_ul .li .txt .p {
  font-size: 16px;
  color: #062229;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.doing-pg .text_box .custom_ul .li:last-child .num_box::before {
  display: none;
}

.routes-schedules .img_box {
  height: 500px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.routes-schedules .img_box img:first-of-type {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.routes-schedules .img_box img:nth-of-type(2) {
  width: 200px;
  height: 220px;
  border: 10px solid #f5f5f5;
  position: absolute;
  bottom: 50px;
  right: -30px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  -o-object-fit: cover;
     object-fit: cover;
}

.routes-schedules .img_box::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 80%;
  right: 0;
  top: 0;
  border: 10px solid #f5f5f5;
  z-index: -1;
}

.routes-schedules .text_box {
  padding: 30px 2vw;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.routes-schedules .text_box .p *{
  font-size: 19px;
  color: #59667d;
  font-weight: 500;
  line-height: 1.79;
}

.support-sec .text_box {
  padding: 30px 2vw;
}

.support-sec .text_box .p *{
  font-size: 19px;
  color: #59667d;
  font-weight: 500;
  line-height: 1.79;
}

.support-sec .support_card {
  position: relative;
  display: block;
  padding: 25px 20px 20px 20px;
  border: 3px solid #f5f5f5;
  overflow: hidden;
  margin-bottom: 15px;
  height: 100%;
}

.support-sec .support_card .icon {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}

.support-sec .support_card .title {
  text-align: center;
  font-weight: 700;
  color: #062229;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
  height: 48px;
}

.support-offline .text_box {
  height: 100%;
  background-color: var(--primary);
  padding: 60px 3vw;
  -webkit-padding-end: 4vw;
          padding-inline-end: 4vw;
}

.support-offline .text_box .line_prim::before {
  background-color: rgba(255, 255, 255, 0.12);
}

.support-offline .text_box .p {
  font-size: 19px;
  color: #eee;
  font-weight: 500;
  line-height: 1.79;
}

.support-offline .text_box .p *{
  font-size: 19px;
  color: #eee;
  font-weight: 500;
  line-height: 1.79;
}

.support-offline .text_box .off_support .off_supp_item {
  margin-bottom: 40px;
}

.support-offline .text_box .off_support .off_supp_item .icon {
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.support-offline .text_box .off_support .off_supp_item .title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.support-offline .text_box .off_support .off_supp_item .det {
  color: #eee;
  margin-bottom: 0;
}

.support-offline .sec-img {
  min-height: 600px;
  height: 100%;
}

.support-operational .text_box {
  margin-left: 0;
  margin-right: -100px;
  padding: 70px 5vw 70px 5vw;
}

.support-operational .text_box .accordion .accordion-item {
  border: transparent;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

.support-operational .text_box .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--primary);
}

.support-operational .text_box .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  color: var(--primary);
}

.support-operational .text_box .accordion .accordion-item .accordion-button {
  padding: 1rem 4rem;
  font-weight: bold;
  color: #333;
  font-size: 19px;
}

.support-operational .text_box .accordion .accordion-item .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  background-image: unset;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  position: absolute;
  left: 30px;
  top: 15px;
}

.support-operational .text_box .accordion .accordion-item .accordion-body {
  padding: 1.5rem;
  -webkit-box-shadow: 30px 30px 60px 0 rgba(0, 0, 1, 0.05);
          box-shadow: 30px 30px 60px 0 rgba(0, 0, 1, 0.05);
}

.support-operational .text_box .accordion .accordion-item .accordion-body .p {
  font-size: 16px;
}

.support-operational .custom_ul {
  counter-reset: container;
}

.support-operational .custom_ul .li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 7px 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support-operational .custom_ul .li .num_box {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  position: relative;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.support-operational .custom_ul .li .num_box .num {
  font-size: 17px;
  font-weight: 600;
  line-height: 51px;
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  background-color: #9b449d;
}

.support-operational .custom_ul .li .num_box .num::before {
  position: absolute;
  content: '';
  height: 50px;
  width: 50px;
  border: 1px solid;
  border-radius: 50px;
  left: -7px;
  top: -7px;
  border-color: rgba(155, 68, 157, 0.2);
}

.support-operational .custom_ul .li .num_box .num::after {
  content: '';
  background: url(../images/icon-3.svg) no-repeat center;
  width: 20px;
  height: 10px;
  background-size: contain;
  position: absolute;
  top: 13px;
  left: 8px;
  display: block;
}

.support-operational .custom_ul .li .txt {
  width: calc(100% - 80px);
}

.support-operational .custom_ul .li .txt .p {
  font-weight: 500;
  font-size: 14px !important;
  color: #062229;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.support-operational .custom_ul .li:last-child .num_box::before {
  display: none;
}

.support-operational .accordion-button:focus {
  border-color: none !important;
  -webkit-box-shadow: none  !important;
          box-shadow: none  !important;
}

.support-operational .sec-img {
  height: 850px;
}

/**********************************************
    Start Edit doing2 Page 
**********************************************/
.services-do .box {
  background-color: #F2F3F4;
  padding: 4vw 3vw;
  -webkit-margin-start: -30%;
          margin-inline-start: -30%;
  width: 130%;
}

.services-do .box .p {
  margin-bottom: 0;
  font-size: 17px;
  color: #707070;
  font-weight: 500;
  line-height: 1.82;
}

.services-do .sec-img {
  height: 500px;
}

.fleet-do .img_box {
  height: 485px;
  position: relative;
}

.fleet-do .img_box .txt {
  background-color: rgba(126, 41, 128, 0.75);
  padding: 3vw;
  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;
  position: relative;
  z-index: 1;
  height: 100%;
}

.fleet-do .img_box .txt .p {
  font-size: 18px;
  line-height: 1.82;
  color: #fff;
  font-size: 500;
}

.fleet-do .fleet_item {
  height: 242px;
  text-align: center;
  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;
  padding: 25px;
}

.fleet-do .fleet_item .p {
  color: #062229;
  font-size: 16px;
  line-height: 1.82;
}

.online-supp-do {
  background-color: #F2F3F4;
}

.online-supp-do .desc {
  font-size: 17px;
  color: #062229;
  font-weight: 500;
  line-height: 1.82;
}

.online-supp-do .support_card {
  position: relative;
  margin-bottom: 25px;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.online-supp-do .support_card .content {
  background-color: #fff;
  padding: 70px 30px 60px 30px;
  text-align: center;
  border-radius: 30px;
  height: 270px;
}

.online-supp-do .support_card .content .icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 40px auto;
}

.online-supp-do .support_card .content .label {
  color: #062229;
  font-weight: 500;
  font-size: 18px;
  height: 55px;
}

.online-supp-do .support_card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-style: solid;
  border-width: 6px;
  -webkit-transform: translate(15px, 15px);
          transform: translate(15px, 15px);
  z-index: -2;
  border: 1px dashed var(--primary);
  border-radius: 30px;
}

.opp-supp-do .text_box .p {
  font-size: 18px;
  line-height: 1.82;
  color: #062229;
}

.opp-supp-do .sec-img {
  height: 610px;
}

.opp-supp-do::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  height: 50%;
  top: 55%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  background-color: #F2F3F4;
}

/**********************************************
    Start Edit doing2 Page 
**********************************************/
.our-impact .text-box {
  -webkit-padding-start: 2vw;
          padding-inline-start: 2vw;
}

.our-impact .text-box .p {
  margin-bottom: 0;
  font-size: 18px;
  color: #060606;
  font-weight: 500;
  line-height: 1.82;
  position: relative;
  padding: 20px 0;
}

/*.our-impact .text-box .p::before {*/
/*  content: '';*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  display: block;*/
/*  background-color: #F2F3F4;*/
/*}*/

.our-impact .text-box .p *{
  margin-bottom: 0;
  font-size: 18px;
  color: #060606;
  font-weight: 500;
  line-height: 1.82;
}

.our-impact::before {
    content: '';
    width: 100%;
    height: calc(100% - 260px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    display: block;
    background-color: #F2F3F4;
}

.mbc-environment .line_prim::before {
  background-color: rgba(255, 255, 255, 0.12);
}

.mbc-environment .environment_item {
  height: 500px;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.mbc-environment .environment_item .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.mbc-environment .environment_item .front .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  font-weight: 600;
  z-index: 2;
  font-size: 1.9rem;
  line-height: 1.2;
  text-align: start;
}

.mbc-environment .environment_item .front::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.mbc-environment .environment_item .back {
  background-color: #fff;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.mbc-environment .environment_item .back .p {
  margin-bottom: 0;
  font-size: 18px;
  color: #060606;
  font-weight: 500;
  line-height: 1.82;
  text-align: start;
}

.mbc-environment .environment_item .front,
.mbc-environment .environment_item .back {
  border-radius: 30px;
  padding: 35px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition: -webkit-transform .8s ease;
  transition: -webkit-transform .8s ease;
  transition: transform .8s ease;
  transition: transform .8s ease, -webkit-transform .8s ease;
}

.mbc-environment .environment_item:hover .flip-card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.mbc-environment::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  height: 450px;
  background-color: var(--primary);
}

.mbc-partners .desc {
  font-size: 17px;
  color: #062229;
  font-weight: 500;
  line-height: 1.82;
  text-align: center;
}

.mbc-partners .partner_card {
  margin-bottom: 60px;
}

.mbc-partners .partner_card .company_logo {
  height: 100px;
  width: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 30px auto;
}

/**********************************************
    Start Edit jobs Page 
**********************************************/
.jobs-pg .job_card {
  position: relative;
  padding: 45px;
  background-color: #f8f8f8;
  margin-bottom: 30px;
  border-radius: 15px;
}

.jobs-pg .job_card .head {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.jobs-pg .job_card .butn {
  padding: 0.9rem 1rem;
  font-size: 13px;
}

.jobs-pg .job_card .det {
  height: 85px;
  overflow: hidden;
}

/**********************************************
    Start Edit jobs Page 
**********************************************/
.job-det .img_box {
  height: 450px !important;
}

.job-det .img_box .sec-img {
  height: 100% !important;
}

.job-det ul {
  list-style-type: disc;
  -webkit-padding-start: 25px;
          padding-inline-start: 25px;
}

.job-det ul li {
  font-size: 18px;
  line-height: 1.8;
  color: #59667d;
  font-weight: 500;
  margin-bottom: 10px;
}

.job-det .form_box {
  padding: 0 2vw 50px 2vw;
}

.job-det .form_box .form-control {
  background-color: #fff;
  border: 1px solid #fff;
}

.job-det .form_box input,
.job-det .form_box select {
  height: 60px !important;
}

.job-det .form_box .cv_uploading_box {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  height: 228px;
}

.job-det .form_box .cv_uploading_box .icon {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 55px;
          margin-inline-end: 55px;
}

.job-det .form_box .upload-main-wrapper {
  width: 145px;
  height: 55px;
  position: relative;
  font-size: 14px;
}

.job-det .form_box .upload-main-wrapper #file-upload-name {
  margin: 0px 0 0 0;
  font-size: 12px;
  position: absolute;
  bottom: -30px;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0px auto 0;
  position: relative;
  cursor: pointer;
  background-color: #f5f5f5;
  color: var(--primary);
  border: 1px solid #eee;
  padding: 14px 1.5rem 20px 1.5rem;
  border-radius: 0;
  overflow: hidden;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper input[type="file"] {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 1;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper > svg {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.success > svg {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.uploaded {
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
  width: 60px;
  border-radius: 50%;
  height: 60px;
  text-align: center;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper .file-upload-text {
  position: absolute;
  left: 65px;
  top: 19px;
  font-weight: bold;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.uploaded .file-upload-text {
  text-indent: -999px;
  margin: 0;
}

.job-det .form_box .upload-main-wrapper .file-success-text {
  opacity: 0;
  -webkit-transition: 0.2s linear all;
  transition: 0.2s linear all;
  visibility: hidden;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  position: absolute;
  left: 0;
  right: 0;
  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;
}

.job-det .form_box .upload-main-wrapper .file-success-text svg {
  width: 25px;
  height: auto;
}

.job-det .form_box .upload-main-wrapper .file-success-text span {
  margin-left: 15px;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.success .file-success-text {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.success.uploaded .file-success-text {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.success.uploaded .file-success-text span {
  display: none;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper .file-success-text circle {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  -webkit-transition: 1s linear all;
  transition: 1s linear all;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.success .file-success-text circle {
  stroke-dashoffset: 0;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper .file-success-text polyline {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  -webkit-transition: 1s linear all;
  transition: 1s linear all;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.job-det .form_box .upload-main-wrapper .upload-wrapper.success .file-success-text polyline {
  stroke-dashoffset: 0;
}
bo
.job-det .form_box .upload-main-wrapper .upload-wrapper.success .file-upload-text {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
/*# sourceMappingURL=style.css.map */


/*drop_down style*/

.navs-container .navbar {
    padding: 0;
}
.navs-container .navbar .nav-link {
    padding: 35px 15px;
    font-size: 14px;
}
.drop_down {
    position: relative;
}
.drop_down .nav-link {
    position: relative;
}
.drop_down .nav-link::after {
    position: absolute;
    content: "\f078";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    right: -5px;
    top: 36px;
    font-size: 13px;
}
/*.drop_down:hover .drop_down_menu {*/
/*    opacity: 1;*/
/*    top: 100%;*/
/*    visibility: visible;*/
/*}*/
.drop_down .drop_down_menu {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    min-width: 250px;
    width: 100%;
    box-shadow: 0 0 20px #0001;
    border-top: 2px solid #7e2980;
}
.drop_down .drop_down_menu .d_link {
    padding: 15px 20px;
    border-bottom: 1px solid #9992;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.drop_down .drop_down_menu .d_link:hover {
    background-color: #9993;
}

.careers_box .title,
.jobs-pg .title{
    text-transform: uppercase !important;
}

.environment_swiper .swiper-pagination {
    opacity: 0;
}


