  @import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
  @import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

  :root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #EC2D2D;
    --theme2: #FF9900;
    --theme3: #FF9900;
    --header: #232323;
    --base: #EC2D2D;
    --text: #888888;
    --border: #8888884d;
    --border2: #272727;
    --bg: #0E0E0E;
    --bg2: #191919;
    --bg3: #ffffff33;
    --color-gradient-1: linear-gradient(90deg, #FF9900 0%, #CC2500 100%);
    --color-gradient-2: linear-gradient(102.27deg, #0E0E0E 0%, rgba(35, 35, 35, 0.29) 100%);
    --color-gradient-3: linear-gradient(180deg, rgba(255, 153, 0, 0) 0%, #EE332B 100%);
    --color-gradient-4: linear-gradient(226.22deg, rgba(0, 0, 0, 0.123) 0%, #000000d7 84.75%);
    --color-gradient-5: linear-gradient(96.78deg, #0E0E0E 2.09%, rgba(35, 35, 35, 0.29) 75.55%);
  }

  .theme-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    background-color: #ff6a00 !important;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    border-radius: 0px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 99;
  }

  .theme-btn::before {
    position: absolute;
    content: "";
    background-color: var(--white);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    z-index: -1;
  }

  .theme-btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    z-index: -1;
  }

  .theme-btn:hover {
    color: var(--black) !important;
  }

  .theme-btn:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .theme-btn:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
  }

  .theme-btn.style-2 {
    border: 1px solid var(--white);
    padding: 17px 45px;
    background-color: transparent;
  }

  .theme-btn.style-2::before,
  .theme-btn.style-2::after {
    background-color: #000000;
  }

  .theme-btn.style-2:hover {
    color: var(--black);
    border: 1px solid #000000;
  }

  @media (max-width: 991px) {
    .theme-btn {
      font-size: 15px;
      padding: 12px 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle img {
      position: absolute;
      right: -135px;
      top: 0px;
      height: 30px;
    }
  }

  @media (max-width: 575px) {
    .theme-btn {
      font-size: 14px;
      padding: 12px 32px;
      /* margin-left: 15px; */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-mb {
      margin-left: 15px;
    }
  }

  .theme-btn-2 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    color: var(--bg2);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 99;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    border-radius: 5px;
    background-color: rgba(10, 10, 10, 0.7);
  }

  .theme-btn-2::before {
    position: absolute;
    content: "";
    background-color: var(--white);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    z-index: -1;
  }

  .theme-btn-2::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    color: var(--black) !important;

    background-color: var(--white);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    z-index: -1;
  }

  .theme-btn-2:hover {
    color: var(--black) !important;
    border: 1px solid var(--white);
  }

  .theme-btn-2:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .theme-btn-2:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
  }

  /* .theme-btn-2:hover .shape-img {
    filter: grayscale(100%) brightness(150%);
  } */
  .theme-btn-2.white-border {
    /* border: 1px solid var(--white); */
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    border-radius: 0px;
    color: var(--white);
    /* border-radius: 50px; */
  }

  .theme-btn-3 {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 99;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    border-radius: 5px;
    background-color: var(--bg2);
    border: 1px solid var(--black);
  }

  .theme-btn-3::before {
    position: absolute;
    content: "";
    background-color: var(--white);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    z-index: -1;
  }

  .theme-btn-3::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    color: var(--black) !important;

    background-color: var(--white);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    z-index: -1;
  }

  .theme-btn-3:hover {
    color: var(--black) !important;
    background-color: var(--white);
    border: 1px solid var(--black);
  }

  .theme-btn-3:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  }

  .theme-btn-3:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
  }

  /* .theme-btn-3:hover .shape-img {
    filter: grayscale(100%) brightness(150%);
  } */
  .theme-btn-3.white-border {
    /* border: 1px solid var(--white); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 45px;
    color: var(--white);
    /* border-radius: 50px; */
  }

  @media (max-width: 991px) {
    .theme-btn-2.white-border {
      font-size: 15px;
      padding: 12px 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  @media (max-width: 575px) {
    .theme-btn-2.white-border {
      font-size: 14px;
      padding: 11px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  .theme-btn-2.white-border:hover {
    border: 1px solid #000000;
    color: var(--black) !important;

  }

  @media (max-width: 991px) {
    .theme-btn-2 {
      font-size: 15px;
      padding: 12px 35px;
    }
  }

  @media (max-width: 575px) {
    .theme-btn-2 {
      font-size: 14px;
      padding: 12px 32px;
    }
  }

  .theme-btn-2.padding-style {
    line-height: 1;
    padding: 18px 45px;
  }

  /* .theme-btn-2 .shape-img {
    position: absolute;
    bottom: 6px;
    right: 6px;
    transition: all 0.4s ease-in-out;
  } */

  /* --------------------------------------------
      Template Default Fonts & Fonts Styles
  ---------------------------------------------- */
  body {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }

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

  button {
    border: none;
    background-color: transparent;
    padding: 0;
  }

  input:focus {
    color: var(--white);
    outline: none;
  }

  input {
    color: var(--white);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Raleway', sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--white);
    /* text-transform: capitalize; */
    transition: all 0.4s ease-in-out;
  }

  h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 120%;
  }

  h2 {
    font-size: 35px;
    line-height: 130%;
    font-weight: 600;
  }

  @media (max-width: 1199px) {
    h2 {
      font-size: 34px;
    }
  }

  @media (max-width: 767px) {
    h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 575px) {
    h2 {
      font-size: 28px;
    }
  }

  h3 {
    font-size: 26px;
    font-weight: 600;
  }

  @media (max-width: 575px) {
    h3 {
      font-size: 20px;
    }
  }

  h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
  }

  h5 {
    font-size: 20px;
    font-weight: 500;
  }

  h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 145%;
  }

  a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--white);
    transition: all 0.4s ease-in-out;
  }

  p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
  }

  span {
    margin: 0px;
    transition: all 0.4s ease-in-out;
  }

  .preloader {
    align-items: center;
    cursor: default;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
  }

  .preloader .animation-preloader {
    z-index: 1000;
  }

  .preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
  }

  @media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
      width: 7.5em;
      height: 7.5em;
      margin: 0 auto 1.5em auto;
    }
  }

  .preloader .animation-preloader .txt-loading {
    font: bold 5em "Prompt", sans-serif, "Prompt", sans-serif;
    text-align: center;
    user-select: none;
  }

  @media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
      font-size: 2.5em;
    }
  }

  .preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--white);
    position: relative;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.2s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.4s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.6s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.8s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s;
  }

  .preloader .animation-preloader .txt-loading .letters-loading::before {
    animation: letters-loading 4s infinite;
    color: #000000;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: 'DM Sans', sans-serif;

    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
  }

  .preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #000000;
  }

  .preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
  }

  .preloader .loader .row {
    height: 100%;
  }

  .preloader .loader .loader-section {
    padding: 0px;
  }

  .preloader .loader .loader-section .bg {
    background-color: var(--bg);
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  }

  .preloader.loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
  }

  .preloader.loaded .loader-section .bg {
    width: 0;
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  }

  .search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }

  .search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp 0.3s;
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
      width: 70%;
    }
  }

  @media (max-width: 575px) {
    .search-wrap .search-field-holder {
      width: 80%;
    }
  }

  .search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: uppercase;
    background: transparent;
    font-size: 25px;
    color: var(--header);
    border-bottom: 2px solid var(--header);
    text-align: center;
    letter-spacing: 2px;
  }

  @media (max-width: 575px) {
    .search-wrap .main-search-input {
      height: 50px;
      padding: 0 0;
      line-height: 50px;
      font-size: 18px;
    }
  }

  .search-wrap input.form-control,
  .search-wrap input.form-control:focus {
    background-color: var(--header);
  }

  input.main-search-input::placeholder {
    color: var(--header);
    opacity: 1;
    font-size: 25px;
  }

  @media (max-width: 575px) {
    input.main-search-input::placeholder {
      font-size: 18px;
    }
  }

  .search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: #000000;
    cursor: pointer;
  }

  .mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
  }

  .cursor-inner {
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: #000000;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .cursor-inner.cursor-hover {
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 70px;
    background-color: #000000;
    opacity: 0.3;
  }

  .cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid #000000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
  }

  .cursor-outer.cursor-hover {
    opacity: 0;
  }

  .section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -7px;
  }

  @media (max-width: 767px) {
    .section-title {
      margin-bottom: 0;
    }
  }

  .section-title span {
    color: var(--text);
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
  }

  .section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  @media (max-width: 767px) {
    .section-title-area {
      flex-wrap: wrap;
      gap: 30px;
    }
  }

  .center {
    text-align: center;
    margin: 0 auto;
  }

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

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

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

  .section-padding-1 {
    padding: 100px 0;
  }

  .section-padding_01 {
    padding: 30px 0 150px 0;
  }

  @media (max-width: 1199px) {
    .section-padding {
      padding: 100px 0;
    }
  }

  @media (max-width: 991px) {
    .section-padding {
      padding: 80px 0;
    }

    .pr-section {
      margin-top: 100px;
    }
  }

  @-webkit-keyframes rippleOne {
    70% {
      -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
      box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
      box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
  }

  @keyframes rippleOne {
    70% {
      -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
      box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
      box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
  }

  @keyframes cir36 {
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes rounded {
    50% {
      transform: rotate(15deg);
    }
  }

  @-webkit-keyframes spinner {
    to {
      -webkit-transform: rotateZ(360deg);
      transform: rotateZ(360deg);
    }
  }

  @keyframes spinner {
    to {
      -webkit-transform: rotateZ(360deg);
      transform: rotateZ(360deg);
    }
  }

  @-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
      opacity: 0;
      transform: rotateY(-90deg);
    }

    25%,
    50% {
      opacity: 1;
      transform: rotateY(0deg);
    }
  }

  @keyframes letters-loading {

    0%,
    75%,
    100% {
      opacity: 0;
      transform: rotateY(-90deg);
    }

    25%,
    50% {
      opacity: 1;
      transform: rotateY(0deg);
    }
  }

  @keyframes loaderspin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes tpswing {
    0% {
      -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
      transform: rotate(20deg);
    }

    100% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }

  @keyframes width {
    0% {
      width: 0%;
    }

    100% {
      width: 100%;
    }
  }

  @-webkit-keyframes width {
    0% {
      width: 0%;
    }

    100% {
      width: 100%;
    }
  }

  @-webkit-keyframes loaderspin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes loaderpulse {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.2);
    }
  }

  @-webkit-keyframes float-bob-y {
    0% {
      transform: translateY(-30px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(-30px);
    }
  }

  @keyframes float-bob-y {
    0% {
      transform: translateY(-30px);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(-30px);
    }
  }

  .float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  .top-header-wrapper {
    padding: 10px 0;
  }

  .top-header-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top-header-wrapper ul li {
    color: var(--white);
    /* margin-right: -140px; */
  }

  @media (max-width: 1600px) {
    .top-header-wrapper ul li {
      margin-right: 0;
    }
  }

  .top-header-wrapper ul li a {
    color: var(--white);
  }

  .top-header-wrapper ul li:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 35px;
    margin-right: 0;
    font-size: 13px !important;
  }

  .cityName {
    font-size: 13px !important;
    cursor: pointer;
  }

  .cityName:hover {
    color: #ff6a00;
  }

  .top-header-wrapper.style-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top-header-wrapper.style-2 ul {
    justify-content: initial;
  }

  .top-header-wrapper.style-2 ul li {
    margin-right: 0;
  }

  .top-header-wrapper.style-2 ul li i {
    color: #000000;
  }

  .top-header-wrapper.style-2 ul li:nth-last-of-type(1) {
    padding-left: 35px;
  }

  .top-header-wrapper.style-2 .social-icon {
    gap: 20px;
  }

  .top-header-wrapper.style-2 .social-icon a {
    color: var(--white);
  }

  .top-header-wrapper.style-2 .social-icon a:hover {
    color: #000000;
  }

  @media (max-width: 1199px) {
    .top-header {
      display: none;
    }
  }

  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }

  .header-main .main-menu ul {
    margin-bottom: 0;
  }

  .header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 30px;
  }

  .header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
  }

  .header-main .main-menu ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
  }

  /* .header-main .main-menu ul li a:hover {
    color: #fff !important;
  } */
  .header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 240px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 0px;
    border-radius: 0px;
    margin: auto;
    padding: 0 0px;
    color: #ff6a00;
  }

  .header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 14px;
    font-weight: 500;
    color: var(--header);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }

  .header-main .main-menu ul li .submenu li:last-child a {
    border: none;
  }

  .header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
  }

  .header-main .main-menu ul li .submenu li:hover>a {
    /* background: #000000; */
    color: #ff6a00 !important;
  }

  .header-main .main-menu ul li .submenu li:hover>a::after {
    color: #ff6a00;
  }

  .header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
  }

  .header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #000000;
  }

  .header-main .main-menu ul li:hover>a {
    color: #ff6a00;
  }

  .header-main .main-menu ul li:hover>a::after {
    color: #ff6a00;
  }

  .header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    /* transform: translateY(0px); */
    display: flex;
    flex-direction: column;
    gap: 0px;
    border-radius: 0px;
    margin: auto;
    padding: 0 0px;
    color: #ff6a00;
  }

  .header-main .header-right {
    gap: 20px;
  }

  .header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
  }

  .header-new .header-1 {
    position: absolute;
    width: 100%;
    top: 48px;
    left: 0;
    padding: 20px 0;
  }

  .header-1 {
    position: relative;
    z-index: 999;
    /* background: transparent;
    backdrop-filter: saturate(1) blur(55px) !important;
    -webkit-backdrop-filter: saturate(1) blur(35px) !important; */
  }

  .header-1::after {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";


  }

  @media (max-width: 991px) {
    .header-1 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  @media (max-width: 1600px) {
    .header-1::before {
      width: 100%;
      clip-path: none;
    }
  }

  @media (max-width: 1600px) {
    .header-1::after {
      display: none;
    }
  }

  .header-1.style-2 {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  @media (max-width: 1199px) {
    .header-1.style-2 {
      top: 0;
    }
  }

  @media (max-width: 991px) {
    .header-1.style-2 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  .header-1 .mega-menu-wrapper .header-main .header-left {
    display: flex;
    align-items: center;
    gap: 115px;
    width: 100%;
  }

  .header-1 .mega-menu-wrapper .header-main .header-right {
    width: 22%;
  }

  @media (max-width: 800px) {
    .header-1 .mega-menu-wrapper .header-main .header-right {
      width: 0;
    }
  }

  .header-1 .mega-menu-wrapper .header-main .header-right .header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  @media (max-width: 800px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .header-contact {
      display: none;
    }
  }

  .header-1 .mega-menu-wrapper .header-main .header-right .header-contact .icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background-color: var(--bg2);
    display: block;
  }

  .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle {
    cursor: pointer;
    position: relative;
  }

  .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle img {
    filter: invert();
    position: absolute;
    /* right: -135px; */
    top: -15px;
    height: 30px;
  }

  @media screen and (min-width:426px) and (max-width:1205px) {
    .header-new .header-1 {
      position: absolute;
      width: 100%;
      top: 0px !important;
      left: 0;
    }
  }

  @media screen and (max-width:425px) {
    .section-padding-1 {
      padding: 0px 0 !important;
    }

    .project-header .theme-btn {
      width: 150px !important;
      margin-left: 20px;
      margin-top: 20px;
    }

    .counter-wrapper-2 {
      padding: 0px !important;
    }

    .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle img {
      position: absolute;
      right: -135px;
      top: 1px !important;
      height: 30px;
    }

    .header-new .header-1 {
      position: absolute;
      width: 100%;
      top: 0px !important;
      left: 0;
    }

    .section-logo .logo-image img {
      object-fit: cover !important;
      background-size: cover !important;
      width: 40% !important;
    }

    .pdr-0 {
      padding-right: 8px !important;
    }
  }

  @media (max-width: 1600px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle img {
      right: 0;
    }
  }

  @media (max-width: 991px) {
    .header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle img {
      display: none;
    }
  }

  @media (max-width: 991px) {
    .header-2 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  .header-2 .mega-menu-wrapper .header-main .header-right {
    gap: 80px;
  }

  .header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li a {
    padding: 30px 0;
  }

  .header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li a:hover {
    color: #000000 !important;
  }

  .header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li .submenu li a {
    padding: 12px 25px;
  }

  .header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li .submenu li a:hover {
    color: var(--white) !important;
  }

  @media (max-width: 1199px) {
    .header-2 .mega-menu-wrapper .header-main .header-right .header-button {
      display: none;
    }
  }

  .header-3 {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
  }

  @media (max-width: 1199px) {
    .header-3 {
      top: 0;
    }
  }

  .header-3 .mega-menu-wrapper {
    position: relative;
    padding: 0 20px;
  }

  @media (max-width: 991px) {
    .header-3 .mega-menu-wrapper {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  .header-3 .mega-menu-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--white);
  }

  .header-3 .mega-menu-wrapper .header-main {
    position: relative;
    z-index: 99;
  }

  .header-3 .mega-menu-wrapper .header-main .header-logo-2 {
    display: none;
  }

  .header-3 .mega-menu-wrapper .header-main .header-left {
    gap: 110px;
    display: flex;
    align-items: center;
  }

  @media (max-width: 1399px) {
    .header-3 .mega-menu-wrapper .header-main .header-left {
      gap: 60px;
    }
  }

  .header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li a {
    color: var(--header);
  }

  .header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li a:hover {
    color: #000000 !important;
  }

  @media (max-width: 1199px) {
    .header-3 .mega-menu-wrapper .header-main .header-right .header-button {
      display: none;
    }
  }

  .header-3 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn-2 {
    background-color: #000000;
    border: none;
    color: var(--white);
  }

  /* .header-3 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn-2 .shape-img {
    filter: grayscale(100%) brightness(300%);
  } */
  .header-3 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn-2::before,
  .header-3 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn-2::after {
    background-color: var(--white);
  }

  .header-3 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn-2:hover {
    color: var(--header);
  }

  /* .header-3 .mega-menu-wrapper .header-main .header-right .header-button .theme-btn-2:hover .shape-img {
    filter: initial;
  } */
  .header-3 .mega-menu-wrapper .header-main .sidebar__toggle .bar-icon i {
    color: var(--header);
  }

  .sidebar__toggle {
    cursor: pointer;
  }

  .sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: var(--bg);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  }

  @media (max-width: 991px) {
    .sticky {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  @media (max-width: 767px) {
    .sticky {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  @media (max-width: 575px) {
    .sticky {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  .sticky.header-1::before {
    width: 100%;
    background: var(--white);
    clip-path: initial;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px !important;
  }

  .sticky.header-1::after {
    display: none;
  }

  .sticky.header-1 .mega-menu-wrapper .header-main .header-left {
    justify-content: space-between;
  }

  .sticky.header-1 .mega-menu-wrapper .header-main .header-right {
    width: 0;
  }

  .sticky.header-1 .mega-menu-wrapper .header-main .header-right .header-contact {
    display: none;
  }

  .sticky.header-1 .mega-menu-wrapper .header-main .header-right .header__hamburger .sidebar__toggle img {
    display: none;
  }

  .sticky.header-2 {
    background: #000000;
  }

  @media (max-width: 991px) {
    .sticky.header-2 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }

  .sticky.header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li a {
    padding: 30px 0;
  }

  .sticky.header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li a:hover {
    color: var(--white) !important;
  }

  .sticky.header-2 .mega-menu-wrapper .header-main .header-right .main-menu ul li .submenu li a {
    padding: 12px 25px;
  }

  .sticky.header-2 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }

  .sticky.header-3 {
    background: #000000;
  }

  .sticky.header-3 .mega-menu-wrapper {
    padding: 0;
  }

  .sticky.header-3 .mega-menu-wrapper::before {
    display: none;
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-logo {
    display: none;
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-logo-2 {
    display: block;
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-left {
    justify-content: space-between;
    width: 100%;
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li a {
    color: var(--white);
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li a:hover {
    color: var(--white) !important;
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-left .main-menu ul li .submenu li a {
    color: var(--header);
  }

  .sticky.header-3 .mega-menu-wrapper .header-main .header-right .header-button {
    display: none;
  }

  .sticky.header-3 .mega-menu-wrapper .sidebar__toggle .bar-icon i {
    color: var(--white);
  }

  .offcanvas__info {
    background: var(--bg) none repeat scroll 0 0;
    border-left: 2px solid #000000;
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
  }

  .offcanvas__info::-webkit-scrollbar {
    display: none;
  }

  .offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .offcanvas__logo a img {
    width: 150px;
  }

  .offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
  }

  .offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: #000000;
    position: relative;
    z-index: 9;
    cursor: pointer;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: #ffffff;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 16px 40px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--text);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
  }

  .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: #000000;
    color: var(--white);
  }

  .offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 99991;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
  }

  .offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
  }

  @media (max-width: 450px) {
    .offcanvas__info {
      width: 300px;
    }
  }

  @media (max-width: 575px) {
    .offcanvas__wrapper {
      padding: 20px;
    }
  }

  .breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
  }

  .breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: var(--color-gradient-5);
  }

  .breadcrumb-wrapper .page-heading {
    position: relative;
    padding-top: 165px;
    padding-bottom: 10px;
  }

  @media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
      padding-bottom: 50px;
      padding-top: 170px;
    }
  }

  .breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 50px;
    position: relative;
    z-index: 9;
    text-align: center;
  }

  @media (max-width: 991px) {
    .breadcrumb-wrapper .page-heading h1 {
      font-size: 68px;
    }
  }

  @media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
      font-size: 42px;
    }
  }

  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  @media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
      margin-top: 15px;
      display: none !important;
    }
  }

  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: #ffffff8a;
    text-transform: capitalize;

    font-size: 13px !important;
  }

  .breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: #ffffff8a;
    transition: all 0.4s ease-in-out;
    font-size: 13px !important;
  }

  .breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: #ffffff;
    font-size: 13px !important;
  }

  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: #ffffff8a;
    font-size: 13px !important;
  }

  .breadcrumb-wrapper .mask-shape {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }

  .breadcrumb-wrapper .mask-shape img {
    height: 100%;
  }

  @media (max-width: 991px) {
    .breadcrumb-wrapper .mask-shape {
      display: none;
    }
  }

  .error-content .error-image {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
  }

  .error-content .error-image img {
    width: 100%;
    height: 100%;
  }

  .error-content h2 {
    margin-top: 50px;
  }

  @media (max-width: 575px) {
    .error-content h2 {
      margin-top: 30px;
    }
  }

  .mean-container a.meanmenu-reveal {
    display: none;
  }

  .mean-container .mean-nav {
    background: none;
    margin-top: 0;
  }

  .mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
  }

  .mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
  }

  .mean-container a.meanmenu-reveal {
    display: none !important;
  }

  .mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none;
  }

  .mean-container .mean-nav ul li a:hover {
    color: #fff;
  }

  .mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
  }

  .mean-container .mean-nav ul li a:hover {
    color: #fff;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
  }

  .mean-container .mean-nav ul li>a>i {
    display: none;
  }

  .mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 18px;
  }

  .mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
  }

  .mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
  }

  .mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
  }

  .hero-section {
    position: relative;
    z-index: -1;
  }

  .hero-section::before {
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 140px;
    content: "";
    /* background-color: #000000; */
    z-index: 9;
    position: absolute;
  }

  @media (max-width: 1399px) {
    .hero-section::before {
      width: 100px;
    }
  }

  @media (max-width: 1199px) {
    .hero-section::before {
      width: initial;
    }
  }

  .hero-section .hero-social {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 9;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
  }

  @media (max-width: 1199px) {
    .hero-section .hero-social {
      display: none;
    }
  }

  .hero-section .hero-social li {
    transform: rotate(90deg);
    margin-inline-start: 20px;
  }

  .hero-section .hero-social li a {
    color: var(--white);
  }

  .hero-section .hero-social li a:hover {
    color: #000000;
  }

  .hero-section .hero-social::before {
    position: absolute;
    top: 13px;
    left: -100px;
    width: 85px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  .hero-section .hero-social::after {
    position: absolute;
    bottom: 13px;
    right: -115px;
    width: 85px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  .hero-section .swiper-dot {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    transform: rotate(-90deg);
  }

  .hero-section .swiper-dot::before {
    position: absolute;
    top: 13px;
    left: -130px;
    width: 85px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  .hero-section .swiper-dot::after {
    position: absolute;
    bottom: 13px;
    right: -130px;
    width: 85px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  @media (max-width: 1399px) {
    .hero-section .swiper-dot {
      display: none;
    }
  }

  .hero-1 {
    padding: 250px 0;
    position: relative;
  }

  @media (max-width: 1199px) {
    .hero-1 {
      padding: 200px 0;
    }
  }

  @media (max-width: 991px) {
    .hero-1 {
      padding: 150px 0;
    }
  }

  @media (max-width: 575px) {
    .hero-1 {
      padding: 100px 0;
    }
  }

  .hero-1::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: var(--color-gradient-2);
  }

  .hero-1 .hero-content {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 575px) {
    .hero-1 .hero-content {
      text-align: center;
      margin: 0 auto;
    }
  }

  .hero-1 .hero-content h5 {
    background-color: var(--bg3);
    width: 190px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  @media (max-width: 575px) {
    .hero-1 .hero-content h5 {
      text-align: center;
      margin: 0 auto 20px;
    }
  }

  @media (max-width: 1199px) {
    .hero-1 .hero-content h1 {
      font-size: 64px;
    }
  }

  @media (max-width: 991px) {
    .hero-1 .hero-content h1 {
      font-size: 52px;
    }
  }

  @media (max-width: 767px) {
    .hero-1 .hero-content h1 {
      font-size: 44px;
    }
  }

  @media (max-width: 575px) {
    .hero-1 .hero-content h1 {
      font-size: 36px;
    }
  }

  .hero-1 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
  }

  @media (max-width: 767px) {
    .hero-1 .hero-content .hero-button {
      margin-top: 40px;
    }
  }

  @media (max-width: 575px) {
    .hero-1 .hero-content .hero-button {
      margin-top: 25px;
      justify-content: center;
    }
  }

  .hero-1 .video-box {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 1199px) {
    .hero-1 .video-box {
      margin-top: 30px;
    }
  }

  @media (max-width: 575px) {
    .hero-1 .video-box {
      text-align: center;
      margin: 30px auto;
    }
  }

  .hero-1 .video-box .video-btn {
    background-image: #000000;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 75px;
    border-radius: 50%;
    text-align: center;
  }

  .hero-1 .shape-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }

  .hero-1 .shape-image img {
    height: 100%;
  }

  .hero-2 {
    position: relative;
  }

  .hero-2 .swiper-slide-active .hero-image {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);
  }

  @media (max-width: 1199px) {
    .hero-2 .arry-button {
      display: none;
    }
  }

  .hero-section-2 {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
  }

  .hero-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
  }

  section {
    position: relative;
    z-index: 2;
    background: #fff;
  }

  .hero-image {
    background-color: #000;
  }

  footer {
    position: relative;
    z-index: 2;
  }

  .hero-2 .arry-button .arry-prev {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 4%;
    z-index: 9;
  }

  .hero-2 .arry-button .arry-next {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 0;
    z-index: 9;
  }

  .hero-2 .hero-image {
    overflow: hidden;
    position: sticky !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh !important;
    opacity: 1;
    /* z-index: -1; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 8s ease-out 0s;
    -moz-transition: all 8s ease-out 0s;
    -ms-transition: all 8s ease-out 0s;
    -o-transition: all 8s ease-out 0s;
    transition: all 8s ease-out 0s;
  }

  .hero-2 .hero-image::before {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    opacity: 0.6;
  }

  .hero-2 .swiper-dot {
    position: absolute;
    left: 50%;
    bottom: 60px;
    z-index: 9;
    transform: translate(-50%, -50%);
  }

  @media (max-width: 575px) {
    .hero-2 .swiper-dot {
      bottom: 20px;
    }
  }

  .hero-2 .swiper-dot::before {
    position: absolute;
    top: 13px;
    left: -130px;
    width: 105px;
    height: 1px;
    /* background-color: var(--text); */
    content: "";
  }

  .hero-2 .swiper-dot::after {
    position: absolute;
    bottom: 13px;
    right: -130px;
    width: 105px;
    height: 1px;
    /* background-color: var(--text); */
    content: "";
  }

  .hero-2 .hero-content {
    height: 100vh;
    padding: 250px 0;
    position: relative;
    z-index: 9;
    /* text-align: center; */
    /* margin: 0 auto; */
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    justify-content: center;
  }

  @media (max-width: 1199px) {
    .hero-2 .hero-content {
      padding: 200px 0;
    }
  }

  @media (max-width: 991px) {
    .hero-2 .hero-content {
      padding: 215px 0;
    }
  }

  @media (max-width: 575px) {
    .hero-2 .hero-content {
      padding: 320px 0;
    }
  }

  .hero-2 .hero-content h5 {
    background-color: var(--bg3);
    max-width: fit-content;
    padding: 10px;
    /* text-align: center; */
    /* margin: 0 auto 20px; */
    font-size: 16px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  /* @media (max-width: 575px) {
    .hero-2 .hero-content h5 {
      text-align: center;
      margin: 0 auto 20px;
    }
  } */
  .hero-2 .hero-content h1 {
    font-size: 55px;
    padding-top: 30px;
  }

  @media (max-width: 1399px) {
    .hero-2 .hero-content h1 {
      font-size: 50px;
    }
  }

  @media (max-width: 1199px) {
    .hero-2 .hero-content h1 {
      font-size: 76px;
    }
  }

  @media (max-width: 991px) {
    .hero-2 .hero-content h1 {
      font-size: 62px;
    }
  }

  @media (max-width: 767px) {
    .hero-2 .hero-content h1 {
      font-size: 50px;
    }
  }

  @media (max-width: 575px) {
    .hero-2 .hero-content h1 {
      font-size: 30px;
    }
  }

  .hero-2 .hero-content h1 span {
    color: #ff6a00;
  }

  .hero-2 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    /* justify-content: center; */
  }

  @media (max-width: 767px) {
    .hero-2 .hero-content .hero-button {
      margin-top: 40px;
    }
  }

  /* @media (max-width: 575px) {
    .hero-2 .hero-content .hero-button {
      margin-top: 25px;
      justify-content: center;
    }
  } */

  .hero-section-3 {
    position: relative;
  }

  .hero-section-3 .swiper-dot {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    transform: rotate(-90deg);
  }

  .hero-section-3 .swiper-dot::before {
    position: absolute;
    top: 13px;
    left: -130px;
    width: 85px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  .hero-section-3 .swiper-dot::after {
    position: absolute;
    bottom: 13px;
    right: -130px;
    width: 85px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  @media (max-width: 1399px) {
    .hero-section-3 .swiper-dot {
      display: none;
    }
  }

  .hero-3 {
    padding-top: 290px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
  }

  @media (max-width: 991px) {
    .hero-3 {
      padding-top: 250px;
    }
  }

  @media (max-width: 575px) {
    .hero-3 {
      padding-top: 200px;
    }
  }

  .hero-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg);
    opacity: 0.7;
  }

  .hero-3 .hero-content {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 575px) {
    .hero-3 .hero-content {
      text-align: center;
      margin: 0 auto;
    }
  }

  .hero-3 .hero-content h5 {
    background-color: var(--bg3);
    width: 190px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-align: center;
  }

  @media (max-width: 575px) {
    .hero-3 .hero-content h5 {
      text-align: center;
      margin: 0 auto 20px;
    }
  }

  .hero-3 .hero-content h1 {
    font-size: 80px;
    margin-bottom: 15px;
  }

  @media (max-width: 1199px) {
    .hero-3 .hero-content h1 {
      font-size: 72px;
    }
  }

  @media (max-width: 991px) {
    .hero-3 .hero-content h1 {
      font-size: 62px;
    }
  }

  @media (max-width: 767px) {
    .hero-3 .hero-content h1 {
      font-size: 48px;
    }
  }

  @media (max-width: 575px) {
    .hero-3 .hero-content h1 {
      font-size: 36px;
    }
  }

  .hero-3 .hero-content p {
    color: var(--white);
  }

  .hero-3 .hero-content .hero-button {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }

  @media (max-width: 767px) {
    .hero-3 .hero-content .hero-button {
      margin-top: 40px;
    }
  }

  @media (max-width: 575px) {
    .hero-3 .hero-content .hero-button {
      margin-top: 25px;
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  .hero-3 .hero-content .hero-button .video-btn {
    background-image: #000000;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 75px;
    border-radius: 50%;
    text-align: center;
  }

  .hero-3 .hero-content .hero-button .button-text span {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
  }

  .hero-3 .hero-image {
    position: relative;
    z-index: 1;
    margin-bottom: -150px;
    width: 580px;
  }

  .hero-3 .hero-image img {
    width: 100%;
  }

  @media (max-width: 1600px) {
    .hero-3 .hero-image {
      margin-bottom: -100px;
      width: 500px;
      height: 450px;
      margin-left: -158px;
    }
  }

  @media (max-width: 991px) {
    .hero-3 .hero-image {
      width: initial;
      max-width: 580px;
      margin-left: 0;
      height: initial;
    }
  }

  .hero-3 .mask-shape {
    position: absolute;
    bottom: -40%;
    right: -5%;
  }

  @media (max-width: 1399px) {
    .hero-3 .mask-shape {
      display: none;
    }
  }

  .counter-wrapper .counter-main-items {
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* margin-top: -50px; */
  }

  @media (max-width: 1399px) {
    .counter-wrapper .counter-main-items {
      margin-top: -25px;
    }
  }

  @media (max-width: 1199px) {
    .counter-wrapper .counter-main-items {
      margin-top: -15px;
    }
  }

  @media (max-width: 991px) {
    .counter-wrapper .counter-main-items {
      margin-top: -10px;
      padding: 50px;
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .counter-wrapper .counter-main-items {
      margin-top: -5px;
      padding: 40px;
      flex-wrap: wrap;
      gap: 30px;
    }
  }

  .counter-wrapper .counter-main-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to left, var(--black) 0%, var(--black) 100%);
    opacity: 0.9;
  }

  .counter-wrapper .counter-main-items .counter-items {
    position: relative;
    z-index: 9;
  }

  .counter-wrapper .counter-main-items .counter-items h2 {
    /* color: #000000; */
    margin-bottom: 10px;
    font-size: 40px;
  }

  .counter-wrapper .counter-main-items .counter-items h2 span {
    margin-right: 15px;
    color: var(--white);
  }

  .counter-wrapper .counter-main-items .counter-items h2 .text {
    color: var(--white);
    margin-left: -15px;
  }

  @media (max-width: 575px) {
    .counter-wrapper .counter-main-items .counter-items h2 {
      font-size: 36px;
      margin-bottom: 5px;
    }

    .counter-wrapper .counter-main-items .counter-items h2 span {
      margin-right: 10px;
    }
  }

  .counter-wrapper .counter-main-items .counter-items p {
    color: var(--white);
  }

  .counter-wrapper .industril-image {
    max-width: 1170px;
    text-align: center;
    margin: 0 auto;
  }

  .counter-wrapper .industril-image img {
    width: 100%;
    height: 100%;
    position: relative;
    top: 126px;
  }

  .counter-wrapper-2 {
    padding: 50px;
  }

  .counter-wrapper-2 .industril-image {
    max-width: 1170px;
    text-align: center;
    margin: 0 auto;
  }

  .counter-wrapper-2 .industril-image img {
    width: 100%;
    height: 100%;
    /* position: relative;
    top: 100px; */
  }

  .counter-wrapper-2 .counter-area {
    margin-top: -50px;
  }

  @media (max-width: 1399px) {
    .counter-wrapper-2 .counter-area {
      margin-top: -25px;
    }
  }

  @media (max-width: 1199px) {
    .counter-wrapper-2 .counter-area {
      margin-top: -15px;
    }
  }

  @media (max-width: 991px) {
    .counter-wrapper-2 .counter-area {
      margin-top: -10px;
    }
  }

  @media (max-width: 767px) {
    .counter-wrapper-2 .counter-area {
      margin-top: -40px;
    }
  }

  .counter-wrapper-2 .counter-area::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to left, var(--black) 0%, var(--black) 100%);
    border-radius: 5px;
    opacity: 0.9;
  }

  .counter-wrapper-2 .counter-area .counter-main-items {
    padding: 100px;
    margin-top: -150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  @media (max-width: 1399px) {
    .counter-wrapper-2 .counter-area .counter-main-items {
      margin-top: -25px;
    }
  }

  @media (max-width: 1199px) {
    .counter-wrapper-2 .counter-area .counter-main-items {
      margin-top: -15px;
    }
  }

  @media (max-width: 991px) {
    .counter-wrapper-2 .counter-area .counter-main-items {
      margin-top: -10px;
      padding: 50px;
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .counter-wrapper-2 .counter-area .counter-main-items {
      margin-top: -5px;
      padding: 40px;
      flex-wrap: wrap;
      gap: 30px;
    }
  }

  .counter-wrapper-2 .counter-area .counter-main-items .counter-items {
    position: relative;
    z-index: 9;
  }

  .counter-wrapper-2 .counter-area .counter-main-items .counter-items h2 {
    color: #000000;
    margin-bottom: 10px;
  }

  .counter-wrapper-2 .counter-area .counter-main-items .counter-items h2 span {
    margin-right: 15px;
    color: var(--white);
  }

  .counter-wrapper-2 .counter-area .counter-main-items .counter-items h2 .text {
    color: var(--white);
    margin-left: -15px;
  }

  .counter-wrapper-2 .counter-area .counter-main-items .counter-items p {
    color: var(--white);
  }

  .video-section {
    position: relative;
    background-attachment: fixed;
  }

  .video-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0.85;
  }

  .video-wrapper-box {
    padding: 300px 0;
  }

  @media (max-width: 767px) {
    .video-wrapper-box {
      padding: 150px 0;
    }
  }

  @media (max-width: 575px) {
    .video-wrapper-box {
      padding: 120px 0;
    }

    .video-section {
      position: relative;
      background-attachment: fixed;
      display: none !important;
    }
  }

  .video-wrapper-box .video-btn {
    position: relative;
  }

  .video-wrapper-box .video-btn .text-circle {
    animation: cir36 10s linear infinite;
  }

  .video-wrapper-box .video-btn span {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about-wrapper .about-image {
    width: 452px;
    height: 588px;
    position: relative;
    z-index: 99;
  }

  @media (max-width: 767px) {
    .about-wrapper .about-image {
      width: initial;
      height: initial;
    }
  }

  .about-wrapper .about-image .border-shape {
    position: absolute;
    top: 50px;
    right: -50px;
    z-index: -1;
  }

  @media (max-width: 767px) {
    .about-wrapper .about-image .border-shape {
      display: none;
    }
  }

  .about-wrapper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }

  .about-wrapper .about-image .working-area {
    background-color: #000000;
    display: inline-block;
    padding: 25px 16px 25px;
    text-align: center;
    position: absolute;
    top: 86px;
    left: -50px;
  }

  @media (max-width: 767px) {
    .about-wrapper .about-image .working-area {
      left: 0;
    }
  }

  .about-wrapper .about-image .working-area .inner {
    position: relative;
  }

  .about-wrapper .about-image .working-area .inner::before {
    content: "";
    position: absolute;
    bottom: -55px;
    left: -16px;
    width: 50px;
    height: 30px;
    background: #000000;
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 48% 47%, 0 0);
  }

  .about-wrapper .about-image .working-area .inner .icon-box {
    color: var(--white);
  }

  .about-wrapper .about-image .working-area .inner .icon-box i {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .about-wrapper .about-image .working-area .inner .icon-box h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .about-wrapper .about-image .video-image {
    position: absolute;
    z-index: 1;
    right: -28%;
    bottom: 71px;
  }

  @media (max-width: 1399px) {
    .about-wrapper .about-image .video-image {
      right: -15%;
    }
  }

  @media (max-width: 1199px) {
    .about-wrapper .about-image .video-image {
      right: -28%;
    }
  }

  @media (max-width: 767px) {
    .about-wrapper .about-image .video-image {
      right: 0;
      bottom: 0;
    }
  }

  .about-wrapper .about-image .video-image img {
    width: 100%;
    height: 100%;
  }

  .about-wrapper .about-image .video-image .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .about-wrapper .about-image .video-image .video-box .video-btn {
    background-image: #000000;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 75px;
    border-radius: 50%;
    text-align: center;
  }

  .about-wrapper .about-content ul {
    margin-top: 30px;
  }

  @media (max-width: 575px) {
    .about-wrapper .about-content ul {
      margin-top: 20px;
    }
  }

  .about-wrapper .about-content ul li {
    color: #888888;
  }

  .about-wrapper .about-content ul li:not(:last-child) {
    margin-bottom: 15px;
  }

  .about-wrapper .about-content ul li i {
    color: #000000;
    margin-right: 5px;
  }

  .about-wrapper .about-content .about-info-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }

  @media (max-width: 1399px) {
    .about-wrapper .about-content .about-info-items {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 767px) {
    .about-wrapper .about-content .about-info-items {
      margin-top: 30px;
    }
  }

  .about-wrapper .about-content .about-info-items .call-area {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about-wrapper .about-content .about-info-items .call-area span {
    color: var(--white);
  }

  .about-wrapper .about-content .about-info-items .call-area .icon {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .about-wrapper .about-content .about-info-items .call-area .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #000000;
    text-align: center;
    border-radius: 50%;
  }

  .about-wrapper .about-content .about-info-items .call-area .icon h6 {
    font-size: 18px;
  }

  .about-wrapper .about-content .about-info-items .call-area .icon h6 a {
    color: #000000;
  }

  .about-wrapper-2 .about-image {
    position: relative;
    overflow: hidden;
  }

  .about-wrapper-2 .about-image img {
    width: 452px;
    height: 588px;
    position: relative;
    border-radius: 5px;
  }

  .about-wrapper-2 .about-image::before {
    width: 100px;
    height: 95px;
    content: "";
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    background-color: #000000;
  }

  @media (max-width: 575px) {
    .about-wrapper-2 .about-image::before {
      width: 70px;
      height: 65px;
    }
  }

  .about-wrapper-2 .about-image .title-text {
    position: absolute;
    bottom: 15%;
    left: -18%;
    padding: 30px;
    background-color: #000000;
    transform: rotate(-90deg);
  }

  @media (max-width: 1399px) {
    .about-wrapper-2 .about-image .title-text {
      bottom: 18%;
      left: -21%;
    }
  }

  @media (max-width: 1199px) {
    .about-wrapper-2 .about-image .title-text {
      bottom: 22%;
      left: -25%;
    }
  }

  @media (max-width: 991px) {
    .about-wrapper-2 .about-image .title-text {
      bottom: 14%;
      left: -18%;
    }
  }

  @media (max-width: 767px) {
    .about-wrapper-2 .about-image .title-text {
      transform: initial;
      bottom: 0;
      left: 0;
      padding: 20px;
      font-size: 20px;
    }
  }

  .about-wrapper-2 .about-image.style-2 {
    overflow: initial;
    margin-left: 100px;
  }

  @media (max-width: 1399px) {
    .about-wrapper-2 .about-image.style-2 {
      margin-left: 0;
    }
  }

  .about-wrapper-2 .about-image.style-2::before {
    top: -10px;
    right: 80px;
  }

  .about-wrapper-2 .about-image.style-2 .title-text {
    bottom: 40px;
    background-color: initial;
    background: linear-gradient(0deg, #ff6a00 37.7%, rgba(238, 51, 43, 0) 100%);
    transform: rotate(0);
  }

  @media (max-width: 1399px) {
    .about-wrapper-2 .about-image.style-2 .title-text {
      bottom: 0;
      left: 0;
    }
  }

  .about-wrapper-2 .about-content {
    margin-left: 30px;
    position: relative;
  }

  @media (max-width: 991px) {
    .about-wrapper-2 .about-content {
      margin-left: 0;
    }
  }

  .about-wrapper-2 .about-content .video-box {
    margin-bottom: 40px;
  }

  @media (max-width: 991px) {
    .about-wrapper-2 .about-content .video-box {
      margin-bottom: 30px;
    }
  }

  .about-wrapper-2 .about-content .video-box .circle-shape {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .about-wrapper-2 .about-content .video-box .circle-shape .text-circle {
    animation: cir36 10s linear infinite;
  }

  .about-wrapper-2 .about-content .video-box .circle-shape .video-btn {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    height: 66px;
    transform: translate(-50%, -50%);
    width: 66px;
    text-align: center;
    line-height: 66px;
    border-radius: 50%;
  }

  .about-wrapper-2 .about-content ul {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  @media (max-width: 1199px) {
    .about-wrapper-2 .about-content ul {
      gap: 30px;
    }
  }

  .about-wrapper-2 .about-content ul li {
    color: var(--white);
    padding-left: 20px;
    position: relative;
  }

  .about-wrapper-2 .about-content ul li::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    content: "";
    border-radius: 6px;
    background-color: var(--white);
  }

  .about-wrapper-2 .about-content .about-info-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }

  @media (max-width: 1399px) {
    .about-wrapper-2 .about-content .about-info-items {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 767px) {
    .about-wrapper-2 .about-content .about-info-items {
      margin-top: 30px;
    }
  }

  .about-wrapper-2 .about-content .about-info-items .call-area {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .about-wrapper-2 .about-content .about-info-items .call-area span {
    color: var(--white);
  }

  .about-wrapper-2 .about-content .about-info-items .call-area .icon {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .about-wrapper-2 .about-content .about-info-items .call-area .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--bg3);
    color: var(--white);
    text-align: center;
    border-radius: 50%;
  }

  .about-wrapper-2 .about-content .about-info-items .call-area .icon h6 {
    font-size: 18px;
  }

  .about-wrapper-2 .about-content .about-info-items .call-area .icon h6 a {
    color: #000000;
  }

  .about-wrapper-2.style-2 .about-content {
    margin-left: 0;
    margin-right: 30px;
  }

  .about-wrapper-2.style-2 .about-content ul {
    display: block;
    margin-top: 30px;
  }

  .about-wrapper-2.style-2 .about-content ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .about-wrapper-2.style-2 .about-image::before {
    display: none;
  }

  .about-section {
    position: relative;
  }

  .about-section .arrow-shape {
    position: absolute;
    right: 0;
    top: -50px;
  }

  .about-wrapper-3 .about-image {
    max-width: 660px;
    padding-left: 30px;
    position: relative;
  }

  .about-wrapper-3 .about-image img {
    width: 100%;
    height: 100%;
  }

  .about-wrapper-3 .about-image::before {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0px;
    width: 95%;
    height: 100%;
    content: "";
    border: 1px solid #000000;
    z-index: -1;
  }

  .about-wrapper-3 .about-content {
    margin-left: 20px;
  }

  @media (max-width: 991px) {
    .about-wrapper-3 .about-content {
      margin-left: 0;
      margin-top: 20px;
    }
  }

  .about-wrapper-3 .about-content .about-list {
    margin-top: 30px;
  }

  .about-wrapper-3 .about-content .about-list li {
    color: var(--white);
  }

  .about-wrapper-3 .about-content .about-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .about-wrapper-3 .about-content .about-list li i {
    color: #000000;
    margin-right: 15px;
    font-size: 18px;
  }

  .about-wrapper-3 .about-content .about-info {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  @media (max-width: 1199px) {
    .about-wrapper-3 .about-content .about-info {
      flex-wrap: wrap;
      gap: 30px;
    }
  }

  @media (max-width: 767px) {
    .about-wrapper-3 .about-content .about-info {
      margin-top: 30px;
    }
  }

  @media (max-width: 575px) {
    .about-wrapper-3 .about-content .about-info {
      margin-top: 20px;
    }
  }

  .about-wrapper-3 .about-content .about-info .info-left .content {
    margin-bottom: 35px;
  }

  @media (max-width: 575px) {
    .about-wrapper-3 .about-content .about-info .info-left .content {
      margin-bottom: 20px;
    }
  }

  .about-wrapper-3 .about-content .about-info .info-left .content h2 {
    font-size: 96px;
  }

  @media (max-width: 575px) {
    .about-wrapper-3 .about-content .about-info .info-left .content h2 {
      font-size: 50px;
    }
  }

  .about-wrapper-3 .about-content .about-info .info-right {
    text-align: center;
    background-color: var(--bg2);
    padding: 80px 30px 40px 30px;
    border-top: 5px solid #000000;
  }

  .about-wrapper-3 .about-content .about-info .info-right .icon {
    font-size: 46px;
    color: var(--text);
    margin-bottom: 70px;
  }

  .about-wrapper-3 .about-content .about-info .info-right .icon::before {
    background: #000000;
    opacity: 0.1;
    width: 105px;
    height: 105px;
  }

  .about-wrapper-3 .about-content .about-info .info-right .icon::after {
    background: #000000;
    opacity: 0.1;
    width: 85px;
    height: 85px;
  }

  .service-box-items {
    margin-top: 30px;
    padding: 45px 40px;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    position: relative;
    background-color: var(--bg2);
  }

  @media (max-width: 767px) {
    .service-box-items {
      height: initial;
      margin-top: 0;
    }
  }

  @media (max-width: 575px) {
    .service-box-items {
      padding: 40px 30px;
    }
  }

  .service-box-items::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-color: #000000;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  .service-box-items::after {
    position: absolute;
    bottom: 6px;
    right: 6px;
    content: "";
    background-image: url(../img/arrow-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 21px;
    height: 18px;
    transition: all 0.4s ease-in-out;
  }

  .service-box-items .icon {
    transition: all 0.4s ease-in-out;
  }

  .service-box-items .content {
    margin-top: 30px;
    position: relative;
    z-index: 9;
  }

  @media (max-width: 575px) {
    .service-box-items .content {
      margin-top: 20px;
    }
  }

  .service-box-items .content h3 {
    margin-bottom: 15px;
  }

  @media (max-width: 575px) {
    .service-box-items .content h3 {
      margin-bottom: 10px;
    }
  }

  .service-box-items .content h3 a:hover {
    color: #000000;
  }

  .service-box-items:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
  }

  .service-box-items:hover::after {
    filter: grayscale(100%) brightness(300%);
  }

  .service-box-items:hover .icon {
    filter: grayscale(100%) brightness(300%);
  }

  .service-box-items:hover .content h3 a {
    color: var(--white);
  }

  .service-box-items:hover .content p {
    color: var(--white);
  }

  .service-box-items.active::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
  }

  .service-box-items.active::after {
    filter: grayscale(100%) brightness(300%);
  }

  .service-box-items.active .icon {
    filter: grayscale(100%) brightness(300%);
  }

  .service-box-items.active .content h3 a {
    color: var(--white);
  }

  .service-box-items.active .content p {
    color: var(--white);
  }

  .service-wrapper {
    margin-right: -45%;
  }

  @media (max-width: 1899px) {
    .service-wrapper {
      margin-right: -30%;
    }
  }

  @media (max-width: 1600px) {
    .service-wrapper {
      margin-right: -25%;
    }
  }

  @media (max-width: 575px) {
    .service-wrapper {
      margin-right: 0;
    }
  }

  .service-wrapper .single-service-items {
    position: relative;
    margin-top: 30px;
    overflow: hidden;
  }

  @media (max-width: 575px) {
    .service-wrapper .single-service-items br {
      display: block;
    }
  }

  .service-wrapper .single-service-items .service-image {
    max-width: 450px;
    height: 531px;
    position: relative;
  }

  @media (max-width: 767px) {
    .service-wrapper .single-service-items .service-image {
      height: 500px;
    }
  }

  @media (max-width: 575px) {
    .service-wrapper .single-service-items .service-image {
      height: 450px;
      max-width: 540px;
    }
  }

  .service-wrapper .single-service-items .service-image img {
    width: 100%;
    height: 100%;
  }

  .service-wrapper .single-service-items .service-image::before {
    background-image: var(--color-gradient-4);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    content: "";
  }

  .service-wrapper .single-service-items .service-image .post-box {
    position: absolute;
    top: -40px;
    right: 40px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: var(--white);
    text-align: center;
    font-size: 28px;
    color: #000000;
    display: inline-block;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  .service-wrapper .single-service-items .service-image .service-content {
    position: absolute;
    bottom: -50px;
    left: -40px;
    transform: rotate(-90deg);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  .service-wrapper .single-service-items .service-image .service-content h3 {
    font-size: 30px;
  }

  .service-wrapper .single-service-items:hover .service-image::before {
    opacity: 1;
    visibility: visible;
  }

  .service-wrapper .single-service-items:hover .service-image .service-content {
    bottom: 115px;
    opacity: 1;
    visibility: visible;
  }

  .service-wrapper .single-service-items:hover .service-image .post-box {
    top: 40px;
    opacity: 1;
    visibility: visible;
  }


  .service-section-2 {
    position: relative;
  }

  .service-section-2 .swiper-dot {
    position: relative;
  }

  .service-section-2 .swiper-dot::before {
    position: absolute;
    bottom: 10px;
    left: 41%;
    transform: translate(-50%, -50%);
    width: 105px;
    height: 1px;
    /* background-color: var(--text); */
    content: "";
  }

  @media (max-width: 1399px) {
    .service-section-2 .swiper-dot::before {
      display: none;
    }
  }

  .service-section-2 .swiper-dot::after {
    position: absolute;
    bottom: 10px;
    right: 37%;
    width: 105px;
    height: 1px;
    /* background-color: var(--text); */
    content: "";
  }

  @media (max-width: 1399px) {
    .service-section-2 .swiper-dot::after {
      display: none;
    }
  }

  .service-items-2 {
    margin-top: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
  }

  .service-items-2 .service-image {
    padding: 15px 15px 0 15px;
    object-fit: cover;
    background-size: cover;
  }

  .service-items-2 .service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-size: cover;
    border-radius: 5px;
  }

  .service-items-2 .service-content {
    padding: 30px 25px;
  }

  .service-items-2 .service-content h3 {
    margin-bottom: 15px;
  }

  .service-items-2 .service-content h3 a {
    transition: all 0.4s ease-in-out;
    color: var(--black);
  }

  .service-items-2 .service-content h3 a:hover {
    background: linear-gradient(90deg, var(--black) 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .services-details-wrapper .details-image {
    position: relative;
  }

  .services-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }

  .services-details-wrapper .details-image .video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .services-details-wrapper .details-image .video-box .video-btn {
    background-color: #000000 !important;
    color: var(--white);
    display: inline-block;
    font-size: 18px;
    height: 70px;
    width: 70px;
    line-height: 75px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
  }

  .services-details-wrapper .details-content {
    margin-top: 40px;
  }

  .services-details-wrapper .details-content h2 {
    font-size: 32px;
  }

  @media (max-width: 575px) {
    .services-details-wrapper .details-content h2 {
      font-size: 28px;
    }
  }

  .services-details-wrapper .details-content ul li i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    background: #000000;
    color: var(--white);
    font-size: 10px;
    margin-right: 10px;
  }

  .services-details-wrapper .details-content .image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }

  .services-details-wrapper .details-content .faq-content .faq-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px !important;
  }

  .project-wrapper {
    padding: 150px 0;
    position: relative;
  }

  @media (max-width: 1199px) {
    .project-wrapper {
      padding: 0;
    }
  }

  .project-wrapper .section-title {
    transform: rotate(-90deg);
    margin: 0 -250px;
    max-width: 470px;
    margin-bottom: 5px;
  }

  @media (max-width: 1199px) {
    .project-wrapper .section-title {
      transform: initial;
      margin: 0;
    }
  }

  .project-wrapper .project-header {
    margin-bottom: 50px;
  }

  @media (max-width: 767px) {
    .project-wrapper .project-header .text-end {
      text-align: left !important;
    }

    .project-wrapper .project-header .theme-btn-2 {
      margin-top: 30px;
      margin-left: 10px;
    }
  }

  .project-wrapper .project-slider {
    margin-right: -70%;
  }

  @media (max-width: 1199px) {
    .project-wrapper .project-slider {
      margin-right: 0;
    }
  }

  .project-wrapper .project-image {
    height: 530px;
    max-width: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
  }

  @media (max-width: 1199px) {
    .project-wrapper .project-image {
      text-align: center;
      margin: 0 auto;
    }
  }

  @media (max-width: 991px) {
    .project-wrapper .project-image {
      height: 450px;
    }
  }

  /* @media (max-width: 575px) {
    .project-wrapper .project-image {
      height: 400px;
    }
  } */
  .project-wrapper .project-image::before {
    background-image: var(--color-gradient-4);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    content: "";
  }

  .project-wrapper .project-image .post-box {
    width: 70px;
    height: 70px;
    line-height: 75px;
    border-radius: 50%;
    background-color: var(--white);
    color: #000000;
    text-align: center;
    font-size: 18px;
    position: absolute;
    top: -50px;
    left: 30px;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }

  .project-wrapper .project-image .post-box i {
    font-size: 24px;
  }

  .project-wrapper .project-image .post-box:hover {
    background-color: #ff6a00;
    color: var(--white);
  }

  .project-wrapper .project-image .project-content {
    position: absolute;
    bottom: -100px;
    left: 40px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
  }

  .project-wrapper .project-image.style-2 .post-box {
    top: -60px;
    transition: all 0.4s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }

  .project-wrapper .project-image.style-2 .post-box span {
    margin-left: 18px;
  }

  .project-wrapper .project-image.style-2:hover .post-box {
    top: 30px;
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .project-image.style-2.active::before {
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .project-image.style-2.active .post-box {
    top: 30px;
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .project-image.style-2.active .project-content {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .project-image:hover::before {
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .project-image:hover .post-box {
    visibility: visible;
    opacity: 1;
    top: 30px;
  }

  .project-wrapper .project-image:hover .project-content {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .swiper-slide.swiper-slide-active .project-image::before {
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .swiper-slide.swiper-slide-active .project-image .post-box {
    visibility: visible;
    opacity: 1;
    top: 30px;
  }

  .project-wrapper .swiper-slide.swiper-slide-active .project-image .project-content {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
  }

  .project-wrapper .swiper-dot-2 {
    position: absolute;
    left: 20%;
    bottom: 48.9%;
    z-index: 9;
    transform: rotate(-90deg);
  }

  @media (max-width: 1199px) {
    .project-wrapper .swiper-dot-2 {
      display: none;
    }
  }

  @media (max-width: 1199px) {
    .line-area {
      display: none;
    }
  }

  .line-area span {
    position: absolute;
    content: "";
    width: 1px;
    height: 72.5%;
    top: 0;
    left: 26%;
    background-color: var(--border2);
    z-index: -1;
  }

  .line-area span:nth-child(2) {
    left: 50%;
  }

  .line-area span:nth-child(3) {
    left: 70%;
  }

  .project-section {
    position: relative;
  }

  .project-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--bg2);
    z-index: -1;
    height: 72.5%;
  }

  .project-wrapper-2 {
    margin-top: 30px;
  }

  .project-wrapper-2 .project-content-area {
    position: relative;
  }

  .project-wrapper-2 .project-content-area::before {
    position: absolute;
    top: -330%;
    left: -20%;
    content: "";
    background-color: var(--border);
    height: 300px;
    width: 1px;
  }

  @media (max-width: 1399px) {
    .project-wrapper-2 .project-content-area::before {
      display: none;
    }
  }

  .project-wrapper-2 .project-content-area::after {
    position: absolute;
    top: -330%;
    right: -3%;
    content: "";
    background-color: var(--border);
    height: 300px;
    width: 1px;
  }

  @media (max-width: 1399px) {
    .project-wrapper-2 .project-content-area::after {
      display: none;
    }
  }

  /* .project-wrapper-2 .project-content-area p {
    margin-bottom: 70px;
  } */
  @media (max-width: 1199px) {
    .project-wrapper-2 .project-content-area p {
      margin-bottom: 50px;
    }
  }

  @media (max-width: 991px) {
    .project-wrapper-2 .project-content-area p {
      margin-bottom: 130px;
    }
  }

  @media (max-width: 767px) {
    .project-wrapper-2 .project-content-area p {
      margin-bottom: 40px;
    }
  }

  .project-wrapper-2 .project-content-area .project-content h4 {
    margin-bottom: 10px;
  }

  .project-wrapper-2 .project-content-area .project-content p {
    color: var(--white);
  }

  .project-wrapper-2 .project-content-area .pegi-wrp {
    position: relative;
  }

  .project-wrapper-2 .project-content-area .pegi-wrp::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 155px;
    height: 1px;
    background-color: var(--border);
    transform: rotate(-50deg);
  }

  .project-wrapper-2 .project-content-area .pegi-wrp .pegi-number {
    font-size: 24px;
  }

  .project-wrapper-2 .project-content-area .pegi-wrp .pegi-number span:not(:last-child) {
    color: var(--white);
  }

  @media (max-width: 1199px) {
    .project-wrapper-2 .project-content-area .arry-button {
      display: none;
    }
  }

  .project-wrapper-2 .project-content-area .arry-button .arry-prev {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 1px solid var(--border);
    background-color: transparent;
    margin-right: 25px;
    color: var(--border);
  }

  .project-wrapper-2 .project-content-area .arry-button .arry-next {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  .project-wrapper-2 .project-image {
    margin-left: 50px;
  }

  @media (max-width: 991px) {
    .project-wrapper-2 .project-image {
      margin-left: 0;
      margin-top: 50px;
    }
  }

  .project-wrapper-2 .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }

  .project-details-wrapper .details-image img {
    width: 100%;
    height: 100%;
  }

  .project-details-wrapper .project-details-content {
    margin-top: 30px;
  }

  .project-details-wrapper .project-details-content h2 {
    font-size: 32px;
  }

  @media (max-width: 575px) {
    .project-details-wrapper .project-details-content h2 {
      font-size: 28px;
    }
  }

  .project-details-wrapper .project-details-content .project-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .project-details-wrapper .project-details-content .project-date li {
    font-weight: 500;
    color: var(--text);
  }

  .project-details-wrapper .project-details-content .project-date li span {
    font-weight: 400;
    color: #000000;
  }

  .project-details-wrapper .project-details-content .project-challenge-list {
    max-width: 780px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .project-details-wrapper .project-details-content .project-challenge li {
    font-weight: 500;
    color: var(--heading-color);
  }

  .project-details-wrapper .project-details-content .project-challenge li i {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    background: #000000;
    color: var(--white);
    font-size: 10px;
    margin-right: 10px;
  }

  .project-details-wrapper .project-details-content .image img {
    width: 100%;
    height: 100%;
  }

  ::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #000000;
    border-radius: 5px;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 10px;
  }

  .fix {
    overflow: hidden;
  }

  .ralt {
    position: relative;
  }

  .ml-100 {
    margin-left: 100px;
  }

  .ripple {
    position: relative;
  }

  .ripple::before,
  .ripple::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    -webkit-animation: rippleOne 3s infinite;
    animation: rippleOne 3s infinite;
  }

  .ripple::before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .ripple::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .swiper-dot .swiper-pagination-bullet,
  .swiper-dot-2 .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    transition: 0.6s;
    background-color: var(--text);
    opacity: 1;
    border-radius: 10px;
    position: relative;
  }

  .swiper-dot .swiper-pagination-bullet:not(:last-child),
  .swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
    margin-right: 20px;
  }

  .swiper-dot .swiper-pagination-bullet::before,
  .swiper-dot-2 .swiper-pagination-bullet::before {
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: -7px;
    left: -7px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--text);
    content: "";
  }

  .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active,
  .swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #000000;
    transition: 0.6s;
    position: relative;
  }

  .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
  .swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    border: 1px solid #000000;
  }

  .arry-button .arry-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #000000;
    margin-right: 20px;
    color: var(--white);
  }

  @media (max-width: 767px) {
    .arry-button .arry-next {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 575px) {
    .arry-button .arry-next {
      width: 45px;
      height: 45px;
      line-height: 45px;
    }
  }

  .arry-button .arry-prev {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--border);
    color: var(--white);
  }

  @media (max-width: 575px) {
    .arry-button .arry-prev {
      width: 45px;
      height: 45px;
      line-height: 45px;
    }
  }

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

  /*@media (max-width: 575px) {*/
  /*  br {*/
  /*    display: none;*/
  /*  }*/
  /*}*/

  /* background */
  .bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    background-position: center;
  }

  .nice-select {
    background-color: transparent;
    width: unset;
    outline: none;
    border-bottom: 1px solid var(--border) !important;
    padding-bottom: 20px !important;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .nice-select:hover {
    border-bottom: 2px solid transparent;
    border-image: #000000;
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
  }

  .nice-select span {
    font-size: 16px;
    color: var(--text);
    text-transform: capitalize;
  }

  .nice-select .current {
    margin-right: 12px;
  }

  .nice-select:after {
    right: 23px;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    width: 10px;
    height: 10px;
    top: 15px;
    border-bottom: 2px solid transparent;
    border-image: #000000;
    border-right: 2px solid transparent;
    border-image-slice: 2;
  }

  .nice-select.open .list {
    background: var(--bg);
    margin-top: 16px;
    width: 100%;
    text-transform: capitalize;
    color: var(--text);
  }

  .nice-select .option.selected.focus {
    background: var(--bg);
    outline: none;
    color: var(--text);
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    border: none;
  }

  .nice-select .option {
    border: none;
  }

  .nice-select .option:hover {
    background: transparent;
  }

  .scroll-up {
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--border);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    right: 25px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    transition: all 0.4s ease-in-out;
  }

  .scroll-up::after {
    position: absolute;
    font-family: "Font Awesome 6 free";
    content: "\f062";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color: #888888;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 0.4s ease-in-out;
  }

  .scroll-up svg path {
    fill: none;
  }

  .scroll-up svg.scroll-circle path {
    stroke: var(--text);
    stroke-width: 4px;
    box-sizing: border-box;
    transition: all 0.4s ease-in-out;
  }

  .scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .border-none {
    border-right: none !important;
    border-bottom: none !important;
  }

  .border-left-none {
    border-left: none !important;
  }

  .border-top-none {
    border-top: none !important;
  }

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

  @media (max-width: 767px) {
    .mt-30 {
      margin-top: 0;
    }
  }

  .bor-top {
    border-top: 1px solid var(--border);
  }

  .bor-left {
    border-left: 1px solid var(--border);
  }

  .bor-bottom {
    border-bottom: 1px solid var(--border);
  }

  .bor-right {
    border-right: 1px solid var(--border);
  }

  .team-wrapper .team-left-content {
    position: relative;
  }

  .team-wrapper .team-left-content .team-button {
    margin-top: 50px;
  }

  @media (max-width: 575px) {
    .team-wrapper .team-left-content .team-button {
      margin-top: 30px;
    }
  }

  .team-wrapper .team-left-content .arrow-shape {
    position: absolute;
    left: -70px;
    bottom: -74%;
    animation: rounded 5s linear infinite;
  }

  @media (max-width: 1199px) {
    .team-wrapper .team-left-content .arrow-shape {
      display: none;
    }
  }

  .team-wrapper .team-items .team-content:not(:last-child) {
    margin-bottom: 40px;
  }

  @media (max-width: 575px) {
    .team-wrapper .team-items .team-content:not(:last-child) {
      margin-bottom: 15px;
    }
  }

  .team-wrapper .team-items .team-content span {
    color: var(--text);
    display: inline-block;
    display: block;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
  }

  @media (max-width: 1399px) {
    .team-wrapper .team-items .team-content span {
      margin-right: 25px;
    }
  }

  @media (max-width: 1199px) {
    .team-wrapper .team-items .team-content span {
      margin-right: 20px;
    }
  }

  @media (max-width: 991px) {
    .team-wrapper .team-items .team-content span {
      margin-right: 0;
      text-align: left;
    }
  }

  .team-wrapper .team-items .team-content h2 {
    font-size: 54px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
  }

  @media (max-width: 1399px) {
    .team-wrapper .team-items .team-content h2 {
      font-size: 48px;
    }
  }

  @media (max-width: 1199px) {
    .team-wrapper .team-items .team-content h2 {
      font-size: 40px;
    }
  }

  @media (max-width: 575px) {
    .team-wrapper .team-items .team-content h2 {
      font-size: 36px;
    }
  }

  .team-wrapper .team-items .team-content:hover h2 {
    color: var(--white);
    -webkit-text-stroke-width: initial;
    -webkit-text-stroke-color: initial;
    -webkit-text-fill-color: initial;
  }

  .team-wrapper .team-items .team-content:hover span {
    color: #000000;
  }

  .team-wrapper .team-items .team-image {
    height: 570px;
  }

  .team-wrapper .team-items .team-image img {
    width: 100%;
    object-fit: cover;
  }

  @media (max-width: 575px) {
    .team-wrapper .team-items .team-image {
      height: 430px;
    }
  }

  .team-wrapper .team-items .image {
    margin-right: 20px;
  }

  @media (max-width: 991px) {
    .team-wrapper .team-items .image {
      margin-right: 0;
    }
  }

  .team-wrapper .team-items .image img {
    width: 100%;
    height: 100%;
  }

  .single-team-items .team-image {
    position: relative;
    overflow: hidden;
  }

  .single-team-items .team-image img {
    width: 100%;
    height: 100%;
  }

  .single-team-items .team-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--black);
    opacity: 0;
  }

  .single-team-items .team-image .team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 60px 30px 30px;
    background-color: var(--bg2);
    z-index: 9;
  }

  .single-team-items .team-image .team-content::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-size: cover;
    background-repeat: none;
    background-image: url(../img/team/mask-shape.png);
    z-index: -1;
  }

  .single-team-items .team-image .team-content p {
    margin-bottom: -95px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  .single-team-items .team-image .team-content .content {
    margin-bottom: 0;
  }

  .single-team-items .team-image .team-content .content h4 {
    margin-bottom: 5px;
  }

  .single-team-items .team-image .team-content .icon {
    margin-bottom: 0;
    margin-top: 10px;
    margin-bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  .single-team-items .team-image .team-content .icon i {
    color: #000000;
  }

  .single-team-items .team-image .team-content h4 a:hover {
    color: #000000;
  }

  .single-team-items .team-image .team-content span {
    color: #000000;
  }

  .single-team-items .team-image .social-icon {
    position: absolute;
    bottom: -60px;
    right: 47px;
    display: grid;
    padding: 40px 20px;
    background-image: #000000;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  .single-team-items:hover .team-image::before {
    opacity: 0.4;
  }

  .single-team-items:hover .team-image .social-icon {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }

  .single-team-items:hover .team-image .team-content .icon {
    margin-bottom: 0;
    visibility: visible;
    opacity: 1;
  }

  .single-team-items:hover .team-image .team-content p {
    opacity: 1;
    visibility: visible;
    margin-bottom: 10px;
  }

  .single-team-items:hover .team-image .team-content .content {
    margin-bottom: -55px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  .single-team-items.active .team-image::before {
    opacity: 0.4;
  }

  .single-team-items.active .team-image .social-icon {
    bottom: 0;
    opacity: 1;
    visibility: visible;
  }

  .single-team-items.active .team-image .team-content .icon {
    margin-bottom: 0;
    visibility: visible;
    opacity: 1;
  }

  .single-team-items.active .team-image .team-content p {
    opacity: 1;
    visibility: visible;
    margin-bottom: 10px;
  }

  .single-team-items.active .team-image .team-content .content {
    margin-bottom: -55px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }

  .team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
  }

  .team-details-wrapper .team-details-content {
    margin-left: 40px;
  }

  @media (max-width: 991px) {
    .team-details-wrapper .team-details-content {
      margin-left: 0;
    }
  }

  .team-details-wrapper .team-details-content .details-info {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .team-details-wrapper .team-details-content .details-info h4 {
    margin-bottom: 5px;
  }

  .team-details-wrapper .team-details-content .details-info span {
    color: #000000;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items {
    width: 100%;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 20px;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .point {
    font-size: 14px;
    color: var(--text);
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .progress {
    background: var(--bg2);
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: #000000;
    height: 6px;
    width: 0;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
  }

  .team-details-wrapper .team-details-content .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
  }

  @keyframes load {
    0% {
      width: 0;
    }

    100% {
      width: 90%;
    }
  }

  @keyframes load2 {
    0% {
      width: 0;
    }

    100% {
      width: 50%;
    }
  }

  @keyframes load3 {
    0% {
      width: 0;
    }

    100% {
      width: 80%;
    }
  }

  .team-details-wrapper .team-single-history .title {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
  }

  .in-team-wrapper {
    position: relative;
    margin-right: -20px;
  }

  @media (max-width: 767px) {
    .in-team-wrapper {
      margin-right: 0;
    }
  }

  .team-item-2 {
    margin-bottom: 45px;
    display: flex;
    justify-content: end;
  }

  @media (max-width: 767px) {
    .team-item-2 {
      display: block;
    }
  }

  .team-item-2.active .team-member-name {
    color: #ffffff;
  }

  .team-item-2.active .team-thumb {
    opacity: 1;
    visibility: visible;
  }

  .team-member-content {
    text-align: end;
    width: 52%;
  }

  @media (max-width: 767px) {
    .team-member-content {
      width: 100%;
      margin-bottom: 20px;
      text-align: center;
    }
  }

  .team-member-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--text);
    margin-bottom: 15px;
  }

  .team-member-name {
    padding: 0 0;
    text-decoration: none;
    color: transparent;
    -webkit-text-stroke: 1.2px #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 56px;
    background-color: transparent;
    line-height: 1.3;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }

  @media (max-width: 1399px) {
    .team-member-name {
      font-size: 36px;
    }
  }

  @media (max-width: 991px) {
    .team-member-name {
      font-size: 40px;
    }
  }

  .team-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }

  @media (max-width: 1199px) {
    .team-thumb {
      width: 280px;
    }
  }

  @media (max-width: 767px) {
    .team-thumb {
      position: static;
      opacity: 1;
      visibility: visible;
      width: auto;
    }
  }

  .team-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
    border-radius: 5px;
  }

  .faq-section {
    position: relative;
  }

  .faq-image img {
    width: 100%;
    height: 100%;
  }

  .faq-content .accordion-collapse {
    border-top: 2px solid transparent;
    border-image: #000000;
    border-top: 2px solid transparent;
    border-image-slice: 2;
  }

  .faq-content .accordion-item {
    border: 0;
    background-color: var(--white);
  }

  .faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 500;
    color: #ff6a00;
    letter-spacing: -0.2px;
    border: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    background-color: #ffffff;
    padding: 10px 20px;
    text-transform: capitalize;
    font-size: 14px;
  }

  .faq-content .accordion-item .accordion-header .accordion-button::after {
    content: "+";
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out !important;
    color: #ff6a00;
  }

  .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "-";
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: #ff6a00;
  }

  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 25px;
    color: var(--text);
    background-color: var(--white);
  }

  .page-nav-wrap ul li {
    display: inline-block;
  }

  .page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 50%;
    background: transparent;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border: 1px solid var(--border);
  }

  .page-nav-wrap ul li .page-numbers.current {
    background-color: #000000;
    color: var(--white);
  }

  @media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
      margin-top: 10px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 14px;
    }
  }

  .page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
  }

  .page-nav-wrap ul li .page-numbers:hover {
    background-image: #000000;
    color: var(--white);
    border: 1px solid transparent;
  }

  .main-sidebar .single-sidebar-widget {
    padding: 40px 30px;
    background-color: var(--bg2);
    margin-bottom: 30px;
  }

  .main-sidebar .single-sidebar-widget .wid-title {
    margin-bottom: 25px;
  }

  .main-sidebar .single-sidebar-widget .wid-title h5 {
    position: relative;
    padding-bottom: 15px;
  }

  .main-sidebar .single-sidebar-widget .wid-title h5::before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 83px;
    content: "";
    background-color: var(--white);
  }

  .main-sidebar .single-sidebar-widget .search-widget form {
    width: 100%;
    position: relative;
  }

  .main-sidebar .single-sidebar-widget .search-widget form input {
    background-color: var(--bg);
    font-size: 15px;
    padding: 20px;
    width: 100%;
    border: none;
    color: var(--white);
  }

  .main-sidebar .single-sidebar-widget .search-widget form button {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    font-size: 18px;
    height: 100%;
    background-color: #000000;
    color: var(--white);
    text-align: center;
    transition: all 0.3s ease-in-out;
  }

  .main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background-color: var(--header);
  }

  .main-sidebar .single-sidebar-widget .widget-categories ul {
    border-top: 1px solid var(--border);
  }

  .main-sidebar .single-sidebar-widget .widget-categories ul li {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }

  .main-sidebar .single-sidebar-widget .widget-categories ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease-in-out;
  }

  .main-sidebar .single-sidebar-widget .widget-categories ul li a .text i {
    margin-right: 10px;
  }

  .main-sidebar .single-sidebar-widget .widget-categories ul li:hover a {
    color: #ff6a00;
  }

  .main-sidebar .single-sidebar-widget .widget-categories ul li:hover a .text {
    margin-left: 20px;
  }

  .main-sidebar .single-sidebar-widget .popular-posts .single-post-item {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .main-sidebar .single-sidebar-widget .popular-posts .single-post-item .thumb {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 20px;
  }

  .main-sidebar .single-sidebar-widget .popular-posts .single-post-item .post-content .post-date {
    color: #000000;
    margin-bottom: 10px;
  }

  .main-sidebar .single-sidebar-widget .popular-posts .single-post-item .post-content .post-date i {
    margin-right: 10px;
  }

  .main-sidebar .single-sidebar-widget .popular-posts .single-post-item .post-content h6 {
    font-size: 16px;
  }

  .main-sidebar .single-sidebar-widget .popular-posts .single-post-item .post-content h6 a:hover {
    color: #000000;
  }

  .main-sidebar .single-sidebar-widget .tagcloud a {
    display: inline-block;
    padding: 11px 20px;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    background: #000000;
    margin-right: 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
  }

  .main-sidebar .single-sidebar-widget .tagcloud a:last-child {
    margin-right: 0;
  }

  .main-sidebar .single-sidebar-widget .tagcloud a:hover {
    background-color: var(--white);
    color: #000000;
  }

  .main-sidebar .single-sidebar-widget .opening-category {
    border-top: 1px solid var(--border);
  }

  .main-sidebar .single-sidebar-widget .opening-category li {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease-in-out;
    color: var(--white);
  }

  .main-sidebar .single-sidebar-widget .opening-category li i {
    color: var(--white);
  }

  .marquee-wrapper {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background-color: #ff6a00;
    /* transform: rotate(4deg); */
    z-index: 9;
  }

  @media (max-width: 767px) {
    .marquee-wrapper {
      transform: rotate(0deg);
    }
  }

  .text-slider {
    font-size: 18px;
    height: 90px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white) !important;
    padding: 35px 0;
  }

  @media (max-width: 767px) {
    .text-slider {
      /* font-size: 45px; */
      padding: 30px 0;
      height: 90px;
    }

    .section-topbar {
      flex-wrap: wrap;
      justify-content: center !important;
    }

    .row.justify-content-end {
      justify-content: center !important;
      padding-top: 20px !important;
    }

    .section-header h1 {
      font-size: 30px !important;
      padding-bottom: 20px;
      text-align: center;
    }

    .proj-card {
      flex: 0 0 100% !important;
    }
  }

  .text-slider.style-2 {
    color: var(--black);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: transparent;
  }

  .marquee-inner {
    position: absolute;
    display: inline-flex;
    width: 200%;
  }

  .marquee-list {
    float: left;
    width: 50%;
  }

  .marquee-item {
    float: left;
    transition: animation 0.2s ease-out;
  }

  .marquee-inner.to-left {
    animation: marqueeLeft 25s linear infinite;
  }

  @keyframes marqueeLeft {
    0% {
      left: 0;
    }

    100% {
      left: -100%;
    }
  }

  .marquee-inner.to-right {
    animation: marqueeRight 25s linear infinite;
  }

  @keyframes marqueeRight {
    0% {
      right: 0;
    }

    100% {
      right: -100%;
    }
  }

  .testimonial-wrapper {
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .testimonial-wrapper .testimonial-image-items {
    position: relative;
    margin-top: 30px;
  }

  .testimonial-wrapper .testimonial-image-items::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background-color: var(--border);
  }

  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-image-items::before {
      display: none;
    }
  }

  /* .testimonial-wrapper .testimonial-image-items::after {
    position: absolute;
    content: "";
    top: 50%;
    right: -15px;
    width: 41px;
    height: 48px;
    background-color: var(--bg);
    border-bottom: 1px solid var(--border);
  } */
  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-image-items::after {
      display: none;
    }
  }

  .testimonial-wrapper .testimonial-image-items span {
    position: absolute;
    width: 1px;
    height: 64px;
    background-color: var(--border);
    top: 47.3%;
    right: 5px;
    z-index: 1;
    transform: rotate(40deg);
  }

  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-image-items span {
      display: none;
    }
  }

  .testimonial-wrapper .testimonial-image-items .testimonial-image {
    max-width: 330px;
    height: 330px;
    position: relative;
  }

  @media (max-width: 767px) {
    .testimonial-wrapper .testimonial-image-items .testimonial-image {
      text-align: center;
      margin: 0 auto;
    }
  }

  .testimonial-wrapper .testimonial-content {
    margin-top: 30px;
    text-align: center;
  }

  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-content {
      margin-left: 15px;
    }
  }

  @media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content {
      text-align: center;
      margin: 30px auto;
    }
  }

  .testimonial-wrapper .testimonial-content .icon {
    font-size: 52px;
    color: #000000;
    margin-bottom: 30px;
  }

  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-content .icon {
      margin-bottom: 20px;
    }
  }

  @media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content .icon {
      margin-bottom: 10px;
    }
  }

  .testimonial-wrapper .testimonial-content h4 {
    font-weight: normal;
    color: var(--text);
  }

  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-content h4 {
      font-size: 22px;
    }
  }

  @media (max-width: 767px) {
    .testimonial-wrapper .testimonial-content h4 {
      font-size: 20px;
    }
  }

  .testimonial-wrapper .testimonial-content .client-info {
    margin-top: 30px;
  }

  .client-info .client-image img {
    border-radius: 50%;
  }

  @media (max-width: 991px) {
    .testimonial-wrapper .testimonial-content .client-info {
      margin-top: 20px;
    }
  }

  .testimonial-wrapper .testimonial-content .client-info p {
    color: #000000;
    margin-top: 5px;
  }

  .testimonial-wrapper .swiper-dot {
    position: absolute;
    right: -20px;
    top: 30%;
    z-index: 9;
    transform: rotate(-90deg);
  }

  @media (max-width: 1199px) {
    .testimonial-wrapper .swiper-dot {
      display: none;
    }
  }

  .testimonial-wrapper.style-2 {
    display: flex;
    align-items: center;
    gap: 50px;
    border-bottom: none;
    overflow: hidden;
  }

  @media (max-width: 991px) {
    .testimonial-wrapper.style-2 {
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      text-align: center;
    }
  }

  @media (max-width: 1199px) {
    .testimonial-wrapper.style-2 .testimonial-content {
      margin-left: 0;
    }
  }

  @media (max-width: 991px) {
    .testimonial-wrapper.style-2 .testimonial-content {
      margin-top: 0;
    }
  }

  @media (max-width: 1199px) {
    .testimonial-wrapper.style-2 .testimonial-content h4 {
      font-size: 20px;
    }
  }

  .testimonial-wrapper.style-2 .testimonial-content .star {
    margin-bottom: 20px;
  }

  @media (max-width: 1199px) {
    .testimonial-wrapper.style-2 .testimonial-content .star {
      margin-bottom: 10px;
    }
  }

  .testimonial-wrapper.style-2 .testimonial-content .star span {
    color: #000000;
  }

  .testimonial-wrapper.style-2 .testimonial-content .star .text-color {
    color: var(--border) !important;
  }

  .testimonial-area .booking-items {
    padding: 60px;
    background: #000000;
  }

  @media (max-width: 767px) {
    .testimonial-area .booking-items {
      padding: 60px 40px;
    }
  }

  @media (max-width: 575px) {
    .testimonial-area .booking-items {
      padding: 50px 30px;
    }
  }

  .testimonial-area .booking-items .section-title h2 {
    font-size: 32px;
  }

  .testimonial-area .booking-items form label {
    color: var(--white);
    margin-bottom: 10px;
    text-transform: capitalize;
  }

  .testimonial-area .booking-items form input {
    padding: 15px 20px;
    background-color: var(--white);
    border: none;
    outline: none;
    color: var(--text);
    width: 100%;
  }

  @media (max-width: 575px) {
    .testimonial-area .booking-items form input {
      padding: 13px 18px;
    }
  }

  .testimonial-area .booking-items form textarea {
    padding: 15px 20px;
    background-color: var(--white);
    border: none;
    outline: none;
    color: var(--text);
    width: 100%;
    height: 110px;
    resize: none;
  }

  @media (max-width: 575px) {
    .testimonial-area .booking-items form textarea {
      padding: 13px 18px;
    }
  }

  .testimonial-area .booking-items form button {
    padding: 15px 20px;
    background-color: var(--white);
    color: var(--text);
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  @media (max-width: 575px) {
    .testimonial-area .booking-items form button {
      padding: 13px 18px;
    }
  }

  .testimonial-area .booking-items form button:hover {
    opacity: 0.9;
  }

  .testimonial-area .testimonial-content {
    margin-left: 50px;
  }

  @media (max-width: 991px) {
    .testimonial-area .testimonial-content {
      margin-left: 0;
    }
  }

  .testimonial-area .testimonial-content .testimonial-items {
    margin-top: 40px;
    background-color: var(--bg2);
    padding: 40px;
    position: relative;
  }

  @media (max-width: 575px) {
    .testimonial-area .testimonial-content .testimonial-items {
      padding: 30px 25px;
    }
  }

  .testimonial-area .testimonial-content .testimonial-items .icon {
    font-size: 32px;
    color: #000000;
    position: absolute;
    right: 40px;
    top: 40px;
  }

  .testimonial-area .testimonial-content .testimonial-items .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .testimonial-area .testimonial-content .testimonial-items .client-info .client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .testimonial-area .testimonial-content .testimonial-items .client-info .client-content .star span {
    font-size: 14px;
    color: #000000;
  }

  .testimonial-area .testimonial-content .arry-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
  }

  .testimonial-area .testimonial-content .arry-button::after {
    position: absolute;
    content: "";
    width: 38%;
    height: 1px;
    background-color: #000000;
    right: 0;
    top: 25px;
    opacity: 0.5;
  }

  @media (max-width: 575px) {
    .testimonial-area .testimonial-content .arry-button::after {
      width: 30%;
    }
  }

  .testimonial-area .testimonial-content .arry-button::before {
    position: absolute;
    content: "";
    width: 35%;
    height: 1px;
    background-color: #000000;
    left: 0;
    top: 25px;
    opacity: 0.5;
  }

  @media (max-width: 575px) {
    .testimonial-area .testimonial-content .arry-button::before {
      width: 30%;
    }
  }

  .testimonial-area .testimonial-content .arry-button .arry-prev {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    transition: all 0.4s ease-in-out;
  }

  .testimonial-area .testimonial-content .arry-button .arry-prev:hover {
    background-color: #000000;
    color: var(--white);
  }

  .testimonial-area .testimonial-content .arry-button .arry-next {
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    transition: all 0.4s ease-in-out;
  }

  .testimonial-area .testimonial-content .arry-button .arry-next:hover {
    background-color: var(--white);
    color: #000000;
  }


  .testimonial-card-items .testimonial-content .icon {
    font-size: 66px;
    color: #000000;
    margin-bottom: 20px;
  }

  .testimonial-card-items .testimonial-content .text-2 {
    transform: translateY(-30px);
    opacity: 0;
  }

  .testimonial-card-items .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 30px;
  }

  .testimonial-card-items .client-info .client-content h5 {
    margin-bottom: 5px;
    color: var(--text);
  }

  .testimonial-card-items .client-info .client-content p {
    color: #000000;
  }

  .testimonial-card-items:hover .testimonial-content .text-2 {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 30px;
  }

  .testimonial-card-items.active .testimonial-content .text-2 {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 30px;
  }

  .testimonial-section-2 .swiper-dot {
    position: relative;
  }

  .testimonial-section-2 .swiper-dot::before {
    position: absolute;
    bottom: 10px;
    left: 41%;
    transform: translate(-50%, -50%);
    width: 105px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  @media (max-width: 1399px) {
    .testimonial-section-2 .swiper-dot::before {
      display: none;
    }
  }

  .testimonial-section-2 .swiper-dot::after {
    position: absolute;
    bottom: 10px;
    right: 37%;
    width: 105px;
    height: 1px;
    background-color: var(--text);
    content: "";
  }

  @media (max-width: 1399px) {
    .testimonial-section-2 .swiper-dot::after {
      display: none;
    }
  }

  .testimonial-section-2 .swiper-slide.swiper-slide-active .testimonial-card-items .testimonial-content .text-2 {
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 30px;
  }

  .testimonial-sectioin {
    position: relative;
    background-color: var(--border);
  }

  .testimonial-sectioin .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0.2;
  }

  .pricing-items {
    background-color: var(--bg2);
    padding: 40px;
    transition: all 0.4s ease-in-out;
  }

  @media (max-width: 575px) {
    .pricing-items {
      padding: 40px 30px;
    }
  }

  .pricing-items .pricing-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
  }

  .pricing-items .pricing-header span {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
  }

  .pricing-items .pricing-header h2 {
    font-size: 80px;
    background: #000000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @media (max-width: 575px) {
    .pricing-items .pricing-header h2 {
      font-size: 50px;
    }
  }

  @media (max-width: 991px) {
    .pricing-items .pricing-header h2 {
      font-size: 65px;
    }
  }

  .pricing-items .pricing-header h2 sub {
    font-size: 16px;
    color: var(--text);
    margin-left: -30px;
    -webkit-text-fill-color: initial;
    font-weight: 400;
  }

  @media (max-width: 575px) {
    .pricing-items .pricing-header h2 sub {
      margin-left: -10px;
    }
  }

  .pricing-items .pricing-list {
    margin-top: 30px;
  }

  .pricing-items .pricing-list li {
    position: relative;
    padding-left: 20px;
  }

  .pricing-items .pricing-list li:not(:last-child) {
    margin-bottom: 10px;
  }

  .pricing-items .pricing-list li::before {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #000000;
  }

  .pricing-items .pricing-button {
    margin-top: 50px;
  }

  .pricing-items .pricing-button .theme-btn-2 {
    width: 100%;
    text-align: center;
  }

  .pricing-items.active {
    position: relative;
    z-index: 9;
  }

  .pricing-items.active::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../img/pricing-shape.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    z-index: 9;
    transition: all 0.4s ease-in-out;
  }

  .pricing-items.active::after {
    position: absolute;
    background-image: url(../img/tag.png);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    z-index: 9;
    transition: all 0.4s ease-in-out;
    width: 100px;
    height: 53px;
    top: 25px;
    right: 15px;
  }

  .pricing-items.active .pricing-header {
    position: relative;
    z-index: 9;
    border-bottom: 1px solid var(--white);
  }

  .pricing-items.active .pricing-header h2 {
    color: var(--white);
    background: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
  }

  .pricing-items.active .pricing-header h2 sub {
    color: var(--white);
  }

  .pricing-items.active .pricing-header p {
    color: var(--white);
  }

  .pricing-items.active ul {
    position: relative;
    z-index: 9;
  }

  .pricing-items.active ul li {
    color: var(--white);
  }

  .pricing-items.active ul li::before {
    background-color: var(--white);
  }

  .pricing-items.active .pricing-button {
    border: 1px solid var(--white);
  }

  .pricing-items.active .pricing-button .theme-btn-2 {
    border: 1px solid var(--white);
    color: var(--white);
  }

  /* .pricing-items.active .pricing-button .theme-btn-2 .shape-img {
    filter: brightness(0%);
    -webkit-filter: brightness(0%);
    -moz-filter: brightness(0%);
  } */
  .pricing-items.active .pricing-button .theme-btn-2:hover {
    color: var(--header);
    background-color: var(--white);
  }

  .pricing-items.active .pricing-button .theme-btn-2:hover::before,
  .pricing-items.active .pricing-button .theme-btn-2:hover::after {
    background-color: var(--white) !important;
  }

  /* .pricing-items.active .pricing-button .theme-btn-2:hover .shape-img {
    filter: brightness(0%);
    -webkit-filter: brightness(0%);
    -moz-filter: brightness(0%);
  } */
  .pricing-items:hover {
    transform: translateY(-10px);
  }

  .single-news-items {
    margin-top: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
  }

  .single-news-items .news-image {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
  }

  .single-news-items .news-image::before {
    position: absolute;
    top: 0;
    left: -75%;
    display: block;
    content: "";
    width: 10%;
    height: 100%;
    transform: skewX(-50deg);
    background-color: #000000;
    opacity: 0.2;
    z-index: 1;
  }

  .single-news-items .news-image img {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
  }

  .single-news-items .news-image .post-date {
    position: absolute;
    top: 15px;
    left: 15px;
    padding-right: 15px;
    background: var(--white);
    z-index: 99;
  }

  .single-news-items .news-image .post-date li {
    font-size: 14px;
  }

  .single-news-items .news-image .post-date li i {
    padding: 15px;
    background-color: #000000;
    color: var(--white);
    margin-right: 5px;
  }

  .single-news-items .news-content {
    padding: 30px 25px;
  }

  .single-news-items .news-content .post-list {
    gap: 30px;
    margin-bottom: 20px;
  }

  .single-news-items .news-content .post-list li i {
    color: #000000;
    margin-right: 5px;
  }

  .single-news-items .news-content h4 {
    margin-bottom: 30px;
  }

  @media (max-width: 575px) {
    .single-news-items .news-content h4 {
      font-size: 22px;
    }
  }

  .single-news-items .news-content h4 a:hover {
    color: #000000;
  }

  .single-news-items:hover .news-image::before {
    left: 140%;
    transition: all 2300ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .single-news-items:hover .news-image img {
    -webkit-transform: scale(1.1) rotate(-4deg);
    transform: scale(1.1) rotate(-4deg);
  }

  .blog-posts .single-blog-post {
    padding: 30px;
    border: 1px solid var(--border);
    margin-bottom: 30px;
  }

  .blog-posts .single-blog-post .post-featured-thumb {
    height: 441px;
    width: 100%;
    position: relative;
  }

  @media (max-width: 575px) {
    .blog-posts .single-blog-post .post-featured-thumb {
      height: 400px;
    }
  }

  .blog-posts .single-blog-post .post-featured-thumb .post-date {
    position: absolute;
    top: 35px;
    left: 35px;
    background-color: #000000;
    padding: 10px 24px;
  }

  @media (max-width: 575px) {
    .blog-posts .single-blog-post .post-featured-thumb .post-date {
      padding: 8px 20px;
    }
  }

  @media (max-width: 575px) {
    .blog-posts .single-blog-post .post-featured-thumb .post-date h4 {
      font-size: 20px;
    }
  }

  .blog-posts .single-blog-post .post-featured-thumb .post-date span {
    color: var(--white);
  }

  .blog-posts .single-blog-post .post-content {
    margin-top: 30px;
  }

  .blog-posts .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 15px;
  }

  .blog-posts .single-blog-post .post-content .post-list img {
    margin-right: 5px;
  }

  .blog-posts .single-blog-post .post-content h4 {
    margin-bottom: 20px;
  }

  @media (max-width: 575px) {
    .blog-posts .single-blog-post .post-content h4 {
      font-size: 22px;
    }
  }

  .blog-posts .single-blog-post .post-content h4 a:hover {
    color: #000000;
  }

  .blog-posts .single-blog-post .post-content .news-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }

  .blog-posts .single-blog-post .post-content .news-button .social-icon {
    gap: 15px;
  }

  .blog-posts .single-blog-post .post-content .news-button .social-icon a {
    color: var(--text);
  }

  .blog-posts .single-blog-post .post-content .news-button .social-icon a:hover {
    color: var(--white);
  }

  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 531px;
  }

  @media (max-width: 767px) {
    .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
      height: 400px;
    }
  }

  .news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
  }

  .news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

  .news-details-area .blog-post-details .single-blog-post .post-content .post-list img {
    margin-right: 5px;
  }

  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  @media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h3 {
      font-size: 24px;
    }
  }

  .news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
    color: #000000;
  }

  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid #000000;
    padding: 40px;
    background-color: var(--bg2);
  }

  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    max-width: 650px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
  }

  .news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
  }

  .news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
  }

  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: #000000;
    margin-right: 8px;
    text-transform: capitalize;
    margin-bottom: 8px;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--white);
    color: #000000;
  }

  .news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--text);
  }

  .news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
  }

  .news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: #000000;
  }

  .news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
    padding: 50px 40px;
    background-color: var(--bg2);
  }

  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
  }

  @media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
      margin-bottom: 20px;
    }
  }

  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 500;
  }

  @media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
      font-size: 28px;
    }
  }

  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
    margin-bottom: 5px;
  }

  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: #000000;
    font-size: 14px;
  }

  .news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 0px 12px;
    font-weight: 500;
    background-color: var(--bg);
  }

  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  @media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
      font-size: 28px;
      margin-bottom: 20px;
    }
  }

  .news-details-area .blog-post-details .comment-form-wrap .form-clt input,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
    transition: all 0.4s ease-in-out;
  }

  .news-details-area .blog-post-details .comment-form-wrap .form-clt input:hover,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea:hover {
    border-bottom: 2px solid transparent;
    border-image: #000000;
    border-bottom: 1px solid transparent;
    border-image-slice: 1;
  }

  .news-details-area .blog-post-details .comment-form-wrap .form-clt input.active,
  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea.active {
    border-bottom: 2px solid transparent;
    border-image: #000000;
    border-bottom: 1px solid transparent;
    border-image-slice: 1;
  }

  .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 60px;
  }

  .gallery-wrapper {
    padding: 30px 0;
  }

  .gallery-wrapper .gallery-image {
    position: relative;
  }

  .gallery-wrapper .gallery-image img {
    width: 100%;
    height: 100%;
  }

  .gallery-wrapper .gallery-image .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    transition-delay: 0s;
    transition-delay: 0s;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
  }

  .gallery-wrapper .gallery-image .icon i {
    color: var(--white);
  }

  .gallery-wrapper .gallery-image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: 0.5s all ease;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .gallery-wrapper .gallery-image:hover .icon {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    transition-delay: 300ms;
    opacity: 1;
    visibility: visible;
  }

  .gallery-wrapper .gallery-image:hover::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .gallery-wrapper .gallery-image-2 {
    height: 550px;
    position: relative;
  }

  @media (max-width: 991px) {
    .gallery-wrapper .gallery-image-2 {
      height: 500px;
    }
  }

  @media (max-width: 575px) {
    .gallery-wrapper .gallery-image-2 {
      height: 430px;
    }
  }

  .gallery-wrapper .gallery-image-2 .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    transition-delay: 0s;
    transition-delay: 0s;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
  }

  .gallery-wrapper .gallery-image-2 .icon i {
    color: var(--white);
  }

  .gallery-wrapper .gallery-image-2::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: 0.5s all ease;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .gallery-wrapper .gallery-image-2:hover .icon {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    transition-delay: 300ms;
    opacity: 1;
    visibility: visible;
  }

  .gallery-wrapper .gallery-image-2:hover::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .gallery-wrapper .gallery-image-3 {
    height: 1105px;
    position: relative;
  }

  @media (max-width: 1199px) {
    .gallery-wrapper .gallery-image-3 {
      height: 550px;
    }
  }

  @media (max-width: 991px) {
    .gallery-wrapper .gallery-image-3 {
      height: 500px;
    }
  }

  @media (max-width: 575px) {
    .gallery-wrapper .gallery-image-3 {
      height: 430px;
    }
  }

  .gallery-wrapper .gallery-image-3 .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    transition-delay: 0s;
    transition-delay: 0s;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
  }

  .gallery-wrapper .gallery-image-3 .icon i {
    color: var(--white);
  }

  .gallery-wrapper .gallery-image-3::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: 0.5s all ease;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .gallery-wrapper .gallery-image-3:hover .icon {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    transition-delay: 300ms;
    opacity: 1;
    visibility: visible;
  }

  .gallery-wrapper .gallery-image-3:hover::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .gallery-wrapper .gallery-image-4 {
    height: 821px;
    position: relative;
  }

  .gallery-wrapper .gallery-image-4 .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    transition-delay: 0s;
    transition-delay: 0s;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
  }

  .gallery-wrapper .gallery-image-4 .icon i {
    color: var(--white);
  }

  .gallery-wrapper .gallery-image-4::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transition: 0.5s all ease;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .gallery-wrapper .gallery-image-4:hover .icon {
    -webkit-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    transition-delay: 300ms;
    opacity: 1;
    visibility: visible;
  }

  .gallery-wrapper .gallery-image-4:hover::after {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  @media (max-width: 1199px) {
    .gallery-wrapper .gallery-image-4 {
      height: 550px;
    }
  }

  @media (max-width: 991px) {
    .gallery-wrapper .gallery-image-4 {
      height: 500px;
    }
  }

  @media (max-width: 575px) {
    .gallery-wrapper .gallery-image-4 {
      height: 430px;
    }
  }

  .contact-info-section {
    position: relative;
  }

  .contact-info-section .shape-image {
    position: absolute;
    bottom: -60%;
    left: 0;
    z-index: -1;
  }

  @media (max-width: 1399px) {
    .contact-info-section .shape-image {
      display: none;
    }
  }

  .contact-info-wrapper .info-image {
    max-width: 690px;
    margin-bottom: -150px;
  }

  @media (max-width: 991px) {
    .contact-info-wrapper .info-image {
      margin-bottom: 0;
    }
  }

  .contact-info-wrapper .info-image img {
    width: 100%;
    height: 100%;
  }

  .contact-info-wrapper .info-content .about-info-items {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
  }

  @media (max-width: 1399px) {
    .contact-info-wrapper .info-content .about-info-items {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 767px) {
    .contact-info-wrapper .info-content .about-info-items {
      margin-top: 30px;
    }
  }

  .contact-info-wrapper .info-content .about-info-items .call-area {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .contact-info-wrapper .info-content .about-info-items .call-area span {
    color: var(--black);
  }

  .contact-info-wrapper .info-content .about-info-items .call-area .icon {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-info-wrapper .info-content .about-info-items .call-area .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--bg3);
    color: var(--black);
    text-align: center;
    border-radius: 50%;
  }

  .contact-info-wrapper .info-content .about-info-items .call-area .icon h6 {
    font-size: 18px;
  }

  .contact-info-wrapper .info-content .about-info-items .call-area .icon h6 a {
    color: #000000;
  }

  .contact-info-wrapper-2 .contact-info-items {
    text-align: center;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 40px 20px;
    height: 250px;
  }

  .contact-info-wrapper-2 .contact-info-items .icon {
    font-size: 35px;
    background-color: #000000;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }

  .contact-info-wrapper-2 .contact-info-items .content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
  }

  .contact-info-wrapper-2 .contact-info-items .content ul li {
    font-size: 15px;
  }

  .contact-info-wrapper-2 .contact-info-items .content ul li a {
    color: var(--text);
  }

  .map-items .googpemap iframe {
    width: 100%;
    height: 675px;
  }

  .contact-form-items {
    padding: 50px 40px;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 10px;
  }

  .contact-form-items h2 {
    margin-bottom: 10px;
    color: var(--black);
    text-transform: none;
    font-size: 28px;
  }

  .contact-form-items p {
    margin-bottom: 20px;
  }

  @media (max-width: 575px) {
    .contact-form-items h2 {
      font-size: 28px;
    }
  }

  .contact-form-items .form-clt input,
  .contact-form-items .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--border) !important;
    padding-bottom: 20px;
    transition: all 0.4s ease-in-out;
    color: var(--text);
  }

  .contact-form-items .form-clt input:hover,
  .contact-form-items .form-clt textarea:hover {
    border-bottom: 2px solid transparent;
    border-image: #000000;
    border-bottom: 2px solid transparent;
    border-image-slice: 2;
  }

  .contact-form-items .form-clt input.active,
  .contact-form-items .form-clt textarea.active {
    border-bottom: 2px solid transparent;
    border-image: #000000;
    border-image-slice: 2;
  }

  .contact-form-items .form-clt textarea {
    padding-bottom: 150px;
  }

  .contact-form-items .theme-btn-2 {
    width: 80%;
  }

  .footer-section {
    position: relative;
  }

  .footer-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    /* background: linear-gradient(to left, var(--black) 0%, var(--black) 100%); */
    opacity: 0.9;
  }

  .footer-widgets-wrapper {
    padding: 100px 0 130px;
    position: relative;
    z-index: 9;
  }

  @media (max-width: 1199px) {
    .footer-widgets-wrapper {
      padding: 70px 0 100px;
    }
  }

  @media (max-width: 991px) {
    .footer-widgets-wrapper {
      padding: 50px 0 80px;
    }
  }

  .footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
  }

  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
  }

  @media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
      margin-bottom: 20px;
    }
  }

  .footer-widgets-wrapper .single-footer-widget .widget-head h4 {
    text-transform: capitalize;
    font-size: 16px;
    /* font-weight: 400; */
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
    margin-top: 20px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
    margin-bottom: 10px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
    font-size: 18px;
    /* color: var(--white); */
    margin-right: 5px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
    color: var(--text);
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    margin-top: 30px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
    width: 100%;
    border: none;
    background-color: var(--bg);
    position: relative;
    border: 1px solid var(--border);
    padding: 16px 22px;
    border-radius: 5px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-content .footer-input button {
    margin-top: 12px;
    width: 100%;
    line-height: 1.3;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li {
    transition: all 0.4s ease-in-out;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 7px;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: var(--text);
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li a i {
    margin-right: 5px;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li:hover {
    margin-left: 5px;
  }

  .footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
    color: #fff;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item {
    overflow: hidden;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .thumb {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 20px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content .post-date {
    /* color: #000000; */
    margin-bottom: 10px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content .post-date i {
    margin-right: 10px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 {
    font-size: 16px;
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 a {
    color: var(--text);
  }

  .footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 a:hover {
    color: #000000;
  }

  .footer-bottom {
    /* padding: 30px 0; */
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 9;
  }

  .footer-bottom .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  @media (max-width: 767px) {
    .footer-bottom .footer-bottom-wrapper {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
  }

  .footer-bottom .footer-bottom-wrapper p {
    text-transform: capitalize;
  }

  .footer-bottom .footer-bottom-wrapper p a {
    color: var(--white);
  }

  .footer-bottom .footer-bottom-wrapper ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .footer-bottom .footer-bottom-wrapper ul li a {
    color: var(--text);
  }

  .footer-bottom .footer-bottom-wrapper ul li a:hover {
    color: #000000;
  }

  .service-section .section-title h2 {
    color: var(--black);
  }

  .about-section .about-content .section-title h4 {
    color: var(--black);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
  }

  .about-section .about-content .section-title p {
    color: var(--black);
    font-weight: 500 !important;
  }

  .section-title-area .section-title h2 {
    color: var(--black);
  }

  .info-content .section-title h2 {
    color: var(--black);
  }

  .testimonial-section-2 .section-title h2 {
    color: var(--black);
  }

  /*# sourceMappingURL=main.css.map */


  .feature-style-one.overlapped-bottom {
    margin-bottom: -85.5px;
    position: relative;
    z-index: 20;
  }

  .feature-style-one.overlapped-top {
    margin-bottom: -85.5px;
    position: relative;
    z-index: 20;
  }

  .feature-style-one [class*=col-md]:nth-child(1) {
    background: #F6F6F6;
    padding: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .feature-style-one .single-feature-style-one {
    padding: 41px 25px;
  }

  .feature-style-one .single-feature-style-one .icon-box {
    width: 60px;
  }

  .feature-style-one .single-feature-style-one .icon-box,
  .feature-style-one .single-feature-style-one .text-box {
    display: table-cell;
    vertical-align: middle;
  }

  .feature-style-one .single-feature-style-one .icon-box i {
    color: #000000;
    font-size: 60px;
  }

  [class^="industrio-icon-"],
  [class*=" industrio-icon-"] {
    font-family: 'DM Sans', sans-serif;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .industrio-icon-innovation:before {
    content: "\e912";
  }

  .feature-style-one .single-feature-style-one .text-box {
    padding-left: 20px;
  }

  .feature-style-one .single-feature-style-one .icon-box,
  .feature-style-one .single-feature-style-one .text-box {
    display: table-cell;
    vertical-align: middle;
  }

  .feature-style-one .single-feature-style-one .text-box h3 {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--black);
  }

  .feature-style-one .single-feature-style-one.light .text-box h3,
  .feature-style-one .single-feature-style-one.light .text-box p {
    color: #fff;
  }

  .feature-style-one .single-feature-style-one .text-box h3,
  .feature-style-one .single-feature-style-one .text-box p {
    margin: 0;
  }

  .feature-style-one .single-feature-style-one .text-box p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
    margin-top: 15px;
  }


  .feature-style-one [class*=col-md] {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .feature-style-one [class*=col-md]:nth-child(2) {
    transition-delay: 0.15s;
  }

  .feature-style-one [class*=col-md]:nth-child(3) {
    transition-delay: 0.30s;
  }

  .feature-style-one [class*=col-md].animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .stat-card {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .col-12:nth-child(2) .stat-card {
    transition-delay: 0.15s;
  }

  .col-12:nth-child(3) .stat-card {
    transition-delay: 0.30s;
  }

  .stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
  }

  .minus-margin-top {
    margin-top: -190px;
  }

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

  .pdt-0 {
    padding-top: 0px;
  }

  .features-section {
    position: relative;
  }

  .features-section .section-object {
    position: absolute;
    top: 60px;
    right: 120px;
    width: auto;
    animation: infiUpDown 3s infinite alternate;
  }


  .pdr-0 {
    padding-right: 0px;
  }

  .features-item {
    background: #fff;
    border-radius: 5px;
    padding: 30px 30px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    -moz-transition: all 400ms ease 0s;
    -webkit-transition: all 400ms ease 0s;
    -ms-transition: all 400ms ease 0s;
    -o-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
    -webkit-box-shadow: 0px 15px 12px 0px rgba(0, 0, 0, 0.2);
    -khtml-box-shadow: 0px 15px 12px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 15px 12px 0px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 15px 12px 0px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0px 15px 12px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 15px 12px 0px rgba(0, 0, 0, 0.2);
  }

  .features-item:before {
    position: absolute;
    background: #000000;
    width: 100%;
    height: 25px;
    border-radius: 50%;
    left: 0;
    content: "";
    bottom: -15px;
    opacity: 0.15;
    -moz-transition: all 500ms ease 0s;
    -webkit-transition: all 500ms ease 0s;
    -ms-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
  }

  .features-item .feature-title {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text) !important;
  }

  .features-item .feature-title a {
    color: #000000;
  }

  .features-link {
    color: #000000;
    margin-top: 20px;
    display: inline-block;
    text-decoration: underline;
  }

  .mrl-10 {
    margin-left: 10px;
  }

  .fa-long-arrow-right:before {
    content: "\f178";
  }

  .features-item:hover {
    transform: translateY(-10px);
  }

  /* .feature-style-one .single-feature-style-one .text-box h3, .feature-style-one .single-feature-style-one .text-box p {
    margin: 0;
  } */
  .feature-style-one [class*=col-md]:nth-child(2) {
    background: #ff6a00;
    padding: 0;
  }

  .feature-style-one [class*=col-md]:nth-child(3) {
    background: #262626;
    padding: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .header-main .header-right .header-contact a {
    color: var(--white);
  }

  .about-wrapper-3 .about-info .content h2 {
    color: var(--text);
  }

  .Counter-section {
    padding-bottom: 150px;
  }

  .tab-container {
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
  }

  .tab-menu {}

  .tab-menu ul {
    margin: 0;
    padding: 0;
  }

  .tab-menu ul li {
    list-style-type: none;
    display: inline-block;
  }

  .tab-menu ul li a {
    text-decoration: none;
    color: var(--text);
    background-color: var(--border);
    padding: 7px 25px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
  }

  .tab-menu ul li a.active-a {
    background-color: #000000;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
  }

  .tab {
    display: none;
  }

  .tab h2 {
    color: rgba(0, 0, 0, .7);
    font-family: 'DM Sans', sans-serif;
  }

  .tab p {
    color: rgba(0, 0, 0, 0.6);
    text-align: justify;
    font-family: 'DM Sans', sans-serif;
  }

  .tab-active {
    display: block;
  }

  .counter-wrapper .industril-image .section-title {
    position: relative;
    top: 100px;
  }

  .testimonial-sectioin .section-title h2 {
    color: var(--black);
  }

  @media screen and (min-width:480px) and (max-width:768px) {
    .counter-wrapper .industril-image img {
      width: 100%;
      height: 100%;
      position: relative;
      top: 80px;
    }

    .section-padding-1 {
      padding: 0px 0 !important;
    }

    .feature-style-one.overlapped-bottom {
      margin-bottom: 0px !important;
      position: relative;
      z-index: 20;
    }

    .feature-style-one.overlapped-top {
      margin-top: 0px !important;
    }
  }

  .section-title span {
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
  }

  .services-details-wrapper .section-title h2 {
    color: var(--black);
  }

  .spb-50 {
    padding-bottom: 200px !important;
    padding-top: 200px !important;

  }

  #text {
    display: none;
    /* Hide the text initially */
  }

  .about-wrapper .about-content h4 {
    color: var(--black);
  }

  .section-logo .logo-image img {
    object-fit: cover;
    background-size: cover;
    width: 100%;
  }

  .w-75 {
    width: 75% !important;
  }

  .section-title h4 {
    color: var(--black);
    font-size: 40px;
  }

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

  .mr-30 {
    margin-right: 30px;
  }

  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .brand__title {
    position: relative;
  }

  .text-center {
    text-align: center !important;
  }

  .brand__title::before {
    position: absolute;
    content: "";
    background: var(--border);
    width: 100%;
    height: 1px;
    bottom: 50%;
    left: 0;
    right: 0;
    z-index: -1;
  }

  .brand__title span {
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    font-style: italic;
    display: inline-block;
    background: var(--white);
    padding: 0 10px;
  }

  .client-section {
    padding: 100px;
  }

  @media screen and (max-width:990px) {
    .mr-30 {
      margin-right: 0px !important;
    }

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

    .section-logo .logo-image img {
      object-fit: cover;
      background-size: cover;
      /* width: 40%; */
    }

    .section-logo {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      place-items: center;
    }

    .logo-row-mb {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: center !important;
      place-items: center;
    }
  }

  .about-content .section-title h4 {
    font-family: 'DM Sans', sans-serif !important;
  }

  .service-content a {
    color: var(--black);
    margin-top: 5px;
  }

  .service-content a:hover {
    color: #ff6a00;
    text-decoration: underline;
  }

  .about-style1-image-box {
    position: relative;
    display: block;
    max-width: 720px;
    width: 100%;
    margin-left: -110px;
  }

  .about-style1-image-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
  }

  .about-style1-image-box ul li {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    padding: 0 10px 30px;
  }

  .about-style1-image-box ul li .image_box {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .about-style1-image-box ul li .image_box img {
    width: 100%;
    transition: all 3500ms ease;
  }

  .about-style1-image-box ul li .image_box .overlay-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    background-color: #ffffff;
    text-align: center;
    padding: 18px 0px 0px;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 0px 2px;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top .icon {
    position: relative;
    display: block;
    padding-right: 15px;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top .icon span::before {
    font-size: 60px;
  }


  .about-style1-image-box ul li .image_box .overlay-box .top .counting {
    position: relative;
    display: flex;
    align-items: center;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top .counting span {
    color: #2739a7;
    font-size: 48px;
    line-height: 50px;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top .counting .icon {
    position: relative;
    display: block;
    padding: 0;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top .icon {
    position: relative;
    display: block;
    padding-right: 15px;
  }

  .about-style1-image-box ul li .image_box .overlay-box .top .counting .icon i::before {
    position: relative;
    display: inline-block;
    padding-left: 3px;
    color: #2739a7;
    font-size: 20px;
    font-weight: 700;
  }


  .about-style1-image-box ul li .image_box .overlay-box p {
    color: #222222;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin: 0;
  }

  .about-style1-image-box ul li .image_box.right {
    margin-top: 75px;
  }

  .about-style1-image-box ul li .image_box {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .about-style1-image-box ul li .image_box img {
    width: 100%;
    transition: all 3500ms ease;
    border-radius: 5px;
  }

  .about-style1-image-box ul li .image_box.right::after {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(25deg);
    z-index: 2;
  }

  @media screen and (max-width:1440px) {
    .about-style1-image-box {
      position: relative;
      display: block;
      max-width: 720px;
      width: 100%;
      margin-left: 0px;
    }

    .header-new .header-1 {
      position: absolute;
      width: 100%;
      top: 47px;
      left: 0;
    }
  }

  .footer-content p {
    /* text-align:center; */
    /* font-size: 13px; */
  }


  .contact-info li,
  .list-area li {
    font-size: 14px;
  }

  /* new css */

  .services-section {
    padding: 160px 0px;
  }

  .services-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: end;
  }

  .display-6.text-dark.mb-4 {
    font-weight: 600;
  }

  /* MAIN HEADING */
  .services-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.05;
    /* letter-spacing:1.5px; */
    /* text-transform:uppercase; */
    color: #1c2b2a;
    /* margin-bottom:0px; */
  }

  /* LEFT TEXT */
  .services-text {
    max-width: 420px;
  }

  .services-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #212529bf;
    margin-bottom: 30px;
  }

  .services-btn {
    /* display:inline-block; */
    background: #ff6a00;
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0px;
    text-decoration: none;
    width: max-content;
  }

  .services-btn:hover {
    background-color: #000;

  }

  /* RIGHT LIST */
  .services-wrapper .services-list {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 50px;
    row-gap: 10px;
    margin-top: 60px;
  }

  .service-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cfcfcf;
    font-size: 16px;
    color: #111;
  }

  .service-item::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6a00;
    font-weight: bold;
  }

  /* RESPONSIVE */
  @media(max-width:1024px) {
    .services-section {
      padding: 60px 40px;
    }

    .services-wrapper {
      grid-template-columns: 1fr;
    }

    .services-heading {
      font-size: 46px;
    }

    .services-list {
      margin-top: 60px;
      grid-template-columns: 1fr;
    }
  }

  .impact-section {
    background: #0e0e0e;
    padding: 130px 80px;
    color: #e6e6e6;
  }

  /* Top section */
  .impact-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 120px;
  }

  .impact-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9aa89c;
  }

  .impact-right h2 {
    max-width: 835px;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
  }

  /* Stats row */
  .impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-box {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-box:last-child {
    border-right: none;
  }

  .stat-box h3 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .stat-box p {
    font-size: 16px;
    line-height: 1.5;
    color: #dcdcdc;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .impact-top {
      flex-direction: column;
    }

    .impact-right h2 {
      font-size: 30px;
    }

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

    .stat-box:nth-child(2) {
      border-right: none;
    }
  }

  @media (max-width: 600px) {
    .impact-section {
      padding: 130px 20px 20px 30px !important;
    }

    .impact-section.aboutse {
      padding: 80px 20px 20px 30px !important;
    }

    .aboutse .container.px-4 {
      padding-right: 0px !important;
      padding-left: 0px !important;
    }

    .impact-stats {
      grid-template-columns: 1fr;
    }

    .stat-box {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat-box:last-child {
      border-bottom: none;
    }

    .stat-box h3 {
      font-size: 48px;
    }
  }

  .about-sectionNew {
    padding: 140px 0;
    overflow: hidden;
  }

  .cont {
    display: flex;
    gap: 30px;
  }

  /* LEFT SIDE */
  .left-content {
    flex: 1.3;
  }

  .subtitle {
    color: #ff6a00;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .left-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 15px 0 30px;
    line-height: 1.3;
  }

  .image-box {
    position: relative;
    border-radius: 10px;
    /* overflow: hidden; */
  }

  .image-box img {
    width: 72%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  /* EXPERIENCE BOX */
  .experience-box {
    position: absolute;
    bottom: -30px;
    right: 50px;
    background: #ff6a00;
    color: #fff;
    padding: 30px;
    width: 220px;
    border-radius: 8px;
  }

  .experience-box h2 {
    font-size: 40px;
    font-weight: 700;
  }

  .experience-box p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .experience-box h3 {
    font-size: 32px;
    font-weight: 700;
  }

  .experience-box span {
    font-size: 14px;
  }

  /* RIGHT SIDE */
  .right-content {
    flex: 1;
  }

  .top-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
  }

  /* tabsAbout */
  .tabsAbout {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
  }

  .tabsAbout span {
    padding-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
  }

  .tabsAbout .active {
    color: #ff6a00;
    border-bottom: 2px solid #ff6a00;
  }

  /* TEXT */
  .description {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  /* featuresNew */
  .featuresNew {
    list-style: none;
    margin-bottom: 30px;
  }

  .featuresNew li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
  }

  .featuresNew li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6a00;
  }

  /* BUTTON */
  .btn {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }

  .btn:hover {
    background: #c83600;
  }

  /* RESPONSIVE */
  @media (max-width: 992px) {
    .cont {
      flex-direction: column;
    }

    .experience-box {
      right: 20px;
    }
  }

  .section-tag {
    font-size: 14px;
    font-weight: 600;
    padding-left: 12px;
    position: relative;
  }

  .section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 100%;
    background-color: #ff6a00;
  }

  .learn-more {
    color: #ff6a00;
  }

  .stat-card {
    background: #514d4d0f;
    border: 2px solid #eee;
    padding: 35px 30px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    border-radius: 5px;
  }

  .stat-card h2 {
    font-size: 40px;
    font-weight: 500;
  }

  .stat-line {
    display: block;
    width: 20px;
    height: 3px;
    background: #ff6a00;
    margin: 15px 0;
  }

  .expertise-section {
    position: relative;
    padding: 140px 0;
    background: url("../img/about/background_fixed.jpg") center / cover no-repeat fixed;
    color: #fff;
  }

  /* DARK OVERLAY */
  .expertise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
  }

  /* .container {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
} */

  /* LEFT GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .service-card {
    background: #141414;
    padding: 30px;
  }

  .service-card .icon {
    font-size: 32px;
  }

  .service-card .line {
    display: block;
    width: 25px;
    height: 3px;
    background: #ff6a00;
    margin: 15px 0;
  }

  .dividflex {
    gap: 0px 30px;
  }

  .dividflex .divider {
    width: 5px;
    /* height: 100%; */
    background-color: #ff6a00;
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
  }

  .service-card .learnmore {
    display: inline-block;
    margin-top: 15px;
    color: #ff6a00;
    text-decoration: none;
    font-weight: 700;
  }

  .paddingLeft {
    padding-left: 40px !important;
  }

  .expertise-content {
    padding: 0px 40px;
  }

  .expertise-content .label {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .expertise-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .expertise-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .expertise-content ul {
    list-style: none;
    margin-bottom: 25px;
  }

  .expertise-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .expertise-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff6a00;
  }

  .learn-more {
    color: #ff6a00;
    text-decoration: none;
    font-weight: 700;
  }

  .service-card .icon img {
    max-width: 35%;
    opacity: 1;
  }


  .ms-wrapper {
    /* padding:140px 0; */
    margin-top: -350px;
    /* background-color: #fff; */
    padding-bottom: 100px;
    /* background:
    url('../img/about/unnamed.png') center/cover no-repeat, 
    radial-gradient(circle at left, #3b2200, transparent 50%),
    radial-gradient(circle at right, #3b2200, transparent 50%),
    #0e0e0e;  */

    color: #fff;
    /* font-family:"Segoe UI", sans-serif; */
  }

  .ms-wrapper {
    position: relative;
  }

  .ms-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(255 255 255) 54%, transparent 54%);
    z-index: -1;
  }

  .ms-wrapper {
    position: relative;
    z-index: 2;
  }

  .ms-wrapper_01 {
    padding: 140px 0;
    color: #fff;
  }


  .ms-tag {
    color: #ff6a00;
    /* letter-spacing:2px; */
    font-size: 14px;
    text-transform: uppercase;
  }

  .ms-wrapper .ms-links a:hover {
    color: #fff !important;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #fff;
  }

  .ms-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    /* text-transform: uppercase; */
    /* max-width: 90%; */
  }

  .ms-heading_01 {
    font-size: 42px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    /* text-transform: uppercase; */
    /* max-width: 90%; */
  }

  .ms-env-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }

  .ms-env-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff6a00;
  }

  .nabet-card {
    position: relative;
    height: 100%;
    padding: 28px 24px 28px 30px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    transition: all .4s ease;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .nabet-card:hover {
    border-color: #ff6a00;
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.12);
    transform: translateY(-4px);
  }

  .nabet-card__num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.1);
    color: #ff6a00;
    font-size: 15px;
    font-weight: 700;
  }

  .nabet-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
  }

  .nabet-validity {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
    background: #1f1f1f;
    border-left: 4px solid #ff6a00;
    border-radius: 8px;
  }

  .nabet-validity i {
    color: #ff6a00;
    font-size: 26px;
  }

  .nabet-validity p {
    margin: 0;
    color: #fff;
    font-size: 16px;
  }

  .nabet-validity strong {
    color: #ff6a00;
  }

  .project-exp-card {
    display: block;
    padding: 40px 34px;
    text-align: center;
  }

  .project-exp-card__num {
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
    color: #ff6a00;
    margin-bottom: 14px;
  }

  .project-exp-card__num span {
    font-size: 36px;
  }

  .project-exp-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
  }

  .commitment-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px 30px;
    background: #1f1f1f;
    border-radius: 10px;
  }

  .commitment-strip span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .commitment-strip i {
    color: #ff6a00;
    font-size: 8px;
  }

  .commitment-strip img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sectors-section {
    background: linear-gradient(135deg, #141414 0%, #1f1f1f 55%, #2a1606 100%);
    position: relative;
    overflow: hidden;
  }

  .sectors-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.08);
    z-index: 0;
  }

  .sectors-section::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.06);
    z-index: 0;
  }

  .sectors-section .container {
    position: relative;
    z-index: 1;
  }

  .sectors-heading {
    color: #fff;
    margin-bottom: 16px;
  }

  .sectors-heading span {
    color: #ff6a00;
  }

  .sectors-intro {
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .sector-card {
    position: relative;
    height: 100%;
    padding: 16px 16px 24px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    text-align: center;
    transition: all .4s ease;
    overflow: hidden;
  }

  .sector-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    display: block;
  }

  .sector-card:hover {
    border-color: rgba(255, 106, 0, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  }

  .sector-card__title {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    color: #111;
  }

  .about-sectionNew h1 {
    font-size: 42px;
    font-weight: 600;
  }

  .section-title h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .ms-text {
    color: #fff;
    /* max-width:500px; */
  }

  .ms-text_01 {
    color: #000;
  }

  .ms-links a {
    color: #ff6a00;
    text-decoration: none;
    border-bottom: 1px solid #ff6a00;
    margin-right: 20px;
    font-size: 14px;
  }

  /* ===== SLIDER ===== */
  .ms-swiper {
    margin-top: 50px;
  }

  .ms-slide {
    height: 420px;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }

  .ms-slide--text {
    padding: 30px;
  }

  .ms-slide--text h3 {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
  }

  /* .msh3{
   font-size:18px !;
} */
  .ms-icon {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 26px;
    color: #ff6a00;
  }

  .ms-icon img {
    max-width: 40px;
  }

  .ms-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Navigation */
  .ms-prev,
  .ms-next {
    width: 46px;
    height: 46px;
    background: #000;
    border-radius: 50%;
    border: 1px solid #333;
  }

  .ms-prev.swiper-button-lock,
  .ms-next.swiper-button-lock {
    display: flex !important;
    z-index: 1;
  }

  .ms-prev::after,
  .ms-next::after {
    font-size: 16px;
    color: #fff;
  }

  @media(max-width:991px) {
    .ms-heading {
      font-size: 40px;
    }
  }

  /* .swiper-slide.ms-slide:has(.thumbanilms){
      margin-top: 40px;
  } */


  .mining-potential-wrapper {
    padding: 140px 0;
    background-color: #ffffff;
  }

  .mining-content-header {
    border-left: 4px solid #ff6a00;
    padding-left: 20px;
    margin-bottom: 30px;
  }

  .mining-label-text {
    color: #ff6a00;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .mining-main-heading {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    /* text-transform: uppercase; */
  }

  .mining-intro-text {
    color: #212529bf;
    font-size: 16px;
    line-height: 1.6;
  }

  .mining-faq-wrapper {
    margin-top: 40px;
  }

  .mining-accordion-dark {
    /* border: 1px solid #cfcfcf; */
    background-color: transparent;
  }

  .mining-accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #cfcfcf;
  }

  /* .mining-accordion-item:last-child {
            border-bottom: none;
        } */

  .mining-accordion-trigger {
    background-color: transparent;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 0 20px;
    border: none;
    box-shadow: none;
    width: 100%;
    text-align: start;
  }

  .mining-accordion-trigger:not(.collapsed) {
    background-color: transparent;
    color: #ff6a00;
    box-shadow: none;
    width: 100%;
    text-align: start;
  }

  .mining-accordion-trigger:focus {
    box-shadow: none;
    border: none;
  }

  .mining-accordion-trigger::before {
    content: '+';
    color: #ff6a00;
    font-size: 24px;
    font-weight: 700;
    margin-right: 15px;
  }

  .mining-accordion-trigger:not(.collapsed)::before {
    content: '−';
  }

  .mining-accordion-trigger::after {
    display: none;
  }

  .mining-accordion-content {
    background-color: transparent;
    color: #212529bf;
    padding: 15px 40px 15px 40px;
    line-height: 1.6;
    font-size: 14px;
    border-top: 1px solid #cfcfcf;
  }

  .mining-accordion-panel {
    border: none;

  }

  .mining-visual-container {
    position: relative;
    text-align: end;
  }

  .mining-excavator-img {
    width: 85%;
    height: auto;
    border-radius: 0px;
    filter: grayscale(10%);
  }

  .mining-years-badge {
    position: absolute;
    bottom: -100px;
    right: -20px;
    background-color: #1a1a1a;
    width: 43%;
    border-radius: 0px;
    padding: 5%;
    text-align: start;
    border: 20px solid #fff;
  }

  .mining-years-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
  }

  .mining-years-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
  }

  .mining-orange-highlight {
    color: #ff6a00;
  }

  @media (max-width: 768px) {
    .mining-main-heading {
      font-size: 30px;
    }

    .mining-years-badge {
      position: static;
      margin-top: 20px;
      display: inline-block;
    }
  }



  .partners-section {
    padding: 80px 20px 140px 20px;
    background: #f2f2f2;
    z-index: 1;
  }

  .posiAbs {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: -1;
  }



  .contentGrid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: start;
    padding: 40px 0px;
  }

  /* Left Side - Image and Text */
  .leftSide {
    position: relative;
  }

  .circleIcon {
    width: 60px;
    height: 60px;
    border: 3px solid #f0f0f0;
    border-radius: 50%;
    margin-bottom: 30px;
  }

  .partnersLabel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6a00;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .icon-svg {
    width: 11px;
    height: 15px;
  }

  .mainTitle {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
  }

  .descriptionee {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 80px;
    max-width: 400px;
  }

  .hand-image-container {
    position: relative;
    margin-top: 20px;
  }

  .hand-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
  }

  /* Right Side - Brand Grid */
  .right-side {
    padding-top: 20px;
  }

  .brandsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .brandBox {
    background: #f2f2f2;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    transition: all 0.3s ease;
  }

  /* .brandBox:hover {
            background: #f0f0f0;
            transform: translateY(-5px);
        } */

  .brandBox img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
  }

  /* Brand Logo Styles */
  .brandLogo {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  @media (max-width: 1200px) {
    .contentGrid {
      grid-template-columns: 400px 1fr;
      gap: 40px;
    }

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

    .mainTitle {
      font-size: 44px;
    }
  }

  @media (max-width: 968px) {
    .contentGrid {
      grid-template-columns: 1fr;
      gap: 50px;
    }

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

    .hand-image-container {
      max-width: 400px;
      margin: 20px auto 0;
    }
  }

  @media (max-width: 600px) {
    .mainTitle {
      font-size: 36px;
    }

    .brandBox {
      padding: 25px 20px;
      min-height: 110px;
    }
  }

  .rs-btn {
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    height: 60px;
    transition: all 0.3s linear;
    border-radius: 2px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }

  .rs-subscribe-one {
    position: relative;
    z-index: 1;
    background: #1f1f1f;
  }

  .rs-subscribe-one .rs-subscribe-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .rs-subscribe-one .rs-subscribe-content {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 30px 30px;
  }

  @media (min-width:790px) {
    .ReadMor {
      width: 35%;
    }
  }


  .rs-subscribe-one .rs-subscribe-input {
    position: relative;
  }

  .rs-subscribe-one.has-theme-orange .rs-subscribe-input input {
    background: #252525;
  }

  .rs-subscribe-one .rs-subscribe-input .rs-btn {
    position: absolute;
    inset-inline-end: 7px;
    top: 7px;
    /* border-radius: 50px; */
    height: 55px;
  }

  .rs-subscribe-one .rs-subscribe-text p {
    color: #888888;
    font-size: 18px !important;
  }

  .rs-btn.has-theme-orange {
    background: #ff6a00;
  }

  .rs-subscribe-one .rs-subscribe-input input {
    background: #0C3C61;
    height: 70px;
    /* border-radius: 50px; */
    color: #FFFFFF;
    width: 100%;
    padding: 0 215px 0 25px;
    border: 1px solid transparent;
  }

  .rs-subscribe-one .rs-subscribe-logo img {
    width: 200px;
  }

  .rs-footer-bg-thumb-wrapper .rs-footer-bg-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-inline-end: 0;
    top: 0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }

  p {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .timeline-1 h6 {
    color: var(--white);
  }

  .timeline-1 {
    overflow: hidden;
    position: relative;
  }

  .timeline-1:before {
    content: "";
    width: 3px;
    height: 100%;
    background: #ffffff66;
    position: absolute;
    top: 0;
    left: 50%;
  }

  .timeline-1 .timeline-t {
    padding-right: 30px;
    position: relative;
  }

  .timeline-1 .timeline-t:before,
  .timeline-1 .timeline-t:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
  }

  .timeline-1 .timeline-t:first-child:before,
  .timeline-1 .timeline-t:last-child:before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #f7f7f7;
    background: #ff6a00;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: -3px;
  }

  .timeline-1 .timeline-t:last-child:before {
    top: auto;
    bottom: 0;
  }

  .timeline-1 .timeline-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff6a00;
    border: 2px solid #000;
    box-sizing: content-box;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -4px;
  }

  .timeline-1 .timeline-icon:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .timeline-1 .year {
    display: inline-block;
    padding: 10px 20px;
    margin: 0;
    font-size: 42px;
    color: var(--white);
    background: #2626264f;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translateY(-50%);
    font-weight: 600;
  }

  .timeline-1 .year:before {
    content: "";
    border-right: 18px solid #2626264f;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 2px;
    left: -18px;
  }

  .timeline-1 .timeline-content {
    border-radius: 3px;
    width: 46.5%;
    padding: 30px;
    margin: 0 20px 0 0;
    background: #2626264f;
    position: relative;
  }

  .timeline-1 .timeline-content:after {
    content: "";
    border-left: 20px solid #2626264f;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
  }

  .timeline-1 .timeline-t:nth-child(2n) {
    padding: 0 0 0 30px;
  }

  .timeline-1 .timeline-t:nth-child(2n) .year {
    right: auto;
    left: 35%;
  }

  .timeline-1 .timeline-t:nth-child(2n) .year:before {
    border: 20px solid transparent;
    border-right: none;
    border-left: 18px solid #2626264f;
    left: auto;
    right: -18px;
  }

  .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
    float: right;
    margin: 0 0 0 20px;
  }

  .timeline-1 .timeline-t:nth-child(2n) .timeline-content:after {
    border-left: none;
    border-right: 20px solid #2626264f;
    right: auto;
    left: -20px;
  }

  @media only screen and (max-width:1200px) {
    .timeline-1 .year {
      right: 30%;
    }

    .timeline-1 .timeline-t:nth-child(2n) .year {
      left: 30%;
    }
  }

  @media only screen and (max-width:990px) {
    .timeline-1 .year {
      right: 25%;
    }

    .timeline-1 .timeline-t:nth-child(2n) .year {
      left: 25%;
    }
  }

  @media only screen and (max-width:767px) {
    .timeline-1:before {
      left: 10px;
    }

    .timeline-1 .timeline-t {
      padding: 0 0 0 30px;
      margin-bottom: 20px;
    }

    .timeline-1 .timeline-t:last-child {
      margin-bottom: 0;
    }

    .timeline-1 .timeline-t:first-child:before,
    .timeline-1 .timeline-t:last-child:before {
      display: none;
    }

    .timeline-1 .timeline-icon {
      margin: 0;
      position: absolute;
      top: 7px;
      left: 0;
    }

    .timeline-1 .year,
    .timeline-1 .timeline-t:nth-child(2n) .year {
      display: block;
      font-weight: bold;
      margin: 0 0 32px 30px;
      z-index: 1;
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      transform: none;
    }

    .timeline-1 .timeline-t:nth-child(2n) .year:before {
      border-left: none;
      border-right: 18px solid #000;
      right: auto;
      left: -18px;
    }

    .timeline-1 .timeline-content {
      padding: 20px;
    }

    .timeline-1 .timeline-content,
    .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
      width: auto;
      float: none;
      margin: 0 0 0 30px;
    }

    .timeline-1 .timeline-content:after,
    .timeline-1 .timeline-t:nth-child(2n) .timeline-content:after {
      border: none;
      border-bottom: 20px solid #000;
      border-left: 20px solid transparent;
      border-right: 20px solid transparent;
      top: -20px;
      left: 50%;
      right: auto;
      transform: translateX(-50%);
    }
  }

  @media only screen and (max-width:480px) {
    .timeline-1 .year {
      font-size: 30px !important;
    }

    .timeline-1 .year,
    .timeline-1 .timeline-t:nth-child(2n) .year {
      margin-left: 20px;
    }

    .timeline-1 .timeline-content,
    .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
      margin-left: 10px;
    }
  }

  .iq-font-yellow {
    color: #ff6a00;
  }

  .heading-title .title {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
    /* font-size: 50.5px; */
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
  }

  .heading-title {
    margin-bottom: 60px;
    text-align: center;
  }

  .heading-title p {
    padding: 0 250px;
    display: block;
  }

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

  p.iq-mt-10 {
    color: #8d8d8d !important;
  }

  .overview-block-ptb {
    padding: 150px 0;
    background-color: #0E0E0E;
  }

  /* Initial hidden state */
  .timeline-1 .timeline-content {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  /* Right side boxes */
  .timeline-1 .timeline-t:nth-child(2n) .timeline-content {
    transform: translateX(100px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  /* When visible */
  .timeline-1 .timeline-content.show {
    opacity: 1;
    transform: translateX(0);
  }

  .timeline-1 .timeline-t:nth-child(2n) .timeline-content.show {
    opacity: 1;
    transform: translateX(0);
  }

  .timeline-content.reset {
    transition: none;
  }

  .services-sticky {
    position: sticky;
    top: 100px;
    background: #f7f7f7;
    padding: 25px;
    border-radius: 12px;
    width: 96%;
  }

  .services-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px !important;
    padding: 16px 0;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    cursor: pointer;
  }

  .services-list li a {
    color: #000;
  }

  .services-list li a.active {
    color: #ff6a00;
    font-weight: 700;
  }

  .services-list li .icon {
    font-size: 22px;
  }

  .download-box {
    background: #ff6a00;
    padding: 25px;
    margin-top: 30px;
    border-radius: 12px;
    color: #fff;
  }

  .download-box h5 {
    margin-bottom: 15px;
  }

  .download-box a {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .service-details {
    padding: 140px 0;
  }

  .maaaService {
    padding-top: 30px;
  }

  .section-title {
    /* font-size: 38px; */
    font-weight: 600;
    margin-bottom: 15px;
  }

  .section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
  }

  .section-text strong {
    color: #000;
  }

  .check-list {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
  }

  .check-icon {
    width: 28px;
    height: 28px;
    background: #ff6a00;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .ull li {
    padding-bottom: 10px !important;
    font-size: 14px;
  }

  .ull li strong,
  .oll li strong,
  .olll li strong {
    color: #000000;
  }

  .oll {
    padding-left: 30px;
    list-style: disc;
    padding-top: 10px;
  }

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

  .olll {
    padding-left: 30px;
    list-style: decimal;
    padding-top: 10px;
  }

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

  @media (max-width:600px) {

    .rs-subscribe-one,
    .partners-section,
    .expertise-section {
      overflow: hidden;
    }

    .expertise-content {
      padding: 50px 20px 0 20px !important;
    }

    .mining-visual-container {
      text-align: start !important;
    }

    .rs-subscribe-one .rs-subscribe-content {
      grid-template-columns: 1fr !important;
    }

    .mining-years-badge {
      right: 0px;
      position: absolute !important;
    }

    .mining-excavator-img {
      width: 100%;
    }

    .mining-years-badge {
      padding: 2%;
      border: 10px solid #fff;
    }

    .mining-accordion-trigger {
      line-height: 1.6;
      padding: 15px;
    }

    .mining-accordion-content {
      padding: 7.5px 15px 15px 15px;
      font-size: 14px !important;
    }

    .services-section {
      padding: 80px 20px;
    }

    .services-wrapper {
      gap: 20px;
    }

    .service-item {
      padding-bottom: 2px !important;
      border-bottom: unset !important;
    }

    .services-heading {
      font-size: 25px;
      padding-bottom: 20px;
    }

    .ReadMor {
      width: 55%;
    }

    .posiAbs {
      max-width: 80%;
    }

    .partners-section {
      padding: 20px 20px 40px !important;
    }

    .partners-section .container-fluid,
    .partners-section .container-fluid .container {
      padding-left: 0px !important;
      padding-right: 0px !important;
    }

    .footer-widgets-wrapper {
      padding-bottom: 30px !important;
    }

    .footer-bottom {
      padding-top: 30px;
    }

    .footer-widgets-wrapper .single-footer-widget {
      margin-top: 20px;
    }

    .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
      margin-top: 0px;
    }

    .offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
      margin-top: 05px;
    }

    .offcanvas__wrapper {
      padding-top: 10px !important;
    }

    .footer-bottom .footer-bottom-wrapper {
      gap: 10px;
    }

    .--p-xs {
      text-align: center;
    }

    .mining-potential-wrapper {
      padding-top: 80px;
      padding-bottom: 50px;
    }

    .project-wrapper .project-image .project-content h4 {
      font-size: 20px;
    }

    .services-text p {
      margin-bottom: 0px !important;
    }

    .paddingLeft {
      padding-left: 20px !important;
    }

    .expertise-content h2 {
      font-size: 32px !important;
    }

    .dividflex {
      gap: 0px 15px;
    }

    .about-sectionNew {
      padding: 50px 0px !important;
    }

    .overview-block-ptb {
      padding: 50px 0px !important;
      overflow: hidden !important;
    }

    .heading-title p {
      padding: 0 20px;
    }

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

    .heading-title {
      margin-bottom: 30px;
    }

    .timeline-1 .timeline-content:after,
    .timeline-1 .timeline-t:nth-child(2n) .timeline-content:after {
      left: -8%;
      top: 8%;
      transform: translateY(-50%) rotate(270deg);
      border-color: #16161600;
    }

    .timeline-1 .timeline-t:nth-child(2n) .year:before {
      border-right-color: #161616 !important;
    }

    /* .stat-card{
    padding: 20px !important;
  } */
    body {
      overflow-x: hidden !important;
    }

    .footer-section {
      overflow: hidden !important;
    }

    .footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
      margin-bottom: 2px !important;
    }
  }


  .service-cardthree {
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 5px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .gy-32 {
    --bs-gutter-y: 25px;
  }

  @media (min-width:600px) {
    .gy-32 {
      --bs-gutter-y: 32px;
    }

    .row.gy-32 {
      --bs-gutter-x: 32px;
    }

    .row.gy-32 .col-xl-4.col-md-6 {
      padding-left: 8px;
      padding-right: 8px;
    }
  }


  .service-cardthree__content {
    padding: 32px 32px 16px;
  }

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

  .service-cardthree__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6a00;
    margin-bottom: -110px;
    position: relative;
    z-index: 8;
    margin-right: 32px;
  }

  .service-cardthree__icon-wrap {
    display: flex;
    justify-content: flex-end;
  }

  .blog-cardone__link {
    position: relative;
    color: #ff6a00;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  .blog-cardone__link svg path {
    fill: #ff6a00;
  }

  .blog-cardone__link:hover {
    color: #000;
  }

  .blog-cardone__link:hover svg path {
    fill: #000;
  }

  .services .ms-links a:hover {
    color: #000;
    border-bottom: 1px solid #000;
  }

  .typo-secondary-color {
    color: #000;
    font-weight: 700;
  }

  .ms-wrapper_03 {
    padding: 50px 0 60px;
  }

  .ms-wrapper_03::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #f2f2f2 55%, transparent 55%);
    z-index: -1;
  }

  @media (max-width:600px) {
    .ms-wrapper {
      padding: 80px 0 !important;
    }

    .service-card {
      padding: 15px !important;
    }

    .typo-secondary-color {
      font-size: 18px;
    }

    .msh {
      padding-bottom: 10px !important;
    }

    .services-wrapper .services-list {
      grid-template-columns: 1fr;
      margin-top: 30px !important;
    }

    .mining-accordion-trigger::before {
      font-size: 20px !important;
    }

    .feature-style-one.overlapped-bottom {
      margin-bottom: 0px !important;
    }

    .service-card .learnmore {
      font-size: 14px;
    }

    .feature-style-one [class*=col-md]:nth-child(3) {
      border-top-right-radius: 0px;
      border-bottom-right-radius: 0px;
    }

    .ms-text {
      padding-top: 20px;
    }
  }

  .service-cardthree__thumb img {
    width: 100%;
  }

  .sectionPadd {
    padding: 60px 0;
  }

  .service-cardthree__thumb {
    position: relative;
    width: 100%;
    height: 300px;

    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 419 290"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L419 48V290H0V0Z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;

    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 419 290"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L419 48V290H0V0Z"/></svg>');
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;

    transition: all 0.3s;
  }


  .service-cardthree__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img-hover-ani img {
    transition: all 0.3s;
  }

  .overlayy {
    position: absolute;
    inset: 0;
    background-color: #00000078;
  }

  /* 
#__EAAPS_PORTAL .hRqODn{
  padding-bottom: 5px !important;
  z-index: 99999999999 !important;
}
#__EAAPS_PORTAL .bvgwtW{
    padding-bottom: 5px !important;
  z-index: 99999999999 !important;
} */

  #__EAAPS_PORTAL .hGtTlm {
    width: unset !important;
  }

  .gInvow {
    display: none !important;
  }

  .kXKkPS {
    box-shadow: unset !important;
    border: 1px solid #ccc !important;
  }


  .section-space {
    padding-top: 70px;
    /* padding-bottom: 150px; */
    overflow: hidden;
  }


  .rs-section-title {
    font-size: 52px;
    color: #1f1f1f;
    font-weight: 600;
    line-height: 1;
  }

  .rs-about-twelve .rs-about-wrapper {
    position: relative;
    display: flex;
    z-index: 1;
    align-items: center;
    height: 100%;
  }

  .rs-about-twelve .rs-about-wrapper .icon {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #ff6a00;
    /* border-bottom: 4px solid #f7f7f7; */
  }

  .rs-about-twelve .rs-about-wrapper.chil .icon {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f7f7f7;
    /* border-bottom: 4px solid #ff6a00; */
  }

  @media only screen and (max-width: 1600px) {
    .rs-about-twelve .rs-about-shape {
      inset-inline-end: 50px;
    }
  }

  .rs-about-twelve .rs-about-shape {
    position: absolute;
    text-align: end;
    inset: 0;
  }

  .rs-about-twelve .rs-about-thumb {
    width: 310px;
    height: 230px;
    object-fit: cover;
  }



  .rs-about-twelve .rs-about-content {
    padding: 40px 50px 40px 10px;
    background: #f7f7f7;
    /* border-bottom: 4px solid #ff6a00; */
    /* border-radius: 4px; */
    /* margin-inline-start: 190px; */
    /* margin-top: -100px; */
    position: relative;
    z-index: 1;
    width: 80%;
    height: 100%;
  }

  .rs-about-twelve .rs-about-content.chil {
    padding: 40px 50px 40px 10px;
    background: #ff6a00;
    /* border-bottom: 4px solid #f7f7f7; */
    /* border-radius: 4px; */
    /* margin-inline-start: 190px; */
    /* margin-top: -100px; */
    position: relative;
    z-index: 1;
    width: 80%;
    height: 100%;
  }

  .rs-about-twelve .rs-about-content.chil p,
  .rs-about-twelve .rs-about-content.chil .rs-about-title {
    color: #fff;
  }

  @media only screen and (max-width: 1600px) {
    .rs-about-twelve .rs-about-content {
      padding: 30px 40px 30px 30px;
    }
  }

  .rs-about-twelve .rs-about-title {
    margin-bottom: 15px;
    color: #1f1f1f;
    font-weight: 700;
  }

  .rs-about-content p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

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

  .rs-about-twelve .rs-about-thumb img {
    width: 100%;
  }

  .section-title-space {
    margin-bottom: 45px;
  }

  .rs-section-subtitle.has-theme-orange {
    color: #ff6a00;
  }

  .rs-section-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--rs-black);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
  }

  @media only screen and (max-width: 991px) {
    .rs-about-twelve .rs-about-thumb {
      width: 100%;
      height: 100%;
      margin-bottom: 30px;
    }
  }

  @media only screen and (max-width: 991px) {
    .rs-about-twelve .rs-about-content {
      margin-inline-start: 0px;
      margin-top: 0px;
    }

    .rs-section-title {
      font-size: 28px;
    }

    .content .service- {
      padding-top: 50px !important;
    }

    .service-details {
      padding: 80px 0 !important;
    }

    .services-sticky {
      width: 100% !important;
    }
  }

  .fs_111 {
    font-size: 14px;
  }

  .table-bordered>:not(caption)>* {
    border-color: #ccc !important;
  }




  :root {
    --orange_01: #ff6a00;
    --orange-light_01: #f0734020;
    --bg_01: #f5f5f5;
    --dark_01: #1e1e1e;
    --text-muted_01: #666;
    --card-bg_01: #ffffff;
    --border_01: #e0e0e0;
  }

  .impact-section {
    padding: 200px 0 130px;
    background: #fff;
  }

  /* Top nav row */
  .section-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted_01);
    border-bottom: 1px solid var(--border_01);
    padding-bottom: 16px;
    margin-bottom: 48px;
  }

  .section-nav .bracket {
    color: var(--dark_01);
  }

  /* Hero row */
  .impact-hero {
    /* display: flex;
      align-items: flex-start; */
    /* gap: 60px; */
    margin-bottom: 64px;
  }

  .impact-title {
    font-size: 50px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    line-height: 1;
    /* letter-spacing: -2px; */
    flex-shrink: 0;
    color: #000;
    max-width: 90%;
    /* text-transform: uppercase; */
  }

  .impact-title .dot_01 {
    color: var(--orange_01);
    border-radius: 50%;
  }

  .impact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 12px;
    max-width: 480px;
  }

  .impact-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .impact-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
    border-left: 3px solid var(--orange_01);
    padding-left: 20px;
  }

  .impact-desc strong {
    font-weight: 700;
    color: var(--dark);
  }

  .impact-body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
  }

  .impact-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange_01);
    margin-bottom: 4px;
  }

  .impact-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
  }

  .impact-desc strong {
    font-weight: 700;
    color: var(--dark_01);
  }

  .impact-body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted_01);
  }

  .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange_01);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: gap 0.2s;
  }

  .learn-more:hover {
    gap: 16px;
  }

  .learn-more .arrow {
    font-size: 18px;
  }

  /* Stat cards */
  .stat-card {
    background: var(--card-bg_01);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* box-shadow: 0 2px 12px rgba(0,0,0,0.06); */
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .stat-label {
    font-size: 16px;
    font-weight: 600;
    /* letter-spacing: 0.15em; */
    /* text-transform: uppercase; */
    color: #000000;
    margin-bottom: 40px;
  }

  .stat-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border_01);
    padding-bottom: 20px;
    margin-bottom: 16px;
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    color: #999;
  }

  .stat-number {
    font-size: 55px;
    font-weight: 600;
    line-height: 1;
    /* letter-spacing: -2px; */
    color: var(--dark_01);
  }

  .stat-number .stat-plus {
    font-size: 0.55em;
    color: var(--orange_01);
    vertical-align: super;
  }

  .stat-orange-bar {
    width: 32px;
    height: 3px;
    background: var(--orange_01);
    margin-bottom: 12px;
  }

  .stat-desc {
    font-size: 13px;
    color: var(--text-muted_01);
    line-height: 1.5;
  }

  @media (max-width: 991px) {
    .impact-hero {
      flex-direction: column;
      gap: 32px;
    }

    .impact-right {
      max-width: 100%;
    }
  }

  @media (max-width:600px) {
    .ms-wrapper {
      margin-top: 0px !important;
      background: #fff !important
    }

    .ms-heading {
      color: #000;
    }

    .ms-text {
      color: #000;
    }

    .expertise {
      padding: 30px 0 !important;
    }

    .impact-title {
      font-size: 30px !important;
    }

    .rs-about-area.section-space::before {
      background: linear-gradient(to top, rgb(14 14 14) 60%, transparent 60%) !important;
    }
  }

  .expertise {
    padding: 100px 0;
  }

  .section-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0px;
    border-bottom: 1px solid #ddd;
  }

  .section-topbar span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
  }

  /* ── Header row ── */
  .section-header {
    padding: 48px 0px 32px;
    /* display: flex; */
    /* align-items: center; */
  }

  .title-col {
    flex: 0 0 42%;
  }

  .section-header h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    /* letter-spacing: -2px; */
    color: #111;
    /* text-transform: uppercase; */

  }

  .section-header h1 span {
    color: #ff6a00;
  }

  .desc-col {
    flex: 0 0 32%;
    border-left: 3px solid #ff6a00;
    padding-left: 28px;
    margin-left: 48px;
  }

  .desc-col p {
    font-size: 17px;
    line-height: 1.6;
    color: #222;
  }

  .nav-col {
    margin-left: auto;
    display: flex;
    gap: 12px;
  }

  .nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #aaa;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: background 0.2s, border-color 0.2s;
  }

  .nav-btn:hover {
    background: #ff6a00;
    border-color: #ff6a00;
  }

  /* ── Swiper ── */
  .swiper-outer {
    /* padding: 60px 48px; */
    overflow: hidden;
  }

  .expertise .swiper {
    overflow: hidden !important;
  }

  .expertise .swiper-slide {
    display: flex;
    height: 450px;
    /* gap: 8px; */
    opacity: 0.45;
    transition: opacity 0.4s;
    border-radius: 10px !important;
    overflow: hidden;
  }

  .expertise .swiper-slide-active {
    opacity: 1;
  }

  .expertise .swiper-slide-next {
    opacity: 0.85;
  }

  /* Yellow info card */
  .proj-card {
    position: relative;
    background: #ff6a00;
    flex: 0 0 55%;
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .card-tag {
    border: 1.5px solid #333;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
  }

  .card-desc {
    font-size: 16px !important;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 14px;
    position: relative;
    z-index: 2;
    max-width: 88%;
  }

  .card-number {
    position: absolute;
    bottom: -18px;
    left: 16px;
    font-size: 170px;
    font-weight: 900;
    color: rgb(255 255 255 / 18%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    position: relative;
    z-index: 2;
  }

  .card-title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    max-width: 72%;
  }

  .card-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #333;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .card-arrow:hover {
    background: #ff6a00;
  }

  /* Photo panel */
  .proj-photo {
    flex: 1;
    overflow: hidden;
  }

  .proj-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
  }

  .swiper-slide-active .proj-photo img {
    transform: scale(1.04);
  }

  /* ── Bottom bar ── */
  .section-footer {
    padding: 32px 48px;
    text-align: center;
    font-size: 15px;
    color: #333;
    position: relative;
  }

  .section-footer a {
    font-weight: 700;
    color: #111;
    text-decoration: none;
  }

  .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ff6a00;
    border-radius: 50%;
    margin-left: 10px;
    font-size: 16px;
    color: #ffffff !important;
    vertical-align: middle;
    text-decoration: none;
  }

  /* .ms-slide .d-flex{
      flex-direction: column;
    }
    .d-flex .ms-slide--text , .d-flex .thumbanilms{
      width: 100%;
    } */


  .posab {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* optional */
    z-index: 2;
  }

  .post-box {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }

  .borderra {
    position: relative;
    border-radius: 10px !important;
    overflow: hidden;
  }

  .servimage {
    width: 100%;
    height: 500px;
    object-fit: cover;
    /* border-radius: 20px; */
  }

  .certificateSlider {
    padding-top: 70px;
  }

  .certificateImage {
    width: 100%;
    /* height: 370px !important; */
    object-fit: cover;
    border-radius: 10px !important;
  }

  .project-image {
    background-color: #00000061;
    /* border-radius: 20px; */
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
  }

  .project-image {
    background-color: #00000023;
    /* border-radius: 20px; */
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    inset: 0;
  }

  .mean__menu-wrapper {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-radius: 100px;
  }

  .header-main .main-menu ul {
    width: max-content;
    margin: 0 auto;
    /* center menu items */
    display: flex;
    gap: 30px;
    /* optional spacing */
    background-color: #0000004f;
    backdrop-filter: blur(10px);
    padding: 0 40px;
    border-radius: 50px;
  }



  .rs-about-area.section-space::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(14 14 14) 40%, transparent 40%);
    z-index: 0;
  }

  .contact-info-area .contact-info-items {
    margin-top: 10px;
  }

  .contact-info-items {
    padding: 10px;
  }

  .ContactTitle {
    color: #000;
  }

  .contact-info-items a {
    color: #888888;
  }

  .contact-info-items .icon {
    font-size: 16px;
    padding-bottom: 10px;
    color: #ff6a00;
  }

  .rs-about-area .col-xl-6.col-lg-6 {
    padding-right: 0px;
    padding-left: 0px;
  }

  .fixedArea {
    position: fixed;
    bottom: 13%;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px 00px 0px 10px;
    /* overflow: hidden; */
    background: #262626;
  }

  .fixedArea .icon a {
    color: #fff;
    /* color: #7c7a7a; */
  }

  .fixedArea .icon {
    /* padding: 15px 20px !important; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #7c7a7a; */
  }

  h5.text-dark {
    font-weight: 700;
  }

  @media (max-width:600px) {
    .ms-heading {
      font-size: 30px !important;
    }

    .stat-card {
      padding: 10px !important;
    }

    .stat-inner {
      padding-bottom: 10px;
      margin-bottom: 8px;
    }

    .stat-number {
      font-size: 30px !important
    }

    .mining-content-header {
      margin-bottom: 10px !important;
    }

    .contentGrid {
      gap: 15px;
      padding: 20px 0px;
    }

    .section-title h2,
    .services-heading,
    .ms-heading_01 {
      font-size: 29px;
    }

    .ms-wrapper_01 {
      padding-top: 80px !important;
    }

    .ms-heading_01 {
      padding-bottom: 10px !important;
    }

    .rs-about-area .col-xl-6.col-lg-6 {
      margin-top: 0px !important
    }

    .hero-2 .hero-content h5 {
      max-width: fit-content !important;
    }

    .feature-style-one [class*=col-md]:nth-child(1) {
      border-top-left-radius: 0px !important;
      border-bottom-left-radius: 0px;
    }

    .rs-about-twelve .rs-about-content.chil {
      padding-right: 30px !important;
      padding-left: 30px !important;
    }

    .rs-about-twelve .rs-about-content {
      padding-right: 30px !important;
    }
  }

  .ms-wrapper_01 .ms-links a:hover {
    color: #000 !important;
    border-color: #000 !important;
  }

  .hero-image {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    /* Adjust height as needed */
    display: flex;
    align-items: center;
  }

  .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    /* Puts video behind content */
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Ensures video fills the area without stretching */
  }

  /* Brochure Download Button Styles */
  .brochure-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff7a18 0%, #e65100 100%);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 3px 12px rgba(255, 106, 0, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
    line-height: 1.2;
    z-index: 10;
  }

  .brochure-btn:hover {
    background: linear-gradient(135deg, #ff8c37 0%, #f45d07 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(255, 106, 0, 0.5);
  }

  .brochure-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
  }

  .brochure-btn:hover i {
    transform: translateY(2px);
  }

  .header-1 .mega-menu-wrapper .header-main .header-right {
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .offcanvas__contact .brochure-btn-offcanvas {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 18px;
    font-size: 14px;
  }

  @media (max-width: 991px) {
    .brochure-btn {
      padding: 6px 12px;
      font-size: 12px;
    }
  }

  @media (max-width: 767.98px) {
    .header-right > .brochure-btn,
    .header-right .brochure-btn {
      display: none !important;
    }

    .header__hamburger,
    .header__hamburger .sidebar__toggle,
    .header__hamburger .sidebar__toggle a {
      display: inline-flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    .offcanvas__contact .brochure-btn-offcanvas {
      display: inline-flex !important;
    }
  }