:root {
  --mainColor: #0369a1;
  --mainColor20: #0369a133;
  --mainColor05: #0369a10d;
  --thirdColor: #164e63;
  --secondColor: #06b6d4;
  --linearGradient: linear-gradient(45deg, #06b6d4 0%, #164e63 50%, #0369a1 100%);
  --whiteColor: #ffffff;
  --darkColor: #191919;
  --lightGrayColor: #d6d6d6;
  --lightBorderColor: #e1e1e1;
  --grayColor: #777;
  --transition: 0.3s ease-in-out;
  --shadow: 0 16px 32px 0 #0369a11a;
}
@font-face {
  font-family: "fontRegular";
  font-display: swap;
  src: url(../webfonts/Trika-Regular.ttf);
}
@font-face {
  font-family: "fontBold";
  font-display: swap;
  src: url(../webfonts/Trika-Bold.ttf);
  font-weight: 900;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  scroll-behavior: smooth;
  /* direction: rtl; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
  border-radius: 0px !important;
}
::-webkit-scrollbar-track {
  border-radius: 0px !important;
  background: var(--whiteColor);
}
::-webkit-scrollbar-thumb {
  background-color: #cacaca;
  outline: none;
  border-radius: 20px !important;
}
a {
  text-decoration: none;
  transition: var(--transition);
  color: var(--darkColor);
  &:hover {
    color: var(--mainColor);
  }
}
button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  &:focus {
    outline: none;
    box-shadow: none;
  }
}
body {
  overflow-x: hidden !important;
  width: 100vw;
  background: var(--whiteColor);
}
body,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  line-height: 1.6;
  font-family: "fontRegular", sans-serif;
}
.row {
  margin: 0px;
}
@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding: 0px 8px;
  }
}
.container {
  max-width: unset !important;
  width: min(100%, 1320px);
  margin: auto;
}
video,
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
input {
  accent-color: var(--mainColor) !important;
}
::placeholder {
  font-size: 12px;
  color: #8d8d8d !important;
  font-weight: normal !important;
}
::selection {
  background-color: var(--mainColor);
}
[type="email"],
[type="number"],
[type="tel"],
[type="url"] {
  direction: rtl;
}
.odometer-inside {
  direction: ltr !important;
}
.fancybox__container {
  z-index: 1999;
  * {
    direction: ltr !important;
  }
}
.navbar-toggler {
  .navbar-toggler-icon {
    width: 30px;
    height: 30px;
  }
}
.form-select,
.form-control {
  min-height: 40px;
  &:focus {
    box-shadow: none;
  }
}
.tooltip {
  --bs-tooltip-bg: var(--textlightGrayr);
  .tooltip-inner {
    font-size: 10px;
    padding: 8px 16px !important;
  }
}
.dropdown {
  position: relative;
  .dropdown-menu {
    inset: unset !important;
    position: absolute;
    transform: unset !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    margin-top: 8px !important;
    border-radius: 8px;
    position: relative;
    border-radius: 8px;
    border: none;
    margin-top: 12px !important;
    box-shadow: var(--shadow);
    &::before {
      content: "";
      position: absolute;
      top: -8px;
      right: 16px;
      width: 0;
      height: 0;
      border-right: 8px solid transparent;
      border-left: 8px solid transparent;
      border-bottom: 8px solid var(--whiteColor);
    }
    .dropdown-item {
      padding: 6px 12px;
      font-size: 14px;
      text-decoration: none;
      color: var(--darkColor);
      display: flex;
      align-items: center;
      gap: 8px;
      img {
        width: 20px;
        aspect-ratio: 1;
      }
      &:hover {
        color: var(--mainColor);
        background-color: var(--mainColor20);
      }
    }
  }
}
content {
  min-height: calc(100dvh - 390px);
  display: flex;
  flex-direction: column;
}
/* //============= AE============= */
/* lang setting */
html[lang="ar"] {
  direction: rtl;
  /* @media(max-width:480px){
    .AE_right{
      display: none;
    }
  } */
}
html[lang="en"] {
  direction: ltr;
  .swiper-button-prev {
    inset-inline-end: 150px;
    left: auto;
  }
  .changeDir {
    transform: rotate(180deg);
  }
  :is(.contact .contactBox, .about) {
    &:before,
    &::after {
      transform: scaleX(-1);
    }
  }
  :is(.hero) {
    &::before,
    &::after {
      transform: scaleX(1);
    }
  }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-left: 0;
    padding-inline: 0.5rem;
  }
  @media (max-width: 480px) {
    .swiperBtns {
      .swiper-button-prev {
        inset-inline-start: 0;
      }
      .swiper-button-next {
        inset-inline-start: 80px;
      }
    }
  }
}
.mainHeading {
  padding-bottom: 8vh;
  padding-top: 2vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  .heading {
    width: 100%;
  }
  &.AE_center {
    justify-content: center;
    h2 {
      text-align: center;
    }
    .span {
      justify-content: center;
    }
  }
  h3 {
    max-width: 600px;
    text-wrap: balance;
    margin-top: 16px;
    
  }
  span:not(.text-light) {
    color: var(--thirdColor);
  }
  .swiperBtns {
    position: relative;
    .swiper-button-next {
      inset-inline-start: -140px;
    }
    :is(.swiper-button-next, .swiper-button-prev) {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: var(--whiteColor);
      box-shadow: inset 0 0 10px rgba(210, 210, 210, 0.2);
      transition: var(--transition);
      &::after {
        font-size: 28px;
        color: var(--thirdColor);
      }
      &:hover {
        background-color: var(--thirdColor);
        &::after {
          color: var(--whiteColor);
        }
      }
    }
  }
  @media (max-width: 767px) {
    /* flex-direction: column; */
    .swiperBtns {
      margin-block: 4dvh;
      :is(.swiper-button-next, .swiper-button-prev) {
        width: 50px;
        height: 50px;
        &::after {
          font-size: 24px;
        }
      }
    }
    h2 {
      font-size: 1.4rem;
    }
  }
  @media (max-width: 480px) {
    flex-direction: column;
    h2 {
      font-size: 1.1rem;
      text-wrap: balance;
    }
    .swiperBtns {
      width: 100%;
      .swiper-button-prev {
        inset-inline-start: 80px;
      }
      .swiper-button-next {
        inset-inline-start: 0;
      }
    }
    padding-bottom: 3dvh;
    .AE_right {
      display: none;
    }
  }
}
.text-dark {
  color: var(--darkColor);
}
.text-light {
  color: var(--whiteColor);
}
section:not(.hero, .breadcrumb, .about-2) {
  margin-top: 5dvh;
  padding-top: 15dvh;
  &.noBgColor {
    margin-top: 8dvh;
    padding-top: 0;
  }
  padding-bottom: 3dvh;
}
.breadcrumb {
  width: min(100% - 12px, 1800px);
  margin-bottom: 5dvh;
  display: block !important;
  margin-inline: auto;
  nav {
    position: relative;
    background-color: var(--mainColor05);
    padding-top: 60px;
    padding-bottom: 20px;
    margin-top: -30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    .breadcrumbOl {
      display: flex;
      align-items: center;
      justify-content: center;
      list-style: none;
    }
    h2 {
      color: var(--mainColor);
      padding-bottom: 1.2dvh;
      /* font */
    }
    .breadcrumb-item {
      /* padding-inline-start: .5rem; */
      padding-right: 0;
    }
    .breadcrumb-item + .breadcrumb-item::before {
      content: "-";
      padding-inline: 0.5rem;
    }
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../img/about/service-bg-2.jpg");
      width: 100%;
      height: 100%;
      z-index: -1;
      background-repeat: no-repeat;
      background-size: cover;
      border-radius: 30px;
    }
  }
}
@media (max-width: 991px) {
  .AE_order-1 {
    order: 1 !important;
  }
  .AE_order-2 {
    order: 2 !important;
  }
}
body:has(.about-2) {
  .about {
    /* margin-top: 0; */
    margin-bottom: 8dvh;
  }
}
/* /////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////// */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  padding: 8px;
  transition: 300ms ease-in-out;
  .container {
    background-color: var(--whiteColor);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    box-shadow: 0px 4px 0px 5px var(--secondColor);
    border-radius: 100px;
    transition: var(--transition);
    @media screen and (max-width: 992px) {
      padding: 12px 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      @media screen and (max-width: 992px) {
        flex: 1;
      }
      img {
        height: 50px;
        object-fit: contain;
        max-width: 150px;
        @media screen and (max-width: 992px) {
          height: 40px;
        }
      }
    }
    .links {
      display: flex;
      align-items: center;
      gap: 24px;
      flex: 1;
      justify-content: center;
      @media screen and (max-width: 992px) {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 1024;
        background-color: var(--whiteColor);
        flex-direction: column;
        height: 100dvh;
        width: 300px;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 32px 24px;
        transition: var(--transition);
        transform: translateX(300px);
        &.active {
          transform: translateX(0);
        }
      }
      a {
        color: var(--darkColor);
        white-space: nowrap;
        &:hover {
          color: var(--mainColor);
        }
      }
    }
    .menuBtn {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 8px;
      align-items: end;
      justify-content: center;
      cursor: pointer;
      span {
        width: 24px;
        height: 3px;
        border-radius: 100px;
        background-color: var(--darkColor);
        border-radius: 4px;
        transition: var(--transition);
        &:nth-child(2) {
          width: 18px;
        }
      }
      @media screen and (max-width: 992px) {
        display: flex;
      }
      &.active {
        span {
          background-color: var(--mainColor);
          &:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
          }
          &:nth-child(2) {
            opacity: 0;
          }
          &:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
          }
        }
      }
    }
    .overlayBG {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1023;
      transition: var(--transition);
      @media screen and (max-width: 992px) {
        &.active {
          display: block;
        }
      }
    }
  }
  &.scrolling {
    background-color: var(--whiteColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    .container {
      box-shadow: none;
    }
  }
}
:is(.customBtn, .AE_customBtn) {
  position: relative;
  border-radius: 100px;
  padding: 16px 24px;
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.customBtn {
  background-color: var(--thirdColor);
  color: var(--whiteColor) !important;
  &.AE-border {
    border: 1px solid var(--whiteColor);
  }
  @media screen and (max-width: 992px) {
    padding: 12px 16px;
    font-size: 12px;
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--secondColor);
    z-index: -1;
    transition: var(--transition);
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: var(--secondColor);
    z-index: -1;
    transition: var(--transition);
  }
  &:hover {
    &::before {
      left: 100%;
    }
    &::after {
      right: 100%;
    }
  }
}
.AE_customBtn {
  color: var(--darkColor) !important;
  opacity: 0.9;
  transition: var(--transition);
}
.AE_absLink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero {
  width: min(100% - 20px, 1800px);
  margin: -50px auto 0;
  background: var(--thirdColor);
  border-radius: 40px;
  isolation: isolate;
  position: relative;
  padding: 80px;
  padding-bottom: 0 !important;
  @media screen and (max-width: 992px) {
    padding: 80px 0;
  }
  .heroImg {
    height: 100%;
    width: 100%;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      @media screen and (max-width: 992px) {
        max-height: 400px;
      }
      max-height: 80dvh;
      object-position: bottom;
      object-fit: contain;
      /* filter: drop-shadow(-10px 10px 0px var(--secondColor)); */
    }
    @media (max-width: 580px) {
      max-height: 70dvh;
    }
  }
  &:before {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    background: url(../img/heroShape1_1.png);
    width: 400px;
    height: 400px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    transform: scaleX(-1);
  }
  &::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    background: url(../img/heroShape1_2.png);
    width: 400px;
    height: 400px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    transform: scaleX(-1);
    @media screen and (max-width: 992px) {
      display: none;
    }
  }
  .row {
    position: relative;
    .col-md-5 {
      align-self: flex-end;
    }
    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 50%;
      transform: translateX(50%);
      background: url(../img/circleDown.svg);
      width: calc(64px * 4);
      height: 64px;
      z-index: 1;
      background-repeat: no-repeat;
      background-size: cover;
    }
    &::after {
      content: "";
      position: absolute;
      bottom: -50px;
      right: 50%;
      transform: translateX(50%);
      background-color: var(--thirdColor);
      background-image: url(../img/favWhite.svg);
      width: 100px;
      height: 100px;
      z-index: 2;
      border-radius: 100px;
      background-repeat: no-repeat;
      background-size: 50%;
      background-position: center;
      padding: 8px;
      box-shadow: var(--shadow);
      animation: rotate 5s linear infinite;
    }
    @keyframes rotate {
      from {
        transform: translateX(50%) rotate(0deg);
      }
      to {
        transform: translateX(50%) rotate(360deg);
      }
    }
  }
  .heroContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 40px;
    @media screen and (max-width: 992px) {
      padding: 12px;
    }
    .hint {
      color: var(--whiteColor);
      padding: 12px 24px;
      border: 1px solid var(--whiteColor);
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .title {
      font-size: 20px;
      color: var(--whiteColor);
      font-family: "fontBold", sans-serif;
      text-wrap: balance;
      @media screen and (max-width: 992px) {
        font-size: 24px;
      }
    }
    .list {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      flex-wrap: wrap;
      .item {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--whiteColor);
        flex: 1;
        min-width: calc(50% - 12px);
        @media screen and (max-width: 992px) {
          min-width: calc(100% - 12px);
          font-size: 90%;
        }
        &::before {
          content: "\f00c";
          font-family: "Font Awesome 6 Pro";
          font-size: 120%;
        }
      }
    }
  }
}
/* input styles */
.formGroup {
  position: relative;
  width: 100%;
  input,
  textarea {
    height: 58px;
    width: 100%;
    border: 1px solid var(--lightBorderColor);
    padding-inline-start: 10px;
    border-radius: 12px;
  }
  textarea {
    height: 120px;
  }
}
/* // ===========AE================= */
/* cowmen about  */
.services,
.services_2 {
  .servicesCard {
    padding: 16px;
    position: relative;
    border-radius: 24px;
    transition: 500ms ease-in-out;
    min-height: 310px;
    figure {
      padding: 6px;
      display: inline-block;
      width: 65px;
      aspect-ratio: 1;
      transition: 500ms ease-in-out;
      img {
        width: 100%;
        transform: scale(0.9);
      }
    }
    :is(h3, p) {
      margin-bottom: 2dvh;
      transition: var(--transition);
      position: relative;
    }
    h3 {
      font-size: 1.2rem;
    }
    p {
      opacity: 0.8;
      line-height: 1.7;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    &:hover {
      :is(h3, p) {
        color: var(--whiteColor);
      }
      .AE_customBtn {
        background-color: #ffff;
        opacity: 1;
      }
    }
  }
}
/* ===services=== */
.services {
  margin-top: 15dvh;
  .servicesSwiper {
    .servicesCard {
      background-color: #f3f7fb;
      border: 1px solid var(--lightBorderColor);
      figure {
        border: 1px solid var(--lightBorderColor);
        border-radius: 6px;
        img {
          width: 100%;
          transform: scale(0.8);
        }
      }
      &:hover {
        background-color: var(--thirdColor);
        border-color: transparent;
        figure {
          background-color: var(--whiteColor);
          transform: rotate(360deg);
        }
      }
    }
  }
}
/* ===services_2=== */
.services_2 {
  margin-bottom: 8dvh;
  .servicesCard {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    background-color: var(--whiteColor);
    overflow: hidden;
    /* margin-bottom: 3dvh; */
    height: 100%;
    &::after {
      content: "";
      position: absolute;
      top: -50px;
      inset-inline-end: -30px;
      background-repeat: no-repeat;
      background-size: cover;
      background-image: url("../img/line-shape.png");
      height: 100%;
      width: 110px;
      opacity: 0;
      visibility: hidden;
    }
    &::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      inset: 0;
      background-color: var(--thirdColor);
      transform-origin: top center;
      transform: scale(1, 0);
      transition: 500ms ease-in-out;
    }
    figure {
      position: relative;
      margin-bottom: 3dvh;
      &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("../img/shape.png");
        width: 85px;
        height: 85px;
        transition: 400ms ease-in-out;
      }
    }
    &:hover {
      &::before {
        transform: scale(1, 1);
        border-radius: 24px;
      }
      &::after {
        opacity: 1;
        visibility: visible;
      }
      figure {
        &::before {
          filter: grayscale(100%) brightness(300%);
        }
      }
    }
  }
}
/* ===About=== */
.about {
  margin-top: 5dvh;
  background-color: var(--thirdColor);
  overflow: hidden;
  position: relative;
  :is(.mainHeading, .AE_p, .boxs) {
    padding-bottom: 7dvh;
  }
  @media (max-width: 991px) {
    .mainHeading {
      padding-top: 5dvh;
    }
  }
  .boxs {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    gap: 16px;
    .box {
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 8px;
      figure {
        background-color: var(--whiteColor);
        padding: 4px;
        border-radius: 6px;
        margin: 0;

        img {
          /* transform: scale(0.9); */
          min-width: 32px;
          max-width: 32px;
          aspect-ratio: 1;
          display: block;
        }
      }
    }
    @media (max-width: 570px) {
      grid-template-columns: 1fr;
    }
  }
  .AllCounter {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    h3 {
      font-size: 2rem;
      font-weight: 700;
    }
    h4 {
      font-size: 1rem;
      font-weight: 400;
    }
    @media (max-width: 480px) {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
  }
  .aboutImg {
    figure:nth-child(1) {
      height: 557px;
      @media (max-width: 991px) {
        height: auto;
      }
    }
    figure:nth-child(2) {
      bottom: -20px;
      inset-inline-start: -100px;
      width: 300px;
    }
  }
  &::before {
    content: "";
    position: absolute;
    bottom: -220px;
    inset-inline-start: 0;
    width: 400px;
    aspect-ratio: 1;
    background-image: url("../img/heroShape1_1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    @media (max-width: 991px) {
      inset-inline-start: auto;
      inset-inline-end: 0;
      transform: rotate(45deg);
      width: 300px;
      bottom: -150px;
      opacity: 0.5;
    }
  }
}
/* ===about-2=== */
.about-2 {
  padding-block: 14dvh;
  background: url("../img/about/service-bg-2.jpg") no-repeat;
  background-size: cover;
  :is(.mainHeading, .AE_p) {
    padding-bottom: 4dvh;
  }
  .box {
    &:nth-child(1) {
      margin-bottom: 3dvh;
    }
    h3 {
      font-size: 1.2rem;
      padding-bottom: 0.3dvh;
    }
    p {
      opacity: 0.9;
      font-size: 0.8rem;
    }
  }
  .aboutImg {
    figure:nth-child(1) {
      max-width: 386px;
      height: 415px;
      .yearBox {
        position: absolute;
        background-color: var(--thirdColor);
        z-index: 99;
        inset-inline-end: 40px;
        bottom: -30px;
        padding: 20px 40px;
        border-radius: 7px;
        text-align: center;
        color: var(--whiteColor);
        animation: upDown ease-in-out infinite 5s;
      }
    }
    figure:nth-child(2) {
      border: 10px solid var(--whiteColor);
      inset-inline-start: -80px;
      bottom: -40px;
      width: 250px;
    }
  }
}
/* cowmen about  */
.about,
.about-2 {
  .AE_p {
    line-height: 1.7;
    opacity: 0.9;
  }
  .box {
    display: flex;
    align-items: center;
    gap: 16px;
    figure {
      background-color: var(--whiteColor);
      padding: 4px;
      border-radius: 6px;
      margin: 0;
      img {
        transform: scale(0.9);
      }
    }
  }
  .aboutImg {
    margin-inline: 80px 45px;
    position: relative;
    figure {
      margin: 0;
    }
    figure:nth-child(1) {
      position: relative;
      @media (max-width: 480px) {
        height: 100% !important;
        margin-bottom: 3dvh;
      }
    }
    figure:nth-child(2) {
      position: absolute;
      @media (max-width: 480px) {
        display: none;
      }
    }
    img {
      object-fit: contain;
    }
  }
}
/* ===mission=== */
.Mission_vision {
  .mission {
    background-color: var(--mainColor05);
    padding-block: 40px;
    border-radius: 30px;
    box-shadow: 0px 4px 2px rgba(160, 162, 163, 0.125);
    height: 100%;
    .mainHeading {
      padding-bottom: 3dvh;
      .heading {
        display: flex;
        align-items: center;
        flex-direction: column;
      }
    }
    p {
      padding-inline: 40px;
      opacity: 0.8;
      text-align: center;
    }
    @media (max-width: 991px) {
      &:nth-child(1) {
        margin-bottom: 4dvh;
      }
    }
  }
}
/* ===blog=== */
.blog {
  margin-bottom: 8dvh;
  .blogCard {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    figure {
      margin: 0;
      &.mainBlogImg {
        transition: 400ms ease-in-out;
        img {
          width: 100%;
        }
      }
    }
    .cardDetails {
      padding: 16px;
      border-radius: 16px;
      position: relative;
      margin: -40px auto auto;
      box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
      background-color: var(--whiteColor);
      .tag {
        border: 1px solid var(--thirdColor);
        display: inline-block;
        padding: 10px 24px;
        border-radius: 9999px;
        color: var(--thirdColor);
      }
      h3 {
        padding-block: 3dvh;
        font-size: 1.4rem;
        transition: var(--transition);
      }
      .publisherInfo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background-color: #ececec;
        padding: 12px;
        border-radius: 12px;
        :is(.publisher) {
          display: flex;
          align-items: center;
          gap: 3px;
        }
        .publisher {
          figure {
            img {
              border: 1px solid var(--whiteColor);
              border-radius: 50%;
              width: 50px;
              max-width: 50px;
              height: 50px;
              object-fit: cover;
              object-position: top;
            }
          }
          h4 {
            font-size: 0.9rem;
          }
        }
        .date {
          font-size: 0.8rem;
        }
      }
    }
    &:hover {
      figure {
        &.mainBlogImg {
          transform: scale(1.08);
        }
      }
      h3 {
        color: var(--thirdColor);
      }
    }
  }
  @media (max-width: 991px) {
    margin-bottom: 4dvh;
  }
  @media (max-width: 480px) {
    &.noBgColor {
      margin-top: 4dvh !important;
    }
  }
}
/* blogDetails ++ servicesDetails */
.layOutDetails {
  ul {
    padding-right: 0;
    li {
      list-style-type: none;
    }
  }
  aside {
    .asideBox {
      background-color: var(--mainColor05);
      border-radius: 20px;
      padding: 40px 30px;
      margin-bottom: 5dvh;
      h3 {
        padding-bottom: 2dvh;
        font-size: 2rem;
        position: relative;
        display: inline-block;
        &::before {
          content: "";
          position: absolute;
          bottom: 0;
          inset-inline-start: 0;
          width: 70%;
          height: 2px;
          background-color: var(--thirdColor);
        }
      }
      form,
      ul {
        padding-top: 3dvh;
        .formGroup {
          button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            inset-inline-end: 0;
            background-color: var(--thirdColor);
            height: 58px;
            padding-inline: 20px;
            border-radius: 12px;
            transition: var(--transition);
            i {
              font-size: 28px;
              color: var(--whiteColor);
            }
            &:hover {
              background-color: var(--secondColor);
            }
          }
        }
      }
      ul {
        padding-right: 0;
        li {
          list-style-type: none;
          a,
          p {
            margin-bottom: 3dvh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--whiteColor);
            padding: 24px;
            border-radius: 12px;
            font-size: 1.1rem;
            opacity: 0.8;
            &:hover,
            &.active {
              background-color: var(--thirdColor);
              color: var(--whiteColor);
              opacity: 1;
              i {
                color: var(--whiteColor);
              }
            }
          }
          p {
            justify-content: flex-start;
            gap: 12px;
            transition: var(--transition);
            padding: 16px;
            font-size: 0.9rem;
            margin-bottom: 1.5dvh;
            i {
              color: var(--thirdColor);
            }
          }
          button {
            margin-top: 3dvh;
          }
        }
      }
      &.AsideTags {
        h3 {
          font-size: 1.4rem;
        }
        ul {
          display: inline-flex;
          gap: 8px;
          flex-wrap: wrap;
          p {
            background-color: transparent;
            border: 1px solid var(--lightBorderColor);
            border-radius: 100px;
            padding: 12px 24px;
          }
        }
      }
    }
    @media (max-width: 991px) {
      margin-top: 5dvh;
    }
  }
  .details {
    figure:not(.icon) {
      margin-bottom: 4dvh;
      img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
      }
    }
    .icon {
      margin-bottom: 3dvh;
      img {
        height: 70px;
        filter: invert(1);
      }
    }
    ul {
      display: inline-flex;
      gap: 16px;
      margin-bottom: 0;
      li {
        font-size: 0.8rem;
        color: var(--darkColor);
        i {
          font-size: 1rem;
          color: var(--thirdColor);
          padding-inline-end: 4px;
        }
      }
    }
    hr {
      opacity: 0.2;
      margin: 3dvh 0;
    }
    h4 {
      font-size: 1.5rem;
      font-weight: 700;
    }
    p {
      padding-top: 3dvh;
      opacity: 0.8;
      line-height: 2;
      font-size: 0.9rem;
      &.hilight-text {
        background-color: var(--mainColor05);
        padding: 30px;
        margin-block: 2dvh;
        position: relative;
        &::before {
          content: "";
          position: absolute;
          width: 4px;
          height: 100%;
          inset-inline-start: 0;
          inset-block: 0;
          background-color: var(--thirdColor);
        }
      }
    }
    .Share {
      display: flex;
      align-items: center;
      gap: 16px;
      h6 {
        font-size: 1.4rem;
      }
      a {
        display: inline-flex;
        margin-inline-start: 12px;
        font-size: 1.1rem;
        width: 40px;
        aspect-ratio: 1;
        border: 1px solid var(--thirdColor);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        i {
          color: var(--thirdColor);
          transition: var(--transition);
        }
        &:hover {
          background-color: var(--thirdColor);
          i {
            color: var(--whiteColor);
          }
        }
      }
    }
    .projectShare {
      display: inline-flex;
      margin-top: 3dvh;
      gap: 16px;
      flex-wrap: wrap;
      li {
        margin-bottom: 2dvh;
      }
      a {
        background-color: var(--mainColor20);
        padding: 8px 16px;
        border-radius: 100px;
        img {
          width: 24px;
          margin-inline-end: 0.5dvh;
        }
        font-size: 0.8rem;
      }
    }
  }
  margin-bottom: 8dvh;
}
/* our project */
.project {
  margin-bottom: 8dvh;
  .projectFilter {
    display: inline-flex;
    place-content: center;
    width: 100%;
    gap: 16px;
    @media (max-width: 767px) {
      flex-wrap: wrap;
    }
    .AE_customBtn {
      background-color: var(--mainColor20);
      padding: 10px 18px;
      &:hover,
      &.active {
        background-color: var(--thirdColor);
        color: var(--whiteColor) !important;
      }
    }
  }
  .projectCard {
    padding: 18px;
    background-color: var(--mainColor05);
    margin-top: 7dvh;
    border-radius: 18px;
    position: relative;
    transition: 500ms ease-in-out;
    figure {
      margin: 0;
      margin-inline: 0;
      overflow: hidden;
      border-radius: 12px;
      img {
        transition: 600ms ease-in-out;
        border-radius: 12px;
        max-height: 300px;
        object-fit: cover;
        width: 100%;
        aspect-ratio: 4/3;
      }
    }
    h4 {
      font-size: 1.5rem;
      margin-block: 2dvh;
      transition: var(--transition);
    }
    p {
      font-size: 0.9rem;
      opacity: 0.8;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    &:hover {
      transform: scale(1.03);
      h4 {
        color: var(--thirdColor);
      }
      figure {
        img {
          transform: scale(1.09) rotate(3deg);
        }
      }
    }
  }
  &.project2 {
    background-color: var(--mainColor05);
    margin-top: 0;
    padding-top: 8dvh;
    /* padding-bottom: 4dvh; */
    .mainHeading {
      padding-bottom: 3dvh;
    }
    margin-bottom: 4dvh;
    .projectCard {
      margin-top: 4dvh;
    }
  }
}
/* faq */
.faq {
  margin-bottom: 8dvh;
  .accordion {
    .accordion-item {
      margin-bottom: 4dvh;
      border-radius: 16px;
      border: 1px solid var(--lightBorderColor);
      .accordion-button {
        border-radius: 16px;
        padding: 25px 30px;
        background-color: var(--whiteColor);
        font-size: 1.2rem;
        &:focus {
          box-shadow: none;
          padding-bottom: 0;
          background-color: transparent;
        }
        &:focus-within {
          padding: 24px;
          background-color: var(--whiteColor);
        }
      }
      &:focus {
        background-color: var(--mainColor05);
      }
      &:focus-within {
        background-color: transparent;
      }
      .accordion-button:not(.collapsed) {
        box-shadow: none;
      }
      .accordion-body {
        p {
          font-size: 0.9rem;
          opacity: 0.8;
        }
      }
    }
    .accordion-button::after {
      margin-inline-start: auto;
      margin-right: 0;
    }
  }
}
#collapse5 ul{
  list-style: none;
  margin-top: 0;
}
#collapse5 ul li{
  width: 25px;
  height: 25px;
  border-radius: 40%;
  border: 1px solid #164e63;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#collapse5 ul li:hover{
  background-color:#164e63;
}
#collapse5 ul li:hover a{
  color: white;
}
#collapse5 ul li a{
  color: #164e63;
}
/* ===contact=== */
.contact {
  position: relative;
  z-index: 9;
  .contactBox {
    background-color: var(--thirdColor);
    position: relative;
    padding: 20px 73px 0;
    border-radius: 30px;
    width: min(calc(100% - 30px), 95%);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -100px;
    
    .AE {
      position: relative;
      z-index: 10;
    }
    figure {
      margin: 0;
      width: 250px;
      margin-top: -100px;
    }
    .mainHeading {
      padding-bottom: 4vh;
    }
    &::before,
    &::after {
      content: "";
      position: absolute;
      background-size: contain;
      aspect-ratio: 1;
      background-repeat: no-repeat;
      width: 200px;
    }
    &::before {
      background-image: url("../img/ctaShape2_2.png");
      top: 0;
      inset-inline-end: 0;
    }
    &::after {
      background-image: url(../img/ctaShape2_3.png);
      bottom: 0;
      inset-inline-start: -100px;
      opacity: 0.5;
    }
    @media (max-width: 991px) {
      figure {
        display: none;
      }
      &.noBgColor {
        margin-top: 4dvh;
      }
      padding: 20px 60px;
    }
  }
  @media (max-width: 991px) {
    &.noBgColor {
      margin-top: 4dvh !important;
    }
  }
}
/* contact2 */
.contact2 {
  .contactInfo {
    .contactBox {
      background-color: var(--whiteColor);
      box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
      padding: 24px;
      border-radius: 20px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      .icon {
        margin-bottom: 3dvh;
        background-color: var(--thirdColor);
        width: 65px;
        aspect-ratio: 1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-inline: auto;
        transition: var(--transition);
        i {
          font-size: 2rem;
          color: var(--whiteColor);
          transition: var(--transition);
        }
      }
      h4 {
        font-size: 1.4rem;
        margin-bottom: 0.8dvh;
        transition: var(--transition);
      }
      a {
        opacity: 0.8;
      }
      &:hover {
        background-color: var(--thirdColor);
        a,
        h4 {
          color: var(--whiteColor);
        }
        .icon {
          background-color: var(--whiteColor);
          i {
            color: var(--thirdColor);
          }
        }
      }
      @media (max-width: 767px) {
        margin-bottom: 3dvh;
      }
    }
  }
  .contactForm {
    margin-block: 8dvh;
    p {
      margin-bottom: 3dvh;
      opacity: 0.8;
      line-height: 2;
    }
    h4 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 1dvh;
    }
    .formGroup {
      margin-bottom: 3dvh;
      label {
        margin-bottom: 0.5dvh;
        padding-inline-start: 10px;
        display: inline-block;
      }
      input,
      textarea {
        background-color: var(--mainColor05);
        transition: var(--transition);
        &:hover,
        &:focus {
          background-color: var(--whiteColor);
          border-color: var(--secondColor);
        }
      }
    }
    figure {
      width: 100%;
      height: 100%;
      img {
        border-radius: 12px;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      @media (max-width: 991px) {
        display: none;
      }
    }
  }
}
/* ===footer=== */
footer {
  padding: 120px 0 40px;
  position: relative;
  background-color: var(--mainColor05);
  .footer-meta {
    ul {
      padding-right: 0;
      padding-top: 2vh;
      li {
        list-style: none;
        padding-bottom: 1.5vh;
        a {
          position: relative;
          transition: 300ms ease-in-out;
          &:hover {
            /* inset-inline-start: 15px; */
            letter-spacing: 0.5px;
          }
          i {
            /* font-size: 16px; */
            color: var(--mainColor);
          }
        }
      }
    }
    h5 {
      font-size: 1.4rem;
      padding-bottom: 1.4vh;
      position: relative;
      &::before {
        content: "";
        position: absolute;
        bottom: 0;
        inset-inline-start: 0;
        width: 40px;
        height: 2px;
        background-color: var(--thirdColor);
      }
    }
    .logooFooter {
      img {
        height: 60px;
      }
    }
    .aboutFooter {
      margin-block: 2dvh;
      line-height: 1.7;
    }
    &.socialMedia {
      ul {
        li {
          a {
            i {
              font-size: 1.1rem;
              padding-inline-end: 0.3dvh;
            }
          }
        }
      }
    }
  }
  .copyRight {
    background-color: var(--mainColor05);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    opacity: 0.8;
    /* position: absolute;
    width: 100%;
    bottom: 0;
    inset-inline-start: 0; */
  }
}
/* ========== */
@keyframes upDown {
  100%,
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes imgUpDown {
  0% {
    transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes imgDownUp {
  0% {
    transform: translateY(5%);
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes rotate {
  0% {
    transform: translateX(50%) rotate(0);
  }
  100% {
    transform: translateX(50%) rotate(360deg);
  }
}
[data-aos="ImgUp"] {
  opacity: 0;
  &.aos-animate {
    animation: imgUpDown 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  }
}
[data-aos="ImgDown"] {
  opacity: 0;
  &.aos-animate {
    animation: imgDownUp 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  }
}
/* /////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////// */
html {
  font-size: 90%;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.875em;
}
p,
a,
button,
input,
.dropdown-item {
  font-size: 0.875em;
}
