/*
    ** Importing custom components fot the theme
    ** Created by 
    ** import all sub_components 
*/
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-color: #001838;
  --secondary-color: #27DCE0;
  --body-color: #4C4C4C;
  --soft-white: #EBEBEB;
  --gray: #bbbbbb;
  --blue: #42AABB;
  --main-font: "Roboto",sans-serif;
  --secondary-font: "Roboto",sans-serif;
  --body-font-size: 18px;
  --section-padding: 64px;
  --header-height:164px;
  --container-width:1256px;
  --container-fluid:1384px;
  --main-radius:16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
  color: var(--body-color);
  font-weight: 400;
  line-height: 1.3;
}

body.lang-ar {
  direction: rtl;
  text-align: right;
}

.f-300 {
  font-weight: 300;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.font-2 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none;
}

.container, .container-big {
  max-width: var(--container-width);
  width: 95%;
  margin: 0 auto;
}

.container-big {
  max-width: var(--container-fluid);
}

.list-none {
  padding: 0;
}

ul,
figure {
  margin: 0;
}

.list-none li {
  list-style: none;
}

.d-flex {
  display: flex;
  display: -webkit-flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

.d-block {
  display: block;
}

.flex-column {
  flex-direction: column;
}

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: end;
}

.shrink-0 {
  flex-shrink: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal {
  text-transform: none;
}

button {
  cursor: pointer;
}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  text-transform: none;
}

button, input, textarea, select {
  font-family: var(--main-font);
  font-size: var(--body-font-size);
}

.line_1 {
  line-height: 1;
}

.line_1-3 {
  line-height: 1.3;
}

.line_1-5 {
  line-height: 1.5;
}

.center {
  text-align: center;
}

.align {
  text-align: inherit;
}

.text-reverse {
  text-align: right;
}

.lang-ar .text-reverse {
  text-align: left;
}

.justify {
  text-align: justify;
}

.pre-line {
  white-space: pre-line;
}

.flex-1 {
  flex: 1;
}

.align-center {
  align-items: center;
}

.align-self {
  align-self: baseline;
}

.align-end {
  align-items: flex-end;
}

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

.flex-all {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unicode {
  unicode-bidi: plaintext;
}

.underline {
  text-decoration: underline;
}

:focus {
  outline: none;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.trans, .hover-color {
  transition: 0.4s;
}

.hover-color:hover {
  color: var(--main-color);
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  white-space: nowrap;
}

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

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

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

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

.bg-black {
  background-color: black;
}

.bg-transparent {
  background-color: transparent;
}

.bg-main {
  background-color: var(--main-color);
}

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

.bg-blue {
  background-color: var(--blue);
}

.bg-soft {
  background-color: var(--soft-white);
}

.bg-body-color {
  background-color: var(--body-color);
}

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

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

.soft-white {
  color: var(--soft-white);
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.white-i {
  color: #fff !important;
}

.bg-white {
  background-color: #fff;
}

.bg-cover {
  background-size: cover !important;
}

.object-fit {
  object-fit: cover;
}

.h-100 {
  height: 100%;
}

.h-full {
  height: 100vh;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-32 {
  width: 32%;
}

.w-33 {
  width: 33%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-41 {
  width: 41%;
}

.w-43 {
  width: 43%;
}

.w-45 {
  width: 45%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-50 {
  width: 50%;
}

.w-53 {
  width: 53%;
}

.w-55 {
  width: 55%;
}

.w-58 {
  width: 58%;
}

.w-67 {
  width: 67%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-100 {
  width: 100%;
}

.w-100-i {
  width: 100% !important;
}

.relative {
  position: relative;
}

.intl-tel-input {
  width: 100%;
}

.intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
  color: #000;
}

.top-2 {
  position: relative;
  top: 2px;
}

.section-padding {
  padding-block: var(--section-padding);
}

.section-padding-t {
  padding-top: var(--section-padding);
}

.section-padding-b {
  padding-bottom: var(--section-padding);
}

.section-padding-x {
  padding-inline: var(--section-padding);
}

.p-section-padding {
  padding: var(--section-padding);
}

.p-0 {
  padding: 0px;
}

.p-16 {
  padding: 16px;
}

.p-32 {
  padding: 32px;
}

.py-8 {
  padding-block: 8px;
}

.py-15 {
  padding-block: 15px;
}

.py-25 {
  padding-block: 25px;
}

.py-30 {
  padding-block: 30px;
}

.px-15 {
  padding-inline: 15px;
}

.px-25 {
  padding-inline: 25px;
}

.px-30 {
  padding-inline: 30px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mx-auto {
  margin-inline: auto;
}

.mt-section-padding {
  margin-top: var(--section-padding);
}

.mt-15 {
  margin-top: 15px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-section-padding {
  margin-bottom: var(--section-padding);
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-100 {
  margin-bottom: 100px;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
  display: grid;
  gap: 25px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-5 {
  gap: 5px;
}

.gap-7 {
  gap: 7px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.gap-section-padding {
  gap: var(--section-padding);
}

.row-gap-30 {
  row-gap: 30px;
}

.lang-ar .flip-ar, .flip {
  transform: scaleX(-1);
}

.pointer-none {
  pointer-events: none;
}

.pointer, [photo-swipe] {
  cursor: pointer;
}

.font-10 {
  font-size: 10px;
}

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

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

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

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

.font-18 {
  font-size: 18px;
}

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

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-26 {
  font-size: 26px;
}

.font-30 {
  font-size: 30px;
}

.font-32 {
  font-size: 32px;
}

.font-34 {
  font-size: 34px;
}

.mo {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
}

.one-line,
.three-line,
.four-line,
.five-line,
.two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.one-line {
  -webkit-line-clamp: 1;
}

.two-line {
  -webkit-line-clamp: 2;
}

.three-line {
  -webkit-line-clamp: 3;
}

.four-line {
  -webkit-line-clamp: 4;
}

.five-line {
  -webkit-line-clamp: 5;
}

.full-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.opacity-0 {
  opacity: 0;
}

.radius-0 {
  border-radius: 0 !important;
}

.radius {
  border-radius: var(--main-radius);
}

.radius-4 {
  border-radius: 4px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-16 {
  border-radius: 16px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-32 {
  border-radius: 32px;
}

.rounded {
  border-radius: 50%;
}

.border {
  border: 1px solid #e6e6e6;
}

.border-0 {
  border: 0;
}

.modal, .main-menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
}

.modal-half-bottom {
  display: flex;
  align-items: end;
}

.modal-half-bottom .modal-body {
  width: 100%;
  bottom: -100%;
  border-radius: 8px 8px 0 0;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-half-bottom.active .modal-body {
  bottom: 0;
}

.modal.active, .main-menu-mobile.active {
  visibility: visible;
  pointer-events: initial;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  cursor: pointer;
  z-index: 0;
  opacity: 0;
}

.modal.active .modal-overlay {
  animation: modal-overlay 0.4s 1 forwards ease;
}

.modal.modal-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.modal-center .modal-body {
  margin-inline: auto;
}

@keyframes modal-overlay {
  to {
    opacity: 0.3;
  }
}
.modal .modal-body {
  transition: 0.4s;
}

.side-modal .modal-body {
  width: 658px;
  left: -100%;
  height: 100%;
  max-width: 100%;
}

.corner-modal {
  display: flex;
  align-items: end;
}

.corner-modal .modal-body {
  width: 379px;
  top: 100%;
}

.corner-modal.active .modal-body {
  top: 0;
}

.lang-ar .side-modal .modal-body {
  left: auto;
  right: -100%;
}

.side-modal.active .modal-body {
  left: 0;
}

.lang-ar .side-modal.active .modal-body {
  left: auto;
  right: 0;
}

[accordion-item] [acc-body], .acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s;
}

[accordion-item].active [acc-body], .princp_item:hover .acc-body {
  grid-template-rows: 1fr;
}

[accordion-item] [acc-body] > div,
.princp_item .acc-body > div {
  overflow: hidden;
}

[data-toggle-tab]:not(.active) {
  display: none;
}

input.no-arr::-webkit-inner-spin-button,
input.no-arr::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  text-align: center;
}

.z-1 {
  z-index: 1;
}

.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .grid-3-t {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2-t {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-1-t {
    grid-template-columns: repeat(1, 1fr);
  }
  .do-only {
    display: none !important;
  }
  .to {
    display: block !important;
  }
}
@media (max-width: 890px) {
  :root {
    --section-padding: 32px;
    --header-height:141px;
  }
  .container,
.container-p,
.container-small {
    max-width: inherit;
    width: 100%;
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin-left: auto;
    margin-right: auto;
  }
  .container-left-p {
    margin-inline-start: auto;
    padding-inline: 24px;
    max-width: 100%;
    padding-inline-end: 10px;
  }
  .grid-1-p,
.grid-2-p,
.grid-3-p {
    display: grid;
  }
  .grid-1-p {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2-p {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-p {
    grid-template-columns: repeat(3, 1fr);
  }
  .mo {
    display: block !important;
  }
  .do {
    display: none !important;
  }
  .flex-p {
    display: flex;
  }
  .wrap-p {
    flex-wrap: wrap;
  }
  .center-p {
    text-align: center;
  }
  .justify-center-p {
    justify-content: center;
  }
  .column-reverse-p {
    flex-direction: column-reverse;
  }
  .row-reverse-p {
    flex-direction: row-reverse;
  }
  .full-p {
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .flex-column-p {
    flex-direction: column;
  }
  .d-flex-p {
    display: flex;
  }
  .space-between-p {
    justify-content: space-between;
  }
  .justify-end-p {
    justify-content: end;
  }
  .justify-start-p {
    justify-content: start;
  }
  .f-400-p {
    font-weight: 400;
  }
  .font-12-p {
    font-size: 12px !important;
  }
  .font-14-p {
    font-size: 14px !important;
  }
  .font-16-p {
    font-size: 16px !important;
  }
  .font-18-p {
    font-size: 18px !important;
  }
  .font-20-p {
    font-size: 20px !important;
  }
  .font-22-p {
    font-size: 22px !important;
  }
  .font-32-p {
    font-size: 32px !important;
  }
  .font-48-p {
    font-size: 48px;
  }
  .modal.active, .main-menu-mobile.active {
    pointer-events: initial;
  }
  .main-menu-mobile .menu-wrapper {
    width: 100%;
  }
  .main-menu-mobile .menu-wrapper {
    left: -100%;
    opacity: 0;
  }
  .main-menu-mobile.active .menu-wrapper {
    left: 0;
    opacity: 1;
  }
  .lang-ar .main-menu-mobile .menu-wrapper {
    left: auto;
    right: -100%;
  }
  .lang-ar .main-menu-mobile.active .menu-wrapper {
    right: 0;
  }
  .main-menu-mobile .menu-upper-part {
    overflow-y: auto;
  }
  .align-center-p {
    align-items: center;
  }
  .align-start-p {
    align-items: start;
  }
  .w-100-p {
    width: 100% !important;
  }
  .p-0-p {
    padding: 0;
  }
  .p-15-p {
    padding: 15px;
  }
  .p-24-p {
    padding: 24px;
  }
  .px-15-p {
    padding-inline: 15px;
  }
  .px-p {
    padding-inline: 24px;
  }
  .section-padding-t-p {
    padding-top: var(--section-padding);
  }
  .section-padding-b-p {
    padding-bottom: var(--section-padding);
  }
  .section-padding-p {
    padding-block: var(--section-padding);
  }
  .py-0-p {
    padding-block: 0px;
  }
  .py-15-p {
    padding-block: 15px;
  }
  .py-30-p {
    padding-block: 30px;
  }
  .pt-0-p {
    padding-top: 0px;
  }
  .pt-10-p {
    padding-top: 10px;
  }
  .pt-15-p {
    padding-top: 15px;
  }
  .pt-20-p {
    padding-top: 20px;
  }
  .pt-25-p {
    padding-top: 25px;
  }
  .pt-30-p {
    padding-top: 30px;
  }
  .pt-50-p {
    padding-top: 50px;
  }
  .pt-65-p {
    padding-top: 65px;
  }
  .pt-100-p {
    padding-top: 100px;
  }
  .pb-0-p {
    padding-bottom: 0px;
  }
  .pb-15-p {
    padding-bottom: 15px;
  }
  .pb-25-p {
    padding-bottom: 25px;
  }
  .pb-30-p {
    padding-bottom: 30px;
  }
  .pb-40-p {
    padding-bottom: 40px !important;
  }
  .pb-50-p {
    padding-bottom: 50px !important;
  }
  .pb-65-p {
    padding-bottom: 65px;
  }
  .mt-20-p {
    margin-top: 20px;
  }
  .mb-0-p {
    margin-bottom: 0;
  }
  .mb-5-p {
    margin-bottom: 5px;
  }
  .mb-10-p {
    margin-bottom: 10px;
  }
  .mb-15-p {
    margin-bottom: 15px;
  }
  .mb-20-p {
    margin-bottom: 20px;
  }
  .mb-30-p {
    margin-bottom: 30px;
  }
  .mb-40-p {
    margin-bottom: 40px;
  }
  .mb-50-p {
    margin-bottom: 50px;
  }
  .gap-0-p {
    gap: 0;
  }
  .gap-3-p {
    gap: 3px;
  }
  .gap-7-p {
    gap: 7px;
  }
  .gap-10-p {
    gap: 10px;
  }
  .gap-15-p {
    gap: 15px;
  }
  .gap-20-p {
    gap: 20px;
  }
  .gap-25-p {
    gap: 25px;
  }
  .gap-30-p {
    gap: 30px;
  }
  .gap-40-p {
    gap: 40px;
  }
  .gap-50-p {
    gap: 50px;
  }
  .gap-60-p {
    gap: 60px;
  }
  .gap-65-p {
    gap: 65px;
  }
  .br-0-p br {
    display: none;
  }
  .border-0-p {
    border: 0 !important;
  }
  .scroll-80-p::-webkit-scrollbar-thumb,
.scroll-80-p::-webkit-scrollbar-track,
.scroll-80-p::-webkit-scrollbar,
.scroll-90-p::-webkit-scrollbar-thumb,
.scroll-90-p::-webkit-scrollbar-track,
.scroll-90-p::-webkit-scrollbar,
.scroll-x-p::-webkit-scrollbar-thumb,
.scroll-x-p::-webkit-scrollbar-track,
.scroll-x-p::-webkit-scrollbar,
.scroller-0-p::-webkit-scrollbar-thumb,
.scroller-0-p::-webkit-scrollbar-track,
.scroller-0-p::-webkit-scrollbar {
    display: none;
  }
  .scroll-80-p,
.scroll-90-p, .scroll-x-p {
    display: flex;
    overflow-x: auto;
    gap: 25px;
  }
  .scroll-80-p > * {
    max-width: 80%;
    width: 80%;
    min-width: 80%;
  }
  .scroll-90-p > * {
    max-width: 90%;
    width: 90%;
    min-width: 90%;
  }
  .overflow-hidden-p {
    overflow: hidden;
  }
  .has-childs > a:after {
    content: "";
    background: url(../images/chevron-down-black.svg) no-repeat;
    width: 24px;
    height: 24px;
    transition: 0.4s;
    background-size: contain;
  }
}
.pt-20-i {
  padding-top: 20px !important;
}

.header {
  background-color: var(--main-color);
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 2;
  transition: 0.4s;
}

.header .upper-head {
  padding-block: 24px;
}

.header .second-head {
  background: rgba(186, 12, 47, 0.8509803922);
  padding-block: 12px;
  transition: 0.4s;
}

.header .main-menu-box a {
  font-size: 18px;
  color: #fff;
}

.page-template-home-page .header,
.page-template-about-page .header {
  position: fixed;
}

.page-template-home-page:not(.scroll) .header {
  background-color: transparent;
}

.page-template-home-page:not(.scroll) .header .header-logo img {
  mix-blend-mode: multiply;
  opacity: 0.3;
  filter: grayscale(1);
}

.page-template-home-page:not(.scroll) .header .btn-header {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.page-template-home-page:not(.scroll) .header .second-head {
  display: none;
}

.btn {
  padding: 16px;
  font-size: 18px;
  background-color: var(--secondary-color);
  color: var(--main-color);
}

.btn-header {
  padding: 8px 16px;
}

.landing-section {
  /* height: 869px; */
  height: 1024px;
  width: 100%;
  position: sticky;
  top: 0;
}

.landing-section:after,
.sticky-banner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3019607843);
  pointer-events: none;
}

.land-tt {
  font-size: 56px;
  font-weight: 400;
}

.py-130 {
  padding-block: 128px;
}

.how-we-section .bxx {
  row-gap: 64px;
}

.section-title-32 {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: capitalize;
}

.btn-16 {
  padding: 16px;
}

.swiper-custom-pagination span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #d9d9d9;
}

.swiper-custom-pagination span.swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

.border {
  border: 1px solid rgba(0, 24, 56, 0.1019607843);
}

.radius-6 {
  border-radius: 6px;
}

.p-64 {
  padding: var(--section-padding);
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Three columns of equal width */
  grid-template-rows: auto;
}

.custom-grid > * {
  grid-column: span 2;
}

.custom-grid > *:nth-of-type(1),
.custom-grid > *:nth-of-type(2) {
  grid-column: span 3;
}

.industry_item {
  height: 268px;
  padding-block: 70px;
  border: 1px solid rgba(0, 24, 56, 0.1019607843);
}

.custom-grid-3-3-2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Three columns of equal width */
  grid-template-rows: auto;
}

.custom-grid-3-3-2 > * {
  grid-column: span 2;
}

.custom-grid-3-3-2 > *:nth-of-type(7),
.custom-grid-3-3-2 > *:nth-of-type(8) {
  grid-column: span 3;
}

.industry_item:hover .floating-inner,
.industry_item .cntnt {
  opacity: 0;
}

.industry_item:hover .cntnt {
  opacity: 1;
}

.p-30 {
  padding: 30px;
}

.industry_item .dd2 {
  padding-left: 30px;
}

.pt-80 {
  padding-top: 80px;
}

.custom-grid-3-4 {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* Three columns of equal width */
  grid-template-rows: auto;
}

.custom-grid-3-4 > * {
  grid-column: span 3;
}

.custom-grid-3-4 > *:nth-of-type(1),
.custom-grid-3-4 > *:nth-of-type(2),
.custom-grid-3-4 > *:nth-of-type(3) {
  grid-column: span 4;
}

.insight_item {
  transition: 0.4s;
}

.why-zadd-section .why-zad_item:hover,
.why-zad_item2:hover, .insights-homepage .insight_item:hover {
  background-color: var(--soft-white);
}

.pb-130 {
  padding-bottom: 130px;
}

.gray-2 {
  color: #292929;
}

.insight_item figure {
  display: flex;
}

.client-slide img {
  max-width: 100%;
  height: 106px;
}

.clients-section .swiper-custom-pagination span {
  width: 10px;
  height: 10px;
}

.what_client_item {
  border: 1px solid rgba(0, 24, 56, 0.4);
}

.what_client_item .tt1 {
  overflow: hidden;
}

.what-client-slider .swiper-slide > * {
  transition: 0.4s;
}

.what-client-slider .swiper-slide:not(.swiper-slide-active) > * {
  opacity: 0.3;
}

.contact-section > .container:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: url(../image/border.png) no-repeat;
  background-size: contain;
}

.foot-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.foot-list a {
  font-size: 16px;
  color: var(--body-color);
}

.foot-col {
  max-width: 260px;
}

.footer .box2 {
  padding-block: 60px;
}

.banner-section {
  height: 541px;
}

.section-title-48 {
  font-size: 48px;
  color: var(--main-color);
}

.font-48 {
  font-size: 48px;
}

.ul-custom {
  padding-left: 26px;
}

.ul-custom-2 {
  padding-left: 16px;
}

.bg-soft-2 {
  background-color: #f6f6f6;
}

.body-color-4 {
  color: rgba(76, 76, 76, 0.4);
}

.border-2 {
  border: 2px solid rgba(0, 24, 56, 0.1019607843);
}

select option {
  color: #000;
}

.filter-control {
  border: 1px solid #000000;
  border-radius: 8px;
  height: 40px;
  padding: 6px 48px 6px 16px;
  appearance: none;
  background: url(../image/chev.svg) center right 10px no-repeat;
  width: 100%;
}

.blogs-services-section .head .left {
  width: 305px;
}

.blogs-services-section .head .right {
  width: 129px;
}

.blogs-services-section .box {
  row-gap: 30px;
}

.why-zad_item2 .tt {
  font-size: 72px;
}

.about-zadd-section-wrap .bg-soft {
  background-color: transparent;
}

.blog-singled-img {
  display: flex;
}

.conclusion-section {
  background-color: #f5f5f5;
}

.banner-section.sticky-banner {
  position: sticky;
  top: 0;
}

.about-sticky-banner {
  margin-top: var(--header-height);
  top: var(--header-height) !important;
}

.banner-tt {
  font-size: 48px;
  font-weight: 600;
  text-transform: capitalize;
}

.princp_item:hover .img {
  height: 280px;
}

.princp_item .tt1,
.princp_item .cntnt {
  padding-inline-start: 32px;
}

.princp_item {
  min-height: 481px;
}

.our-team-section .box2:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3019607843);
  pointer-events: none;
}

.why-zadd-wrap.bg-soft .why-zad_item {
  background-color: #fff;
}

.home .service_item {
  transition: 0.4s;
}

.why-zadd-wrap.bg-soft .why-zad_item:hover,
.home .service_item:hover {
  background-color: var(--soft-white);
}

.what-client-wrap.bg-soft-2 .bg-soft {
  background-color: transparent;
}

.social-contact-box img {
  width: 64px;
  height: 64px;
}

.form-control {
  width: 100%;
  border: 0.5px solid rgba(0, 0, 0, 0.1019607843);
  padding: 10px 16px;
  height: 51px;
  color: #000;
  font-size: 16px;
}

.form-control::placeholder,
form .form-group .llll {
  opacity: 0.5;
}

form .form-group .p {
  position: absolute;
  top: 16px;
  left: 16px;
  pointer-events: none;
  z-index: 1;
}

.form-group {
  position: relative;
}

textarea.form-control {
  height: 217px !important;
  width: 100% !important;
}

select.form-control {
  appearance: none;
  background: url(../image/chev.svg) center right 10px no-repeat;
}

.form-group.filled .p {
  display: none;
}

.btn-submit {
  border: 0;
  cursor: pointer;
}

.error-section .dd a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.error-section {
  height: 435px;
}

.what_client_item .auth {
  width: 100%;
  display: block;
}

.trans-service .box {
  padding-inline: 128px;
}

.insight_itm-new .tt1 {
  height: 97px;
  overflow: hidden;
}

.accept-cookies {
  position: sticky;
  bottom: 0;
  z-index: 4;
  backdrop-filter: blur(5px);
  background-color: #fff;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1098039216);
  padding: 32px 64px;
  transform: translateY(100%);
  transition: 0.4s;
}

.accept-cookies.active {
  transform: translateY(0%);
}

.accept-cookies .btn {
  border: 1px solid var(--secondary-color);
}

.accept-cookies .btn {
  white-space: nowrap;
  height: 67px;
  min-width: 127px;
}

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

.industries-section .cntnt ul.dd2 {
  height: 145px;
  overflow: hidden;
}

.pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-item-num {
  border-radius: 50%;
  color: #4C4C4C;
}

.pagination-item-num.active {
  background-color: var(--main-color);
  color: var(--secondary-color);
}

.arr-pagination {
  width: 24px;
  height: 24px;
}

.arr-pagination-prev {
  margin-inline-end: 15px;
}

.arr-pagination-next {
  margin-inline-start: 15px;
}

.page-template-about-page .small-section .desc {
  font-size: 16px;
}

.wpcf7-form.incomplete .btn-submit,
.wpcf7-form.submitting .btn-submit {
  pointer-events: none;
  opacity: 0.5;
}

.header-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  display: none;
  background: #00132D;
  width: 250px;
  max-height: 400px;
  overflow-y: auto;
  transition: 0s;
  position: absolute;
  top: calc(100% + 46px);
  left: 0;
  z-index: 11;
  padding: 32px 0;
  pointer-events: none;
}

.header-menu > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header-menu > .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  display: block;
  pointer-events: auto;
}

.header-menu > li.menu-item-has-children:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 46px;
}

.header-menu .sub-menu a {
  width: 100%;
  display: flex;
  padding: 2px 15px;
  transition: 0.4s;
  position: relative;
  padding-inline-start: 32px;
}

.header-menu .sub-menu a:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  transform: translate(0px, 9px);
  margin-inline: 8px;
}

.header-menu > li.menu-item-has-children .sub-menu {
  transform: translateX(-40px);
}

.header-menu > li.menu-item-has-children:nth-of-type(2) .sub-menu,
.header-menu > li.menu-item-has-children:nth-of-type(3) .sub-menu {
  width: 812px;
  padding: 46px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 130px;
  transform: translateX(-503px);
}

.header-menu > li.menu-item-has-children:nth-of-type(3) .sub-menu {
  transform: translateX(-540px);
}

.header-menu > li.menu-item-has-children:nth-of-type(2) .sub-menu a,
.header-menu > li.menu-item-has-children:nth-of-type(3) .sub-menu a {
  padding-inline: 0;
  white-space: nowrap;
}

.header-menu > li.menu-item-has-children:nth-of-type(2) .sub-menu:before,
.header-menu > li.menu-item-has-children:nth-of-type(3) .sub-menu:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -50px;
  margin: auto;
  width: 1px;
  height: calc(100% - 64px);
  background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu .menu-item-has-children {
  position: relative;
}

.mobile-menu .menu-item-has-children .sub-menu {
  display: none;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  margin-top: -7px;
}

.mobile-menu .menu-item-has-children .sub-menu li {
  margin: 0;
}

.mobile-menu .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
}

.header [collapse-menu] {
  position: relative;
  top: 0;
  right: 0;
  color: var(--main-color);
  font-size: 20px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  background: url(../image/chev-down.svg) no-repeat 12px;
}

.header [collapse-menu].active {
  transform: scaleY(-1);
}

.mobile-menu .menu-item-has-children .sub-menu {
  width: 100%;
  background-color: #032c49;
  margin: 0;
  padding: 10px 0;
  border-radius: 4px;
  margin-top: 10px;
}

.mobile-menu .menu-item-has-children .sub-menu a {
  font-size: 15px !important;
  font-weight: 400;
  position: relative;
  display: flex;
  padding-block: 3px;
  padding-inline: 19px;
}

.mobile-menu .menu-item-has-children .sub-menu a:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
  transform: translate(0px, 9px);
  margin-inline: 8px;
}

.footer .box {
  gap: 30px;
  row-gap: 40px;
}

.mt-10 {
  margin-top: 10px;
}

.card-arr-box {
  position: relative;
}

.card-arr-box > *, .card-arr-root .card-arr-box > * {
  transition: 0.4s;
}

.card-arr-box > .card-arr-gray {
  opacity: 0;
}

.card-arr-box > .card-arr-gray {
  position: absolute;
  top: 0;
  left: 0;
}

.card-arr-root:hover .card-arr-gray,
.card-arr-box:hover .card-arr-gray {
  opacity: 1;
}

.card-arr-root:hover .card-arr,
.card-arr-box:hover .card-arr {
  opacity: 0;
}

.industry-small-banner-wrap .tt {
  line-height: 1;
  font-weight: 600;
  padding-bottom: 0;
}

.industry-small-banner-wrap .dd {
  color: var(--main-color);
  font-size: 20px;
}

.industry-small-banner-wrap .dd2 {
  color: #06BCC0;
  font-size: 20px;
}

.insights-homepage .tt1 {
  height: auto !important;
  padding-bottom: 30px;
}

.social-icon-cr {
  width: 33px;
  height: 33px;
  background: var(--main-color);
  border-radius: 50%;
  color: #fff;
  fill: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twitter-icon svg {
  width: 16px;
}

.contact-page-section .social-contact-box .social-icon-cr {
  width: 64px;
  height: 64px;
}
.contact-page-section .social-contact-box .social-icon-cr svg {
  width: 27px;
}

@media (max-width: 1100px) {
  .header-menu > li.menu-item-has-children:nth-of-type(2) .sub-menu,
.header-menu > li.menu-item-has-children:nth-of-type(3) .sub-menu {
    grid-template-columns: repeat(1, 1fr);
    width: 400px;
    transform: translateX(-40px);
  }
  .header-menu > li.menu-item-has-children:nth-of-type(2) .sub-menu:before,
.header-menu > li.menu-item-has-children:nth-of-type(3) .sub-menu:before {
    content: none;
  }
  .trans-service .box {
    padding-inline: 44px;
  }
}
@media (max-width: 890px) {
  .land-tt {
    display: none;
  }
  .land-tt-mo,
.typed-text {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .landing-section {
    height: 90vh;
  }
  .typed-text {
    text-decoration: underline;
  }
  span.cursor {
    display: inline-block;
    background-color: #fff;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
    height: 30px;
    position: relative;
    top: -9px;
  }
  span.cursor.typing {
    animation: none;
  }
  @keyframes blink {
    0% {
      background-color: #fff;
    }
    49% {
      background-color: #fff;
    }
    50% {
      background-color: transparent;
    }
    99% {
      background-color: transparent;
    }
    100% {
      background-color: #fff;
    }
  }
  .header .header-logo img {
    width: 87px;
  }
  .client-slide img {
    height: 82px;
  }
  .main-menu-mobile .menu-wrapper {
    width: 76%;
    background-color: var(--main-color);
    padding-top: 64px;
    max-width: 400px;
    min-width: 300px;
  }
  .main-menu-mo-list a {
    font-weight: 600;
    font-size: 18px;
    color: #fff;
  }
  .menu-bottom-part .btn {
    padding: 8px 16px;
  }
  .header .upper-head {
    padding-block: 24px;
  }
  .header .second-head .box {
    flex-wrap: nowrap;
    font-size: 15px;
  }
  /* body:not(.scroll) .header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  body:not(.scroll) .header {
    background-color: transparent;
  }
  body:not(.scroll) .header .header-logo img {
    mix-blend-mode: multiply;
    opacity: 0.3;
    filter: grayscale(1);
  }
  body:not(.scroll) .header .btn-header {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  body:not(.scroll) .header .second-head {
    display: none;
  } */
  .banner-section {
    height: 294px;
  }
  .small-section {
    padding-block: 32px !important;
  }
  .small-section .tt {
    font-size: 26px;
    text-transform: uppercase;
  }
  .small-section .desc {
    font-size: 16px;
  }
  .section-title-32 {
    font-size: 26px;
  }
  .pt-64-p {
    padding-top: 64px;
  }
  .pb-64-p {
    padding-bottom: 64px;
  }
  .btn {
    padding: 8px 16px;
  }
  .up-p {
    text-transform: uppercase;
  }
  .ind-full_item {
    padding: 64px 24px 32px 24px;
  }
  .ind-full_item .fig {
    display: flex;
  }
  .ind-full_item .fig img {
    height: 100px;
  }
  .ind-full_item .tt {
    font-weight: 600;
    /* font-size: 72px; */
    line-height: 1;
  }
  .ul-custom {
    padding-left: 22px;
  }
  .ind-full_item .ul-custom {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .key-btn_item {
    padding: 64px 24px;
  }
  .key-btn_item .tt {
    font-size: 72px;
  }
  .key-btn_item .tt11 {
    color: var(--main-color);
  }
  .line_1-p {
    line-height: 1;
  }
  .clients-section .section-title-32.py-30 {
    padding: 0;
  }
  .swiper-custom-pagination span {
    width: 12px;
    height: 12px;
  }
  .client-slider {
    padding-bottom: 25px;
  }
  .what_client_item {
    display: flex;
    flex-direction: column;
    padding-inline: 24px;
  }
  .what_client_item .fig {
    display: flex;
  }
  .what_client_item .cntnt {
    padding: 0;
  }
  .what_client_item .tt1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact-section {
    background-color: #001838;
  }
  .contact-section .container {
    padding-block: 40px;
    color: #fff;
  }
  .contact-section .container .section-title-32 {
    color: #fff !important;
  }
  .contact-section .head {
    text-align: inherit;
  }
  .contact-section .btns {
    justify-content: start;
  }
  .contact-section .desc {
    padding-bottom: 40px;
  }
  footer.footer {
    padding-top: 32px;
    background-color: #000f23;
    color: #fff;
  }
  .foot-tt {
    color: #fff;
    font-size: 16px;
    padding-bottom: 8px;
  }
  .foot-list a,
.foot-desc {
    font-size: 18px;
    color: #fff;
  }
  .footer .box {
    gap: 32px;
  }
  .foot-col.col-4 .foot-tt {
    padding-bottom: 15px;
  }
  .footer .box2 {
    padding-block: 16px 16px;
    flex-direction: column;
    gap: 16px;
  }
  .footer .box2 * {
    color: #fff;
  }
  .full-services-section .box,
.custom-grid-3-3-2,
.custom-grid-3-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .custom-grid > *,
.custom-grid-3-3-2 > *,
.custom-grid-3-4 > * {
    grid-column: -1/1 !important;
  }
  .py-130 {
    padding-block: 60px;
  }
  .how-we-section .bxx {
    row-gap: 32px;
  }
  .insight_item figure img {
    height: 250px;
  }
  .pb-130 {
    padding-bottom: 50px;
  }
  .error-section {
    height: auto;
    padding-block: 50px;
  }
  .social-contact-box img {
    width: 44px;
    height: 44px;
  }
  .filter-control {
    width: 100%;
  }
  .blogs-services-section .head > * {
    width: 100% !important;
  }
  .insight_item .tt1 {
    font-size: 20px;
  }
  .what_client_item .auth {
    font-size: 18px;
  }
  .banner-tt {
    font-size: 22px;
  }
  .banner-tt br {
    display: none;
  }
  .img-prin-section .box1 .img,
.our-people-section .figs .img-big,
.our-team-section .figs .img-big {
    height: 160px;
  }
  .princp_item .img {
    height: 240px;
  }
  .princp_item:hover .img {
    height: 170px;
  }
  .princp_item {
    min-height: inherit;
  }
  .princp_item .tt1,
.princp_item .cntnt {
    padding-inline-start: 22px;
  }
  .std_normal_item .head {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .std_normal_item .head > * {
    width: 100%;
  }
  .our-team-section .tbox2 {
    font-size: 14px;
    text-align: center;
  }
  .blog-singled-img img {
    height: 200px;
  }
  .ul-custom {
    word-wrap: break-word;
  }
  .blog-resources-section .ul-custom {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .why-zad_item2 .head .tt {
    line-height: 1;
  }
  .why-zad_item2 .head > * {
    width: 100%;
  }
  .why-zad_item2 .head {
    display: flex;
    flex-direction: column;
  }
  .why-zad_item2 .tt11, .why-zad_item .tt11 {
    font-size: 26px;
  }
  .why-zad_item2 .dddd br, .why-zad_item .dddd br, .accept-cookies figure img {
    display: none;
  }
  .close-cookies {
    position: absolute;
    top: 0;
    right: 0;
  }
  .accept-cookies {
    background-color: rgba(255, 255, 255, 0.7607843137);
    padding: 12px 24px;
  }
  .accept-cookies .btn {
    height: auto;
    min-width: auto;
  }
  .trans-service .box {
    flex-direction: column;
    padding-inline: 24px;
  }
  .trans-service .translate-slider {
    padding-bottom: 25px;
  }
  .footer .social-icon-cr {
    background-color: #fff;
  }
  .footer .social-icon-cr svg {
    fill: var(--main-color);
    width: 14px;
  }
  .contact-page-section .social-contact-box .social-icon-cr {
    width: 44px;
    height: 44px;
  }
  .contact-page-section .social-contact-box .social-icon-cr svg {
    width: 17px;
  }
}