  @import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&amp;family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap");
  @import url("tm-bs-mp.css");
  @import url("tm-utility-classes.css");
  :root {
    --font-title: "Urbanist", sans-serif;
    --font-body: "Mulish", sans-serif;
    --theme-color1: #0C2C4F;
    --theme-color2: #4b535d;
    --text-color1: #ffffff;
    --text-color2: #ffffff;
    --main-bg: #ffffff;
    --sub-bg: #f5f5f5;
    --sub-bg2: #f7f8fd;
    --sub-bg-dark: #141e29;
    --heading-color: #0C2C4F;
    --paragraph: #4b535d;
    --paragraph-dark: #b8bfc5;
    --paragraph-light: #c4c4c4;
    --span: #4b535d;
    --border: #0000001a;
    --border2: #00000033;
    --border-light: #ffffff33;
    --white: #ffffff;
    --black: #0C2C4F;
    --black0: #000000;
    --transition: all 0.3s;
    --shadow: 0px 4px 30px 0px #0000000d;
  }
  
  :root[data-theme=dark] {
    --theme-color1: #ffffff;
    --theme-color2: #4b535d;
    --text-color1: #ffffff;
    --text-color2: #ffffff;
    --main-bg: #131b24;
    --sub-bg: #16202b;
    --sub-bg2: #16202b;
    --sub-bg-dark: #141e29;
    --heading-color: #ffffff;
    --paragraph: #c4c4c4;
    --paragraph-dark: #c4c4c4;
    --paragraph-light: #0000001a;
    --span: #c4c4c4;
    --border: #ffffff1a;
    --border2: #ffffff33;
    --border-light: #ffffff33;
    --white: #131b24;
    --black: #ffffff;
    --black0: #000000;
  }
  
  :root[data-theme=dark] .light-area {
    --theme-color1: #0C2C4F;
    --theme-color2: #4b535d;
    --text-color1: #ffffff;
    --text-color2: #ffffff;
    --main-bg: #ffffff;
    --sub-bg: #f5f5f5;
    --sub-bg2: #f7f8fd;
    --sub-bg-dark: #141e29;
    --heading-color: #0C2C4F;
    --paragraph: #4b535d;
    --paragraph-dark: #b8bfc5;
    --paragraph-light: #c4c4c4;
    --span: #4b535d;
    --border: #0000001a;
    --border2: #00000033;
    --border-light: #ffffff33;
    --white: #ffffff;
    --black: #0C2C4F;
    --black0: #000000;
  }
  
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
  }
  
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--paragraph);
    background-color: var(--main-bg);
    line-height: 28px;
    font-weight: 400;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
    color: var(--heading-color);
    font-family: var(--font-title);
  }
  
  h1 {
    font-size: 62px;
    font-weight: 500;
    line-height: 66px;
  }
  @media (max-width: 767px) {
    h1 {
      font-size: 40px;
      line-height: 50px;
    }
  }
  
  h2 {
    font-size: 44px;
    font-weight: 500;
    line-height: 58px;
  }
  @media (max-width: 767px) {
    h2 {
      font-size: 30px;
      line-height: 40px;
    }
  }
  
  h3 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
  }
  @media (max-width: 767px) {
    h3 {
      font-size: 20px;
      line-height: 30px;
    }
  }
  
  h4 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 500;
  }
  @media (max-width: 767px) {
    h4 {
      font-size: 18px;
      line-height: 26px;
    }
  }
  
  h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
  }
  
  h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
  }
  
  p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 30px;
    color: var(--paragraph);
  }
  
  span {
    display: inline-block;
    color: var(--span);
  }
  
  .splt-txt span {
    color: unset;
  }
  
  a {
    font-family: var(--font-title);
    text-decoration: none;
    display: inline-block;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
  }
  
  li {
    list-style: none;
  }
  
  button {
    border: none;
    box-shadow: none;
    background-color: transparent;
  }
  
  figure {
    margin: 0;
  }
  
  @media (max-width: 1399px) {
    br {
      display: none;
    }
  }
  
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border: 1px solid transparent;
    background-clip: content-box;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
  }
  
  ::placeholder {
    color: var(--span);
    font-size: 16px;
  }
  
  .mt-5 {
    margin-top: 5px;
  }
  
  .mt-10 {
    margin-top: 10px;
  }
  
  .mt-15 {
    margin-top: 15px;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mt-25 {
    margin-top: 25px;
  }
  
  .mt-30 {
    margin-top: 30px;
  }
  
  .mt-35 {
    margin-top: 35px;
  }
  
  .mt-40 {
    margin-top: 40px;
  }
  
  .mt-45 {
    margin-top: 45px;
  }
  
  .mt-50 {
    margin-top: 50px;
  }
  
  .mt-55 {
    margin-top: 55px;
  }
  
  .mt-60 {
    margin-top: 60px;
  }
  
  .mt-65 {
    margin-top: 65px;
  }
  
  .mt-70 {
    margin-top: 70px;
  }
  
  .mt-75 {
    margin-top: 75px;
  }
  
  .mt-80 {
    margin-top: 80px;
  }
  
  .mt-85 {
    margin-top: 85px;
  }
  
  .mt-90 {
    margin-top: 90px;
  }
  
  .mt-95 {
    margin-top: 95px;
  }
  
  .mt-100 {
    margin-top: 100px;
  }
  
  .mt-105 {
    margin-top: 105px;
  }
  
  .mt-110 {
    margin-top: 110px;
  }
  
  .mt-115 {
    margin-top: 115px;
  }
  
  .mt-120 {
    margin-top: 120px;
  }
  
  .mt-125 {
    margin-top: 125px;
  }
  
  .mt-130 {
    margin-top: 130px;
  }
  
  .mt-135 {
    margin-top: 135px;
  }
  
  .mt-140 {
    margin-top: 140px;
  }
  
  .mt-145 {
    margin-top: 145px;
  }
  
  .mt-150 {
    margin-top: 150px;
  }
  
  .mt-155 {
    margin-top: 155px;
  }
  
  .mt-160 {
    margin-top: 160px;
  }
  
  .mt-165 {
    margin-top: 165px;
  }
  
  .mt-170 {
    margin-top: 170px;
  }
  
  .mt-175 {
    margin-top: 175px;
  }
  
  .mt-180 {
    margin-top: 180px;
  }
  
  .mt-185 {
    margin-top: 185px;
  }
  
  .mt-190 {
    margin-top: 190px;
  }
  
  .mt-195 {
    margin-top: 195px;
  }
  
  .mt-200 {
    margin-top: 200px;
  }
  
  /*-- Margin Bottom --*/
  .mb-5 {
    margin-bottom: 5px;
  }
  
  .mb-10 {
    margin-bottom: 10px;
  }
  
  .mb-15 {
    margin-bottom: 15px;
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }
  
  .mb-25 {
    margin-bottom: 25px;
  }
  
  .mb-30 {
    margin-bottom: 30px;
  }
  
  .mb-35 {
    margin-bottom: 35px;
  }
  
  .mb-40 {
    margin-bottom: 40px;
  }
  
  .mb-45 {
    margin-bottom: 45px;
  }
  
  .mb-50 {
    margin-bottom: 50px;
  }
  
  .mb-55 {
    margin-bottom: 55px;
  }
  
  .mb-60 {
    margin-bottom: 60px;
  }
  
  .mb-65 {
    margin-bottom: 65px;
  }
  
  .mb-70 {
    margin-bottom: 70px;
  }
  
  .mb-75 {
    margin-bottom: 75px;
  }
  
  .mb-80 {
    margin-bottom: 80px;
  }
  
  .mb-85 {
    margin-bottom: 85px;
  }
  
  .mb-90 {
    margin-bottom: 90px;
  }
  
  .mb-95 {
    margin-bottom: 95px;
  }
  
  .mb-100 {
    margin-bottom: 100px;
  }
  
  .mb-105 {
    margin-bottom: 105px;
  }
  
  .mb-110 {
    margin-bottom: 110px;
  }
  
  .mb-115 {
    margin-bottom: 115px;
  }
  
  .mb-120 {
    margin-bottom: 120px;
  }
  
  .mb-125 {
    margin-bottom: 125px;
  }
  
  .mb-130 {
    margin-bottom: 130px;
  }
  
  .mb-135 {
    margin-bottom: 135px;
  }
  
  .mb-140 {
    margin-bottom: 140px;
  }
  
  .mb-145 {
    margin-bottom: 145px;
  }
  
  .mb-150 {
    margin-bottom: 150px;
  }
  
  .mb-155 {
    margin-bottom: 155px;
  }
  
  .mb-160 {
    margin-bottom: 160px;
  }
  
  .mb-165 {
    margin-bottom: 165px;
  }
  
  .mb-170 {
    margin-bottom: 170px;
  }
  
  .mb-175 {
    margin-bottom: 175px;
  }
  
  .mb-180 {
    margin-bottom: 180px;
  }
  
  .mb-185 {
    margin-bottom: 185px;
  }
  
  .mb-190 {
    margin-bottom: 190px;
  }
  
  .mb-195 {
    margin-bottom: 195px;
  }
  
  .mb-200 {
    margin-bottom: 200px;
  }
  
  .ml-5 {
    margin-left: 5px;
  }
  
  .ml-10 {
    margin-left: 10px;
  }
  
  .ml-15 {
    margin-left: 15px;
  }
  
  .ml-20 {
    margin-left: 20px;
  }
  
  .ml-25 {
    margin-left: 25px;
  }
  
  .ml-30 {
    margin-left: 30px;
  }
  
  .ml-35 {
    margin-left: 35px;
  }
  
  .ml-40 {
    margin-left: 40px;
  }
  
  .ml-45 {
    margin-left: 45px;
  }
  
  .ml-50 {
    margin-left: 50px;
  }
  
  .ml-55 {
    margin-left: 55px;
  }
  
  .ml-60 {
    margin-left: 60px;
  }
  
  .ml-65 {
    margin-left: 65px;
  }
  
  .ml-70 {
    margin-left: 70px;
  }
  
  .ml-75 {
    margin-left: 75px;
  }
  
  .ml-80 {
    margin-left: 80px;
  }
  
  .ml-85 {
    margin-left: 85px;
  }
  
  .ml-90 {
    margin-left: 90px;
  }
  
  .ml-95 {
    margin-left: 95px;
  }
  
  .ml-100 {
    margin-left: 100px;
  }
  
  .ml-105 {
    margin-left: 105px;
  }
  
  .ml-110 {
    margin-left: 110px;
  }
  
  .ml-115 {
    margin-left: 115px;
  }
  
  .ml-120 {
    margin-left: 120px;
  }
  
  .ml-125 {
    margin-left: 125px;
  }
  
  .ml-130 {
    margin-left: 130px;
  }
  
  .ml-135 {
    margin-left: 135px;
  }
  
  .ml-140 {
    margin-left: 140px;
  }
  
  .ml-145 {
    margin-left: 145px;
  }
  
  .ml-150 {
    margin-left: 150px;
  }
  
  .ml-155 {
    margin-left: 155px;
  }
  
  .ml-160 {
    margin-left: 160px;
  }
  
  .ml-165 {
    margin-left: 165px;
  }
  
  .ml-170 {
    margin-left: 170px;
  }
  
  .ml-175 {
    margin-left: 175px;
  }
  
  .ml-180 {
    margin-left: 180px;
  }
  
  .ml-185 {
    margin-left: 185px;
  }
  
  .ml-190 {
    margin-left: 190px;
  }
  
  .ml-195 {
    margin-left: 195px;
  }
  
  .ml-200 {
    margin-left: 200px;
  }
  
  .mr-5 {
    margin-right: 5px;
  }
  
  .mr-10 {
    margin-right: 10px;
  }
  
  .mr-15 {
    margin-right: 15px;
  }
  
  .mr-20 {
    margin-right: 20px;
  }
  
  .mr-25 {
    margin-right: 25px;
  }
  
  .mr-30 {
    margin-right: 30px;
  }
  
  .mr-35 {
    margin-right: 35px;
  }
  
  .mr-40 {
    margin-right: 40px;
  }
  
  .mr-45 {
    margin-right: 45px;
  }
  
  .mr-50 {
    margin-right: 50px;
  }
  
  .mr-55 {
    margin-right: 55px;
  }
  
  .mr-60 {
    margin-right: 60px;
  }
  
  .mr-65 {
    margin-right: 65px;
  }
  
  .mr-70 {
    margin-right: 70px;
  }
  
  .mr-75 {
    margin-right: 75px;
  }
  
  .mr-80 {
    margin-right: 80px;
  }
  
  .mr-85 {
    margin-right: 85px;
  }
  
  .mr-90 {
    margin-right: 90px;
  }
  
  .mr-95 {
    margin-right: 95px;
  }
  
  .mr-100 {
    margin-right: 100px;
  }
  
  .mr-105 {
    margin-right: 105px;
  }
  
  .mr-110 {
    margin-right: 110px;
  }
  
  .mr-115 {
    margin-right: 115px;
  }
  
  .mr-120 {
    margin-right: 120px;
  }
  
  .mr-125 {
    margin-right: 125px;
  }
  
  .mr-130 {
    margin-right: 130px;
  }
  
  .mr-135 {
    margin-right: 135px;
  }
  
  .mr-140 {
    margin-right: 140px;
  }
  
  .mr-145 {
    margin-right: 145px;
  }
  
  .mr-150 {
    margin-right: 150px;
  }
  
  .mr-155 {
    margin-right: 155px;
  }
  
  .mr-160 {
    margin-right: 160px;
  }
  
  .mr-165 {
    margin-right: 165px;
  }
  
  .mr-170 {
    margin-right: 170px;
  }
  
  .mr-175 {
    margin-right: 175px;
  }
  
  .mr-180 {
    margin-right: 180px;
  }
  
  .mr-185 {
    margin-right: 185px;
  }
  
  .mr-190 {
    margin-right: 190px;
  }
  
  .mr-195 {
    margin-right: 195px;
  }
  
  .mr-200 {
    margin-right: 200px;
  }
  
  .pt-5 {
    padding-top: 5px;
  }
  
  .pt-10 {
    padding-top: 10px;
  }
  
  .pt-15 {
    padding-top: 15px;
  }
  
  .pt-20 {
    padding-top: 20px;
  }
  
  .pt-25 {
    padding-top: 25px;
  }
  
  .pt-30 {
    padding-top: 30px;
  }
  
  .pt-35 {
    padding-top: 35px;
  }
  
  .pt-40 {
    padding-top: 40px;
  }
  
  .pt-45 {
    padding-top: 45px;
  }
  
  .pt-50 {
    padding-top: 50px;
  }
  
  .pt-55 {
    padding-top: 55px;
  }
  
  .pt-60 {
    padding-top: 60px;
  }
  
  .pt-65 {
    padding-top: 65px;
  }
  
  .pt-70 {
    padding-top: 70px;
  }
  
  .pt-75 {
    padding-top: 75px;
  }
  
  .pt-80 {
    padding-top: 80px;
  }
  
  .pt-85 {
    padding-top: 85px;
  }
  
  .pt-90 {
    padding-top: 90px;
  }
  
  .pt-95 {
    padding-top: 95px;
  }
  
  .pt-100 {
    padding-top: 100px;
  }
  
  .pt-105 {
    padding-top: 105px;
  }
  
  .pt-110 {
    padding-top: 110px;
  }
  
  .pt-115 {
    padding-top: 115px;
  }
  
  .pt-120 {
    padding-top: 120px;
  }
  
  .pt-125 {
    padding-top: 125px;
  }
  
  .pt-130 {
    padding-top: 130px;
  }
  
  .pt-135 {
    padding-top: 135px;
  }
  
  .pt-140 {
    padding-top: 140px;
  }
  
  .pt-145 {
    padding-top: 145px;
  }
  
  .pt-150 {
    padding-top: 150px;
  }
  
  .pt-155 {
    padding-top: 155px;
  }
  
  .pt-160 {
    padding-top: 160px;
  }
  
  .pt-165 {
    padding-top: 165px;
  }
  
  .pt-170 {
    padding-top: 170px;
  }
  
  .pt-175 {
    padding-top: 175px;
  }
  
  .pt-180 {
    padding-top: 180px;
  }
  
  .pt-185 {
    padding-top: 185px;
  }
  
  .pt-190 {
    padding-top: 190px;
  }
  
  .pt-195 {
    padding-top: 195px;
  }
  
  .pt-200 {
    padding-top: 200px;
  }
  
  .pb-5 {
    padding-bottom: 5px;
  }
  
  .pb-10 {
    padding-bottom: 10px;
  }
  
  .pb-15 {
    padding-bottom: 15px;
  }
  
  .pb-20 {
    padding-bottom: 20px;
  }
  
  .pb-25 {
    padding-bottom: 25px;
  }
  
  .pb-30 {
    padding-bottom: 30px;
  }
  
  .pb-35 {
    padding-bottom: 35px;
  }
  
  .pb-40 {
    padding-bottom: 40px;
  }
  
  .pb-45 {
    padding-bottom: 45px;
  }
  
  .pb-50 {
    padding-bottom: 50px;
  }
  
  .pb-55 {
    padding-bottom: 55px;
  }
  
  .pb-60 {
    padding-bottom: 60px;
  }
  
  .pb-65 {
    padding-bottom: 65px;
  }
  
  .pb-70 {
    padding-bottom: 70px;
  }
  
  .pb-75 {
    padding-bottom: 75px;
  }
  
  .pb-80 {
    padding-bottom: 80px;
  }
  
  .pb-85 {
    padding-bottom: 85px;
  }
  
  .pb-90 {
    padding-bottom: 90px;
  }
  
  .pb-95 {
    padding-bottom: 95px;
  }
  
  .pb-100 {
    padding-bottom: 100px;
  }
  
  .pb-105 {
    padding-bottom: 105px;
  }
  
  .pb-110 {
    padding-bottom: 110px;
  }
  
  .pb-115 {
    padding-bottom: 115px;
  }
  
  .pb-120 {
    padding-bottom: 120px;
  }
  
  .pb-125 {
    padding-bottom: 125px;
  }
  
  .pb-130 {
    padding-bottom: 130px;
  }
  
  .pb-135 {
    padding-bottom: 135px;
  }
  
  .pb-140 {
    padding-bottom: 140px;
  }
  
  .pb-145 {
    padding-bottom: 145px;
  }
  
  .pb-150 {
    padding-bottom: 150px;
  }
  
  .pb-155 {
    padding-bottom: 155px;
  }
  
  .pb-160 {
    padding-bottom: 160px;
  }
  
  .pb-165 {
    padding-bottom: 165px;
  }
  
  .pb-170 {
    padding-bottom: 170px;
  }
  
  .pb-175 {
    padding-bottom: 175px;
  }
  
  .pb-180 {
    padding-bottom: 180px;
  }
  
  .pb-185 {
    padding-bottom: 185px;
  }
  
  .pb-190 {
    padding-bottom: 190px;
  }
  
  .pb-195 {
    padding-bottom: 195px;
  }
  
  .pb-200 {
    padding-bottom: 200px;
  }
  
  .pl-5 {
    padding-left: 5px;
  }
  
  .pl-10 {
    padding-left: 10px;
  }
  
  .pl-15 {
    padding-left: 15px;
  }
  
  .pl-20 {
    padding-left: 20px;
  }
  
  .pl-25 {
    padding-left: 25px;
  }
  
  .pl-30 {
    padding-left: 30px;
  }
  
  .pl-35 {
    padding-left: 35px;
  }
  
  .pl-40 {
    padding-left: 40px;
  }
  
  .pl-45 {
    padding-left: 45px;
  }
  
  .pl-50 {
    padding-left: 50px;
  }
  
  .pl-55 {
    padding-left: 55px;
  }
  
  .pl-60 {
    padding-left: 60px;
  }
  
  .pl-65 {
    padding-left: 65px;
  }
  
  .pl-70 {
    padding-left: 70px;
  }
  
  .pl-75 {
    padding-left: 75px;
  }
  
  .pl-80 {
    padding-left: 80px;
  }
  
  .pl-85 {
    padding-left: 85px;
  }
  
  .pl-90 {
    padding-left: 90px;
  }
  
  .pl-95 {
    padding-left: 95px;
  }
  
  .pl-100 {
    padding-left: 100px;
  }
  
  .pl-105 {
    padding-left: 105px;
  }
  
  .pl-110 {
    padding-left: 110px;
  }
  
  .pl-115 {
    padding-left: 115px;
  }
  
  .pl-120 {
    padding-left: 120px;
  }
  
  .pl-125 {
    padding-left: 125px;
  }
  
  .pl-130 {
    padding-left: 130px;
  }
  
  .pl-135 {
    padding-left: 135px;
  }
  
  .pl-140 {
    padding-left: 140px;
  }
  
  .pl-145 {
    padding-left: 145px;
  }
  
  .pl-150 {
    padding-left: 150px;
  }
  
  .pl-155 {
    padding-left: 155px;
  }
  
  .pl-160 {
    padding-left: 160px;
  }
  
  .pl-165 {
    padding-left: 165px;
  }
  
  .pl-170 {
    padding-left: 170px;
  }
  
  .pl-175 {
    padding-left: 175px;
  }
  
  .pl-180 {
    padding-left: 180px;
  }
  
  .pl-185 {
    padding-left: 185px;
  }
  
  .pl-190 {
    padding-left: 190px;
  }
  
  .pl-195 {
    padding-left: 195px;
  }
  
  .pl-200 {
    padding-left: 200px;
  }
  
  .pr-5 {
    padding-right: 5px;
  }
  
  .pr-10 {
    padding-right: 10px;
  }
  
  .pr-15 {
    padding-right: 15px;
  }
  
  .pr-20 {
    padding-right: 20px;
  }
  
  .pr-25 {
    padding-right: 25px;
  }
  
  .pr-30 {
    padding-right: 30px;
  }
  
  .pr-35 {
    padding-right: 35px;
  }
  
  .pr-40 {
    padding-right: 40px;
  }
  
  .pr-45 {
    padding-right: 45px;
  }
  
  .pr-50 {
    padding-right: 50px;
  }
  
  .pr-55 {
    padding-right: 55px;
  }
  
  .pr-60 {
    padding-right: 60px;
  }
  
  .pr-65 {
    padding-right: 65px;
  }
  
  .pr-70 {
    padding-right: 70px;
  }
  
  .pr-75 {
    padding-right: 75px;
  }
  
  .pr-80 {
    padding-right: 80px;
  }
  
  .pr-85 {
    padding-right: 85px;
  }
  
  .pr-90 {
    padding-right: 90px;
  }
  
  .pr-95 {
    padding-right: 95px;
  }
  
  .pr-100 {
    padding-right: 100px;
  }
  
  .pr-105 {
    padding-right: 105px;
  }
  
  .pr-110 {
    padding-right: 110px;
  }
  
  .pr-115 {
    padding-right: 115px;
  }
  
  .pr-120 {
    padding-right: 120px;
  }
  
  .pr-125 {
    padding-right: 125px;
  }
  
  .pr-130 {
    padding-right: 130px;
  }
  
  .pr-135 {
    padding-right: 135px;
  }
  
  .pr-140 {
    padding-right: 140px;
  }
  
  .pr-145 {
    padding-right: 145px;
  }
  
  .pr-150 {
    padding-right: 150px;
  }
  
  .pr-155 {
    padding-right: 155px;
  }
  
  .pr-160 {
    padding-right: 160px;
  }
  
  .pr-165 {
    padding-right: 165px;
  }
  
  .pr-170 {
    padding-right: 170px;
  }
  
  .pr-175 {
    padding-right: 175px;
  }
  
  .pr-180 {
    padding-right: 180px;
  }
  
  .pr-185 {
    padding-right: 185px;
  }
  
  .pr-190 {
    padding-right: 190px;
  }
  
  .pr-195 {
    padding-right: 195px;
  }
  
  .pr-200 {
    padding-right: 200px;
  }
  
  @media (min-width: 1400px) {
    .container {
      max-width: 1784px;
    }
  }
  @media (max-width: 767px) {
    .pt-130 {
      padding-top: 60px;
    }
    .pb-130 {
      padding-bottom: 60px;
    }
    .mt-130 {
      margin-top: 60px;
    }
    .mb-130 {
      margin-bottom: 60px;
    }
    .pt-100 {
      padding-top: 50px;
    }
    .pb-100 {
      padding-bottom: 50px;
    }
    .mt-100 {
      margin-top: 50px;
    }
    .mb-100 {
      margin-bottom: 50px;
    }
    .pt-80 {
      padding-top: 40px;
    }
    .pb-80 {
      padding-bottom: 40px;
    }
    .mt-80 {
      margin-top: 40px;
    }
    .mb-80 {
      margin-bottom: 40px;
    }
    .pt-50 {
      padding-top: 25px;
    }
    .pb-50 {
      padding-bottom: 25px;
    }
    .pt-60 {
      padding-top: 30px;
    }
    .pb-60 {
      padding-bottom: 30px;
    }
    .mt-50 {
      margin-top: 25px;
    }
    .mb-50 {
      margin-bottom: 25px;
    }
    .mt-60 {
      margin-top: 30px;
    }
    .mb-60 {
      margin-bottom: 30px;
    }
  }
  .bor {
    border: 1px solid var(--border);
  }
  
  .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);
  }
  
  .text-justify {
    text-align: justify;
  }
  
  .image img {
    width: 100%;
  }
  
  .color-one {
    color: var(--theme-color1) !important;
  }
  .color-two {
    color: var(--theme-color2) !important;
  }
  .color-dark {
    color: var(--black) !important;
  }
  .color-light {
    color: var(--white) !important;
  }
  
  .bg-one {
    background-color: var(--theme-color1) !important;
  }
  .bg-two {
    background-color: var(--theme-color2) !important;
  }
  .bg-dark {
    background-color: var(--black) !important;
  }
  .bg-sub {
    background-color: var(--sub-bg) !important;
  }
  .bg-sub-dark {
    background-color: #16202b !important;
  }
  .bg-border-dark {
    background-color: var(--border-light) !important;
  }
  .bg-transparent {
    background-color: transparent !important;
  }
  
  .fs-14 {
    font-size: 14px !important;
  }
  
  .fs-16 {
    font-size: 16px !important;
  }
  
  .fs-18 {
    font-size: 18px !important;
  }
  
  .fs-20 {
    font-size: 20px !important;
  }
  
  .fs-22 {
    font-size: 22px !important;
  }
  
  .fs-24 {
    font-size: 24px !important;
  }
  
  .fs-26 {
    font-size: 26px !important;
  }
  
  .fs-28 {
    font-size: 28px !important;
  }
  
  .fs-30 {
    font-size: 30px !important;
  }
  
  .fs-32 {
    font-size: 32px !important;
  }
  
  .fw-300 {
    font-weight: 300 !important;
  }
  
  .fw-400 {
    font-weight: 400 !important;
  }
  
  .fw-500 {
    font-weight: 500 !important;
  }
  
  .fw-600 {
    font-weight: 600 !important;
  }
  
  .fw-700 {
    font-weight: 700 !important;
  }
  
  .title-font {
    font-family: var(--font-title) !important;
  }
  
  .text-font {
    font-family: var(--font-body) !important;
  }
  
  .shadow {
    box-shadow: var(--shadow) !important;
  }
  
  .bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .transition {
    transition: var(--transition);
  }
  
  .hover-link, .hover-link-light {
    position: relative;
  }
  .hover-link::before, .hover-link-light::before {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 0;
    height: 1px;
    content: "";
    background-color: var(--black);
    transition: var(--transition);
  }
  .hover-link:hover::before, .hover-link-light:hover::before {
    right: unset;
    left: 0;
    width: 100%;
  }
  .hover-link-light::before {
    background-color: var(--white);
  }
  
  /*.overlay {
    position: relative;
    z-index: 1;
  }
  .overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  */
  .nice-select {
    width: 100%;
    border-radius: 10px;
    height: 58px;
    line-height: 58px;
    border: 1px solid transparent;
  }
  .nice-select::after {
    display: none;
  }
  .nice-select::before {
    font-family: "Font Awesome 5 pro";
    content: "\f107";
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 15px;
    color: var(--black);
    transition: var(--transition);
  }
  .nice-select.open::before {
    transform: rotate(-180deg);
  }
  .nice-select:focus {
    border: 1px solid var(--border);
  }
  .nice-select .list {
    width: 100%;
  }
  .nice-select .current {
    font-size: 16px;
    color: var(--black);
  }
  
  .star i {
    color: #ffab01;
  }
  .star i.disable {
    color: var(--span);
    opacity: 40%;
  }
  
  .pegi {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  .pegi .next,
  .pegi .prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    color: var(--text-color1);
    font-size: 20px;
  }
  .pegi-dots {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .pegi-dots a {
    width: 10px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: #e9f1ee;
    position: relative;
  }
  .pegi-dots a.active::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    border: 3px solid #256e56;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .swiper__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 2px solid #4b535d;
    margin: 0 5px !important;
  }
  .swiper__dots .swiper-pagination-bullet-active {
    background-color: var(--black);
  }
  
  .accordion .accordion-item {
    border: none;
    border-radius: 0px;
    margin-bottom: 10px;
  }
  .accordion .accordion-item h2 button {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 20px 0px;
  }
  .accordion .accordion-item .accordion-body {
    padding: 20px 0px;
    padding-top: 0;
  }
  .accordion .accordion-button {
    background-color: transparent;
    color: var(--theme-color1);
  }
  .accordion .accordion-button::after {
    display: none;
  }
  .accordion .accordion-button::before {
    position: absolute;
    content: "\f068";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    top: 20px;
    right: 0px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 0px;
    color: var(--theme-color1);
    background-color: var(--sub-bg);
    text-align: center;
    transition: var(--transition);
  }
  .accordion .accordion-button.collapsed {
    background-color: transparent;
    color: var(--theme-color1);
  }
  .accordion .accordion-button.collapsed::before {
    content: "+";
    background-color: var(--sub-bg);
    color: var(--theme-color1);
  }
  
  .section-header h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-header p {
    margin-top: 10px;
  }
  .section-header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }
  .section-header__flex h6 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-header__flex p {
    margin-top: 10px;
  }
  @media (max-width: 991px) {
    .section-header__flex {
      gap: 10px;
      flex-wrap: wrap;
    }
  }
  .section-header__flex p {
    max-width: 480px;
  }
  .section-padding {
    padding: 120px 0;
  }
  .section-margin {
    margin: 120px 0;
  }
  
  :root[data-theme=dark] .section-header h6 {
    color: var(--paragraph);
  }
  
  .splt-txt .whitespace {
    width: 8px;
  }
  .splt-txt.animated .char {
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
  }
  .splt-txt-bounce .whitespace {
    width: 20px;
  }
  @media (max-width: 991px) {
    .splt-txt-bounce .whitespace {
      width: 10px;
    }
  }
  .splt-txt-bounce.animated .char {
    -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
  }
  
  .imageUpToDown {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .imageUpToDown.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .imageDownToUP {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .imageDownToUP.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .imageLeftToRight {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .imageLeftToRight.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .imageRightToLeft {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  .imageRightToLeft.animated {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  @keyframes sway {
    0% {
      transform: translateX(-20px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  .sway__animation {
    animation: sway 3s linear infinite alternate;
  }
  
  @keyframes swayX {
    0% {
      transform: translateX(20px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  .sway__animationX {
    animation: swayX 3s linear infinite alternate;
  }
  
  @keyframes footer__shadow {
    0% {
      margin-left: -200px;
    }
    100% {
      margin-right: -200px;
    }
  }
  @keyframes sway_Y {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(20px);
    }
  }
  .sway_Y__animation {
    animation: sway_Y 3s linear infinite alternate;
  }
  
  @keyframes sway_YY {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(-20px);
    }
  }
  .sway_Y__animationY {
    animation: sway_YY 3s linear infinite alternate;
  }
  
  @-webkit-keyframes sunMove {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    25% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    50% {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
    75% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  @keyframes sunMove {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    25% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    50% {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
    75% {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  .animation__sunMove {
    -webkit-animation: sunMove 10s linear infinite;
    animation: sunMove 10s linear infinite;
  }
  
  @-webkit-keyframes floatBob {
    0% {
      -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
      transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
      transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
      -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
      transform: translateY(0px) translateX(0px) rotate(0deg);
    }
  }
  @keyframes floatBob {
    0% {
      -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
      transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    50% {
      -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
      transform: translateY(10px) translateX(10px) rotate(5deg);
    }
    100% {
      -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
      transform: translateY(0px) translateX(0px) rotate(0deg);
    }
  }
  .animation__floatBob {
    -webkit-animation-name: floatBob;
    animation-name: floatBob;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  
  @keyframes arryUpDown {
    0% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  .animation__arryUpDown {
    animation: arryUpDown 2s ease infinite alternate;
  }
  
  @keyframes arryDownUp {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  .animation__arryDownUp {
    animation: arryDownUp 2s ease infinite alternate;
  }
  
  @keyframes arryLeftRight {
    0% {
      transform: translateX(-10px);
    }
    100% {
      transform: translateX(10px);
    }
  }
  .animation__arryLeftRight {
    animation: arryLeftRight 2s ease infinite alternate;
  }
  
  @keyframes arryRightLeft {
    0% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(-10px);
    }
  }
  .animation__arryRightLeft {
    animation: arryRightLeft 2s ease infinite alternate;
  }
  
  @keyframes pxl_zoom_reverse {
    0% {
      transform: scale(0.8);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.8);
    }
  }
  .pxl-image-zoom {
    animation: pxl_zoom_reverse 5s linear infinite;
  }
  
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(0.6, 0.6);
    }
    50% {
      transform: scale(1, 1);
    }
    100% {
      transform: scale(0.6, 0.6);
    }
  }
  .pxl-image-zoom2 {
    animation: zoom-in-zoom-out 20s linear infinite;
  }
  
  @keyframes pxl_zigzag {
    0%, 100%, 20%, 50%, 80% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      transform: rotate(10deg);
    }
    60% {
      -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
      transform: rotate(-10deg);
    }
  }
  .pxl__zigzag {
    animation: pxl_zigzag 1s ease-out infinite;
    -webkit-animation: pxl_zigzag 1s ease-out infinite;
  }
  
  @keyframes pxl_right_left {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(40px);
    }
    50% {
      transform: translateX(0);
    }
    75% {
      transform: translateX(-40px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .slide-right-to-left {
    animation: pxl_right_left 12s ease-out infinite;
    -webkit-animation: pxl_right_left 12s ease-out infinite;
  }
  
  @keyframes pxl_left_right {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-40px);
    }
    50% {
      transform: translateX(0);
    }
    75% {
      transform: translateX(40px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .slide-left-to-right {
    animation: pxl_left_right 12s ease-out infinite;
    -webkit-animation: pxl_left_right 12s ease-out infinite;
  }
  
  @keyframes pxl_float_two {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-20px);
    }
  }
  .slide-up-down {
    animation: pxl_float_two 2s ease infinite alternate;
  }
  
  @keyframes pxl_bottom_top {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateY(40px);
    }
    50% {
      transform: translateY(0);
    }
    75% {
      transform: translateY(-40px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .slide-bottom-to-top {
    animation: pxl_bottom_top 12s ease-out infinite;
    -webkit-animation: pxl_bottom_top 12s ease-out infinite;
  }
  
  @keyframes pxl_effect1 {
    0% {
      transform: translate(0, 0);
    }
    20% {
      transform: translate(40px, -5px);
    }
    40% {
      transform: translate(60px, 40px);
    }
    60% {
      transform: translate(40px, 60px);
    }
    80% {
      transform: translate(-40px, 60px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .slide-effect1 {
    animation: pxl_effect1 12s ease-out infinite;
    -webkit-animation: pxl_effect1 12s ease-out infinite;
  }
  
  @keyframes pxl_effect2 {
    0% {
      transform: translate(0, 0);
    }
    20% {
      transform: translate(-30px, 40px);
    }
    40% {
      transform: translate(60px, 60px);
    }
    60% {
      transform: translate(70px, 40px);
    }
    80% {
      transform: translate(40px, -70px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .slide-effect2 {
    animation: pxl_effect2 12s ease-out infinite;
    -webkit-animation: pxl_effect2 12s ease-out infinite;
  }
  
  @keyframes pxl_effect3 {
    0% {
      transform: translate(0, 0);
    }
    30% {
      transform: translate(40px, 60px);
    }
    45% {
      transform: translate(80px, 90px);
    }
    65% {
      transform: translate(40px, 110px);
    }
    75% {
      transform: translate(20px, 800px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  .slide-effect3 {
    animation: pxl_effect3 12s ease-out infinite;
    -webkit-animation: pxl_effect3 12s ease-out infinite;
  }
  
  @keyframes pxl_top_bottom {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateY(-40px);
    }
    50% {
      transform: translateY(0);
    }
    75% {
      transform: translateY(40px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .slide-top-to-bottom {
    animation: pxl_top_bottom 12s ease-out infinite;
    -webkit-animation: pxl_top_bottom 12s ease-out infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .animation__rotate {
    animation: rotate 30s linear infinite;
  }
  
  @keyframes rotateY {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
  .animation__rotateY {
    animation: rotateY 30s linear infinite;
  }
  
  @keyframes rotateAndScale {
    0% {
      transform: rotate(0deg) scale(1);
    }
    50% {
      transform: rotate(180deg) scale(0.9);
    }
    100% {
      transform: rotate(360deg) scale(1);
    }
  }
  .animation__rotateAndScale {
    animation: rotateAndScale 10s linear infinite;
  }
  
  @keyframes rotateAndScaleY {
    0% {
      transform: rotate(0deg) scale(1);
    }
    50% {
      transform: rotate(-180deg) scale(0.9);
    }
    100% {
      transform: rotate(-360deg) scale(1);
    }
  }
  .animation__rotateAndScaleY {
    animation: rotateAndScaleY 10s linear infinite;
  }
  
  @keyframes ring-animation {
    from {
      transform: rotate3d(0, 0, 1, 0deg);
    }
    20%, 32%, 44%, 56%, 68% {
      transform: rotate3d(0, 0, 1, 0deg);
    }
    23%, 35%, 47%, 59%, 71% {
      transform: rotate3d(0, 0, 1, 15deg);
    }
    26%, 38%, 50%, 62%, 74% {
      transform: rotate3d(0, 0, 1, 0deg);
    }
    29%, 41%, 53%, 65%, 77% {
      transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }
  .ring__animation {
    animation: ring-animation 1.5s ease-in-out infinite;
  }
  
  @keyframes bobble {
    0% {
      transform: translateY(0) scale(0.9);
    }
    100% {
      transform: translateY(-20px) scale(1);
    }
  }
  .bobble__animation {
    animation: bobble 3s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes video-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      opacity: 0;
      transform: scale(2);
    }
  }
  @keyframes video-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      opacity: 0;
      transform: scale(2);
    }
  }
  @keyframes goAll {
    0% {
      transform: translate(400px, 200px);
      opacity: 30%;
    }
    17% {
      transform: translate(600px, 400px);
      opacity: 40%;
    }
    33% {
      transform: translate(600px, 600px);
      opacity: 70%;
    }
    50% {
      transform: translate(400px, 800px);
      opacity: 20%;
    }
    66% {
      transform: translate(200px, 600px);
      opacity: 60%;
    }
    83% {
      transform: translate(200px, 400px);
      opacity: 30%;
    }
    100% {
      transform: translate(400px, 200px);
      opacity: 30%;
    }
  }
  @keyframes goAll2 {
    0% {
      top: 800px;
      left: 845px;
      opacity: 30%;
    }
    25% {
      top: 400px;
      left: 845px;
      opacity: 40%;
    }
    50% {
      top: 800px;
      left: 845px;
      opacity: 100%;
    }
    75% {
      top: 1200px;
      left: 845px;
      opacity: 20%;
    }
    100% {
      top: 800px;
      left: 845px;
      opacity: 30%;
    }
  }
  @keyframes left {
    0% {
      transform: translateX(0px);
    }
    50% {
      transform: translateX(30px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  .animation__goLeft {
    animation: left infinite 6s;
  }
  
  @keyframes top-bottom {
    0%, 100%, 20%, 50%, 80% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
      transform: translateY(-8px);
    }
    60% {
      -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
      transform: translateY(-4px);
    }
  }
  .animation__topBottom {
    animation: top-bottom 2s infinite;
  }
  
  @keyframes goAll3 {
    0% {
      transform: translate(0px, 0px);
      opacity: 100%;
    }
    33% {
      transform: translate(100px, 100px);
      opacity: 30%;
    }
    66% {
      transform: translate(0px, 200px);
      opacity: 70%;
    }
    100% {
      transform: translate(0px, 0px);
      opacity: 100%;
    }
  }
  .animation__goAll {
    animation: goAll 30s infinite linear;
  }
  
  .animation__goAll2 {
    animation: goAll2 50s infinite linear;
  }
  
  .animation__goAll3 {
    animation: goAll3 30s infinite linear;
  }
  
  @keyframes iconHover1 {
    0% {
      transform: translate(0);
    }
    40% {
      transform: translate(-10px);
    }
  }
  @keyframes iconBounceIn {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.3);
      -ms-transform: scale(0.3);
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05);
    }
    70% {
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
  }
  .gsap__parallax {
    overflow: hidden;
  }
  
  .btn-one, .btn-one-light2, .btn-one-light {
    background-color: var(--black);
    border-radius: 30px;
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    overflow: hidden;
    padding: 10px 60px;
    position: relative;
    text-transform: capitalize;
    text-align: center;
  }
  @media (max-width: 767px) {
    .btn-one, .btn-one-light2, .btn-one-light {
      padding: 8px 30px;
    }
  }
  .btn-one i, .btn-one-light2 i, .btn-one-light i {
    font-size: 16px;
    margin-left: 15px;
    margin-right: 10px;
    transition: var(--transition);
  }
  .btn-one span, .btn-one-light2 span, .btn-one-light span {
    color: inherit;
    display: inline-block;
    min-width: 5px;
    text-transform: capitalize !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    transform: translate(0, -20px);
  }
  .btn-one:before, .btn-one-light2:before, .btn-one-light:before {
    content: attr(data-text);
    left: 0;
    opacity: 1;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    transform: translate(0, 0);
    width: 100%;
  }
  .btn-one:hover, .btn-one-light2:hover, .btn-one-light:hover {
    color: var(--white);
  }
  /*.btn-one:hover:before, .btn-one-light2:hover:before, .btn-one-light:hover:before {
    opacity: 0;
    transform: translate(0, 20px);
  }
  .btn-one:hover i, .btn-one-light2:hover i, .btn-one-light:hover i {
    transform: rotate(45deg);
  }
  .btn-one:hover span, .btn-one-light2:hover span, .btn-one-light:hover span {
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-one:hover span:nth-child(1), .btn-one-light2:hover span:nth-child(1), .btn-one-light:hover span:nth-child(1) {
    transition-delay: 0.05s;
  }
  .btn-one:hover span:nth-child(2), .btn-one-light2:hover span:nth-child(2), .btn-one-light:hover span:nth-child(2) {
    transition-delay: 0.1s;
  }
  .btn-one:hover span:nth-child(3), .btn-one-light2:hover span:nth-child(3), .btn-one-light:hover span:nth-child(3) {
    transition-delay: 0.15s;
  }
  .btn-one:hover span:nth-child(4), .btn-one-light2:hover span:nth-child(4), .btn-one-light:hover span:nth-child(4) {
    transition-delay: 0.2s;
  }
  .btn-one:hover span:nth-child(5), .btn-one-light2:hover span:nth-child(5), .btn-one-light:hover span:nth-child(5) {
    transition-delay: 0.25s;
  }
  .btn-one:hover span:nth-child(6), .btn-one-light2:hover span:nth-child(6), .btn-one-light:hover span:nth-child(6) {
    transition-delay: 0.3s;
  }*/
  .btn-one-light {
    background-color: var(--white);
    color: var(--black);
  }
  .btn-one-light:hover {
    color: var(--black);
  }
  .btn-one-light2 {
    background-color: inherit;
    color: var(--white);
    border: 1px solid var(--white);
  }
  .btn-one-light2:hover {
    color: var(--white);
  }
  .btn-one.dark-mode, .dark-mode.btn-one-light, .dark-mode.btn-one-light2 {
    background-color: var(--black0);
    color: var(--black);
  }
  .btn-one.light, .light.btn-one-light, .light.btn-one-light2 {
    background-color: var(--white);
    color: var(--black);
  }
  .btn-two, .btn-three-light, .btn-two-light {
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    padding: 10px 60px;
    text-transform: capitalize;
    color: var(--black);
    border-radius: 30px;
    border: 1px solid var(--black);
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  @media (max-width: 767px) {
    .btn-two, .btn-three-light, .btn-two-light {
      padding: 8px 30px;
    }
  }
  .btn-two i, .btn-three-light i, .btn-two-light i {
    margin-left: 20px;
    margin-right: 10px;
    transition: var(--transition);
  }
  .btn-two span, .btn-three-light span, .btn-two-light span {
    color: inherit;
    display: inline-block;
    min-width: 5px;
    text-transform: capitalize !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    transform: translate(0, -20px);
  }
  .btn-two:before, .btn-three-light:before, .btn-two-light:before {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-two:hover, .btn-three-light:hover, .btn-two-light:hover {
    color: var(--black);
  }
  .btn-two:hover:before, .btn-three-light:hover:before, .btn-two-light:hover:before {
    opacity: 0;
    transform: translate(0, 20px);
  }
  .btn-two:hover span, .btn-three-light:hover span, .btn-two-light:hover span {
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-two:hover span:nth-child(1), .btn-three-light:hover span:nth-child(1), .btn-two-light:hover span:nth-child(1) {
    transition-delay: 0.05s;
  }
  .btn-two:hover span:nth-child(2), .btn-three-light:hover span:nth-child(2), .btn-two-light:hover span:nth-child(2) {
    transition-delay: 0.1s;
  }
  .btn-two:hover span:nth-child(3), .btn-three-light:hover span:nth-child(3), .btn-two-light:hover span:nth-child(3) {
    transition-delay: 0.15s;
  }
  .btn-two:hover span:nth-child(4), .btn-three-light:hover span:nth-child(4), .btn-two-light:hover span:nth-child(4) {
    transition-delay: 0.2s;
  }
  .btn-two:hover span:nth-child(5), .btn-three-light:hover span:nth-child(5), .btn-two-light:hover span:nth-child(5) {
    transition-delay: 0.25s;
  }
  .btn-two:hover span:nth-child(6), .btn-three-light:hover span:nth-child(6), .btn-two-light:hover span:nth-child(6) {
    transition-delay: 0.3s;
  }
  .btn-two-light {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .btn-two-light:hover {
    color: var(--white);
  }
  .btn-three {
    align-items: center;
    background-color: var(--theme-color2);
    border-radius: 30px;
    border: 1px solid var(--theme-color2);
    color: var(--white);
    display: inline-flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    overflow: hidden;
    padding: 10px 60px;
    position: relative;
    text-transform: capitalize;
    text-align: center;
  }
  @media (max-width: 767px) {
    .btn-three {
      padding: 8px 30px;
    }
  }
  .btn-three .icon-box {
    margin-right: 15px;
  }
  .btn-three span {
    color: inherit;
    display: inline-block;
    min-width: 5px;
    color: var(--white);
    text-transform: capitalize !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    transform: translate(0, -20px);
  }
  .btn-three:before {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    left: 15px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-three:hover {
    color: var(--white);
  }
  .btn-three:hover:before {
    opacity: 0;
    transform: translate(0, 20px);
  }
  .btn-three:hover span {
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-three:hover span:nth-child(1) {
    transition-delay: 0.05s;
  }
  .btn-three:hover span:nth-child(2) {
    transition-delay: 0.1s;
  }
  .btn-three:hover span:nth-child(3) {
    transition-delay: 0.15s;
  }
  .btn-three:hover span:nth-child(4) {
    transition-delay: 0.2s;
  }
  .btn-three:hover span:nth-child(5) {
    transition-delay: 0.25s;
  }
  .btn-three:hover span:nth-child(6) {
    transition-delay: 0.3s;
  }
  .btn-three-light {
    border: 1px solid var(--white);
    color: var(--white);
  }
  .btn-three-light:hover {
    color: var(--white);
  }
  .btn-more {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
  }
  .btn-more i {
    font-size: 14px;
    transition: var(--transition);
  }
  .btn-more:hover i {
    margin-left: 5px;
  }
  .btn-more-2 {
    font-size: 18px;
    color: var(--white);
    line-height: 28px;
    font-weight: 600;
    padding: 12px 50px;
    border-radius: 30px;
    display: inline-block;
    background: var(--theme-color1);
  }
  .btn-more-2 span {
    color: inherit;
    display: inline-block;
    min-width: 5px;
    text-transform: capitalize !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    transform: translate(0, -20px);
  }
  .btn-more-2:before {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    right: 0px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-more-2:hover {
    background: var(--theme-color2);
    color: var(--white);
  }
  .btn-more-2:hover:before {
    opacity: 0;
    transform: translate(0, 20px);
  }
  .btn-more-2:hover i {
    transform: rotate(45deg);
  }
  .btn-more-2:hover span {
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-more-2:hover span:nth-child(1) {
    transition-delay: 0.05s;
  }
  .btn-more-2:hover span:nth-child(2) {
    transition-delay: 0.1s;
  }
  .btn-more-2:hover span:nth-child(3) {
    transition-delay: 0.15s;
  }
  .btn-more-2:hover span:nth-child(4) {
    transition-delay: 0.2s;
  }
  .btn-more-2:hover span:nth-child(5) {
    transition-delay: 0.25s;
  }
  .btn-more-2:hover span:nth-child(6) {
    transition-delay: 0.3s;
  }
  .btn-explore {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-decoration: underline;
    text-transform: capitalize;
  }
  .btn-explore i {
    font-size: 14px;
    transition: var(--transition);
  }
  .btn-explore:hover i {
    margin-left: 5px;
  }
  .btn-view {
    display: inline-block;
    color: var(--black);
    font-family: var(--font-title);
    font-weight: 500;
    text-transform: capitalize;
  }
  .btn-view i {
    color: var(--black);
    margin-left: 5px;
    transition: var(--transition);
  }
  .btn-view:hover i {
    transform: rotate(-45deg);
  }
  .btn-video {
    display: inline-block;
    position: relative;
    text-align: center;
    z-index: 2;
  }
  .btn-video a {
    position: relative;
    color: var(--white);
    font-size: 24px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: block;
  }
  @media (max-width: 767px) {
    .btn-video a {
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 16px;
    }
  }
  .btn-video.video-pulse::after, .btn-video.video-pulse::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 20px solid rgba(255, 255, 255, 0.7);
    opacity: 0.3;
    left: 0;
    top: 0;
    border-radius: 50%;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: video-animation;
    animation-name: video-animation;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  @-webkit-keyframes video-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.3);
    }
    100% {
      opacity: 0;
      transform: scale(1.5);
    }
  }
  @keyframes video-animation {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.3);
    }
    100% {
      opacity: 0;
      transform: scale(1.5);
    }
  }
  .btn-video.video-pulse::before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .btn-discover, .btn-discover-dark, .btn-discover-light {
    position: relative;
    font-size: 18px;
    color: var(--white);
    line-height: 28px;
    font-weight: 600;
    padding: 12px 50px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    background: var(--theme-color1);
  }
  .btn-discover span, .btn-discover-dark span, .btn-discover-light span {
    color: inherit;
    display: inline-block;
    min-width: 5px;
    text-transform: capitalize !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    transform: translate(0, -20px);
  }
  .btn-discover:before, .btn-discover-dark:before, .btn-discover-light:before {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    left: 0px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-discover:hover, .btn-discover-dark:hover, .btn-discover-light:hover {
    color: var(--white);
  }
  .btn-discover:hover:before, .btn-discover-dark:hover:before, .btn-discover-light:hover:before {
    opacity: 0;
    transform: translate(0, 20px);
  }
  .btn-discover:hover i, .btn-discover-dark:hover i, .btn-discover-light:hover i {
    transform: rotate(45deg);
  }
  .btn-discover:hover span, .btn-discover-dark:hover span, .btn-discover-light:hover span {
    opacity: 1;
    transform: translate(0, 0);
  }
  .btn-discover:hover span:nth-child(1), .btn-discover-dark:hover span:nth-child(1), .btn-discover-light:hover span:nth-child(1) {
    transition-delay: 0.05s;
  }
  .btn-discover:hover span:nth-child(2), .btn-discover-dark:hover span:nth-child(2), .btn-discover-light:hover span:nth-child(2) {
    transition-delay: 0.1s;
  }
  .btn-discover:hover span:nth-child(3), .btn-discover-dark:hover span:nth-child(3), .btn-discover-light:hover span:nth-child(3) {
    transition-delay: 0.15s;
  }
  .btn-discover:hover span:nth-child(4), .btn-discover-dark:hover span:nth-child(4), .btn-discover-light:hover span:nth-child(4) {
    transition-delay: 0.2s;
  }
  .btn-discover:hover span:nth-child(5), .btn-discover-dark:hover span:nth-child(5), .btn-discover-light:hover span:nth-child(5) {
    transition-delay: 0.25s;
  }
  .btn-discover:hover span:nth-child(6), .btn-discover-dark:hover span:nth-child(6), .btn-discover-light:hover span:nth-child(6) {
    transition-delay: 0.3s;
  }
  .btn-discover-light {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
  }
  .btn-discover-light:hover {
    color: var(--white);
  }
  .btn-discover-dark {
    color: var(--black);
    background: transparent;
    border: 1px solid #000;
  }
  .btn-discover-dark:hover {
    color: var(--black);
  }
  .btn-backToTop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 12px;
    background-color: var(--theme-color2);
    color: var(--text-color2);
    font-size: 18px;
    box-shadow: var(--shadow);
    position: fixed;
    z-index: 99;
    right: 30px;
    bottom: 30px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }
  .btn-backToTop:hover {
    background-color: var(--theme-color1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .btn-backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  
  .arry-prev, .arry-next {
    background-color: rgba(35, 48, 50, 0.1019607843);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid transparent;
    color: var(--black);
    font-size: 16px;
    transition: var(--transition);
  }
  @media (max-width: 767px) {
    .arry-prev, .arry-next {
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      transition: var(--transition);
      font-size: 14px;
    }
  }
  .arry-prev:hover, .arry-next:hover {
    background-color: rgba(35, 48, 50, 0.2);
    border: 1px solid transparent;
    color: var(--black);
  }
  .arry-prev.active, .active.arry-next {
    background-color: rgba(35, 48, 50, 0.2);
    border: 1px solid transparent;
    color: var(--black);
  }
  
  .btn-book {
    position: relative;
    font-size: 18px;
    color: var(--white);
    line-height: 28px;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: var(--theme-color2);
  }
  
  .btn-book svg {
    font-size: 14px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-left: 15px;
  }
  
  .btn-book span {
    color: inherit;
    display: inline-block;
    min-width: 5px;
    text-transform: capitalize !important;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }
  
  .btn-book:before {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    right: 15px;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .btn-book:hover {
    color: var(--white);
  }
  
  .btn-book:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
  
  .btn-book:hover svg {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  
  .btn-book:hover span {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .btn-book:hover span:nth-child(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
  }
  
  .btn-book:hover span:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
  }
  
  .btn-book:hover span:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
  }
  
  .btn-book:hover span:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
  
  .btn-book:hover span:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  
  .btn-book:hover span:nth-child(6) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  
  .breadcrumb-area {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    z-index: 1;
  }
  .breadcrumb-area::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 31, 35, 0.6980392157);
    content: "";
    z-index: -1;
  }
  @media (max-width: 767px) {
    .breadcrumb-area {
      padding: 60px 0;
    }
  }
  .breadcrumb__item {
    text-align: center;
  }
  .breadcrumb__item .title {
    margin-bottom: 20px;
    color: var(--white);
  }
  .breadcrumb__item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .breadcrumb__item ul li {
    color: var(--white);
  }
  .breadcrumb__item ul li a {
    font-weight: 500;
    letter-spacing: 1px;
  }
  .breadcrumb__item ul li a:hover {
    letter-spacing: 2px;
  }
  
  .progress-area .progress {
    background-color: var(--border);
    height: 8px;
    border-radius: 0px;
  }
  .progress-area .progress.dark-mode {
    background-color: var(--theme-color1);
  }
  .progress-area .progress .progress-bar {
    background-color: var(--theme-color1);
  }
  .progress__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .progress__title span {
    color: var(--theme-color1);
    font-size: 16px;
  }
  
  .skills {
    position: relative;
    margin-bottom: 40px;
  }
  .skills .skill-item {
    position: relative;
    margin-bottom: 20px;
  }
  .skills .skill-item:last-child {
    margin-bottom: 0px;
  }
  .skills .skill-item .skill-header {
    position: relative;
    margin-bottom: 10px;
  }
  .skills .skill-item .skill-header .skill-title {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
  }
  .skills .skill-item .skill-bar {
    position: relative;
    width: 100%;
    height: 2px;
  }
  .skills .skill-item .skill-bar .bar-inner {
    position: relative;
    width: 100%;
    height: 2px;
  }
  .skills .skill-item .skill-bar .bar-inner .bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 2px;
    width: 0px;
    transition: all 3000ms ease;
    border-radius: 10px;
    background-color: var(--theme-color1);
  }
  .skills .skill-item .skill-bar .bar-inner .skill-percentage {
    position: absolute;
    right: -15px;
    bottom: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 10px;
    font-family: var(--font-body);
    color: var(--theme-color1);
  }
  .skills .skill-item .skill-bar .bar-inner .skill-percentage::after {
    position: absolute;
    top: 117%;
    right: 15px;
    height: 13px;
    width: 2px;
    content: "";
    background-color: var(--theme-color2);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  
  .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: var(--transition);
  }
  .scroll-up::after {
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    content: "\f077";
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    color: var(--theme-color1);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: var(--transition);
  }
  .scroll-up svg path {
    fill: none;
  }
  .scroll-up svg.scroll-circle path {
    stroke: var(--theme-color1);
    stroke-width: 4px;
    box-sizing: border-box;
    transition: var(--transition);
  }
  .scroll-up.active-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  #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(51, 51, 51, 0.5);
    border-top-color: var(--theme-color1);
    width: 120px;
    height: 120px;
    margin: 30px auto;
  }
  @media (max-width: 991px) {
    #preloader .animation-preloader .spinner {
      width: 60px;
      height: 60px;
      margin: 10px auto;
    }
  }
  #preloader .animation-preloader .txt-loading {
    font-size: 100px;
    line-height: 100px;
    font-weight: 700;
    font-family: var(--font-title);
    text-align: center;
    user-select: none;
  }
  @media (max-width: 991px) {
    #preloader .animation-preloader .txt-loading {
      font-size: 40px;
      line-height: 40px;
    }
  }
  #preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--theme-color1);
    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: var(--theme-color2);
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: var(--font-title);
    position: absolute;
    top: -3px;
    transform: rotateY(-90deg);
  }
  #preloader p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--theme-color1);
  }
  @media (max-width: 991px) {
    #preloader p {
      font-size: 14px;
      margin-top: 10px;
    }
  }
  #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(--white);
    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;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
  }
  
  @-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);
    }
  }
  .marqueeSwiper-area {
    overflow: hidden;
  }
  .marqueeSwiper__slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }
  
  .marqueeSwiper-five-area {
    overflow: hidden;
  }
  .marqueeSwiper-five__slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
  }
  
  .logo {
    display: block;
    width: 171px;
  }
  .logo img {
    width: 100%;
  }
  
  .header-top-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .header-top-area.light {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .header-top-area.fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    border-bottom: 1px solid var(--border-light);
  }
  .header-top__wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .header-top__socials {
    display: flex;
    align-items: center;
  }
  .header-top__socials a {
    padding: 11px 30px;
    border-left: 1px solid var(--border-light);
  }
  .header-top__socials a svg {
    transition: 0.9s;
  }
  .header-top__socials a:hover svg {
    transform: rotateY(360deg);
  }
  .header-top__socials.four-socials a {
    padding: 11px 15px;
    border: none;
  }
  .header-top__socials.light a svg path {
    fill: var(--black);
  }
  .header-top__links {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .header-top__links li {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: var(--white);
  }
  .header-top__links li::after {
    position: absolute;
    top: -10px;
    right: -30px;
    height: 50px;
    width: 1px;
    background-color: var(--border-light);
    content: "";
  }
  .header-top__links.light li {
    color: var(--black);
  }
  .header-top__links.four-links li::after {
    display: none;
  }
  .header-area {
    top: 50px;
    position: fixed;
    width: 100%;
    z-index: 99;
  }
  .header-area.header-blur::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    background-color: rgba(255, 255, 255, 0.3098039216);
    backdrop-filter: blur(30px);
  }
  .header-area.header-blur .logo-light {
    display: none;
  }
  .header-area.header-blur .logo-main {
    display: block;
  }
  .header-area.menu-fixed {
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
  }
  .header-area.menu-fixed.header-blur::after {
    background-color: var(--black);
    backdrop-filter: blur(0px);
  }
  .header-area.menu-fixed.header-blur .logo-main {
    display: none;
  }
  .header-area.menu-fixed.header-blur .logo-light {
    display: block;
  }
  @media (max-width: 991px) {
    .header-area {
      top: 0;
    }
  }
  .header__main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .header__main .main-menu {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .header__main .main-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  @media (max-width: 1199px) {
    .header__main .main-menu ul {
      gap: 20px;
    }
  }
  .header__main .main-menu ul li {
    position: relative;
  }
  .header__main .main-menu ul li a {
    font-weight: 500;
    padding: 30px 0;
    font-size: 14px;
    line-height: 26px;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
  @media (max-width: 1199px) {
    .header__main .main-menu ul li a {
      font-size: 16px;
    }
  }
  .header__main .main-menu ul li a i {
    font-size: 12px;
    transition: var(--transition);
  }
  .header__main .main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    width: 240px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-radius: 7px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
  .header__main .main-menu ul li .sub-menu li {
    width: 100%;
  }
  .header__main .main-menu ul li .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .header__main .main-menu ul li .sub-menu li a.arrow:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    display: block;
    font-size: 11px;
    font-weight: 900;
    line-height: 24px;
    position: absolute;
    right: 15px;
    top: 11px;
    z-index: 5;
    transform: rotate(90deg);
    transition: var(--transition);
  }
  .header__main .main-menu ul li .sub-menu li a {
    display: block;
    padding: 10px 30px;
    color: var(--heading-color) !important;
  }
  .header__main .main-menu ul li .sub-menu li a i {
    float: right;
    transform: rotate(0deg) !important;
    margin-top: 8px;
    color: var(--heading-color) !important;
  }
  .header__main .main-menu ul li .sub-menu li .sub-sub-menu {
    position: absolute;
    left: 210px;
    top: 0px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    width: 220px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
  }
  .header__main .main-menu ul li .sub-menu li .sub-sub-menu li {
    width: 100%;
  }
  .header__main .main-menu ul li .sub-menu li .sub-sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .header__main .main-menu ul li .sub-menu li .sub-sub-menu li a {
    display: block;
    padding: 10px 20px !important;
    color: var(--heading-color) !important;
  }
  .header__main .main-menu ul li .sub-menu li .sub-sub-menu li:hover a {
    padding-left: 25px !important;
    color: var(--theme-color1) !important;
  }
  .header__main .main-menu ul li .sub-menu li .sub-sub-menu.new-badge::after {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0 4px;
    background-color: #f44336;
    color: var(--white);
    text-transform: uppercase;
    content: "NEW";
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
  }
  .header__main .main-menu ul li .sub-menu li:hover a.arrow:after {
    transform: rotate(0deg);
  }
  .header__main .main-menu ul li .sub-menu li:hover a {
    padding-left: 25px;
    color: var(--theme-color1) !important;
  }
  .header__main .main-menu ul li .sub-menu li:hover a i {
    transform: rotate(-90deg) !important;
    color: var(--theme-color1) !important;
  }
  .header__main .main-menu ul li .sub-menu li:hover .sub-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
  }
  .header__main .main-menu ul li .sub-menu.megamenu {
    width: 1170px;
    left: 50%;
    transform: translate(-50%, 10px);
    padding: 10px 24px;
  }
  .header__main .main-menu ul li .sub-menu.megamenu li a {
    padding-left: 0px !important;
    font-weight: 400;
  }
  .header__main .main-menu ul li .sub-menu.megamenu li.title a {
    font-weight: 600;
  }
  .header__main .main-menu ul li .sub-menu.megamenu li.title.new-badge::after {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0 4px;
    background-color: #f44336;
    color: var(--white);
    text-transform: uppercase;
    content: "NEW";
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
  }
  .header__main .main-menu ul li .sub-menu.megamenu ul {
    flex-direction: column;
    gap: 0;
  }
  .header__main .main-menu ul li .sub-menu.megamenu ul li:hover a {
    padding-left: 5px !important;
  }
  .header__main .main-menu ul li .sub-menu.megamenu ul li:hover.title a {
    padding-left: 0 !important;
  }
  @media (max-width: 1399px) {
    .header__main .main-menu ul li .sub-menu.megamenu {
      width: 600px;
    }
  }
  @media (max-width: 1199px) {
    .header__main .main-menu ul li .sub-menu.megamenu {
      width: 700px;
    }
  }
  .header__main .main-menu ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  .header__main .main-menu ul li:hover .sub-menu.megamenu {
    transform: translate(-50%, 0);
  }
  .header__main .main-menu ul li:hover:hover a {
    color: var(--theme-color1);
  }
  .header__main .main-menu ul li:hover:hover i {
    transform: rotate(-180deg);
    color: var(--theme-color1);
  }
  .header__main .main-menu-light ul li a {
    color: var(--white);
  }
  .header__main .main-menu-light ul li:hover a {
    color: var(--white) !important;
  }
  .header__main .main-menu-light ul li:hover i {
    color: var(--white) !important;
  }
  .header__main .main-menu-light ul li .sub-menu {
    background-color: var(--black);
    border: 1px solid var(--border);
  }
  .header__main .main-menu-light ul li .sub-menu li:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
  }
  .header__main .main-menu-light ul li .sub-menu li a {
    color: var(--white) !important;
  }
  .header__main .main-menu-light ul li .sub-menu li a i {
    color: var(--white) !important;
  }
  .header__main .main-menu-light ul li .sub-menu li:hover a {
    color: var(--white) !important;
  }
  .header__main .main-menu-light ul li .sub-menu li .sub-sub-menu {
    background-color: var(--black);
  }
  .header__main .main-menu-light ul li .sub-menu li .sub-sub-menu li a {
    color: var(--white) !important;
  }
  .header__main .main-menu-light ul li .sub-menu li .sub-sub-menu li:hover a {
    padding-left: 25px !important;
    color: var(--white) !important;
  }
  @media (max-width: 991px) {
    .header__main {
      padding: 15px 0;
    }
  }
  .header__main .menu-btns {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .header__main .menu-btns .search-trigger {
    font-size: 24px;
    color: var(--heading-color);
    margin-top: 8px;
  }
  .header__main .menu-btns.light .search-trigger {
    color: var(--white);
  }
  .header__main .menubars {
    width: 28px;
    line-height: 8px;
    text-align: left;
  }
  .header__main .menubars span {
    width: 100%;
    height: 2px;
    background-color: var(--heading-color);
    transition: var(--transition);
  }
  .header__main .menubars span:nth-child(2) {
    width: 70%;
    text-align: right;
  }
  .header__main .menubars span:nth-child(3) {
    width: 90%;
    text-align: right;
  }
  .header__main .menubars:hover span:nth-child(2) {
    width: 100%;
  }
  .header__main .menubars:hover span:nth-child(3) {
    width: 100%;
  }
  .header__main .menubars-light span {
    background-color: var(--white);
  }
  .header-two-area {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    border-bottom: 1px solid var(--border-light);
  }
  .header-two-area.menu-fixed {
    background-color: var(--black);
    box-shadow: var(--shadow);
  }
  .header-dark-area {
    position: unset;
    background-color: var(--black);
  }
  .header-dark-area.menu-fixed {
    top: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: var(--black);
    box-shadow: var(--shadow);
  }
  .header-three-area {
    position: unset;
  }
  .header-three-area.menu-fixed {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
  }
  .header-three-area.dark-area {
    background-color: var(--sub-bg);
  }
  .header-four-area {
    top: 50px;
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: transparent;
  }
  @media (max-width: 991px) {
    .header-four-area {
      top: 0;
    }
  }
  .header-four-area.menu-fixed {
    top: 0px;
    background-color: var(--black);
    box-shadow: var(--shadow);
  }
  .header-four__btn {
    padding: 15px 36px;
    background-color: var(--border-light);
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    border-radius: 30px;
    margin-left: 20px;
  }
  .header-four__btn i {
    transition: var(--transition);
    margin-left: 5px;
  }
  .header-four__btn:hover i {
    transform: rotate(45deg);
  }
  @media (max-width: 1199px) {
    .header-four__btn {
      display: none;
    }
  }
  .header-six__main {
    max-width: 1550px;
    margin: 0 auto8;
  }
  .header-eight-area {
    top: 30px;
    background-color: var(--white);
    border-radius: 25px;
    padding-left: 30px;
    padding-right: 30px;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-eight-area.menu-fixed {
    position: fixed;
    z-index: 99;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    left: unset;
    width: 100%;
    transform: unset;
    padding: 0 60px;
    border-radius: 0;
  }
  @media (max-width: 767px) {
    .header-eight-area.menu-fixed {
      padding: 0 15px;
    }
  }
  .header-eight__btns .call {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding-right: 30px;
    gap: 10px;
    height: 45px;
  }
  .header-eight__btns .call .icon {
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(39, 46, 57, 0.5019607843);
    background-color: var(--sub-bg);
  }
  .header-eight__btns .call span {
    font-size: 12px;
    line-height: 20px;
  }
  @media (max-width: 1399px) {
    .header-eight__btns .call {
      display: none;
    }
  }
  .header-eight__btns .header-btn {
    padding: 15px 36px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    border-radius: 30px;
    margin-left: 20px;
  }
  .header-eight__btns .header-btn i {
    transition: var(--transition);
    margin-left: 5px;
  }
  .header-eight__btns .header-btn:hover i {
    transform: rotate(45deg);
  }
  @media (max-width: 1199px) {
    .header-eight__btns .header-btn {
      display: none;
    }
  }
  .header-nine__main .logo {
    margin-left: -25%;
  }
  @media (max-width: 1399px) {
    .header-nine__main .logo {
      margin-left: 0;
    }
  }
  .header-twelve__btns .btn-two-light {
    padding-left: 30px;
    padding-right: 40px;
    margin: 0 30px;
    font-weight: 700;
  }
  @media (max-width: 1399px) {
    .header-twelve__btns .btn-two-light {
      margin: 0;
    }
  }
  @media (max-width: 1199px) {
    .header-twelve__btns .btn-two-light {
      display: none !important;
    }
  }
  .header-twelve__btns .btn-two-light i {
    transform: translateX(15px) rotate(-45deg);
    transition: var(--transition);
  }
  .header-twelve__btns .btn-two-light:hover i {
    transform: translateX(5px) rotate(0deg);
  }
  .header-twelve__btns .menubars {
    width: 33px;
    line-height: 6px;
  }
  .header-twelve__btns .menubars span {
    width: 100% !important;
  }
  
  .offcanvas {
    width: 375px !important;
    border-left: 3px solid var(--theme-color1) !important;
  }
  @media screen and (max-width: 375px) {
    .offcanvas {
      width: 320px !important;
    }
  }
  .offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
    cursor: url("../../../assets/images/icon/x.html") 16 16, auto;
  }
  .offcanvas-backdrop.show {
    opacity: 1;
  }
  .offcanvas .btn-close {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 22px;
    color: var(--white);
    background-color: var(--theme-color1);
    opacity: 1;
    background-image: none;
    transition: var(--transition);
  }
  .offcanvas .btn-close:hover {
    transform: rotate(90deg);
  }
  
  .sidebar-area {
    z-index: 99999;
    background-color: var(--heading-color);
  }
  .sidebar__socials ul {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sidebar__socials ul li {
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    background-color: var(--theme-color1);
  }
  .sidebar__btns {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sidebar__btns a {
    padding: 6px 16px;
    border-radius: 8px;
    color: var(--white);
    background-color: var(--theme-color1);
    border: 1px solid var(--border-light);
  }
  .sidebar__contact-info ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .sidebar__contact-info ul li i {
    color: var(--white);
    margin-right: 8px;
  }
  .sidebar__contact-info ul li a {
    color: var(--paragraph-light);
  }
  .sidebar__text {
    color: var(--paragraph-light);
  }
  .sidebar__body {
    margin-top: 30px;
  }
  .sidebar__body .mean-container .mean-nav {
    background-color: var(--heading-color);
  }
  .sidebar__body .mean-container .mean-nav ul li a.mean-expand {
    background-color: var(--theme-color1);
  }
  
  .mobile-menu .meanmenu-reveal {
    display: none !important;
  }
  .mobile-menu.mean-container .mean-nav > ul {
    width: 100%;
    display: block !important;
  }
  .mobile-menu ul li a i {
    display: none;
  }
  
  .search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: url(../../../assets/images/icon/x.html), auto;
  }
  .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;
  }
  .search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    background: transparent;
    font-size: 25px;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    text-align: center;
    letter-spacing: 2px;
  }
  .search-wrap input.main-search-input::placeholder {
    color: var(--white);
    opacity: 1;
    font-size: 24px;
  }
  .search-wrap .search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    transition: var(--transition);
  }
  .search-wrap .search-close:hover {
    transform: rotate(90deg);
  }
  
  .banner-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner__wrp {
    padding: 450px 80px 130px 80px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 991px) {
    .banner__wrp {
      padding: 30px;
      padding-bottom: 100px;
      padding-top: 200px;
    }
  }
  @media (max-width: 575px) {
    .banner__wrp {
      padding: 15px;
      padding-bottom: 100px;
      padding-top: 200px;
    }
  }
  .banner__image {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .banner__image img {
    width: 100%;
    height: 100%;
  }
  @media (max-width: 991px) {
    .banner__image img {
      object-fit: cover;
    }
  }
  .banner__image .parallax-bg {
    overflow: hidden;
    height: 100%;
  }
  .banner__content {
    max-width: 850px;
  }
  .banner__content .title {
    color: var(--white);
  }
  .banner__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 20px;
    max-width: 630px;
  }
  .banner__content .arry-btn {
    margin-top: 30px;
    font-size: 40px;
    color: var(--white);
  }
  .banner__content .arry-btn i {
    display: inline-block;
    transform: rotate(90deg);
  }
  .banner__slider {
    height: 100%;
  }
  .banner__dot {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: unset !important;
    bottom: 80px !important;
    right: 80px !important;
    max-width: 425px;
  }
  .banner__dot .swiper-pagination-bullet {
    width: 130px;
    height: 130px;
    background-color: transparent;
    padding: 10px 15px;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--white);
    border-radius: 0;
    transition: var(--transition);
    opacity: 1;
  }
  .banner__dot .swiper-pagination-bullet .dot-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .banner__dot .swiper-pagination-bullet .dot-content span {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-title);
    color: var(--white);
  }
  .banner__dot .swiper-pagination-bullet .dot-content span:first-child {
    text-align: right;
  }
  .banner__dot .swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
  }
  @media (max-width: 991px) {
    .banner__dot {
      display: none;
    }
  }
  
  .banner-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .banner-two-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(18, 28, 39, 0.9882352941);
    z-index: -1;
  }
  .banner-two__wrp {
    padding: 370px 60px 230px 60px;
  }
  @media (max-width: 991px) {
    .banner-two__wrp {
      padding: 200px 30px 130px 30px;
    }
  }
  @media (max-width: 575px) {
    .banner-two__wrp {
      padding: 150px 15px 80px 15px;
    }
  }
  .banner-two__content {
    max-width: 1020px;
    position: relative;
    z-index: 1;
  }
  .banner-two__content .title {
    color: var(--white);
  }
  .banner-two__content .title span {
    color: inherit;
  }
  .banner-two__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 25px;
    max-width: 630px;
  }
  .banner-two__content .arry-btn {
    margin-top: 50px;
    font-size: 48px;
    color: var(--white);
    transform: rotate(-45deg);
  }
  .banner-two__content .arry-btn:hover {
    transform: rotate(0);
  }
  @media (max-width: 575px) {
    .banner-two__content .arry-btn {
      margin-top: 30px;
    }
  }
  .banner-two__image {
    max-width: 535px;
    position: absolute;
    bottom: 0;
    right: 15%;
  }
  .banner-two__image img {
    width: 100%;
  }
  .banner-two__image .info1 {
    position: absolute;
    bottom: 60px;
    left: -145px;
  }
  .banner-two__image .info2 {
    position: absolute;
    bottom: 60px;
    right: -150px;
  }
  .banner-two__image .info3 {
    position: absolute;
    top: 180px;
    right: -85px;
    z-index: -1;
  }
  @media (max-width: 1399px) {
    .banner-two__image {
      right: 12%;
    }
  }
  @media (max-width: 991px) {
    .banner-two__image {
      display: none;
    }
  }
  
  .banner-three-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 108px;
    padding-bottom: 122px;
    background-color: var(--black);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  @media (max-width: 767px) {
    .banner-three-area {
      padding-top: 130px;
      padding-bottom: 80px;
    }
  }
  @media (max-width: 470px) {
    .banner-three-area {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }
  .banner-three-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(272.22deg, rgba(0, 0, 0, 0.3) -1.43%, rgba(0, 0, 0, 0.7) 86.76%);
    z-index: -1;
  }
  .banner-three__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  .banner-three__content .title {
    color: var(--white);
  }
  .banner-three__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 25px;
    max-width: 650px;
  }
  .banner-three__content .arry-btn {
    margin-top: 50px;
    font-size: 48px;
    color: var(--white);
    transform: rotate(-45deg);
  }
  .banner-three__content .arry-btn:hover {
    transform: rotate(0);
  }
  @media (max-width: 575px) {
    .banner-three__content .arry-btn {
      margin-top: 30px;
    }
  }
  .banner-three__content .arry {
    position: absolute;
    bottom: 30px;
    right: -45px;
  }
  @media (max-width: 1199px) {
    .banner-three__content .arry {
      display: none;
    }
  }
  .banner-three__form {
    background-color: var(--black);
    padding: 50px;
    max-width: 490px;
    width: 100%;
  }
  @media (max-width: 1199px) {
    .banner-three__form {
      max-width: 100%;
    }
  }
  @media (max-width: 470px) {
    .banner-three__form {
      padding: 30px;
    }
  }
  .banner-three__form .title {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
  }
  .banner-three__form form {
    max-width: 850px;
  }
  .banner-three__form form input,
  .banner-three__form form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid transparent;
    color: var(--white);
    background-color: #252e38;
    transition: var(--transition);
    margin-top: 20px;
  }
  .banner-three__form form input::placeholder,
  .banner-three__form form textarea::placeholder {
    color: var(--white);
  }
  .banner-three__form form input:focus,
  .banner-three__form form textarea:focus {
    border: 1px solid var(--border);
  }
  .banner-three__form form textarea {
    height: 160px;
    resize: none;
    border-radius: 0px;
  }
  .banner-three__form .nice-select {
    border-radius: 0;
    background-color: #252e38;
    border: none;
  }
  .banner-three__form .nice-select::before {
    color: var(--white);
  }
  .banner-three__form .nice-select span {
    color: var(--white);
  }
  .banner-three__form .nice-select .list {
    border-radius: 0;
  }
  .banner-three__text {
    position: absolute;
    right: 125px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
  }
  @media (max-width: 1199px) {
    .banner-three__text {
      display: none;
    }
  }
  
  .banner-four-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-four__item {
    margin-top: 0px;
    height: 500px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .banner-four__item span {
    font-size: 32px !important;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    -webkit-text-stroke-width: 0 !important;
    font-weight: 600 !important;
    border-bottom: 3px solid var(--white);
    display: inline-block;
    padding-right: 40px;
    margin-bottom: 20px;
    line-height: 90px !important;
  }
  .banner-four__item span sup {
    font-size: 16px !important;
    display: inline-block;
    transform: translateY(-15px);
  }
  .banner-four__item .text {
    max-width: 350px;
  }
  .banner-four__item:hover .content {
    background-color: rgba(255, 255, 255, 0.1490196078);
    backdrop-filter: blur(10px);
  }
  @media (max-width: 991px) {
    .banner-four__item {
      margin-top: 80px;
    }
  }
  @media (max-width: 767px) {
    .banner-four__item {
      height: 500px !important;
    }
  }
  
  .banner-five-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-five-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(18, 28, 39, 0.7);
    z-index: 0;
  }
  .banner-five-area-2 {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-five-area-2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(31, 38, 56, 0.98) 0%, rgba(40, 45, 58, 0.931) 100%);
  }
  .banner-five-area-2 .banner-five__wrp {
    padding: 160px 140px;
    padding-top: 315px;
  }
  @media (max-width: 767px) {
    .banner-five-area-2 .banner-five__wrp {
      padding: 200px 30px;
    }
  }
  .banner-five-area-2 .banner-five__content h4 {
    color: var(--white);
  }
  .banner-five-area-2 .banner-five__content .title {
    text-transform: uppercase;
  }
  @media (max-width: 991px) {
    .banner-five-area-2 .banner-five__content .title-text {
      font-size: 155px;
    }
  }
  @media (max-width: 767px) {
    .banner-five-area-2 .banner-five__content .title-text {
      font-size: 100px;
    }
  }
  @media (max-width: 575px) {
    .banner-five-area-2 .banner-five__content .title-text {
      font-size: 60px;
    }
  }
  @media (max-width: 767px) {
    .banner-five-area-2 .banner-five__content .btns-box {
      display: block;
    }
  }
  .banner-five-area-2 .banner-shape-left {
    position: absolute;
    bottom: 0;
    left: -23px;
    width: 500px;
    height: 320px;
  }
  .banner-five-area-2 .banner-image {
    position: absolute;
    right: 100px;
    bottom: 0;
  }
  @media (max-width: 1600px) {
    .banner-five-area-2 .banner-image {
      right: 0;
    }
  }
  @media (max-width: 1199px) {
    .banner-five-area-2 .banner-image {
      display: none;
    }
  }
  .banner-five__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .banner-five__signature {
    position: absolute;
    right: 187px;
    bottom: 50px;
  }
  @media (max-width: 991px) {
    .banner-five__signature {
      right: 50px;
    }
    .banner-five__signature img {
      width: 100px;
    }
  }
  @media (max-width: 575px) {
    .banner-five__signature {
      right: 15px;
    }
  }
  .banner-five__shape {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
  }
  @media (max-width: 767px) {
    .banner-five__shape {
      display: none;
    }
  }
  .banner-five__wrp {
    padding: 160px 140px;
    padding-top: 230px;
  }
  @media (max-width: 991px) {
    .banner-five__wrp {
      padding: 70px 30px;
      padding-top: 150px;
    }
  }
  @media (max-width: 575px) {
    .banner-five__wrp {
      padding: 50px 15px;
      padding-top: 150px;
    }
  }
  .banner-five__content {
    max-width: 1020px;
    position: relative;
    z-index: 1;
  }
  .banner-five__content .sub-title {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .banner-five__content .sub-title .icon {
    transform: translateY(-35px);
  }
  @media (max-width: 575px) {
    .banner-five__content .sub-title .icon {
      width: 30px;
      height: 30px;
      transform: translateY(-20px);
    }
  }
  .banner-five__content .sub-title span {
    color: inherit;
  }
  .banner-five__content .title-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 200px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }
  .banner-five__content .title {
    color: var(--white);
  }
  .banner-five__content .btns-box {
    display: flex;
    align-items: center;
    gap: 65px;
    margin-bottom: 170px;
  }
  .banner-five__content .btns-box span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--white);
  }
  .banner-five__content .btns-box h4 {
    color: var(--white);
  }
  .banner-five__content .info {
    max-width: 800px;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid var(--border-light);
  }
  @media (max-width: 767px) {
    .banner-five__content .info {
      padding-top: 20px;
      margin-top: 20px;
    }
    .banner-five__content .info svg {
      width: 40px;
      height: 40px;
    }
  }
  .banner-five__content .rating {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .banner-five__content .rating ul {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .banner-five__content .rating span {
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
  }
  
  .banner-six-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-six-area-2 {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-six-area-2 .banner-six__content {
    max-width: 1100px;
    text-align: center;
    padding: 260px 50px 0px;
  }
  @media (max-width: 575px) {
    .banner-six-area-2 .banner-six__content {
      padding: 260px 30px 0px;
    }
  }
  .banner-six-area-2 .banner-six__content .title {
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .banner-six-area-2 .banner-six__content .title-text2 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 190px;
    line-height: 140px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: transparent;
    padding-top: 100px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }
  @media (max-width: 767px) {
    .banner-six-area-2 .banner-six__content .title-text2 {
      font-size: 120px;
    }
  }
  @media (max-width: 575px) {
    .banner-six-area-2 .banner-six__content .title-text2 {
      font-size: 60px;
    }
  }
  .banner-six-area-2 .banner-six__content .rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  @media (max-width: 575px) {
    .banner-six-area-2 .banner-six__content .rating {
      display: block;
    }
  }
  .banner-six-area-2 .banner-six__content .rating ul {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  @media (max-width: 575px) {
    .banner-six-area-2 .banner-six__content .rating ul {
      margin-left: 100px;
    }
  }
  .banner-six-area-2 .banner-six__content .rating span {
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    text-transform: uppercase;
  }
  .banner-six__content {
    max-width: 950px;
    position: relative;
    z-index: 1;
    padding: 210px 60px 260px 180px;
  }
  .banner-six__content-area-2 {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-six__content-area-2 .banner-six__content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 260px 50px 0px;
  }
  .banner-six__content-area-2 .banner-six__content .title {
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .banner-six__content-area-2 .banner-six__content .title-text2 {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 190px;
    line-height: 140px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: transparent;
    padding-top: 100px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }
  .banner-six__content-area-2 .banner-six__content .rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .banner-six__content-area-2 .banner-six__content .rating ul {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .banner-six__content-area-2 .banner-six__content .rating span {
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    text-transform: uppercase;
  }
  @media (max-width: 991px) {
    .banner-six__content {
      padding: 150px 30px;
    }
  }
  @media (max-width: 575px) {
    .banner-six__content {
      padding: 150px 15px;
    }
  }
  .banner-six__content .title-text {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 190px;
    line-height: 140px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: transparent;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    font-size: clamp(40px, 11.87vw, 190px);
    line-height: 1.2;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }
  .banner-six__content .title {
    color: var(--white);
  }
  .banner-six__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 25px;
    max-width: 630px;
  }
  .banner-six__content .arry-btn {
    margin-top: 50px;
    font-size: 48px;
    color: var(--white);
  }
  .banner-six__content .arry-btn:hover {
    transform: rotate(45deg);
  }
  @media (max-width: 575px) {
    .banner-six__content .arry-btn {
      margin-top: 20px;
    }
  }
  .banner-six__content2 {
    position: relative;
    z-index: 1;
    padding: 210px 60px 260px 180px;
  }
  @media (max-width: 991px) {
    .banner-six__content2 {
      padding: 150px 30px;
    }
  }
  @media (max-width: 575px) {
    .banner-six__content2 {
      padding: 150px 15px;
    }
  }
  .banner-six__content2 .title-text {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 190px;
    line-height: 140px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: transparent;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    font-size: clamp(40px, 11.87vw, 190px);
    line-height: 1.2;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: 0.7s;
    transition: 0.7s;
  }
  .banner-six__content2 .title {
    color: var(--white);
  }
  .banner-six__content2 .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 25px;
    max-width: 630px;
    margin: 0 auto;
  }
  .banner-six__content2 .arry-btn {
    margin-top: 50px;
    font-size: 48px;
    color: var(--white);
  }
  .banner-six__content2 .arry-btn:hover {
    transform: rotate(45deg);
  }
  @media (max-width: 575px) {
    .banner-six__content2 .arry-btn {
      margin-top: 20px;
    }
  }
  .banner-six__slider .slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: scale(1);
    -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;
  }
  .banner-six__slider .slide-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(104.49deg, rgba(18, 28, 39, 0.99) 28.87%, rgba(35, 48, 50, 0) 80.6%);
    z-index: 1;
  }
  .banner-six__slider .swiper-slide-active .slide-bg {
  /*  -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);*/
  }
  
  .banner-seven-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .banner-seven-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(20, 30, 41, 0.9607843137);
    z-index: -1;
  }
  .banner-seven__wrp {
    padding: 250px 80px 320px 80px;
  }
  @media (max-width: 1199px) {
    .banner-seven__wrp {
      padding: 200px 80px;
    }
  }
  @media (max-width: 991px) {
    .banner-seven__wrp {
      padding: 200px 30px;
      padding-bottom: 80px;
    }
  }
  @media (max-width: 575px) {
    .banner-seven__wrp {
      padding: 150px 15px;
      padding-bottom: 80px;
    }
  }
  .banner-seven__content {
    max-width: 870px;
    position: relative;
    z-index: 1;
  }
  .banner-seven__content .title {
    color: var(--white);
  }
  .banner-seven__content .title span {
    color: inherit;
  }
  .banner-seven__content .arry-btn {
    margin-top: 50px;
    font-size: 60px;
    color: var(--white);
    transform: rotate(-45deg);
  }
  .banner-seven__content .arry-btn:hover {
    transform: rotate(0);
  }
  .banner-seven__image {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 1016px;
  }
  .banner-seven__image img {
    width: 100%;
  }
  .banner-seven__image .text1 {
    font-size: 96px;
    line-height: 90px;
    font-weight: 500;
    font-family: var(--font-title);
    color: rgba(255, 255, 255, 0.1019607843);
    text-transform: uppercase;
    position: absolute;
    top: 25px;
    left: 35px;
    z-index: -1;
    transform: rotate(-24.07deg);
    letter-spacing: 0.2em;
  }
  .banner-seven__image .text2 {
    font-size: 96px;
    line-height: 90px;
    font-weight: 500;
    font-family: var(--font-title);
    color: rgba(255, 255, 255, 0.1019607843);
    text-transform: uppercase;
    position: absolute;
    top: 150px;
    right: -110px;
    z-index: -1;
    transform: rotate(53.22deg);
    letter-spacing: 0.2em;
  }
  @media (max-width: 1199px) {
    .banner-seven__image {
      display: none;
    }
  }
  
  .banner-eight-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-eight-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(8, 31, 35, 0.6980392157);
    z-index: 0;
  }
  .banner-eight__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .banner-eight__content {
    max-width: 850px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding-top: 360px;
    padding-bottom: 230px;
  }
  @media (max-width: 991px) {
    .banner-eight__content {
      padding-top: 150px;
      padding-bottom: 80px;
    }
  }
  .banner-eight__content .title {
    color: var(--white);
  }
  .banner-eight__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    max-width: 590px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .banner-eight__content .btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
  }
  @media (max-width: 991px) {
    .banner-eight__content .btns {
      gap: 15px;
    }
  }
  .banner-eight__content .btns i {
    display: inline-block;
    transform: translate(10px) rotate(-45deg);
    transition: var(--transition);
  }
  .banner-eight__content .btns:hover i {
    transform: translate(10px) rotate(0deg);
  }
  
  .banner-nine-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: rgba(18, 28, 39, 0.9882352941);
  }
  .banner-nine__circle {
    position: absolute;
    bottom: 60px;
    right: 51%;
    z-index: -1;
  }
  .banner-nine__image {
    max-width: 905px;
    float: right;
  }
  .banner-nine__image img {
    width: 100%;
  }
  @media (max-width: 1199px) {
    .banner-nine__image {
      max-width: 100%;
      float: unset;
    }
  }
  .banner-nine__content {
    max-width: 900px;
    padding: 70px;
  }
  @media (max-width: 767px) {
    .banner-nine__content {
      padding: 60px 15px;
    }
  }
  .banner-nine__content .title {
    color: var(--white);
  }
  .banner-nine__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 20px;
    max-width: 630px;
  }
  .banner-nine__content .arry-btn {
    margin-top: 30px;
    font-size: 40px;
    color: var(--white);
  }
  .banner-nine__content .arry-btn i {
    display: inline-block;
    transform: rotate(90deg);
  }
  
  .banner-ten-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-ten__content {
    max-width: 1170px;
    position: relative;
    z-index: 1;
    padding: 130px 400px 70px 125px;
    min-height: 520px;
    /* background: aqua; */
  }
  @media (max-width: 991px) {
    .banner-ten__content {
      padding: 150px 30px;
    }
  }
  @media (max-width: 767px) {
    .banner-ten__content {
      padding: 130px 15px;
      padding-bottom: 80px;
    }
  }
  .banner-ten__content .text {
    font-size: 18px;
    line-height: 36px;
    margin-top: 20px;
    max-width: 490px;
  }
  .banner-ten__content .btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .banner-ten__content .btns .btn-one, .banner-ten__content .btns .btn-one-light, .banner-ten__content .btns .btn-one-light2 {
    padding: 15px 45px;
    font-size: 18px;
  }
  .banner-ten__content .btns .btn-one i, .banner-ten__content .btns .btn-one-light i, .banner-ten__content .btns .btn-one-light2 i {
    transform: translateX(10px);
  }
  .banner-ten__content .btns .play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .banner-ten__content .btns .play-btn .video-popup {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--black);
    border: 1px solid var(--black);
  }
  @media (max-width: 575px) {
    .banner-ten__content .btns .btn-one, .banner-ten__content .btns .btn-one-light, .banner-ten__content .btns .btn-one-light2 {
      padding: 8px 20px;
      font-size: 14px;
      padding-right: 30px;
    }
    .banner-ten__content .btns .play-btn {
      gap: 5px;
    }
    .banner-ten__content .btns .play-btn h5 {
      font-size: 14px;
    }
    .banner-ten__content .btns .play-btn .video-popup {
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      transition: var(--transition);
    }
  }
  .banner-ten__slider .slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    opacity: 1;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
   /* transform: scale(1);
    -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;*/
  }



  .banner-ten__slider .slide-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(270deg, rgba(245, 245, 245, 0) 35.16%, #f5f5f5 69.06%);
    z-index: 1;
  }
  .banner-ten__slider .swiper-slide-active .slide-bg {
    /*-webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    transform: scale(1.12);*/
  }
  .banner-ten__slider.dark-area .slide-bg::before {
    background: linear-gradient(270deg, rgba(22, 32, 43, 0.45) 35.16%, #16202b 69.06%);
  }
  
  .banner-eleven-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--sub-bg);
  }
  .banner-eleven__shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .banner-eleven__wrp {
    padding: 220px 80px;
  }
  @media (max-width: 991px) {
    .banner-eleven__wrp {
      padding: 80px 30px;
      padding-top: 150px;
    }
  }
  @media (max-width: 575px) {
    .banner-eleven__wrp {
      padding: 80px 15px;
      padding-top: 100px;
    }
  }
  .banner-eleven__content {
    max-width: 900px;
    position: relative;
    z-index: 1;
  }
  .banner-eleven__content .title span {
    color: inherit;
  }
  .banner-eleven__content .title .whitespace {
    width: 15px;
  }
  @media (max-width: 991px) {
    .banner-eleven__content .title .whitespace {
      width: 8px;
    }
  }
  .banner-eleven__content .text {
    font-size: 18px;
    line-height: 36px;
    margin-top: 20px;
    max-width: 650px;
  }
  .banner-eleven__content .btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  .banner-eleven__content .btns .btn-one, .banner-eleven__content .btns .btn-one-light, .banner-eleven__content .btns .btn-one-light2 {
    padding: 15px 45px;
    font-size: 18px;
  }
  .banner-eleven__content .btns .btn-one i, .banner-eleven__content .btns .btn-one-light i, .banner-eleven__content .btns .btn-one-light2 i {
/*    transform: translateX(10px);*/
  }
  @media (max-width: 575px) {
    .banner-eleven__content .btns .btn-one, .banner-eleven__content .btns .btn-one-light, .banner-eleven__content .btns .btn-one-light2 {
      padding: 8px 20px;
      font-size: 14px;
      padding-right: 30px;
    }
  }
  .banner-eleven__image {
    max-width: 627px;
    position: absolute;
    bottom: 0;
    right: 10%;
  }
  .banner-eleven__image img {
    width: 100%;
  }
  .banner-eleven__image .info1 {
    position: absolute;
    bottom: 102px;
    left: -45px;
  }
  .banner-eleven__image .info2 {
    position: absolute;
    bottom: 140px;
    right: -50px;
  }
  .banner-eleven__image .info3 {
    position: absolute;
    top: 44%;
    left: -55px;
  }
  .banner-eleven__image .circle {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    max-width: 494px;
  }
  @media (max-width: 1600px) {
    .banner-eleven__image {
      right: 5%;
    }
  }
  @media (max-width: 1199px) {
    .banner-eleven__image {
      display: none;
    }
  }
  
  .banner-twelve-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .banner-twelve__shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .banner-twelve__shape-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  @media (max-width: 991px) {
    .banner-twelve__shape-right {
      display: none;
    }
  }
  .banner-twelve__image {
    position: absolute;
    bottom: 0;
    right: 15%;
    padding: 0 20px;
  }
  .banner-twelve__image .sign {
    position: absolute;
    left: 100px;
    bottom: 95px;
  }
  @media (max-width: 1399px) {
    .banner-twelve__image {
      right: 5%;
    }
  }
  @media (max-width: 991px) {
    .banner-twelve__image {
      display: none;
    }
  }
  .banner-twelve__content {
    max-width: 1170px;
    position: relative;
    z-index: 1;
    padding: 190px 80px 250px 80px;
  }
  @media (max-width: 991px) {
    .banner-twelve__content {
      padding: 150px 30px 80px 30px;
    }
  }
  @media (max-width: 575px) {
    .banner-twelve__content {
      padding: 100px 15px 80px 15px;
    }
  }
  .banner-twelve__content .text {
    font-size: 18px;
    line-height: 36px;
    margin-top: 20px;
    max-width: 660px;
  }
  .banner-twelve__content .btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 660px;
  }
  @media (max-width: 575px) {
    .banner-twelve__content .btns {
      gap: 15px;
    }
  }
  @media (max-width: 575px) {
    .banner-twelve__content .btns .info svg {
      width: 30px;
      height: 30px;
    }
  }
  .banner-twelve__content .btns .play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .banner-twelve__content .btns .play-btn .video-popup {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    border: 1px solid var(--black);
    background-color: var(--black);
  }
  @media (max-width: 575px) {
    .banner-twelve__content .btns .play-btn {
      gap: 5px;
    }
    .banner-twelve__content .btns .play-btn h5 {
      font-size: 14px;
    }
    .banner-twelve__content .btns .play-btn .video-popup {
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      transition: var(--transition);
    }
  }
  
  .banner-thirteen-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .banner-thirteen-area::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(18, 28, 39, 0.968627451);
    z-index: -1;
  }
  .banner-thirteen__wrp {
    padding: 350px 80px 270px 80px;
  }
  @media (max-width: 991px) {
    .banner-thirteen__wrp {
      padding: 200px 30px 130px 30px;
    }
  }
  @media (max-width: 575px) {
    .banner-thirteen__wrp {
      padding: 150px 15px 80px 15px;
    }
  }
  .banner-thirteen__content {
    max-width: 1020px;
    position: relative;
    z-index: 1;
  }
  .banner-thirteen__content .title {
    color: var(--white);
  }
  .banner-thirteen__content .text {
    color: var(--white);
    font-size: 18px;
    line-height: 36px;
    margin-top: 25px;
    max-width: 650px;
  }
  .banner-thirteen__content .arry-btn {
    margin-top: 50px;
    font-size: 48px;
    color: var(--white);
    transform: rotate(-45deg);
  }
  .banner-thirteen__content .arry-btn:hover {
    transform: rotate(0);
  }
  @media (max-width: 575px) {
    .banner-thirteen__content .arry-btn {
      margin-top: 30px;
    }
  }
  .banner-thirteen__image {
    max-width: 795px;
    position: absolute;
    bottom: 0;
    right: 12%;
  }
  .banner-thirteen__image img {
    width: 100%;
  }
  .banner-thirteen__image .info1 {
    position: absolute;
    bottom: 75px;
    left: -68px;
  }
  .banner-thirteen__image .info1 .arry {
    position: absolute;
    top: -120px;
    left: 40px;
  }
  .banner-thirteen__image .info2 {
    position: absolute;
    top: 48%;
    right: -150px;
  }
  @media (max-width: 1399px) {
    .banner-thirteen__image {
      display: none;
    }
  }
  .banner-thirteen__text {
    position: absolute;
    bottom: 80px;
    right: 90px;
    z-index: -1;
  }
  @media (max-width: 991px) {
    .banner-thirteen__text {
      display: none;
    }
  }
  
  .brand-area {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .brand__item {
    text-align: center;
    padding: 45px;
    border-right: 1px solid var(--border);
    height: 100%;
    cursor: pointer;
  }
  @media (max-width: 991px) {
    .brand__item {
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
  }
  .brand__item:hover img {
    animation: bounceIn 1s forwards;
  }
  
  .brand-two-area {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .brand-two__item {
    text-align: center;
  }
  @media (max-width: 767px) {
    .brand-two__item img {
      width: 50px;
      margin: 0 auto;
    }
  }
  
  .brand-six-area {
    overflow: hidden;
  }
  .brand-six__wrp {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
  }
  .brand-six__wrp.wrp-bottom {
    border-top: 1px solid var(--border);
  }
  .brand-six__wrp.wrp-bottom .brand-six__item {
    padding-top: 10px;
    padding-bottom: 10px !important;
  }
  .brand-six__item {
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }
  .brand-six__item:not(:last-child) {
    border-right: 1px solid var(--border);
  }
  .brand-six__item:hover img {
    animation: bounceIn 1s forwards;
  }
  @media (max-width: 991px) {
    .brand-six__item img {
      width: 50px;
      margin: 0 auto;
    }
  }
  .brand-six__text {
    text-align: center;
  }
  .brand-six__text .text a {
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
  }
  .brand-six__text .text a i {
    transition: var(--transition);
    font-size: 14px;
    margin-left: 3px;
  }
  .brand-six__text .text a:hover i {
    transform: translateX(5px);
  }
  
  .about-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .about__wrp {
    background-color: var(--black);
  }
  .about__wrp.light {
    background-color: var(--sub-bg);
  }
  .about__content ul {
    margin: 40px 0;
  }
  .about__content ul li {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-title);
    line-height: 24px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .about__content ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .about__content.light ul li {
    color: var(--black);
  }
  .about__content.light ul li svg path {
    fill: var(--black);
  }
  .about__testimonial {
    border-left: 1px solid rgba(255, 255, 255, 0.1019607843);
    border-right: 1px solid rgba(255, 255, 255, 0.1019607843);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
  }
  @media (max-width: 991px) {
    .about__testimonial {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
      border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
    }
  }
  .about__testimonial .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(10px);
  }
  .about__testimonial p {
    font-weight: 500;
    line-height: 30px;
    font-size: 18px;
    color: var(--white);
  }
  .about__testimonial h4 {
    color: var(--white);
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
  }
  .about__testimonial h4::after {
    position: absolute;
    top: 20px;
    left: 0px;
    width: 32px;
    height: 2px;
    background-color: var(--white);
    content: "";
  }
  .about__testimonial h4 span {
    color: var(--paragraph-light);
    font-weight: 400;
  }
  .about__testimonial.light {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .about__testimonial.light .icon {
    background-color: rgba(18, 28, 39, 0.1019607843);
  }
  .about__testimonial.light h4 {
    color: var(--black);
  }
  .about__testimonial.light h4::after {
    background-color: var(--black);
  }
  .about__testimonial.light h4 span {
    color: var(--black);
  }
  .about__testimonial.light p {
    font-weight: 400;
    color: var(--paragraph);
  }
  .about__funfact {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
  }
  .about__funfact ul {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .about__funfact ul .icon {
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    width: 100%;
    max-width: 66px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
  }
  .about__funfact ul li h3 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 500;
    color: var(--white);
    display: flex;
    align-items: center;
    align-items: center;
  }
  @media (max-width: 1199px) {
    .about__funfact ul li h3 {
      font-size: 50px;
      line-height: 60px;
    }
  }
  .about__funfact ul li h3 span {
    color: inherit;
  }
  .about__funfact ul li h3 sup {
    color: var(--white);
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
    display: inline-block;
    margin-left: 6px;
  }
  .about__funfact p {
    color: var(--white);
    text-transform: uppercase;
    margin-top: 10px;
  }
  .about__funfact.light p {
    color: var(--paragraph);
  }
  .about__funfact.light ul .icon {
    background-color: rgba(18, 28, 39, 0.1019607843);
  }
  .about__funfact.light ul li h3 {
    color: var(--black);
  }
  .about__funfact.light ul li sup {
    color: var(--black);
  }
  .about__item {
    padding: 80px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 1399px) {
    .about__item {
      padding: 80px 40px;
    }
  }
  @media (max-width: 1199px) {
    .about__item {
      padding: 50px 30px;
    }
  }
  .about__item .shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .about__item:hover .icon svg {
    animation: pxl_zigzag 0.8s infinite;
  }
  .about__item:hover .shape {
    opacity: 1;
    visibility: visible;
  }
  .about__rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: 0;
  }
  .about__rectangle .item {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .about__rectangle .item.animated {
    height: 80px;
  }
  .about__rectangle .item-dark {
    width: 0px;
    height: 80px;
    transition: all 0.3s ease-in-out 0.5s;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 0;
    left: 80px;
  }
  .about__rectangle .item-dark.animated {
    width: 80px;
  }
  @media (max-width: 767px) {
    .about__rectangle {
      display: none;
    }
  }
  
  .about-two-area {
    overflow: hidden;
  }
  .about-two-right {
    padding: 0 80px;
  }
  @media (max-width: 1399px) {
    .about-two-right {
      padding: 0;
    }
  }
  .about-two__image {
    position: relative;
    z-index: 1;
  }
  .about-two__image img {
    width: 100%;
  }
  .about-two__content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
  @media (max-width: 575px) {
    .about-two__content {
      flex-wrap: wrap;
    }
  }
  .about-two__content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }
  .about-two__content ul li:last-child {
    border: none;
    padding-bottom: 0;
  }
  .about-two__rectangle {
    position: absolute;
    z-index: 0;
    width: 160px;
    height: 160px;
    bottom: 0px;
    right: 0;
  }
  .about-two__rectangle .item-one {
    width: 80px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease-in-out 1s;
    position: absolute;
    bottom: 80px;
    left: 0;
  }
  .about-two__rectangle .item-one.animated {
    height: 80px;
  }
  .about-two__rectangle .item-two {
    width: 0px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease-in-out 1s;
    position: absolute;
    top: 80px;
    left: 80px;
  }
  .about-two__rectangle .item-two.animated {
    width: 80px;
  }
  .about-two__rectangle .item-three {
    width: 0px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.5s ease-in-out 0.5s;
    position: absolute;
    bottom: 0px;
    left: 0px;
  }
  .about-two__rectangle .item-three.animated {
    width: 80px;
    height: 80px;
  }
  @media (max-width: 767px) {
    .about-two__rectangle {
      display: none;
    }
  }
  
  .about-three-area {
    overflow: hidden;
  }
  .about-three__image {
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .about-three__image img {
    width: 100%;
    height: 100%;
  }
  .about-three__image .icon {
    position: absolute;
    bottom: 60px;
    right: 60px;
  }
  .about-three__image .icon img {
    max-width: 156px;
  }
  @media (max-width: 991px) {
    .about-three__image .icon {
      bottom: 20px;
      right: 20px;
    }
    .about-three__image .icon img {
      max-width: 80px;
    }
  }
  .about-three__content {
    background-color: var(--sub-bg);
    padding: 100px;
    height: 100%;
    z-index: 1;
    position: relative;
  }
  .about-three__content .shape {
    position: absolute;
    bottom: 20px;
    right: 15px;
    z-index: -1;
  }
  @media (max-width: 1399px) {
    .about-three__content {
      padding: 60px 30px;
    }
  }
  @media (max-width: 767px) {
    .about-three__content {
      padding: 60px 15px;
    }
  }
  .about-three__content .text {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
    font-size: 19px;
    line-height: 35px;
  }
  @media (max-width: 1399px) {
    .about-three__content .text {
      font-size: 16px;
      line-height: 30px;
    }
  }
  .about-three__content .btn-group {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .about-three__content .btn-group span {
    display: inline-block;
    padding: 6px 20px;
    color: var(--paragraph);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--black);
    border-radius: 50px;
  }
  @media (max-width: 575px) {
    .about-three__content .btn-group {
      gap: 10px;
    }
    .about-three__content .btn-group span {
      gap: 10px;
      padding: 4px 10px;
      font-size: 14px;
    }
  }
  .about-three__content .list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 680px;
  }
  @media (max-width: 575px) {
    .about-three__content .list {
      flex-wrap: wrap;
    }
  }
  .about-three__content .list ul li {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .about-three__content .list ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  
  .about-four-area {
    position: relative;
  }
  .about-four-shape {
    position: absolute;
    left: -25px;
    bottom: 50px;
    width: 315px;
    height: 500px;
  }
  @media (max-width: 1199px) {
    .about-four-shape {
      display: none;
    }
  }
  .about-four__wrp {
    position: relative;
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
  }
  .about-four__content {
    max-width: 560px;
  }
  .about-four__content ul {
    display: flex;
    align-items: center;
    gap: 100px;
  }
  @media (max-width: 767px) {
    .about-four__content ul {
      display: block;
    }
  }
  @media (max-width: 767px) {
    .about-four__content ul li {
      margin-bottom: 30px;
    }
  }
  .about-four__item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .about-four__image {
    position: relative;
  }
  .about-four__image img {
    width: 100%;
  }
  .about-four__image .vertical-text {
    position: absolute;
    right: 30px;
    bottom: -50px;
    font-family: var(--playfair-font);
    font-weight: 700;
    font-size: 90px;
    line-height: 140px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(203, 147, 93, 0.5);
    -webkit-transition: 0.7s;
    transition: 0.7s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: right;
  }
  @media (max-width: 767px) {
    .about-four__image .vertical-text {
      font-size: 50px;
    }
  }
  
  .about-five-area {
    overflow: hidden;
  }
  .about-five__image {
    position: relative;
    z-index: 1;
  }
  .about-five__image img {
    width: 100%;
  }
  .about-five__image .icon {
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
  @media (max-width: 767px) {
    .about-five__image .icon {
      bottom: 20px;
      right: 20px;
      width: 80px;
    }
  }
  .about-five__wrp {
    max-width: 800px;
    width: 100%;
    float: right;
  }
  .about-five__wrp .text {
    max-width: 370px;
  }
  .about-five__wrp .btn-wrp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-five__wrp .wrp .head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .about-five__wrp .wrp .head h5 {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 40px;
    max-width: 550px;
    width: 100%;
  }
  .about-five__wrp .wrp .head h5 .line {
    width: 100%;
    height: 1px;
    background-color: var(--border);
    display: block;
  }
  .about-five__wrp .wrp .head .arry-wrp {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .about-five__wrp .wrp .head .arry-wrp button {
    font-size: 24px;
  }
  .about-five__item .count {
    color: var(--black);
  }
  .about-five__item p {
    max-width: 330px;
  }
  
  .about-six-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .about-six__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .about-six__bg.dark-mode::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #131b24 41.73%, rgba(19, 27, 36, 0.03) 75.54%);
  }
  .about-six__wrp {
    max-width: 1370px;
    margin: 0 auto;
  }
  .about-six__image {
    max-width: 611px;
  }
  .about-six__image img {
    width: 100%;
  }
  .about-six__item {
    padding: 10px 0;
  }
  .about-six__item .text {
    font-weight: 500;
    color: var(--black);
    margin-top: 10px;
  }
  .about-six__item .number {
    margin: 30px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .about-six__item .number span {
    font-size: 16px;
    font-family: var(--font-body);
    margin: 0 15px;
  }
  .about-six__item .info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
  }
  
  .about-eight-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 290px;
  }
  @media (max-width: 1399px) {
    .about-eight-area {
      padding-top: 130px;
    }
  }
  @media (max-width: 767px) {
    .about-eight-area {
      padding-top: 60px;
    }
  }
  .about-eight__wrp {
    max-width: 1460px;
    margin: 0 auto;
  }
  .about-eight__wrp .about-five__wrp {
    max-width: 100%;
  }
  .about-eight__wrp .about-five__wrp .text {
    max-width: 660px;
  }
  .about-eight__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .about-eight__bg.dark-mode::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #131b24 41.73%, rgba(19, 27, 36, 0.03) 75.54%);
  }
  .about-eight__image {
    position: absolute;
    bottom: 0;
    right: 12%;
  }
  @media (max-width: 1399px) {
    .about-eight__image {
      right: 2%;
    }
    .about-eight__image img {
      max-width: 600px;
    }
  }
  @media (max-width: 1199px) {
    .about-eight__image {
      display: none;
    }
  }
  
  .about-ten-area {
    overflow: hidden;
    background-color: var(--sub-bg2);
  }
  .about-ten__wrp {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .about-ten__image {
    position: absolute;
    top: 50%;
    right: -22%;
    transform: translateY(-50%);
    max-width: 776px;
  }
  .about-ten__image img {
    width: 100%;
  }
  .about-ten__image .info {
    position: absolute;
    top: 23%;
    left: -50px;
  }
  .about-ten__image .shape {
    position: absolute;
    top: 90px;
    left: 70px;
    z-index: -1;
  }
  @media (max-width: 1199px) {
    .about-ten__image {
      display: none;
    }
  }
  .about-ten__content {
    max-width: 620px;
  }
  .about-ten__content .text {
    max-width: 550px;
  }
  .about-ten__content .info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  .about-ten__content .info .btn-one, .about-ten__content .info .btn-one-light, .about-ten__content .info .btn-one-light2 {
    padding: 10px 40px;
  }
  .about-ten__content .info .btn-one i, .about-ten__content .info .btn-one-light i, .about-ten__content .info .btn-one-light2 i {
    transform: translateX(5px);
  }
  .about-ten__content .nav {
    border: none;
    gap: 25px;
  }
  @media (max-width: 767px) {
    .about-ten__content .nav {
      gap: 10px;
    }
  }
  .about-ten__content .nav .nav-item .nav-link {
    padding: 12px 30px;
    border: 1px solid var(--border);
    font-size: 18px;
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--black);
    background-color: transparent;
    transition: var(--transition);
    border-radius: 0;
  }
  @media (max-width: 767px) {
    .about-ten__content .nav .nav-item .nav-link {
      padding: 5px 12px;
      font-size: 14px;
    }
  }
  .about-ten__content .nav .nav-item .nav-link.active {
    background-color: var(--white);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1019607843);
    border: 1px solid transparent;
  }
  
  .about-eleven-area {
    overflow: hidden;
  }
  .about-eleven__wrp {
    max-width: 1150px;
    margin: 0 auto;
  }
  .about-eleven-right {
    border-left: 1px solid var(--border);
    height: 100%;
  }
  @media (max-width: 1199px) {
    .about-eleven-right {
      border: none;
    }
  }
  .about-eleven__year {
    position: relative;
    z-index: 1;
    max-width: 400px;
  }
  .about-eleven__year .count {
    font-size: 300px;
    font-weight: 500;
    line-height: 290px;
  }
  @media (max-width: 575px) {
    .about-eleven__year .count {
      font-size: 250px;
    }
  }
  .about-eleven__year span {
    display: inline-block;
    transform: rotate(-180deg);
    color: var(--black);
    line-height: 30px;
    writing-mode: vertical-rl;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .about-eleven__content {
    max-width: 580px;
    width: 100%;
    float: right;
  }
  .about-eleven__content .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .about-eleven__content .info .arrow-btn {
    font-weight: 500;
    color: var(--black);
    text-decoration: underline;
  }
  .about-eleven__content .info .arrow-btn i {
    margin-left: 5px;
    transition: var(--transition);
  }
  .about-eleven__content .info .arrow-btn:hover {
    text-decoration: none;
  }
  .about-eleven__content .info .arrow-btn:hover i {
    margin-left: 10px;
  }
  
  .about-thirteen-area {
    overflow: hidden;
  }
  .about-thirteen__image {
    overflow: hidden;
  }
  .about-thirteen__image img {
    width: 100%;
  }
  .about-thirteen__image img.image-last {
    transform: translateY(-80px);
  }
  @media (max-width: 991px) {
    .about-thirteen__image img.image-last {
      transform: translateY(-50px);
    }
  }
  
  .consult-area, .consult-seven-area {
    position: relative;
    z-index: 1;
  }
  .consult-left {
    padding: 130px 80px;
    background-color: var(--sub-bg);
  }
  @media (max-width: 1600px) {
    .consult-left {
      padding: 60px 30px;
    }
  }
  .consult-left .section-header {
    max-width: 650px;
  }
  .consult__image {
    position: sticky;
    top: 87px;
  }
  .consult__image img {
    width: 100%;
  }
  .consult__image .icon {
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
  @media (max-width: 767px) {
    .consult__image .icon {
      bottom: 30px;
      right: 30px;
    }
    .consult__image .icon img {
      width: 60px;
    }
  }
  .consult__service {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  @media (max-width: 767px) {
    .consult__service {
      gap: 30px;
    }
  }
  @media (max-width: 575px) {
    .consult__service {
      flex-wrap: wrap;
    }
  }
  .consult__service .content-box {
    max-width: 420px;
    flex-shrink: 0;
  }
  .consult__service .content-box h5 {
    margin-bottom: 20px;
  }
  .consult__service ul li {
    line-height: 26px;
    color: var(--theme-color1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 10px 0px 17px;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .consult__service ul li:not(.last-child) {
    margin-bottom: 5px;
  }
  .consult__service ul li i {
    color: var(--theme-color1);
  }
  .consult__experience .check-list-box {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .consult__experience .check-list-box ul li {
    line-height: 26px;
    color: var(--theme-color1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0px;
    text-transform: capitalize;
    margin-bottom: 15px;
  }
  .consult__experience .check-list-box ul li:not(.last-child) {
    margin-bottom: 5px;
  }
  .consult__experience .check-list-box ul li i {
    color: var(--white);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    background-color: var(--theme-color2);
  }
  .consult__experience-bar .funfact-outer {
    display: flex;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
    flex-wrap: wrap;
  }
  .consult__experience-bar .funfact-outer .funfact-item {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 255px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .consult__experience-bar .funfact-outer .funfact-item h2 {
    color: var(--theme-color1);
    flex-shrink: 0;
  }
  .consult__experience-bar .funfact-outer .funfact-item:hover {
    border-color: var(--theme-color1);
  }
  
  .achivement-area {
    overflow: hidden;
  }
  .achivement-left {
    max-width: 600px;
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .achivement-left .shape {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: -1;
  }
  .achivement__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 50px 0;
    border-top: 1px solid var(--border);
    position: relative;
  }
  .achivement__item:last-child {
    padding-bottom: 0;
  }
  .achivement__item .title {
    width: 52%;
  }
  .achivement__item .sub-title {
    width: 28%;
  }
  .achivement__item .hover-image {
    width: 300px;
    height: 400px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 75%;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    margin: -200px 0 0 -150px;
    overflow: hidden;
    pointer-events: none;
  }
  .achivement__item:hover .hover-image {
    opacity: 1;
  }
  
  .case-area {
    position: relative;
    z-index: 1;
  }
  .case__wrp {
    max-width: 1460px;
    margin: 0 auto;
  }
  .case__item {
    border: 1px solid var(--border);
    background-color: var(--white);
    margin-bottom: 80px;
    position: sticky;
    top: 130px;
  }
  .case__item .image {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .case__item .image img {
    transition: 1s;
  }
  .case__item .image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--border);
    transform: scaleY(0);
    transition: var(--transition);
    z-index: 0;
  }
  .case__item .image .arry-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--black);
    position: absolute;
    z-index: 1;
    right: 50px;
    top: 50px;
    font-size: 28px;
    transform: rotate(-45deg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    margin-right: -20px;
  }
  .case__item .image .arry-btn:hover {
    transform: rotate(0deg);
  }
  @media (max-width: 991px) {
    .case__item .image .arry-btn {
      right: 30px;
      top: 30px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      border-radius: 50%;
      transition: var(--transition);
      font-size: 18px;
    }
  }
  .case__item .content {
    padding: 50px;
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: 100%;
  }
  @media (max-width: 575px) {
    .case__item .content {
      padding: 30px;
    }
  }
  .case__item .content .title {
    margin-bottom: 5px;
  }
  .case__item .content .sub-title {
    font-size: 18px;
    font-family: var(--font-title);
  }
  .case__item:hover .image .arry-btn {
    opacity: 1;
    margin-right: 0px;
    visibility: visible;
  }
  .case__item:hover .image img {
    transform: scale(1.1);
  }
  .case__item:hover .image::after {
    transform: scale(1);
  }
  
  .choose-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .choose__wrp {
    max-width: 1070px;
    position: relative;
    z-index: 1;
    width: 100%;
    float: right;
    margin-top: -160px;
  }
  @media (max-width: 1600px) {
    .choose__wrp {
      margin-top: -80px;
    }
  }
  @media (max-width: 1399px) {
    .choose__wrp {
      margin-top: 60px;
      max-width: 100%;
    }
  }
  .choose-right {
    max-width: 780px;
    padding-top: 60px;
    padding-left: 120px;
  }
  @media (max-width: 1399px) {
    .choose-right {
      padding-left: 0;
      padding-top: 0;
    }
  }
  .choose__image {
    position: relative;
    z-index: 1;
  }
  .choose__image img {
    width: 100%;
  }
  .choose__image .icon {
    position: absolute;
    left: 60px;
    bottom: 60px;
  }
  @media (max-width: 767px) {
    .choose__image .icon {
      left: 20px;
      bottom: 20px;
    }
    .choose__image .icon svg {
      width: 80px;
      height: 80px;
    }
  }
  .choose__item {
    padding: 40px;
    background-color: var(--black);
  }
  .choose__item .icon {
    transition: 0.7s;
    display: inline-block;
  }
  .choose__item .title {
    color: var(--white);
  }
  .choose__item .text {
    color: var(--white);
    margin-top: 5px;
    line-height: 28px;
  }
  .choose__item .arrow-btn {
    font-size: 40px;
    color: var(--white);
  }
  .choose__item .arrow-btn:hover {
    transform: rotate(45deg);
  }
  .choose__item.light {
    background-color: var(--sub-bg);
  }
  .choose__item.light .title {
    color: var(--heading-color);
  }
  .choose__item.light .text {
    color: var(--heading-color);
  }
  .choose__item.light .arrow-btn {
    color: var(--heading-color);
  }
  .choose__item:hover .icon {
    transform: rotateY(360deg);
  }
  .choose__tab .nav {
    border-bottom: 2px solid var(--border);
    gap: 10px;
    justify-content: space-between;
  }
  @media (max-width: 575px) {
    .choose__tab .nav {
      border-bottom: 1px solid var(--border);
    }
  }
  .choose__tab .nav .nav-item .nav-link {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-title);
    padding: 0;
    padding-bottom: 20px;
    border: none;
    color: var(--black);
    box-shadow: none;
  }
  .choose__tab .nav .nav-item .nav-link.active {
    border-bottom: 2px solid var(--black);
    background-color: transparent;
  }
  @media (max-width: 575px) {
    .choose__tab .nav .nav-item .nav-link.active {
      border-bottom: 1px solid var(--black);
    }
  }
  @media (max-width: 575px) {
    .choose__tab .nav .nav-item .nav-link {
      font-size: 13px;
      padding-bottom: 5px;
    }
  }
  
  .choose-one-area {
    overflow: hidden;
  }
  @media (max-width: 1399px) {
    .choose-one-area {
      padding-top: 0;
    }
  }
  .choose-one__wrp {
    padding: 0px 120px;
    padding-bottom: 130px;
  }
  @media (max-width: 1399px) {
    .choose-one__wrp {
      padding: 0px;
    }
  }
  @media (max-width: 767px) {
    .choose-one__wrp {
      padding: 60px 15px;
    }
  }
  .choose-one__wrp .work-ten__wrp::after {
    display: none;
  }
  @media (max-width: 767px) {
    .choose-one__wrp .work-ten__wrp {
      gap: 0;
    }
  }
  .choose-one__image {
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .choose-one__image img {
    width: 100%;
  }
  .choose-one__content .item {
    display: flex;
    gap: 50px;
    width: 90%;
  }
  @media (max-width: 767px) {
    .choose-one__content .item {
      gap: 20px;
      width: 95%;
    }
  }
  @media (max-width: 470px) {
    .choose-one__content .item {
      gap: 10px;
      width: 100%;
      flex-wrap: wrap;
    }
  }
  .choose-one__content .item .icon {
    display: flex;
    gap: 20px;
    min-width: 220px;
  }
  @media (max-width: 767px) {
    .choose-one__content .item .icon {
      gap: 10px;
      min-width: 150px;
    }
  }
  @media (max-width: 470px) {
    .choose-one__content .item .icon {
      align-items: center;
    }
  }
  .choose-one__content .item:hover .icon svg {
    animation: pxl_zigzag 0.8s forwards;
  }
  .choose-one__content .item p {
    line-height: 28px;
  }
  .choose-one__content .item ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-weight: 500;
    color: var(--black);
    font-family: var(--font-title);
  }
  .choose-one__content .line {
    border-top: 2px solid var(--border);
    margin: 30px 0;
  }
  .choose-one__rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 160px;
    right: 160px;
    z-index: 0;
  }
  .choose-one__rectangle .item {
    width: 0px;
    height: 80px;
    background-color: var(--white);
    transition: all 0.5s ease-in-out 0.2s;
    position: absolute;
    top: 0;
    right: 0;
  }
  .choose-one__rectangle .item.animated {
    width: 80px;
  }
  .choose-one__rectangle .item-dark {
    width: 0px;
    height: 80px;
    transition: all 0.5s ease-in-out 0.2s;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 0;
    left: 80px;
  }
  .choose-one__rectangle .item-dark.animated {
    width: 80px;
  }
  @media (max-width: 767px) {
    .choose-one__rectangle {
      display: none;
    }
  }
  
  .choose-three-area {
    overflow: hidden;
  }
  .choose-three__wrp {
    padding: 130px 120px;
    background-color: var(--sub-bg);
  }
  @media (max-width: 1399px) {
    .choose-three__wrp {
      padding: 60px 30px;
    }
  }
  @media (max-width: 767px) {
    .choose-three__wrp {
      padding: 60px 15px;
    }
  }
  .choose-three__tab .nav {
    border-bottom: 1px solid var(--border);
    justify-content: space-around;
  }
  .choose-three__tab .nav .nav-item .nav-link {
    padding: 15px;
    border: none;
    font-weight: 500;
    font-family: var(--font-title);
    color: var(--black);
    box-shadow: none;
  }
  .choose-three__tab .nav .nav-item .nav-link.active {
    border-bottom: 2px solid var(--black);
    background-color: transparent;
  }
  .choose-three-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  @media (max-width: 575px) {
    .choose-three-right {
      flex-wrap: wrap;
    }
  }
  .choose-three__image {
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .choose-three__image img {
    width: 100%;
    height: 100%;
  }
  .choose-three__content {
    max-width: 380px;
    width: 100%;
  }
  .choose-three__content ul {
    margin-top: 30px;
  }
  .choose-three__content ul li {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
  }
  @media (max-width: 575px) {
    .choose-three__content {
      order: 2;
      max-width: 100%;
    }
  }
  .choose-three__chart {
    max-width: 370px;
    width: 100%;
    padding: 40px;
    background-color: var(--white);
  }
  .choose-three__chart img {
    width: 100%;
  }
  @media (max-width: 575px) {
    .choose-three__chart {
      order: 1;
      max-width: 100%;
    }
  }
  .choose-three__rectangle {
    position: absolute;
    z-index: 0;
    width: 160px;
    height: 160px;
    bottom: 0px;
    left: 0;
  }
  .choose-three__rectangle .item-one {
    width: 80px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease-in-out 1s;
    position: absolute;
    bottom: 80px;
    left: 0;
  }
  .choose-three__rectangle .item-one.animated {
    height: 80px;
  }
  .choose-three__rectangle .item-two {
    width: 0px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    transition: all 0.5s ease-in-out 1s;
    position: absolute;
    top: 80px;
    left: 80px;
  }
  .choose-three__rectangle .item-two.animated {
    width: 80px;
  }
  .choose-three__rectangle .item-three {
    width: 0px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.5s ease-in-out 0.5s;
    position: absolute;
    bottom: 0px;
    left: 0px;
  }
  .choose-three__rectangle .item-three.animated {
    width: 80px;
    height: 80px;
  }
  @media (max-width: 767px) {
    .choose-three__rectangle {
      display: none;
    }
  }
  
  .choose-four-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--black);
  }
  .choose-four__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .choose-four__bg img {
    width: 100%;
  }
  .choose-four__wrp {
    max-width: 1460px;
    margin: 0 auto;
  }
  .choose-four__video {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    z-index: 1;
  }
  .choose-four__video img {
    width: 100%;
  }
  .choose-four__video::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(18, 28, 39, 0) 0%, rgba(18, 28, 39, 0.8) 70.47%);
    z-index: 0;
  }
  .choose-four__video-btn {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    text-align: center;
  }
  .choose-four__video-btn h4 {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
  }
  .choose-four__video .title {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3019607843);
    color: transparent;
    font-size: 160px;
    line-height: 120px;
    font-weight: 500;
    letter-spacing: 15px;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
    text-align: center;
  }
  @media (max-width: 1199px) {
    .choose-four__video .title {
      font-size: 70px;
      line-height: 70px;
      bottom: 10%;
    }
  }
  @media (max-width: 767px) {
    .choose-four__video {
      height: 500px;
    }
    .choose-four__video img {
      height: 100%;
      object-fit: cover;
    }
  }
  .choose-four-left {
    border-right: 1px solid rgba(233, 229, 226, 0.1019607843);
  }
  .choose-four-left .item {
    max-width: 500px;
  }
  .choose-four-left .item .info {
    color: var(--white);
    font-size: 116px;
    line-height: 116px;
    font-weight: 500;
  }
  .choose-four-left .item .info span {
    color: var(--white);
  }
  @media (max-width: 767px) {
    .choose-four-left .item .info {
      font-size: 60px;
      line-height: 60px;
    }
  }
  @media (max-width: 991px) {
    .choose-four-left {
      border: none;
    }
  }
  .choose-four-right, .video-nine__item {
    max-width: 575px;
    float: right;
  }
  @media (max-width: 991px) {
    .choose-four-right, .video-nine__item {
      float: left;
    }
  }
  .choose-four-right .text, .video-nine__item .text {
    color: var(--white);
  }
  .choose-four-right .progress-area .progress__title h4, .video-nine__item .progress-area .progress__title h4,
  .choose-four-right .progress-area .progress__title span,
  .video-nine__item .progress-area .progress__title span {
    color: var(--white) !important;
  }
  .choose-four-right .progress-area .progress, .video-nine__item .progress-area .progress {
    height: 19px;
    border: 1px solid var(--border-light);
    padding: 3px 4px;
    border-radius: 15px;
  }
  .choose-four-right .progress-area .progress .progress-bar, .video-nine__item .progress-area .progress .progress-bar {
    background-color: rgba(255, 255, 255, 0.1019607843);
    border-radius: 15px;
    backdrop-filter: blur(30px);
  }
  .choose-four__rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 0;
  }
  .choose-four__rectangle .item {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.5s;
    position: absolute;
    bottom: 80px;
    right: 0;
  }
  .choose-four__rectangle .item.animated {
    height: 80px;
  }
  .choose-four__rectangle .item-dark {
    width: 80px;
    height: 0px;
    transition: all 0.3s ease-in-out 0.2s;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    position: absolute;
    bottom: 0;
    left: 0px;
  }
  .choose-four__rectangle .item-dark.animated {
    height: 80px;
  }
  @media (max-width: 767px) {
    .choose-four__rectangle {
      display: none;
    }
  }
  
  .choose-seven-area {
    overflow: hidden;
  }
  .choose-seven__wrp {
    padding: 70px 70px;
    background-color: var(--sub-bg);
    height: 100%;
  }
  .choose-seven__wrp .wrp {
    max-width: 630px;
    position: relative;
  }
  @media (max-width: 1199px) {
    .choose-seven__wrp {
      padding: 120px 30px;
    }
  }
  @media (max-width: 767px) {
    .choose-seven__wrp {
      padding: 60px 15px;
    }
  }
  .choose-seven__wrp .testimonial-three__item {
    text-align: left;
  }
  .choose-seven__wrp .slider-arry {
    font-size: 18px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 10%;
    bottom: 10px;
    z-index: 1;
  }
  .choose-seven__wrp .slider-arry button {
    padding: 10px;
  }
  .choose-seven__image {
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .choose-seven__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .choose-seven__image .icon {
    position: absolute;
    left: 80px;
    bottom: 70px;
  }
  @media (max-width: 991px) {
    .choose-seven__image .icon {
      left: 40px;
      bottom: 30px;
    }
    .choose-seven__image .icon svg {
      width: 80px;
      height: 80px;
    }
  }
  
  .choose-twelve-area {
    overflow: hidden;
  }
  .choose-twelve__wrp {
    padding: 120px;
    background-color: var(--sub-bg2);
  }
  @media (max-width: 1399px) {
    .choose-twelve__wrp {
      padding: 60px 30px;
    }
  }
  @media (max-width: 575px) {
    .choose-twelve__wrp {
      padding: 60px 15px;
    }
  }
  .choose-twelve__image {
    height: 100%;
  }
  .choose-twelve__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .choose-twelve__content .list {
    max-width: 620px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  @media (max-width: 575px) {
    .choose-twelve__content .list {
      flex-wrap: wrap;
    }
  }
  .choose-twelve__content .list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .choose-twelve__content .list ul li:not(.last-child) {
    margin-bottom: 5px;
  }
  
  .consult-area, .consult-seven-area {
    position: relative;
    z-index: 1;
  }
  .consult-left {
    padding: 130px 120px;
    background-color: var(--sub-bg);
  }
  @media (max-width: 1600px) {
    .consult-left {
      padding: 60px 30px;
    }
  }
  .consult-left .section-header {
    max-width: 615px;
  }
  .consult__image {
    position: sticky;
    top: 100px;
  }
  .consult__image img {
    width: 100%;
  }
  .consult__image .icon {
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
  @media (max-width: 767px) {
    .consult__image .icon {
      bottom: 30px;
      right: 30px;
    }
    .consult__image .icon img {
      width: 60px;
    }
  }
  .consult__service {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  @media (max-width: 767px) {
    .consult__service {
      gap: 30px;
    }
  }
  @media (max-width: 575px) {
    .consult__service {
      flex-wrap: wrap;
    }
  }
  .consult__service ul {
    border-radius: 50%;
    height: 240px;
    line-height: 240px;
    max-width: 240px;
    width: 100%;
  }
  .consult__service ul li {
    color: var(--theme-color1);
    display: flex;
    align-items: center;
    font-family: var(--font-title);
    font-weight: 500;
    gap: 10px;
    line-height: 26px;
  }
  .consult__service ul li:not(.last-child) {
    margin-bottom: 5px;
  }
  .consult__service .consult-count .head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 60px;
    border-left: 1px solid var(--black);
  }
  @media (max-width: 1399px) {
    .consult__service .consult-count .head {
      padding-left: 20px;
    }
  }
  .consult__service .consult-count .head h2 {
    font-size: 120px;
    line-height: 90px;
    font-weight: 100;
    color: var(--heading-color);
  }
  @media (max-width: 1399px) {
    .consult__service .consult-count .head h2 {
      font-size: 60px;
      line-height: 60px;
    }
  }
  .consult__service .consult-count .head h2 span {
    color: inherit;
    font-weight: 500;
  }
  .consult__experience-bar .image {
    max-width: 624px;
  }
  @media (max-width: 767px) {
    .consult__experience .check-list-box {
      display: block;
    }
  }
  
  @media (max-width: 991px) {
    .consult-seven-area {
      margin-left: 0;
    }
  }
  
  .contact-area {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .contact__wrp {
    max-width: 1085px;
    float: right;
  }
  .contact__form {
    background-color: rgba(255, 255, 255, 0.6980392157);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 130px 120px;
  }
  @media (max-width: 767px) {
    .contact__form {
      padding: 60px 30px;
    }
  }
  .contact__form form {
    max-width: 850px;
  }
  .contact__form form input,
  .contact__form form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid transparent;
    color: var(--black);
    background-color: var(--white);
    transition: var(--transition);
  }
  .contact__form form input::placeholder,
  .contact__form form textarea::placeholder {
    color: var(--black);
  }
  .contact__form form input:focus,
  .contact__form form textarea:focus {
    border: 1px solid var(--border);
  }
  .contact__form form textarea {
    height: 240px;
    resize: none;
    border-radius: 20px;
  }
  .contact__form .nice-select {
    border-radius: 0;
  }
  .contact__form.dark-area {
    background-color: rgba(16, 16, 16, 0.6980392157);
  }
  .contact__form.dark-area form {
    max-width: 850px;
  }
  .contact__form.dark-area form input::placeholder,
  .contact__form.dark-area form textarea::placeholder {
    color: #131313;
  }
  
  form .error {
    color: red;
    font-size: 13px;
  }
  
  .contact-two-area {
    overflow: hidden;
  }
  .contact-two-left {
    background-color: var(--white);
    padding: 50px 30px;
  }
  @media (max-width: 767px) {
    .contact-two-left {
      padding: 30px 20px;
    }
  }
  .contact-two__content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--paragraph);
  }
  .contact-two__content ul li svg {
    margin-right: 10px;
  }
  @media (max-width: 767px) {
    .contact-two__content ul li {
      font-size: 14px;
    }
  }
  .contact-two__form {
    margin-top: 60px;
  }
  @media (max-width: 767px) {
    .contact-two__form {
      margin-top: 60px;
    }
  }
  .contact-two__form form .input input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black);
    padding-bottom: 3px;
  }
  @media (max-width: 767px) {
    .contact-two__form form .input input {
      padding-bottom: 10px;
    }
  }
  .contact-two__form form .textarea textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black);
    padding-bottom: 20px;
    resize: none;
    height: 120px;
  }
  .contact-two__form.dark-mode .input input {
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
    color: var(--black);
  }
  .contact-two__form.dark-mode .textarea textarea {
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
    color: var(--black);
  }
  .contact-two__form.dark-mode .btn-one, .contact-two__form.dark-mode .btn-one-light, .contact-two__form.dark-mode .btn-one-light2 {
    background-color: var(--black0);
    color: var(--black);
  }
  .contact-two__map {
    position: relative;
    z-index: 1;
  }
  .contact-two__map img {
    width: 100%;
  }
  .contact-two__map .location {
    position: absolute;
    top: 40px;
    left: 20%;
  }
  .contact-two__map .location img {
    width: unset;
  }
  @media (max-width: 767px) {
    .contact-two__map .location img {
      width: 200px;
    }
  }
  
  .contact-four-area, .contact-seven-area, .contact-nine-area {
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .contact-four__wrp, .contact-seven__wrp, .contact-nine__wrp {
    max-width: 1460px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transform: translateY(-130px);
  }
  @media (max-width: 767px) {
    .contact-four__wrp, .contact-seven__wrp, .contact-nine__wrp {
      transform: translateY(-60px);
    }
  }
  .contact-four__form {
    padding: 80px;
    background-color: var(--sub-bg);
  }
  .contact-four__form .section-header {
    max-width: 380px;
  }
  .contact-four__form form input,
  .contact-four__form form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
    background-color: transparent;
  }
  .contact-four__form form textarea {
    height: 150px;
    resize: none;
  }
  @media (max-width: 575px) {
    .contact-four__form {
      padding: 60px 15px;
    }
  }
  .contact-four__form.dark-area form input,
  .contact-four__form.dark-area form textarea {
    color: var(--black);
  }
  .contact-four__image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
  }
  .contact-four__image::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 21.63%, rgba(0, 0, 0, 0) 62.77%);
    content: "";
  }
  .contact-four__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-four__image .content {
    width: 75%;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-four__image .content .text {
    color: var(--white);
  }
  @media (max-width: 767px) {
    .contact-four__image .content {
      width: 90%;
      bottom: 30px;
    }
    .contact-four__image .content .text {
      font-size: 16px;
    }
  }
  .contact-four__image .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 10px;
  }
  @media (max-width: 767px) {
    .contact-four__image .info {
      margin-top: 20px;
    }
  }
  .contact-four__image .info .logo {
    width: 129px;
  }
  .contact-four__brand-text {
    color: var(--white);
    text-align: center;
  }
  .contact-four__rectangle {
    position: absolute;
    z-index: -1;
    width: 160px;
    height: 160px;
    bottom: 80px;
    right: 0;
  }
  .contact-four__rectangle .item-one {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    width: 0;
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    bottom: 80px;
    right: 0;
  }
  .contact-four__rectangle .item-one.animated {
    width: 80px;
  }
  .contact-four__rectangle .item-two {
    width: 80px;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease-in-out 0.5s;
    position: absolute;
    top: 80px;
    left: 0px;
  }
  .contact-four__rectangle .item-two.animated {
    height: 80px;
  }
  .contact-four__rectangle .item-three {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease-in-out 0.8s;
    position: absolute;
    top: 160px;
    left: 80px;
  }
  .contact-four__rectangle .item-three.animated {
    height: 80px;
  }
  @media (max-width: 767px) {
    .contact-four__rectangle {
      display: none;
    }
  }
  
  .contact-six-aera {
    overflow: hidden;
  }
  .contact-six__wrp {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 100px;
  }
  @media (max-width: 1199px) {
    .contact-six__wrp {
      padding: 60px 30px;
    }
  }
  .contact-six__image {
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .contact-six__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-six__image .circle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.2);
    padding-top: 70px;
  }
  @media (max-width: 767px) {
    .contact-six__image .circle-btn {
      width: 150px;
      height: 150px;
      line-height: 150px;
      text-align: center;
      border-radius: 50%;
      transition: var(--transition);
      padding-top: 40px;
    }
  }
  .contact-six__image .circle-btn span {
    display: block;
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
  .contact-six__image .circle-btn span i {
    transform: rotate(-45deg);
    transition: var(--transition);
  }
  .contact-six__image .circle-btn:hover span i {
    transform: rotate(0);
  }
  .contact-six__item .section-header {
    max-width: 800px;
  }
  .contact-six__item .section-header .title {
    font-size: 80px;
    line-height: 90px;
    font-weight: 400;
  }
  @media (max-width: 767px) {
    .contact-six__item .section-header .title {
      font-size: 30px;
      line-height: 40px;
    }
  }
  .contact-six__item .wrp {
    max-width: 640px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid var(--border-light);
  }
  @media (max-width: 767px) {
    .contact-six__item .wrp {
      gap: 20px;
    }
  }
  
  .contact-seven-area, .contact-nine-area {
    position: relative;
    z-index: 1;
  }
  .contact-seven-area::after, .contact-nine-area::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 136px;
    background-color: var(--black);
    content: "";
    z-index: -1;
  }
  .contact-seven__dark-mode::after {
    background-color: var(--sub-bg);
  }
  .contact-seven__wrp, .contact-nine__wrp {
    transform: translate(0);
  }
  
  .contact-nine__wrp {
    position: relative;
    z-index: 1;
  }
  .contact-nine__wrp .rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 0;
  }
  .contact-nine__wrp .rectangle .item {
    width: 0px;
    height: 80px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    top: 80px;
    right: 0;
  }
  .contact-nine__wrp .rectangle .item.animated {
    width: 80px;
  }
  .contact-nine__wrp .rectangle .item-dark {
    width: 80px;
    height: 0;
    transition: all 0.3s ease-in-out 0.5s;
    background-color: var(--black);
    position: absolute;
    bottom: 0px;
    left: 0;
  }
  .contact-nine__wrp .rectangle .item-dark.animated {
    height: 80px;
  }
  @media (max-width: 767px) {
    .contact-nine__wrp .rectangle {
      display: none;
    }
  }
  
  .blog-area {
    overflow: hidden;
  }
  .blog__item .blog__image, .blog-two__item .blog__image {
    position: relative;
    overflow: hidden;
  }
  .blog__item .blog__image img, .blog-two__item .blog__image img {
    width: 100%;
    transition: var(--transition);
  }
  .blog__item .blog__image img:first-child, .blog-two__item .blog__image img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translateX(50%) scaleX(2);
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  .blog__item .blog__content, .blog-two__item .blog__content {
    padding-top: 30px;
    padding-right: 30px;
  }
  .blog__item .blog__content h4, .blog-two__item .blog__content h4 {
    line-height: 36px;
    margin-top: 10px;
  }
  .blog__item .blog__content ul, .blog-two__item .blog__content ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .blog__item .blog__content ul li, .blog-two__item .blog__content ul li {
    font-size: 14px;
    color: var(--black);
  }
  .blog__item .blog__content ul .date, .blog-two__item .blog__content ul .date {
    columns: var(--paragraph);
    position: relative;
  }
  .blog__item .blog__content ul .date::before, .blog-two__item .blog__content ul .date::before {
    position: absolute;
    width: 4px;
    height: 4px;
    line-height: 4px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--paragraph);
    content: "";
    left: -15px;
    top: 13px;
  }
  .blog__item:hover .blog__image img:first-child, .blog-two__item:hover .blog__image img:first-child {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  .blog__item:hover .blog__image img:last-child, .blog-two__item:hover .blog__image img:last-child {
    -webkit-transform: translateX(-50%) scaleX(2);
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  
  .blog-two-area {
    overflow: hidden;
  }
  .blog-two__wrp {
    max-width: 1410px;
    margin: 0 auto;
  }
  .blog-three-area {
    overflow: hidden;
  }
  .blog-three__item .image {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .blog-three__item .image img {
    transition: 0.9s;
  }
  .blog-three__item .image::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    top: 0;
    transform: scale(0.2);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
  }
  .blog-three__item ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
  }
  .blog-three__item ul li {
    font-size: 14px;
    color: var(--black);
  }
  .blog-three__item ul .date {
    columns: var(--paragraph);
    position: relative;
  }
  .blog-three__item ul .date::before {
    position: absolute;
    width: 4px;
    height: 4px;
    line-height: 4px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--paragraph);
    content: "";
    left: -15px;
    top: 13px;
  }
  .blog-three__item .content {
    margin-top: 20px;
  }
  .blog-three__item .content .readMore-btn {
    margin-top: 20px;
    color: var(--black);
    font-weight: 500;
  }
  .blog-three__item .content .readMore-btn i {
    display: inline-block;
    transform: rotate(-45deg);
    transition: var(--transition);
    margin-left: 8px;
  }
  .blog-three__item .content .readMore-btn:hover i {
    transform: rotate(0deg);
  }
  .blog-three__item:hover .image img {
    transform: scale(1.1);
  }
  .blog-three__item:hover .image::after {
    transform: scale(1.5);
    opacity: 1;
    visibility: visible;
  }
  
  .blog-five-area {
    overflow: hidden;
  }
  .blog-five__item .image {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .blog-five__item .image img {
    transition: 0.9s;
  }
  .blog-five__item .image::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    left: 0;
    top: 0;
    transform: scale(0.2);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
  }
  .blog-five__item ul {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--white);
    padding: 10px;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .blog-five__item ul li {
    font-size: 14px;
    color: var(--black);
  }
  .blog-five__item ul .date {
    columns: var(--paragraph);
    position: relative;
  }
  .blog-five__item ul .date::before {
    position: absolute;
    width: 4px;
    height: 4px;
    line-height: 4px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--paragraph);
    content: "";
    left: -15px;
    top: 13px;
  }
  .blog-five__item .content {
    margin-top: 20px;
  }
  .blog-five__item .content .readMore-btn {
    margin-top: 20px;
    color: var(--black);
    font-weight: 500;
  }
  .blog-five__item .content .readMore-btn i {
    display: inline-block;
    transform: rotate(-45deg);
    transition: var(--transition);
    margin-left: 8px;
  }
  .blog-five__item .content .readMore-btn:hover i {
    transform: rotate(0deg);
  }
  .blog-five__item:hover .image img {
    transform: scale(1.1);
  }
  .blog-five__item:hover .image::after {
    transform: scale(1.5);
    opacity: 1;
    visibility: visible;
  }
  
  .blog-six-area {
    overflow: hidden;
  }
  @media (max-width: 575px) {
    .blog-six-area {
      margin: 0 12px;
    }
  }
  
  .faq-area {
    overflow: hidden;
  }
  .faq__image {
    position: relative;
    z-index: 1;
  }
  .faq__image img {
    width: 100%;
  }
  .faq__image .icon {
    max-width: 201px;
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
  @media (max-width: 991px) {
    .faq__image .icon {
      bottom: 30px;
      right: 30px;
      width: 100px;
    }
  }
  .faq__item {
    padding: 100px;
  }
  @media (max-width: 1399px) {
    .faq__item {
      padding: 60px;
    }
  }
  @media (max-width: 575px) {
    .faq__item {
      padding: 60px 15px;
    }
  }
  .faq__accordion .accordion .accordion-header, .faq-one__accordion .accordion .accordion-header {
    background-color: var(--sub-bg);
  }
  .faq__accordion .accordion .accordion-body, .faq-one__accordion .accordion .accordion-body {
    background-color: var(--sub-bg);
  }
  .faq__accordion .accordion .accordion-item, .faq-one__accordion .accordion .accordion-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    background-color: transparent;
  }
  .faq__accordion .faq-btn svg, .faq-one__accordion .faq-btn svg {
    margin-left: 10px;
    transition: var(--transition);
  }
  .faq__accordion .faq-btn:hover svg, .faq-one__accordion .faq-btn:hover svg {
    margin-left: 15px;
  }
  
  .faq-one-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .faq-one__bg {
    bottom: 0;
    left: 32%;
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
  }
  @media (max-width: 991px) {
    .faq-one__bg {
      transform: unset;
      left: unset;
      right: 0;
    }
  }
  @media (max-width: 575px) {
    .faq-one__bg {
      display: none;
    }
  }
  .faq-one__image {
    bottom: 0;
    left: 45%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 0;
  }
  @media (max-width: 991px) {
    .faq-one__image {
      display: none;
    }
  }
  .faq-one__accordion .accordion .accordion-header {
    background-color: transparent;
  }
  .faq-one__accordion .accordion .accordion-header .accordion-button::before {
    background-color: transparent;
    width: unset;
  }
  .faq-one__accordion .accordion .accordion-body {
    background-color: transparent;
  }
  .faq-one__accordion .accordion .accordion-item {
    background-color: transparent;
  }
  .faq-one-left .section-header p {
    max-width: 450px;
  }
  
  .feature-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .feature__wrp {
    border-bottom: 1px solid var(--border);
  }
  .feature__item {
    position: relative;
    z-index: 1;
    padding: 60px;
    border-right: 1px solid var(--border);
  }
  .feature__item .arrow-btn {
    font-size: 34px;
    color: var(--black);
    transition: var(--transition);
    margin-top: 40px;
  }
  .feature__item .bg-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
  .feature__item .bg-line img {
    width: 100%;
    height: 100%;
  }
  .feature__item .feature__content h4 {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .feature__item .feature__content p {
    line-height: 30px;
  }
  .feature__item:hover .arrow-btn {
    transform: rotate(-45deg);
  }
  .feature__item:hover .bg-line {
    opacity: 1;
    visibility: visible;
  }
  .feature__item:hover .feature__icon svg {
    animation: swing 1s ease-in-out;
  }
  @media (max-width: 1399px) {
    .feature__item {
      padding: 30px;
    }
  }
  .feature__text {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature__text span {
    display: inline-block;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--black);
    border-radius: 50px;
    padding: 3px 18px;
    padding-top: 5px;
    margin-right: 15px;
  }
  .feature__text p {
    font-size: 18px;
    line-height: 34px;
    font-family: var(--font-title);
    color: var(--black);
    font-weight: 500;
  }
  .feature__text p a {
    font-weight: 600;
    text-decoration: underline;
  }
  .feature__text.dark-mode span {
    background-color: var(--border);
    color: var(--black);
  }
  
  .feature-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .feature-two__wrp {
    max-width: 1500px;
    margin: 0 auto;
  }
  .feature-two__item {
    position: relative;
    z-index: 1;
    padding: 60px;
    border-right: 1px solid var(--border);
    border: 1px solid var(--border);
    padding: 50px;
  }
  .feature-two__item .arrow-btn {
    font-size: 34px;
    color: var(--black);
    transition: var(--transition);
  }
  .feature-two__item .bg-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    transition: var(--transition);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
  .feature-two__item .bg-line img {
    width: 100%;
    height: 100%;
  }
  .feature-two__item:hover .arrow-btn {
    transform: rotate(-45deg);
  }
  .feature-two__item:hover .bg-line {
    opacity: 1;
    visibility: visible;
  }
  .feature-two__item.dark-mode {
    background-color: var(--sub-bg);
    border: none;
    transition: var(--transition);
  }
  .feature-two__item.dark-mode.active {
    background-color: var(--black0);
  }
  @media (max-width: 1399px) {
    .feature-two__item {
      padding: 30px;
    }
  }
  @media (max-width: 575px) {
    .feature-two__item {
      padding: 30px;
    }
  }
  .feature-two__item .readMore-btn {
    font-weight: 500;
    font-family: var(--font-title);
    color: var(--theme-color1);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  .feature-two__item .readMore-btn i {
    transition: var(--transition);
  }
  .feature-two__item .readMore-btn:hover i {
    padding-left: 5px;
  }
  .feature-two__item .feature__content h4 {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .feature-two__item:hover .feature__icon {
    animation: iconHover1 0.5s ease-out;
  }
  .feature-two__text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .feature-two__text span {
    display: inline-block;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--black);
    border-radius: 50px;
    padding: 3px 18px;
    padding-top: 5px;
    margin-right: 15px;
  }
  .feature-two__text p {
    font-size: 18px;
    line-height: 34px;
    font-family: var(--font-title);
    color: var(--black);
    font-weight: 500;
  }
  .feature-two__text p a {
    font-weight: 600;
    text-decoration: underline;
  }
  
  .feature-four-area {
    overflow: hidden;
    background-color: var(--black);
    padding: 80px 0;
  }
  .feature-four__item {
    padding: 0 80px;
  }
  .feature-four__item .title {
    color: var(--white);
  }
  .feature-four__item .text {
    color: var(--paragraph-light);
    max-width: 380px;
  }
  .feature-four__item .mailUs input {
    background-color: #353e47 !important;
    color: var(--white) !important;
  }
  .feature-four__item .mailUs input::placeholder {
    color: var(--white) !important;
  }
  .feature-four__item.footer__item-last {
    width: 100%;
  }
  .feature-four__item.item-middle {
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
  }
  @media (max-width: 1199px) {
    .feature-four__item {
      padding: 0 40px;
    }
  }
  
  .feature-five-area {
    overflow: hidden;
    margin-bottom: -170px;
    position: relative;
    z-index: 2;
  }
  .feature-five__wrp {
    padding: 40px 15px;
    max-width: 1290px;
    margin: 0 auto;
  }
  .feature-five__item {
    padding: 40px 60px;
    position: relative;
    z-index: 1;
  }
  .feature-five__item .icon {
    transition: 0.7s;
  }
  .feature-five__item .title {
    line-height: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .feature-five__item .readMore-btn {
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
    margin-top: 30px;
  }
  .feature-five__item .readMore-btn i {
    font-size: 13px;
    transition: var(--transition);
  }
  .feature-five__item .readMore-btn:hover i {
    margin-left: 5px;
  }
  .feature-five__item .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  @media (max-width: 1199px) {
    .feature-five__item {
      padding: 20px 30px;
    }
  }
  .feature-five__item::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    z-index: -2;
    content: "";
    transition: var(--transition);
    background-color: var(--black);
  }
  .feature-five__item.active .shape {
    opacity: 1;
    visibility: visible;
  }
  .feature-five__item.active .icon {
    transform: rotateY(360deg);
  }
  .feature-five__item.active .icon svg path {
    fill: var(--white);
  }
  .feature-five__item.active .title {
    color: var(--white);
  }
  .feature-five__item.active .text {
    color: var(--white);
  }
  .feature-five__item.active .readMore-btn {
    color: var(--white);
  }
  .feature-five__item.active::after {
    width: 100%;
    left: 0;
    right: unset;
  }
  .feature-five__item.dark-mode::after {
    background-color: var(--black0);
  }
  .feature-five__item.dark-mode.active .icon {
    transform: rotateY(360deg);
  }
  .feature-five__item.dark-mode.active .icon svg path {
    fill: var(--black);
  }
  .feature-five__item.dark-mode.active .title {
    color: var(--black);
  }
  .feature-five__item.dark-mode.active .text {
    color: var(--black);
  }
  .feature-five__item.dark-mode.active .readMore-btn {
    color: var(--black);
  }
  
  .feature-six-area {
    overflow: hidden;
  }
  .feature-six-area.margin-minus {
    margin-top: -85px;
  }
  .feature-six__wrp {
    max-width: 1540px;
    margin: 0 auto;
  }
  .feature-six__item .head {
    background-color: var(--black);
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
  }
  .feature-six__item .head .icon {
    transition: var(--transition);
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 0;
    background-color: var(--white);
  }
  .feature-six__item .head .icon svg {
    transition: 0.9s;
  }
  .feature-six__item .head .title {
    color: var(--white);
    transition: var(--transition);
  }
  .feature-six__item .head::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    content: "";
    background-color: var(--white);
    transition: var(--transition);
  }
  .feature-six__item .image {
    overflow: hidden;
  }
  .feature-six__item .image img {
    transition: 0.7s;
  }
  .feature-six__item .content {
    transition: var(--transition);
    padding: 30px;
    background-color: var(--black);
  }
  .feature-six__item .content .text {
    color: var(--paragraph-dark);
  }
  .feature-six__item .content .btn-more {
    color: var(--white);
  }
  .feature-six__item:hover .head .icon {
    background-color: var(--black);
  }
  .feature-six__item:hover .head .icon svg {
    transform: rotateY(360deg);
  }
  .feature-six__item:hover .head .icon svg path {
    fill: var(--white);
  }
  .feature-six__item:hover .head::after {
    width: 100%;
  }
  .feature-six__item:hover .head .title {
    color: var(--heading-color);
  }
  .feature-six__item:hover .image img {
    transform: scale(1.1);
  }
  .feature-six__item:hover .content {
    background-color: var(--sub-bg);
  }
  .feature-six__item:hover .content .text {
    color: var(--paragraph);
  }
  .feature-six__item:hover .content .btn-more {
    color: var(--black);
  }
  .feature-six__item.dark-mode .head {
    background-color: #16202b;
  }
  .feature-six__item.dark-mode .head::after {
    background-color: var(--black0);
  }
  .feature-six__item.dark-mode .content {
    background-color: #16202b;
  }
  .feature-six__item.dark-mode:hover .head .title {
    color: var(--white);
  }
  .feature-six__item.dark-mode:hover .content {
    background-color: var(--black0);
  }
  .feature-six__item.dark-mode:hover .content .text {
    color: var(--paragraph-light);
  }
  .feature-six__item.dark-mode:hover .content .btn-more {
    color: var(--white);
  }
  
  .feature-nine-area {
    overflow: hidden;
  }
  .feature-nine__item {
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 0 80px;
    border-right: 1px solid var(--border);
  }
  .feature-nine__item .icon {
    display: inline-block;
  }
  .feature-nine__item .content .title {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .feature-nine__item .content .text {
    line-height: 30px;
  }
  @media (max-width: 1399px) {
    .feature-nine__item {
      padding: 30px;
    }
  }
  .feature-nine__item:hover .icon {
    animation: iconBounceIn 1s forwards;
  }
  
  .feature-ten-area {
    overflow: hidden;
    margin-bottom: 80px;
  }
  @media (max-width: 991px) {
    .feature-ten-area {
      margin-bottom: 0;
    }
  }
  .feature-ten__wrp {
    max-width: 1400px;
    margin: 0 auto;
  }
  .feature-ten__image {
    position: relative;
    z-index: 1;
  }
  .feature-ten__image img {
    width: 100%;
  }
  .feature-ten__image .rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 0;
  }
  .feature-ten__image .rectangle .item {
    width: 0px;
    height: 80px;
    backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.3019607843);
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    top: 0;
    left: 0;
  }
  .feature-ten__image .rectangle .item.animated {
    width: 80px;
  }
  .feature-ten__image .rectangle .item-dark {
    width: 80px;
    height: 0;
    transition: all 0.3s ease-in-out 0.5s;
    background-color: var(--black);
    position: absolute;
    top: 80px;
    left: 0;
  }
  .feature-ten__image .rectangle .item-dark.animated {
    height: 80px;
  }
  @media (max-width: 991px) {
    .feature-ten__image .rectangle {
      display: none;
    }
  }
  .feature-ten__content {
    max-width: 360px;
    margin: 0 auto;
  }
  @media (max-width: 991px) {
    .feature-ten__content {
      max-width: 100%;
    }
  }
  .feature-ten__item {
    background-color: var(--white);
    padding: 20px 30px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--border);
  }
  .feature-ten__item::after {
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #000;
    transition: var(--transition);
  }
  .feature-ten__item .icon {
    display: inline-block;
    transition: 0.9s;
  }
  .feature-ten__item .icon svg path {
    transition: var(--transition);
  }
  .feature-ten__item .arry-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--black);
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  .feature-ten__item .arry-btn:hover {
    transform: rotate(45deg);
  }
  .feature-ten__item .content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 190px;
  }
  .feature-ten__item:hover .icon {
    transform: rotateY(-360deg);
  }
  .feature-ten__item:hover .icon svg path {
    fill: var(--white);
  }
  .feature-ten__item:hover .arry-btn {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .feature-ten__item:hover .title {
    color: var(--white);
  }
  .feature-ten__item:hover::after {
    width: 100%;
    right: 0;
    left: unset;
  }
  .feature-ten__item.dark-mode {
    border: none;
    background-color: var(--sub-bg);
  }
  .feature-ten__item.dark-mode .icon svg path {
    fill: var(--black);
  }
  .feature-ten__item.dark-mode:hover .arry-btn {
    color: var(--black);
    border: 1px solid var(--black);
  }
  .feature-ten__item.dark-mode:hover .title {
    color: var(--black);
  }
  
  .feature-twelve-area {
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .feature-twelve__item {
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .feature-twelve__item .icon {
    display: inline-block;
  }
  .feature-twelve__item .content {
    max-width: 285px;
    margin: 0 auto;
  }
  .feature-twelve__item .content .title {
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--white);
  }
  .feature-twelve__item .content .text {
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
  }
  @media (max-width: 1399px) {
    .feature-twelve__item {
      padding: 30px;
    }
  }
  .feature-twelve__item:hover .icon {
    animation: iconBounceIn 1s forwards;
  }
  
  .feature-thirteen-area {
    overflow: hidden;
  }
  .feature-thirteen-area.margin-minus {
    margin-top: -85px;
  }
  .feature-thirteen__wrp {
    max-width: 1590px;
    margin: 0 auto;
  }
  .feature-thirteen__wrp .row > * {
    padding-right: 90px;
    padding-left: 90px;
  }
  @media (max-width: 1199px) {
    .feature-thirteen__wrp .row > * {
      padding-right: 15px;
      padding-left: 15px;
    }
  }
  .feature-thirteen__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 45px;
    height: 170px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .feature-thirteen__item .icon {
    transition: var(--transition);
  }
  .feature-thirteen__item .icon svg {
    transition: 0.9s;
  }
  .feature-thirteen__item .content span {
    position: relative;
    padding-left: 13px;
    font-size: 16px;
    line-height: 28px;
    font-family: var(--font-body);
    color: var(--black0);
  }
  .feature-thirteen__item .content span:after {
    position: absolute;
    left: 0px;
    top: 10px;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
  }
  .feature-thirteen__item .content .title {
    font-size: 28px;
    line-height: 38px;
    color: var(--heading-color);
  }
  .feature-thirteen__item .content .btn-more {
    position: absolute;
    right: 0;
    top: 65px;
    font-size: 20px;
    transition: var(--transition);
  }
  .feature-thirteen__item:hover .icon svg {
    transform: rotateY(360deg);
  }
  .feature-thirteen__item:hover .btn-more {
    transform: rotate(45deg);
  }
  
  .funfact-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .funfact__item ul {
    margin-bottom: 65px;
  }
  @media (max-width: 767px) {
    .funfact__item ul {
      margin-bottom: 30px;
    }
  }
  .funfact__item ul li {
    font-size: 18px;
    color: var(--paragraph-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .funfact__item ul li i {
    font-size: 14px;
  }
  .funfact__item ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .funfact__item h2 {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--white);
    font-size: 136px;
    line-height: 136px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
  }
  .funfact__item h2 span {
    color: inherit;
  }
  @media (max-width: 767px) {
    .funfact__item h2 {
      font-size: 80px;
      line-height: 80px;
    }
  }
  
  .funfact-eight-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .funfact-eight-area::before {
    width: 100%;
    height: 32%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
    background-color: var(--sub-bg);
  }
  .funfact-eight__wrp {
    max-width: 1460px;
    margin: 0 auto;
  }
  .funfact-eight__item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 60px;
  }
  @media (max-width: 767px) {
    .funfact-eight__item {
      padding: 30px;
    }
  }
  .funfact-eight__item::after {
    position: absolute;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, #0C2C4F 22.87%, rgba(18, 28, 39, 0.7) 91.19%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .funfact-eight__item .cout-text {
    color: var(--white);
    font-size: 60px;
    line-height: 60px;
  }
  @media (max-width: 767px) {
    .funfact-eight__item .cout-text {
      font-size: 36px;
      line-height: 40px;
    }
  }
  .funfact-eight__item .cout-text span {
    color: inherit;
  }
  .funfact-eight__item .title {
    color: var(--white);
    margin-bottom: 5px;
    margin-top: 15px;
  }
  .funfact-eight__item .text {
    color: var(--paragraph-light);
  }
  .funfact-eight__item .inner-box {
    max-width: 390px;
  }
  
  .hzAccordion-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .hzAccordion__wrp {
    display: flex;
    width: 100%;
    height: 700px;
    overflow: hidden;
    flex-wrap: wrap;
  }
  @media (max-width: 1399px) {
    .hzAccordion__wrp {
      height: 450px;
    }
  }
  @media (max-width: 991px) {
    .hzAccordion__wrp {
      flex-direction: column;
      height: auto;
    }
  }
  .hzAccordion__item {
    flex: 0.7;
    min-width: 190px;
    transition: 0.7s;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .hzAccordion__item .head .head-title {
    margin: 0;
    padding-left: 25px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    writing-mode: vertical-rl;
    height: 100%;
    transform: rotate(180deg);
    border-left: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .hzAccordion__item .head .head-title .title {
    display: block;
    max-height: 410px;
    text-align: left;
    color: var(--white);
  }
  .hzAccordion__item .head .head-title .number {
    font-size: 150px;
    line-height: 150px;
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    transition: 0.7s;
  }
  .hzAccordion__item .head .head-title:hover .number {
    color: var(--white);
  }
  .hzAccordion__item .content {
    display: none;
    height: 100%;
    margin-left: 180px;
    position: relative;
    z-index: 1;
  }
  .hzAccordion__item .content .image {
    height: 100%;
    max-width: 450px;
  }
  .hzAccordion__item .content .image img {
    height: 100%;
  }
  .hzAccordion__item .content .wrp {
    display: flex;
    padding: 0 60px;
    gap: 60px;
    height: 100%;
  }
  .hzAccordion__item .content .content-wrp {
    max-width: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hzAccordion__item .content .arry-btn {
    font-size: 70px;
  }
  .hzAccordion__item .content .arry-btn i {
    transition: var(--transition);
  }
  .hzAccordion__item .content .arry-btn i:hover {
    transform: rotate(45deg);
  }
  .hzAccordion__item .content .shape {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
  }
  .hzAccordion__item .content .text {
    color: var(--paragraph-light);
  }
  .hzAccordion__item.last-child .head .head-title {
    padding-left: 0;
    border: 1px solid transparent;
  }
  .hzAccordion__item.last-child.active .head .head-title {
    padding-left: 25px;
    border-left: 1px solid var(--border-light);
  }
  .hzAccordion__item.active {
    flex: 4;
  }
  .hzAccordion__item.active .head .number {
    -webkit-text-fill: var(--white);
    color: var(--white);
  }
  .hzAccordion__item.active .content {
    display: block;
  }
  @media (max-width: 1399px) {
    .hzAccordion__item {
      min-width: 75px;
    }
    .hzAccordion__item .head .head-title {
      padding-left: 5px;
    }
    .hzAccordion__item .head .head-title .title {
      font-size: 18px;
      line-height: 30px;
      max-height: 280px;
    }
    .hzAccordion__item .head .head-title .number {
      font-size: 50px;
      line-height: 50px;
    }
    .hzAccordion__item .content {
      margin-left: 75px;
    }
    .hzAccordion__item .content .wrp {
      padding: 0 20px;
      gap: 10px;
    }
    .hzAccordion__item .content .arry-btn {
      font-size: 40px;
    }
  }
  @media (max-width: 991px) {
    .hzAccordion__item .head .head-title {
      position: unset;
      writing-mode: unset;
      transform: unset;
      border: none;
      padding: 0;
      border-bottom: 1px solid var(--border-light);
      margin-bottom: 30px;
      padding-bottom: 10px;
      flex-wrap: nowrap;
      gap: 10px;
    }
    .hzAccordion__item .head .head-title .number {
      font-size: 30px;
      line-height: 40px;
    }
    .hzAccordion__item .content {
      margin-left: 0;
    }
    .hzAccordion__item .content .wrp {
      padding: 20px 15px;
    }
    .hzAccordion__item.active .head .head-title {
      margin-bottom: 0px;
    }
    .hzAccordion__item.last-child .head .head-title {
      margin-bottom: 0;
    }
    .hzAccordion__item.last-child.active .head .head-title {
      padding-left: 0;
      border-left: none;
    }
  }
  
  .marquee-area, .marquee-seven-area, .marquee-nine-area, .marquee-ten-area {
    overflow: hidden;
  }
  .marquee-area.dark-area, .dark-area.marquee-seven-area, .dark-area.marquee-nine-area, .dark-area.marquee-ten-area {
    background-color: var(--black);
  }
  .marquee-area.black-area, .black-area.marquee-seven-area, .black-area.marquee-nine-area, .black-area.marquee-ten-area {
    background-color: var(--black0);
  }
  .marquee-area.dark-mode .marquee__item .stroke-text, .dark-mode.marquee-seven-area .marquee__item .stroke-text, .dark-mode.marquee-nine-area .marquee__item .stroke-text, .dark-mode.marquee-ten-area .marquee__item .stroke-text {
    -webkit-text-stroke-color: var(--border2);
  }
  .marquee-area.dark-mode .marquee__item svg path, .dark-mode.marquee-seven-area .marquee__item svg path, .dark-mode.marquee-nine-area .marquee__item svg path, .dark-mode.marquee-ten-area .marquee__item svg path {
    fill: var(--black);
  }
  .marquee__wrp, .marquee-seven__wrp, .marquee-nine__wrp {
    position: relative;
  }
  .marquee__slide {
    display: flex;
    position: relative;
  }
  .marquee__slide.marquee-revers .marquee__item-wrp, .marquee__slide.marquee-revers .marquee-seven__item-wrp {
    position: relative;
    -webkit-animation: slide-har-revers 0s linear infinite;
    animation: slide-har-revers 30s linear infinite;
  }
  @-webkit-keyframes slide-har-revers {
    100% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    0% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes slide-har-revers {
    100% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    0% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  .marquee__item {
    padding: 0 30px;
  }
  .marquee__item h2 {
    font-size: 80px;
    line-height: 84px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
  }
  @media (max-width: 991px) {
    .marquee__item h2 {
      font-size: 40px;
      line-height: 50px;
    }
  }
  .marquee__item .stroke-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(18, 28, 39, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .marquee__item.item-sm .title {
    font-size: 48px;
    font-weight: 100;
    letter-spacing: 2px;
  }
  .marquee__item.item-sm .title:hover {
    font-weight: 400;
  }
  @media (max-width: 991px) {
    .marquee__item.item-sm {
      padding: 0 10px;
    }
    .marquee__item.item-sm .title {
      font-size: 24px;
    }
    .marquee__item.item-sm svg {
      width: 24px;
    }
  }
  .marquee__item-wrp, .marquee-seven__item-wrp {
    display: flex;
    align-items: center;
    position: relative;
    -webkit-animation: slide-har 30s linear infinite;
    animation: slide-har 30s linear infinite;
  }
  @-webkit-keyframes slide-har {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  @keyframes slide-har {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
    }
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }
  }
  .marquee__item-wrp.dark-area .marquee__item .title, .dark-area.marquee-seven__item-wrp .marquee__item .title {
    color: var(--white);
  }
  .marquee__item-wrp.dark-area .marquee__item svg path, .dark-area.marquee-seven__item-wrp .marquee__item svg path {
    fill: var(--white);
  }
  
  .marquee-seven-area, .marquee-nine-area, .marquee-ten-area {
    padding: 60px 0;
    border-top: 1px solid var(--border);
  }
  .marquee-seven-area.bg-sub, .bg-sub.marquee-nine-area, .bg-sub.marquee-ten-area {
    background-color: #ececec;
    border: none;
  }
  @media (max-width: 991px) {
    .marquee-seven-area, .marquee-nine-area, .marquee-ten-area {
      padding: 30px 0;
    }
  }
  .marquee-seven__item-wrp .marquee__item .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
  }
  
  .marquee-nine-area, .marquee-ten-area {
    padding: 25px 0;
    background-color: #ececec;
    border: none;
  }
  .marquee-nine-area.dark-area, .dark-area.marquee-ten-area {
    background-color: var(--black);
  }
  .marquee-nine-area.dark-area .title, .dark-area.marquee-ten-area .title {
    color: var(--white);
  }
  .marquee-ten-area {
    background-color: var(--black);
    transform: rotate(-1deg);
  }
  .marquee-ten-area .title {
    color: var(--white);
  }
  .marquee-ten-area-wrp {
    position: relative;
    z-index: 1;
  }
  .marquee-ten-area-wrp::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    content: "";
    background-color: #ececec;
    z-index: -1;
    transform: rotate(-178.31deg);
  }
  
  .parallax-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 580px;
  }
  @media (max-width: 767px) {
    .parallax-area {
      height: 300px;
    }
  }
  .parallax__icon {
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
  @media (max-width: 767px) {
    .parallax__icon {
      bottom: 20px;
      right: 30px;
    }
    .parallax__icon img {
      width: 80px;
    }
  }
  
  .portfolio-area, .portfolio-ten-area {
    position: relative;
    z-index: 1;
  }
  .portfolio-left {
    position: sticky;
    top: 130px;
  }
  .portfolio__item, .portfolio-ten__item {
    position: sticky;
    top: 130px;
    z-index: 1;
  }
  @media (max-width: 767px) {
    .portfolio__item, .portfolio-ten__item {
      top: 60px;
    }
  }
  .portfolio__item .content, .portfolio-ten__item .content {
    position: absolute;
    bottom: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .portfolio__item .content .number, .portfolio-ten__item .content .number {
    font-size: 96px;
    line-height: 100px;
    color: var(--white);
    font-weight: 500;
  }
  .portfolio__item .content .title, .portfolio-ten__item .content .title {
    color: var(--white);
    max-width: 385px;
  }
  @media (max-width: 575px) {
    .portfolio__item .content, .portfolio-ten__item .content {
      left: 20px;
      bottom: 20px;
    }
    .portfolio__item .content .number, .portfolio-ten__item .content .number {
      font-size: 60px;
      line-height: 60px;
    }
  }
  
  .portfolio-eight-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .portfolio-eight__wrp {
    max-width: 1560px;
    margin: 0 auto;
  }
  .portfolio-eight__wrp .section-header__flex {
    padding: 0 50px;
  }
  @media (max-width: 1399px) {
    .portfolio-eight__wrp .section-header__flex {
      padding: 0;
    }
  }
  .portfolio-eight__wrp .section-header__flex p {
    max-width: 520px;
  }
  .portfolio-eight__item {
    position: relative;
    z-index: 1;
    margin: 0 50px;
  }
  @media (max-width: 1399px) {
    .portfolio-eight__item {
      margin: 0;
    }
  }
  .portfolio-eight__item .image img {
    transition: var(--transition);
  }
  .portfolio-eight__item .arry-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 28px;
    background-color: var(--white);
    color: var(--black);
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(-45deg);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
  }
  .portfolio-eight__item .arry-btn:hover {
    transform: rotate(0);
  }
  .portfolio-eight__item:hover .image img {
    filter: grayscale(1000%);
  }
  .portfolio-eight__item:hover .arry-btn {
    opacity: 1;
    visibility: visible;
    top: 20px;
    right: 20px;
  }
  .portfolio-eight__item.item-one {
    margin-top: 80%;
  }
  @media (max-width: 767px) {
    .portfolio-eight__item.item-one {
      margin: 0;
    }
  }
  .portfolio-eight__item.item-three {
    margin-top: 30px;
  }
  @media (max-width: 767px) {
    .portfolio-eight__item.item-three {
      margin: 0;
    }
  }
  .portfolio-eight__item.item-four {
    margin-top: -20%;
  }
  @media (max-width: 767px) {
    .portfolio-eight__item.item-four {
      margin: 0;
    }
  }
  .portfolio-eight__item.item-five {
    margin-top: 120px;
  }
  @media (max-width: 767px) {
    .portfolio-eight__item.item-five {
      margin: 0;
    }
  }
  .portfolio-eight__item.item-six {
    margin-top: 80px;
  }
  @media (max-width: 767px) {
    .portfolio-eight__item.item-six {
      margin: 0;
    }
  }
  
  .portfolio-ten__item {
    background-color: var(--white);
  }
  .portfolio-ten__item .content {
    position: unset;
    padding-top: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border);
    justify-content: space-between;
  }
  .portfolio-ten__item .content .sub-title {
    color: var(--black);
    font-weight: 600;
    font-size: 12px;
  }
  .portfolio-ten__item .content .title {
    color: var(--black);
    margin-top: 10px;
  }
  .portfolio-ten__item .content .btn-explore {
    color: var(--black);
    font-weight: 500;
  }
  .portfolio-ten__item .content .btn-explore i {
    margin-left: 5px;
    display: inline-block;
    transition: var(--transition);
    transform: rotate(-45deg);
  }
  .portfolio-ten__item .content .btn-explore:hover i {
    transform: rotate(0deg);
  }
  
  .pricing-area {
    overflow: hidden;
  }
  .pricing__wrp {
    max-width: 1300px;
    margin: 0 auto;
  }
  .pricing__item {
    padding: 40px;
    border: 1px solid var(--border);
  }
  .pricing__item .title {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
  }
  .pricing__item .price {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .pricing__item .price span {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    background-color: #d5dede;
    color: var(--black);
  }
  .pricing__item .btn-two, .pricing__item .btn-two-light, .pricing__item .btn-three-light {
    border: 1px solid var(--border);
  }
  .pricing__item ul {
    margin-top: 30px;
  }
  .pricing__item ul li {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pricing__item ul li i {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: rgba(35, 48, 50, 0.1019607843);
    font-size: 13px;
    color: var(--black);
  }
  .pricing__item ul li:not(:last-child) {
    margin-bottom: 12px;
  }
  .pricing__item.popular {
    background-color: var(--black);
    border: none;
  }
  .pricing__item.popular .title {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  }
  .pricing__item.popular .title h6 {
    color: var(--white);
  }
  .pricing__item.popular .price h2 {
    color: var(--white);
  }
  .pricing__item.popular .price span {
    background-color: #353e47;
    color: var(--white);
  }
  .pricing__item.popular .btn-two, .pricing__item.popular .btn-two-light, .pricing__item.popular .btn-three-light {
    border: 1px solid var(--white);
  }
  .pricing__item.popular p {
    color: var(--white);
  }
  .pricing__item.popular ul li {
    color: var(--white);
  }
  .pricing__item.popular ul li i {
    background-color: rgba(255, 255, 255, 0.1019607843);
    color: var(--white);
  }
  .pricing__item.dark-mode {
    background-color: var(--sub-bg);
  }
  .pricing__item.dark-mode.popular-dark {
    background-color: var(--black0);
  }
  .pricing__item.dark-mode .light-area .btn-one, .pricing__item.dark-mode .light-area .btn-one-light, .pricing__item.dark-mode .light-area .btn-one-light2 {
    background-color: var(--black0);
  }
  .pricing__item.dark-mode .btn-two, .pricing__item.dark-mode .btn-two-light, .pricing__item.dark-mode .btn-three-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  .pricing-five-area, .pricing-seven-area {
    overflow: hidden;
  }
  .pricing-five__wrp {
    max-width: 1290px;
    margin: 0 auto;
  }
  .pricing-five__tab .nav {
    border: none;
    max-width: 400px;
    background-color: var(--border);
    justify-content: space-between;
    margin: 0 auto;
    border-radius: 50px;
  }
  @media (max-width: 575px) {
    .pricing-five__tab .nav {
      max-width: 300px;
    }
  }
  .pricing-five__tab .nav .nav-item .nav-link {
    border: none;
    font-family: var(--font-title);
    color: var(--black);
    padding: 10px 45px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
  }
  .pricing-five__tab .nav .nav-item .nav-link.active {
    background-color: var(--black);
    color: var(--white);
  }
  @media (max-width: 575px) {
    .pricing-five__tab .nav .nav-item .nav-link {
      font-size: 16px;
      padding: 8px 25px;
    }
  }
  .pricing-five__tab.dark-mode .nav .nav-item .nav-link.active {
    background-color: var(--black0);
    color: var(--black);
  }
  .pricing-five__item, .pricing-seven__item {
    padding: 50px;
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }
  @media (max-width: 575px) {
    .pricing-five__item, .pricing-seven__item {
      padding: 30px;
    }
  }
  .pricing-five__item .shape, .pricing-seven__item .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .pricing-five__item .price, .pricing-seven__item .price {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .pricing-five__item .price h2 span, .pricing-seven__item .price h2 span {
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
    font-family: var(--font-title);
    color: var(--black);
  }
  .pricing-five__item .pricing-btn, .pricing-seven__item .pricing-btn {
    padding: 12px 30px;
    border: 1px solid var(--border2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
  }
  .pricing-five__item .pricing-btn i, .pricing-seven__item .pricing-btn i {
    font-size: 20px;
    transition: var(--transition);
  }
  .pricing-five__item .pricing-btn:hover i, .pricing-seven__item .pricing-btn:hover i {
    transform: translate(10px);
  }
  .pricing-five__item ul, .pricing-seven__item ul {
    margin-top: 30px;
  }
  .pricing-five__item ul li, .pricing-seven__item ul li {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pricing-five__item ul li i, .pricing-seven__item ul li i {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: rgba(35, 48, 50, 0.1019607843);
    font-size: 13px;
    color: var(--black);
  }
  .pricing-five__item ul li:not(:last-child), .pricing-seven__item ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  .pricing-five__item.popular, .popular.pricing-seven__item {
    background-color: var(--black);
    border: none;
  }
  .pricing-five__item.popular .pricing-btn, .popular.pricing-seven__item .pricing-btn {
    border: 1px solid var(--border-light);
    color: var(--white);
  }
  .pricing-five__item.popular ul li, .popular.pricing-seven__item ul li {
    color: var(--white);
  }
  .pricing-five__item.popular ul li i, .popular.pricing-seven__item ul li i {
    background-color: rgba(255, 255, 255, 0.1019607843);
    color: var(--white);
  }
  .pricing-five__item.dark-mode, .dark-mode.pricing-seven__item {
    border: none;
    background-color: var(--sub-bg);
  }
  .pricing-five__item.dark-mode ul li i, .dark-mode.pricing-seven__item ul li i {
    background-color: var(--border);
  }
  .pricing-five__item.dark-mode.popular-dark, .dark-mode.popular-dark.pricing-seven__item {
    background-color: var(--black0);
  }
  
  .pricing-seven__item ul {
    padding-top: 35px;
    border-top: 1px solid var(--border);
  }
  .pricing-seven__item ul li {
    font-weight: 500;
  }
  .pricing-seven__item ul li i {
    background-color: transparent;
    font-size: 18px;
  }
  .pricing-seven__item ul li.disable {
    color: var(--paragraph);
  }
  .pricing-seven__item ul li.disable i {
    color: var(--paragraph);
  }
  .pricing-seven__item .pricing-btn {
    display: inline-block;
    border: 1px solid var(--white);
    background-color: var(--black);
    color: var(--white);
    font-weight: 700;
  }
  .pricing-seven__item .pricing-btn i {
    font-size: 15px;
    padding-left: 5px;
  }
  .pricing-seven__item.popular ul {
    padding-top: 35px;
    border-top: 1px solid var(--border-light);
  }
  .pricing-seven__item.popular ul li {
    font-weight: 500;
  }
  .pricing-seven__item.popular ul li i {
    background-color: transparent;
    font-size: 18px;
  }
  .pricing-seven__item.popular ul li.disable {
    color: var(--paragraph-light);
  }
  .pricing-seven__item.popular ul li.disable i {
    color: var(--paragraph-light);
  }
  .pricing-seven__item.popular .popular-tag {
    position: absolute;
    top: 0;
    right: 10px;
  }
  .pricing-seven__item.popular-dark {
    background-color: var(--black0);
  }
  .pricing-seven__item.popular-dark .popular-tag {
    position: absolute;
    top: 0;
    right: 10px;
  }
  .pricing-seven__item.popular-dark .pricing-btn {
    border: 1px solid var(--border2);
    background-color: transparent;
    color: var(--black);
  }
  
  .pricing-nine-area {
    overflow: hidden;
  }
  .pricing-nine__wrp {
    max-width: 1300px;
    margin: 0 auto;
  }
  .pricing-nine__item {
    padding: 70px 60px;
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }
  .pricing-nine__item .shape {
    bottom: 0;
    right: 0;
    z-index: -1;
    position: absolute;
  }
  .pricing-nine__item .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .pricing-nine__item .head .price {
    display: flex;
    gap: 5px;
  }
  .pricing-nine__item .head .price h3 {
    line-height: 35px;
  }
  .pricing-nine__item .head .price h2 {
    font-size: 80px;
  }
  .pricing-nine__item ul {
    margin: 30px 0;
  }
  .pricing-nine__item ul li {
    color: var(--black);
  }
  .pricing-nine__item ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .pricing-nine__item ul li i {
    margin-right: 10px;
    font-size: 14px;
  }
  .pricing-nine__item .btn-more {
    margin-top: 30px;
  }
  .pricing-nine__item.popular {
    background-color: var(--black);
  }
  .pricing-nine__item.popular ul li {
    color: var(--white);
  }
  .pricing-nine__item.popular .btn-more {
    color: var(--white);
  }
  @media (max-width: 991px) {
    .pricing-nine__item {
      padding: 30px;
    }
  }
  
  .professional-area {
    overflow: hidden;
  }
  .professional__image {
    position: relative;
    z-index: 1;
  }
  .professional__image img {
    width: 100%;
  }
  .professional__image .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
  }
  @media (max-width: 575px) {
    .professional__image .content {
      gap: 10px;
    }
  }
  .professional__image .content ul {
    display: flex;
    gap: 20px;
  }
  @media (max-width: 575px) {
    .professional__image .content ul {
      gap: 10px;
    }
  }
  .professional__image .content ul svg {
    transition: 0.5s;
  }
  .professional__image .content ul:hover svg {
    transform: rotateY(180deg);
  }
  @media (max-width: 575px) {
    .professional__image .content {
      padding: 20px;
    }
  }
  .professional__image .content .icon {
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--white);
  }
  .professional__image .content .info h3 {
    color: var(--white);
    line-height: 25px;
  }
  .professional__image .content .info h3 span {
    color: inherit;
  }
  .professional__image .content .info p {
    color: var(--white);
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: capitalize;
  }
  @media (max-width: 575px) {
    .professional__image .content .info p {
      font-size: 12px;
      letter-spacing: 1px;
      margin-top: 0;
    }
  }
  .professional__image .content .last-item {
    padding-left: 30px;
    border-left: 1px solid var(--border-light);
  }
  @media (max-width: 575px) {
    .professional__image .content .last-item {
      padding-left: 10px;
    }
  }
  .professional__content {
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 120px;
  }
  @media (max-width: 1399px) {
    .professional__content {
      padding-left: 60px;
    }
  }
  @media (max-width: 1199px) {
    .professional__content {
      padding-left: 0px;
      margin-top: 40px;
    }
  }
  .professional__content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .professional__content ul li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--border);
    color: var(--black);
  }
  .professional__content ul li:not(.last-child) {
    margin-bottom: 15px;
  }
  .professional__wrp {
    margin-top: 50px;
    padding-top: 90px;
    border-top: 1px solid var(--border2);
  }
  @media (max-width: 991px) {
    .professional__wrp {
      padding-top: 40px;
    }
  }
  .professional__item, .professional__item-last {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  @media (max-width: 575px) {
    .professional__item, .professional__item-last {
      gap: 20px;
    }
    .professional__item .icon svg, .professional__item-last .icon svg {
      width: 60px;
    }
  }
  .professional__item .title, .professional__item-last .title {
    margin-bottom: 10px;
  }
  .professional__item .text, .professional__item-last .text {
    line-height: 28px;
  }
  .professional__item:hover .icon svg, .professional__item-last:hover .icon svg {
    animation: flipInY 1s forwards;
  }
  .professional__item-last {
    align-items: start;
    margin-bottom: 50px;
  }
  .professional__item-last .title {
    line-height: 38px;
  }
  .professional__item-last .item-btn {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    line-height: 16px;
    margin-top: 15px;
    text-transform: uppercase;
  }
  
  .professional-seven-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--black);
  }
  .professional-seven__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .professional-seven__image {
    position: relative;
    z-index: 1;
  }
  .professional-seven__image img {
    width: 100%;
  }
  .professional-seven__image .icon {
    position: absolute;
    bottom: 80px;
    left: 80px;
  }
  @media (max-width: 767px) {
    .professional-seven__image .icon {
      bottom: 30px;
      left: 30px;
    }
    .professional-seven__image .icon svg {
      width: 80px;
      height: 80px;
    }
  }
  .professional-seven__content {
    padding: 60px;
    padding-top: 130px;
  }
  @media (max-width: 1399px) {
    .professional-seven__content {
      padding: 0;
      padding-top: 60px;
    }
  }
  @media (max-width: 991px) {
    .professional-seven__content {
      padding: 30px;
      padding-top: 0;
    }
  }
  .professional-seven__content .section-header {
    max-width: 490px;
  }
  .professional-seven__content .text {
    color: var(--paragraph-light);
  }
  .professional-seven__content .arry-group button {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
  }
  .professional-seven__content .arry-group button:hover {
    background-color: var(--white);
    color: var(--black);
  }
  .professional-seven__content .arry-group button:hover i {
    animation: bounceIn 1s forwards;
  }
  .professional-seven__video {
    max-width: 1300px;
    margin: 0 auto;
  }
  @media (max-width: 1399px) {
    .professional-seven__video {
      padding-left: 30px;
    }
  }
  @media (max-width: 991px) {
    .professional-seven__video {
      padding: 0 15px;
      padding-top: 30px;
      text-align: center;
    }
  }
  
  .project-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .project__wrp {
    position: relative;
    overflow: hidden;
  }
  .project__slider-arrys {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 9;
  }
  .project__slider-arrys button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 12px;
    color: var(--black);
    background-color: var(--white);
    transition: var(--transition);
    font-size: 18px;
  }
  .project__slider-arrys button:last-child {
    transition: all 0.5s ease-in-out;
  }
  .project__slider-arrys button:hover {
    background-color: var(--theme-color1);
    color: var(--text-color1);
  }
  @media (max-width: 767px) {
    .project__slider-arrys button {
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      transition: var(--transition);
      font-size: 16px;
      border-radius: 12px;
    }
  }
  @media (max-width: 767px) {
    .project__slider-arrys {
      top: 20px;
      left: 20px;
    }
  }
  .project__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .project__image .tab-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
  }
  .project__image .tab-img.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  .project__item {
    display: block;
    position: relative;
    height: 720px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-border-end: 1px solid rgba(255, 255, 255, 0.2);
    border-inline-end: 1px solid rgba(255, 255, 255, 0.2);
  }
  .project__item .content {
    padding: 50px;
    width: 100%;
    transition: var(--transition);
    transform: translateY(80px);
  }
  @media (max-width: 991px) {
    .project__item .content {
      padding: 30px;
    }
  }
  .project__item .content span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
    color: transparent;
    font-size: 100px;
    line-height: 120px;
    font-weight: 500;
    transition: var(--transition);
  }
  .project__item .content h4 {
    color: var(--white);
  }
  .project__item .content p {
    margin-top: 20px;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: var(--transition);
  }
  .project__item:hover .content {
    transform: translate(0);
  }
  .project__item:hover .content span {
    -webkit-text-fill-color: var(--white);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    color: var(--white);
    font-size: 100px;
    line-height: 120px;
    font-weight: 500;
  }
  .project__item:hover .content p {
    opacity: 1;
    visibility: visible;
  }
  @media (max-width: 991px) {
    .project__item {
      height: 500px;
    }
  }
  
  .project-three-area {
    overflow: hidden;
  }
  .project-three__item {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
    background-color: var(--black);
  }
  .project-three__item .image {
    overflow: hidden;
    width: 50%;
  }
  .project-three__item .image img {
    transition: var(--transition);
    filter: grayscale(100%);
  }
  .project-three__item .project-three__content {
    width: 50%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
  }
  .project-three__item .project-three__content .icon svg {
    transition: 0.7s;
  }
  .project-three__item .project-three__content h4 {
    color: var(--white);
  }
  .project-three__item .project-three__content p {
    color: var(--white);
  }
  .project-three__item .project-three__content .arry-btn {
    font-size: 40px;
    color: var(--white);
  }
  .project-three__item .project-three__content .arry-btn:hover {
    transform: rotate(45deg);
  }
  .project-three__item .project-three__content .content {
    transition: var(--transition);
    transform: translateY(65%);
  }
  .project-three__item .project-three__content .content p {
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }
  .project-three__item .project-three__content .shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .project-three__item:hover .project-three__content .shape {
    opacity: 1;
    visibility: visible;
  }
  .project-three__item:hover .project-three__content .icon svg {
    transform: rotateY(360deg);
  }
  .project-three__item:hover .project-three__content .content {
    transform: translateY(0);
    
  }
  .project-three__item:hover .project-three__content .content p {
    opacity: 1;
    visibility: visible;
  }
  .project-three__item:hover .image img {
    transform: scale(1.1);
    filter: unset;
  }
  
  .qta-area {
    overflow: hidden;
  }
  .qta__wrp {
    max-width: 1290px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: 500px;
  }
  @media (max-width: 991px) {
    .qta__wrp {
      padding: 20px 30px;
      border: 1px solid var(--border);
    }
  }
  @media (max-width: 575px) {
    .qta__wrp {
      padding: 5px 15px;
    }
  }
  .qta__wrp h2 {
    font-size: 96px;
    line-height: 110px;
  }
  .qta__wrp h2 span {
    color: inherit;
  }
  .qta__wrp h2 .stroke-text {
    color: var(--black);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black);
  }
  @media (max-width: 1199px) {
    .qta__wrp h2 {
      font-size: 60px;
      line-height: 70px;
    }
  }
  @media (max-width: 991px) {
    .qta__wrp h2 {
      font-size: 40px;
      line-height: 50px;
    }
  }
  @media (max-width: 575px) {
    .qta__wrp h2 {
      font-size: 28px;
      line-height: 40px;
    }
  }
  
  .service-area {
    overflow: hidden;
  }
  .service__wrp {
    margin-bottom: 180px;
  }
  @media (max-width: 767px) {
    .service__wrp {
      margin-bottom: 0;
    }
  }
  .service__item.second-child {
    transform: translateY(90px);
  }
  @media (max-width: 767px) {
    .service__item.second-child {
      transform: translate(0);
    }
  }
  .service__item.last-child {
    transform: translateY(180px);
  }
  @media (max-width: 767px) {
    .service__item.last-child {
      transform: translate(0);
    }
  }
  .service__item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    transition: 0.7s;
  }
  .service__item .image {
    overflow: hidden;
  }
  .service__item .image img {
    transition: var(--transition);
  }
  .service__item h4 {
    max-width: 250px;
    margin: 30px 0;
  }
  .service__item p {
    margin-top: 30px;
  }
  .service__item:hover .icon {
    transform: rotateY(360deg) translateY(5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 20px;
  }
  .service__item:hover .image img {
    transform: scale(1.1);
  }
  .service__item.dark-mode .icon {
    background-color: var(--border);
  }
  
  .service-popular__item {
    position: relative;
    padding: 70px 60px;
    margin-left: -1px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  @media (max-width: 1600px) {
    .service-popular__item {
      padding: 70px 40px;
    }
  }
  .service-popular__item.second-child {
    transform: translateY(90px);
  }
  @media (max-width: 767px) {
    .service-popular__item.second-child {
      transform: translate(0);
    }
  }
  .service-popular__item.last-child {
    transform: translateY(180px);
  }
  @media (max-width: 767px) {
    .service-popular__item.last-child {
      transform: translate(0);
    }
  }
  .service-popular__item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    transition: 0.7s;
  }
  .service-popular__item .image-box {
    overflow: hidden;
  }
  .service-popular__item .image-box img {
    max-width: 100%;
    transition: var(--transition);
    transform: scale(1.1);
  }
  .service-popular__item h4 {
    margin: 40px 0 10px;
  }
  .service-popular__item:hover .icon {
    transform: rotateY(360deg) translateY(5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 20px;
  }
  .service-popular__item:hover .image img {
    transform: scale(1.1);
  }
  .service-popular__item .btn-more-2 {
    width: 100%;
  }
  
  .service-two-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .service-two__wrp {
    max-width: 1300px;
    margin: 0 auto;
  }
  .service-two__item {
    background-color: var(--white);
    padding: 30px;
    position: relative;
    margin-left: -1px;
    margin-bottom: -1px;
    border: 1px solid #DFE4E1;
    z-index: 1;
  }
  .service-two__item::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    content: "";
    background-color: var(--theme-color1);
    transition: var(--transition);
  }
  .service-two__item .title {
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .service-two__item .icon {
    display: inline-block;
    margin-bottom: 180px;
    transition: 0.9s;
  }
  .service-two__item .icon svg path {
    transition: var(--transition);
  }
  .service-two__item:hover .icon {
    transform: rotateY(360deg);
  }
  .service-two__item:hover .icon svg path {
    fill: var(--white);
  }
  .service-two__item:hover .btn-view {
    color: var(--white);
  }
  .service-two__item:hover .btn-view i {
    color: var(--white);
  }
  .service-two__item:hover .title {
    color: var(--white);
  }
  .service-two__item:hover::after {
    height: 100%;
    top: 0;
    bottom: unset;
  }
  .service-two__item.dark-mode {
    background-color: var(--black);
  }
  .service-two__item.dark-mode .arry-btn {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .service-two__item.dark-mode .title {
    color: var(--white);
  }
  .service-two__item.dark-mode .icon svg path {
    fill: var(--white);
  }
  
  .service-three-area {
    overflow: hidden;
  }
  .service-three__item {
    padding: 20px 30px;
    border: 1px solid var(--border);
    display: block;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
  }
  .service-three__item .icon {
    transition: 0.7s;
  }
  .service-three__item::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--black);
    content: "";
    z-index: -1;
    transition: 0.5s;
  }
  .service-three__item svg path {
    transition: var(--transition);
  }
  .service-three__item h4 {
    padding-left: 30px;
    border-left: 1px solid var(--border);
    max-width: 230px;
    transition: var(--transition);
  }
  .service-three__item:hover::after, .service-three__item.active::after {
    width: 100%;
    left: 0;
    right: unset;
  }
  .service-three__item:hover h4, .service-three__item.active h4 {
    color: var(--white);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .service-three__item:hover svg path, .service-three__item.active svg path {
    fill: var(--white);
  }
  .service-three__item:hover .icon, .service-three__item.active .icon {
    transform: rotateY(360deg);
  }
  .service-three__item.dark-mode::after {
    background-color: var(--black0);
  }
  .service-three__item.dark-mode.active {
    border: 1px solid var(--white);
  }
  .service-three__item.dark-mode.active h4 {
    color: var(--black);
    border-left: 1px solid var(--border);
  }
  .service-three__item.dark-mode.active svg path {
    fill: var(--black);
  }
  
  .service-four-aera {
    overflow: hidden;
  }
  .service-four__item .icon-wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .service-four__item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    transition: 0.7s;
  }
  .service-four__item .number {
    font-size: 40px;
    letter-spacing: 0px;
    font-family: var(--font-title);
    -webkit-text-stroke: 1px var(--border);
    transition: 0.5s;
    color: transparent;
  }
  .service-four__item .content {
    padding: 20px;
    border: 1px solid var(--border);
    /*border-bottom: none;*/
  }
  .service-four__item .image {
    overflow: hidden;
  }
  .service-four__item .image img {
    transition: var(--transition);
  }
  .service-four__item .title {
    max-width: 260px;
    margin-top: 20px;
  }
  .service-four__item:hover .icon {
    transform: rotateY(360deg) translateY(5px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 20px;
  }
  .service-four__item:hover .number {
    color: var(--black);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black);
  }
  .service-four__item:hover .image img {
    transform: scale(1.1);
  }
  .service-four__item.dark-mode .icon {
    background-color: var(--border);
  }
  .service-four__item.dark-mode:hover .icon {
    background-color: var(--black0);
  }
  
  .service-six-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--sub-bg-dark);
  }
  .service-six__shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .service-six__wrp {
    max-width: 1300px;
    margin: 0 auto;
  }
  .service-six__item {
    background-color: var(--white);
    padding: 30px 40px;
    position: relative;
    z-index: 1;
  }
  .service-six__item::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    content: "";
    background-color: var(--black0);
    transition: var(--transition);
  }
  .service-six__item .item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .service-six__item .item-head .icon {
    display: inline-block;
    transition: 0.9s;
  }
  .service-six__item .item-head .icon svg path {
    transition: var(--transition);
  }
  .service-six__item .item-head .arry-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--black);
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  .service-six__item .item-head .arry-btn:hover {
    transform: rotate(45deg);
  }
  .service-six__item:hover .icon {
    transform: rotateY(360deg);
  }
  .service-six__item:hover .icon svg path {
    fill: var(--white);
  }
  .service-six__item:hover .arry-btn {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .service-six__item:hover .title {
    color: var(--white);
  }
  .service-six__item:hover::after {
    height: 100%;
    top: 0;
    bottom: unset;
  }
  .service-six__item.dark-mode {
    background-color: var(--black);
  }
  .service-six__item.dark-mode .arry-btn {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .service-six__item.dark-mode .title {
    color: var(--white);
  }
  .service-six__item.dark-mode .icon svg path {
    fill: var(--white);
  }
  
  .service-seven-area {
    overflow: hidden;
  }
  .service-seven__wrp {
    max-width: 1380px;
    margin: 0 auto;
  }
  .service-seven__tab ul.nav.nav-tabs {
    display: block;
    border: none;
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item button.nav-link {
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
    padding-left: 30px;
    color: var(--black);
    background-color: transparent;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item button.nav-link i {
    background-color: var(--sub-bg);
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item button.nav-link:hover {
    color: var(--white);
    border: 1px solid var(--black);
    background-color: var(--black);
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item button.nav-link:hover i {
    background-color: var(--white);
    color: var(--black);
    transform: rotate(45deg);
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item button.nav-link.active {
    color: var(--white);
    border: 1px solid var(--black);
    background-color: var(--black);
  }
  .service-seven__tab ul.nav.nav-tabs li.nav-item button.nav-link.active i {
    background-color: var(--white);
    color: var(--black);
    transform: rotate(45deg);
  }
  .service-seven__tab.dark-mode ul.nav.nav-tabs li.nav-item button.nav-link:hover {
    color: var(--black);
    border: 1px solid var(--white);
    background-color: var(--black0);
  }
  .service-seven__tab.dark-mode ul.nav.nav-tabs li.nav-item button.nav-link:hover i {
    background-color: var(--black);
    color: var(--white);
  }
  .service-seven__tab.dark-mode ul.nav.nav-tabs li.nav-item button.nav-link.active {
    color: var(--black);
    border: 1px solid var(--white);
    background-color: var(--black0);
  }
  .service-seven__tab.dark-mode ul.nav.nav-tabs li.nav-item button.nav-link.active i {
    background-color: var(--black);
    color: var(--white);
  }
  .service-seven__image {
    max-width: 400px;
    margin: 0 auto;
  }
  .service-seven__image img {
    width: 100%;
  }
  
  .service-eight-area {
    overflow: hidden;
  }
  .service-eight__wrp {
    max-width: 1460px;
    margin: 0 auto;
  }
  .service-eight__item {
    text-align: center;
    padding: 29px 21px;
    border: 1px solid var(--border);
    transition: var(--transition);
    min-height: 395px;
    background: #ffffff;
  }
  .service-eight__item .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 0;
    background-color: var(--black);
    margin: 15px auto;
    transition: var(--transition);
  }
  .service-eight__item .icon svg {
    transition: 0.9s;
  }
  .service-eight__item .text {
    max-width: 340px;
    margin: 0 auto;
  }
  .service-eight__item .btn-more {
    margin-top: 20px;
  }
  .service-eight__item:hover {
    border: 1px solid transparent;
    background-color: var(--white);
    transform: translateY(-5px);
  }
  .service-eight__item:hover .icon {
    border-radius: 100%;
  }
  .service-eight__item:hover .icon svg {
    transform: rotateY(-360deg);
  }
  .service-eight__item.dark-mode .icon {
    background-color: var(--black0);
  }
  .service-eight__item.dark-mode:hover {
    background-color: var(--black0);
  }
  .service-eight__item.dark-mode:hover .icon {
    background-color: var(--sub-bg);
  }
  
  .service-nine-area {
    overflow: hidden;
  }
  .service-nine__wrp {
    max-width: 1460px;
    margin: 0 auto;
  }
  .service-nine__item {
    border: 1px solid var(--border);
    padding: 30px 40px;
    position: relative;
    z-index: 1;
  }
  .service-nine__item::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    content: "";
    background-color: #000;
    transition: var(--transition);
  }
  .service-nine__item .item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .service-nine__item .item-head .icon {
    display: inline-block;
    transition: 0.9s;
  }
  .service-nine__item .item-head .icon svg path {
    transition: var(--transition);
  }
  .service-nine__item .item-head .arry-btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--black);
    border: 1px solid var(--border);
    transition: var(--transition);
  }
  .service-nine__item .item-head .arry-btn:hover {
    transform: rotate(45deg);
  }
  .service-nine__item:hover {
    border: 1px solid transparent;
  }
  .service-nine__item:hover .icon {
    transform: rotateY(360deg);
  }
  .service-nine__item:hover .icon svg path {
    fill: var(--white);
  }
  .service-nine__item:hover .arry-btn {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .service-nine__item:hover .title {
    color: var(--white);
  }
  .service-nine__item:hover::after {
    height: 100%;
    top: 0;
    bottom: unset;
  }
  .service-nine__item.dark-mode {
    border: 1px solid var(--border-light);
  }
  .service-nine__item.dark-mode .icon svg path {
    fill: var(--white);
  }
  .service-nine__item.dark-mode .arry-btn {
    color: var(--white);
    border: 1px solid var(--white);
  }
  .service-nine__item.dark-mode .title {
    color: var(--white);
  }
  .service-nine__item.dark-mode:hover {
    border: 1px solid transparent;
  }
  
  .service-eleven-area {
    overflow: hidden;
  }
  .service-eleven__item {
    padding: 20px 30px;
    border: 1px solid var(--border);
    display: block;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border-radius: 50px;
    overflow: hidden;
  }
  .service-eleven__item .icon {
    transition: 0.7s;
  }
  .service-eleven__item::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--black);
    content: "";
    z-index: -1;
    transition: 0.5s;
  }
  .service-eleven__item svg path {
    transition: var(--transition);
  }
  .service-eleven__item h4 {
    padding-left: 30px;
    border-left: 1px solid var(--border);
    max-width: 230px;
    transition: var(--transition);
  }
  .service-eleven__item.active::after {
    width: 100%;
    left: 0;
    right: unset;
  }
  .service-eleven__item.active h4 {
    color: var(--white);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .service-eleven__item.active svg path {
    fill: var(--white);
  }
  .service-eleven__item.active .icon {
    transform: rotateY(360deg);
  }
  .service-eleven__item.dark-mode {
    border: 1px solid var(--border-light);
  }
  .service-eleven__item.dark-mode::after {
    background-color: var(--black0);
  }
  .service-eleven__item.dark-mode h4 {
    color: var(--white);
    border-left: 1px solid var(--border-light);
  }
  .service-eleven__item.dark-mode svg path {
    fill: var(--white);
  }
  .service-eleven__item.dark-mode:hover {
    border: 1px solid transparent;
  }
  
  .service-twelve-area {
    overflow: hidden;
    background-color: #0c2c4f;
  }
  .service-twelve__image {
    height: 100%;
  }
  .service-twelve__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-twelve__item {
    height: 100%;
    padding: 30px;
    background-color: var(--white);
  }
  @media (max-width: 1199px) {
    .service-twelve__item {
      padding: 30px;
    }
  }
  .service-twelve__item .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .service-twelve__item .list ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--black);
    font-size: 15px;
  }
  .service-twelve__item .list ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .service-twelve__item-dark {
    height: 100%;
    padding: 30px;
    background-color: #133a65;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 1199px) {
    .service-twelve__item-dark {
      padding: 30px;
    }
  }
  .service-twelve__item-dark .list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .service-twelve__item-dark .list ul li {
    transform: translateX(-22px);
    transition: var(--transition);
  }
  .service-twelve__item-dark .list ul li i {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .service-twelve__item-dark .list ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 500;
    color: var(--white);
    font-size: 18px;
    line-height: 40px;
  }
  .service-twelve__item-dark .list ul li:not(:last-child) {
    margin-bottom: 15px;
  }
  @media (max-width: 575px) {
    .service-twelve__item-dark .list ul li:not(:last-child) {
      margin-bottom: 0;
    }
  }
  .service-twelve__item-dark .list ul li:hover {
    transform: translateX(0px);
  }
  .service-twelve__item-dark .list ul li:hover i {
    opacity: 1;
    visibility: visible;
  }
  .service-twelve__item-dark .rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 0;
  }
  .service-twelve__item-dark .rectangle .item {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.5s ease-in-out 0.2s;
    position: absolute;
    top: 0;
    right: 0;
  }
  .service-twelve__item-dark .rectangle .item.animated {
    height: 80px;
  }
  .service-twelve__item-dark .rectangle .item-dark {
    width: 80px;
    height: 0px;
    transition: all 0.5s ease-in-out 0.7s;
    background-color: rgba(255, 255, 255, 0.5411764706);
    position: absolute;
    top: 80px;
    left: 0px;
  }
  .service-twelve__item-dark .rectangle .item-dark.animated {
    height: 80px;
  }
  @media (max-width: 767px) {
    .service-twelve__item-dark .rectangle {
      display: none;
    }
  }
  
  .skill-aera {
    overflow: hidden;
  }
  .skill__video {
    position: relative;
    z-index: 1;
  }
  .skill__video img {
    width: 100%;
  }
  .skill__video .btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .skill__video .btn-video .video-popup {
    width: 55px;
    height: 55px;
    line-height: 58px;
    background-color: var(--white);
    color: var(--black);
    font-size: 14px;
  }
  .skill__item {
    max-width: 550px;
  }
  .skill__item .progress-area .progress__title {
    margin-bottom: 20px;
  }
  .skill__item .progress-area .progress__title h5,
  .skill__item .progress-area .progress__title span {
    color: var(--white);
  }
  .skill__item .progress-area .progress {
    overflow: unset !important;
    background-color: rgba(255, 255, 255, 0.1019607843);
    height: 5px;
    margin-bottom: 5px;
  }
  .skill__item .progress-area .progress .progress-bar {
    overflow: unset !important;
    background-color: var(--white);
    position: relative;
  }
  .skill__item .progress-area .progress .progress-bar::after {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--white);
    content: "";
  }
  
  .steps__wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  @media (max-width: 991px) {
    .steps__wrp {
      gap: 30px;
      flex-wrap: wrap;
    }
  }
  .steps__item {
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .steps__item .icon {
    width: 105px;
    height: 105px;
    line-height: 105px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border-radius: 0;
    margin: 0 auto;
    background-color: var(--border);
    position: relative;
    z-index: 1;
  }
  .steps__item .icon svg {
    transition: 0.7s;
  }
  .steps__item .icon .number {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-color1);
    background-color: var(--theme-color1);
    position: absolute;
    top: -16px;
    right: -16px;
  }
  .steps__item .title {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  @media (max-width: 991px) {
    .steps__item {
      max-width: 45%;
    }
  }
  @media (max-width: 767px) {
    .steps__item {
      max-width: 100%;
    }
  }
  .steps__item .line {
    position: absolute;
    right: -60%;
    top: 40px;
    z-index: -1;
  }
  @media (max-width: 1600px) {
    .steps__item .line {
      right: -40%;
    }
  }
  @media (max-width: 991px) {
    .steps__item .line.item-middle {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .steps__item .line {
      display: none;
    }
  }
  .steps__item:hover .icon svg {
    transform: rotateY(360deg);
  }
  .steps__item:hover .icon .number {
    animation: bounceIn 1s forwards;
  }
  .steps__item.dark-mode .icon {
    background-color: var(--black0);
  }
  .steps__item.dark-mode .icon .number {
    background-color: #1a243f;
  }
  
  .solution-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .solution-area.have-padding {
    padding-top: 300px;
  }
  @media (max-width: 991px) {
    .solution-area.have-padding {
      padding-top: 250px;
    }
  }
  .solution__wrp {
    max-width: 1290px;
    margin: 0 auto;
  }
  .solution__header ul {
    margin-top: 30px;
  }
  .solution__header ul li {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
  }
  .solution__header ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .solution__item .image {
    overflow: hidden;
  }
  .solution__item .image img {
    transition: 0.9s;
  }
  .solution__item .content .sub-title {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
    color: var(--white);
  }
  .solution__item .content .title {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .solution__item .content .title .number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    max-width: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(30px);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-title);
    transition: var(--transition);
  }
  .solution__item:hover .image img {
    transform: scale(1.1);
    filter: grayscale(100%);
  }
  .solution__item:hover .content .number {
    background-color: var(--white);
    color: var(--black);
  }
  .solution__rectangle {
    position: absolute;
    z-index: -1;
    width: 160px;
    height: 160px;
    bottom: 80px;
    right: 0;
  }
  .solution__rectangle .item-one {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    width: 0;
    transition: all 0.3s ease-in-out 0.8s;
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
  .solution__rectangle .item-one.animated {
    width: 80px;
  }
  .solution__rectangle .item-two {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.5s;
    position: absolute;
    bottom: 0px;
    left: 80px;
  }
  .solution__rectangle .item-two.animated {
    height: 80px;
  }
  .solution__rectangle .item-three {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    bottom: -80px;
    right: 80px;
  }
  .solution__rectangle .item-three.animated {
    height: 80px;
  }
  @media (max-width: 767px) {
    .solution__rectangle {
      display: none;
    }
  }
  
  .team-area {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 991px) {
    .team-area {
      overflow: hidden;
    }
  }
  .team__wrp {
    max-width: 1630px;
    margin: 0 auto;
  }
  .team__item {
    position: relative;
    overflow: hidden;
  }
  .team__item .team__image img {
    width: 100%;
    border-radius: 9px;
  }
  .team__item.have-margin {
    margin-top: -60px;
  }
  @media (max-width: 575px) {
    .team__item.have-margin {
      margin-top: 0;
    }
  }
  .team__item h4 {
    margin-top: 10px;
  }
  .team__item span {
    font-size: 14px;
    line-height: 20px;
  }
  .team__item .socials {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    color: var(--text-color1);
    position: absolute;
    right: 20px;
    top: 25px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px) rotate(-30deg);
  }
  .team__item .socials ul {
    width: 50px;
    position: absolute;
    top: 55px;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    visibility: hidden;
  }
  .team__item .socials ul li {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
  }
  .team__item .socials ul li:nth-child(2) {
    transition: 0.5s;
  }
  .team__item .socials ul li:nth-child(3) {
    transition: 0.7s;
  }
  .team__item .socials ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    color: var(--text-color1);
  }
  .team__item .socials ul li i {
    transition: 0.9s;
  }
  .team__item .socials ul li:hover i {
    transform: rotateY(360deg);
  }
  .team__item .socials:hover ul {
    visibility: visible;
  }
  .team__item .socials:hover ul li {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
  .team__item:hover .socials {
    opacity: 1;
    visibility: visible;
    transform: unset;
  }
  .team__left {
    position: sticky;
    top: 130px;
    max-width: 530px;
  }
  .team__right {
    margin-top: 60px;
  }
  @media (max-width: 575px) {
    .team__right {
      margin-top: 0;
    }
  }
  
  .team-two-area {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 991px) {
    .team-two-area {
      overflow: hidden;
    }
  }
  .team-two__wrp {
    max-width: 1630px;
    margin: 0 auto;
  }
  .team-two__item {
    position: relative;
    overflow: hidden;
  }
  .team-two__item .content {
    padding: 20px 15px;
    background-color: rgba(194, 194, 194, 0.4);
    backdrop-filter: blur(20px);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .team-two__item .content .title {
    color: var(--white);
    margin-top: 5px;
  }
  .team-two__item .content .sub-title {
    color: var(--white);
  }
  .team-two__item .socials {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    color: var(--text-color1);
    position: absolute;
    right: 20px;
    top: 25px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px) rotate(-30deg);
  }
  .team-two__item .socials ul {
    width: 50px;
    position: absolute;
    top: 55px;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    visibility: hidden;
  }
  .team-two__item .socials ul li {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: var(--transition);
  }
  .team-two__item .socials ul li:nth-child(2) {
    transition: 0.5s;
  }
  .team-two__item .socials ul li:nth-child(3) {
    transition: 0.7s;
  }
  .team-two__item .socials ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--theme-color1);
    color: var(--text-color1);
  }
  .team-two__item .socials ul li a i {
    transition: 0.9s;
  }
  .team-two__item .socials ul li a:hover i {
    transform: rotateY(360deg);
  }
  .team-two__item .socials:hover ul {
    visibility: visible;
  }
  .team-two__item .socials:hover ul li {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
  .team-two__item:hover .content {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
  .team-two__item:hover .socials {
    opacity: 1;
    visibility: visible;
    transform: unset;
  }
  .team-two__left {
    position: sticky;
    top: 130px;
    max-width: 530px;
  }
  
  .team-five-area {
    overflow: hidden;
  }
  .team-five__wrp {
    max-width: 1290px;
    margin: 0 auto;
  }
  .team-five__item {
    position: relative;
    z-index: 1;
  }
  .team-five__item .content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 25px;
    background-color: var(--white);
    text-align: center;
    transition: var(--transition);
  }
  .team-five__item .content .title {
    margin-bottom: 5px;
  }
  .team-five__item .content .socials {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: -40px;
    opacity: 0;
    visibility: hidden;
    color: var(--white);
    transition: var(--transition);
  }
  .team-five__item .content .socials a:hover {
    transform: translateY(-3px);
  }
  .team-five__item:hover .content {
    padding: 40px 20px;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    background-color: rgba(194, 194, 194, 0.4);
  }
  .team-five__item:hover .content .title {
    color: var(--white);
  }
  .team-five__item:hover .content .sub-title {
    color: var(--white);
  }
  .team-five__item:hover .content .socials {
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
  }
  .team-five__item.dark-mode:hover .content .title {
    color: var(--black);
  }
  .team-five__item.dark-mode:hover .content .sub-title {
    color: var(--black);
  }
  .team-five__item.dark-mode:hover .content .socials a {
    color: var(--black);
  }
  
  .team-six-area {
    overflow: hidden;
  }
  .team-six__wrp {
    max-width: 1300px;
    margin: 0 auto;
  }
  .team-six__item .title {
    margin-top: 20px;
  }
  .team-six__item .sub-title {
    font-size: 14px;
    line-height: 20px;
  }
  .team-six__item .image {
    position: relative;
    overflow: hidden;
  }
  .team-six__item .image img {
    transition: 0.7s;
  }
  .team-six__item .image::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--border);
    content: "";
    transition: var(--transition);
  }
  .team-six__item .socials {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
    position: absolute;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    z-index: 1;
  }
  .team-six__item .socials ul {
    width: 50px;
    position: absolute;
    bottom: 58px;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: var(--transition);
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 30px 0;
    transform: scaleX(0);
  }
  .team-six__item .socials ul li {
    line-height: 20px;
  }
  .team-six__item .socials ul li a:hover {
    color: var(--theme-color1);
  }
  .team-six__item:hover .image img {
    transform: scale(1.1);
  }
  .team-six__item:hover .image::after {
    height: 100%;
  }
  .team-six__item:hover .socials ul {
    transform: scaleX(1);
  }
  
  .testimonial-area, .testimonial-six-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .testimonial__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
  }
  @media (max-width: 1600px) {
    .testimonial__shape {
      z-index: -1;
    }
  }
  .testimonial__image {
    position: absolute;
    bottom: 0;
    right: 16%;
    z-index: 1;
  }
  @media (max-width: 1800px) {
    .testimonial__image {
      right: 8%;
    }
  }
  @media (max-width: 1600px) {
    .testimonial__image {
      right: 1%;
    }
  }
  @media (max-width: 1399px) {
    .testimonial__image {
      display: none;
    }
  }
  .testimonial__wrp {
    max-width: 1320px;
    background-color: var(--white);
    padding: 80px;
  }
  @media (max-width: 991px) {
    .testimonial__wrp {
      padding: 40px;
    }
  }
  @media (max-width: 767px) {
    .testimonial__wrp {
      padding: 20px;
    }
  }
  .testimonial__slider {
    border-right: 1px solid var(--border);
  }
  @media (max-width: 991px) {
    .testimonial__slider {
      border-right: none;
    }
  }
  .testimonial__slider-arry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    padding-top: 15px;
    border-top: 1px solid rgba(35, 48, 50, 0.2);
  }
  .testimonial__slider-arry.dark-mode button {
    background-color: var(--border);
  }
  .testimonial__item {
    padding-right: 30px;
  }
  .testimonial__item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--black);
    margin-bottom: 30px;
  }
  .testimonial__item .info {
    margin-top: 70px;
  }
  @media (max-width: 991px) {
    .testimonial__item .info {
      margin-top: 30px;
    }
  }
  .testimonial__item.dark-mode .icon {
    background-color: var(--border);
  }
  .testimonial__review {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .testimonial__review h2 {
    margin: 10px 0;
  }
  .testimonial__review h5 {
    line-height: 16px;
    margin-top: 10px;
  }
  
  .testimonial-three-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .testimonial-three__wrp {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
  }
  .testimonial-three__slider {
    max-width: 830px;
    margin: 0 auto;
  }
  .testimonial-three__slider-thumb {
    max-width: 300px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 10px;
  }
  .testimonial-three__slider-thumb .swiper-slide-thumb-active img {
/*    transform: scale(1.1);*/
  }
  .testimonial-three__arry-prev {
    font-size: 40px;
    line-height: 40px;
    color: var(--paragraph-light);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }
  @media (max-width: 767px) {
    .testimonial-three__arry-prev {
      display: none;
    }
  }
  .testimonial-three__arry-prev span {
    color: inherit;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .testimonial-three__arry-prev:hover {
    color: var(--black);
  }
  .testimonial-three__arry-prev.dark-mode {
    color: #c4c4c4;
  }
  .testimonial-three__arry-prev.dark-mode:hover {
    color: var(--black);
  }
  .testimonial-three__arry-next {
    font-size: 40px;
    line-height: 40px;
    color: var(--paragraph-light);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    left: unset;
    right: 0;
  }
  @media (max-width: 767px) {
    .testimonial-three__arry-next {
      display: none;
    }
  }
  .testimonial-three__arry-next span {
    color: inherit;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .testimonial-three__arry-next:hover {
    color: var(--black);
  }
  .testimonial-three__arry-next.dark-mode {
    color: var(--paragraph);
  }
  .testimonial-three__arry-next.dark-mode:hover {
    color: var(--black);
  }
  .testimonial-three__image {
    width: 80px;
    cursor: pointer;
  }
  .testimonial-three__image img {
    width: 100%;
    transition: var(--transition);
  }
  .testimonial-three__item {
    padding: 10px;
    text-align: center;
  }
  .testimonial-three__item p {
    margin-top: 45px;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 40px;
  }
  @media (max-width: 575px) {
    .testimonial-three__item p {
      font-size: 16px;
      line-height: 30px;
    }
  }
  .testimonial-three__item .info span {
    font-size: 14px;
  }
  
  .testimonial-four-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .testimonial-four__wrp {
    max-width: 1440px;
    margin: 0 auto;
  }
  .testimonial-four__slider {
    margin-right: -19%;
  }
  @media (max-width: 1399px) {
    .testimonial-four__slider {
      margin-right: 0;
    }
  }
  .testimonial-four__item {
    padding: 40px;
    background-color: var(--white);
    min-height: 475px;
  }
  .testimonial-four__item .item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .testimonial-four__item .item-head .info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .testimonial-four__item .item-head .info span {
    font-size: 14px;
  }
  .testimonial-four__item .item-head .rating {
    display: inline-block;
    font-size: 14px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 18px;
    padding: 5px 8px;
    border-radius: 50px;
  }
  .testimonial-four__item .item-head .rating i {
    font-size: 12px;
  }
  .testimonial-four__review {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
  }
  .testimonial-four__review h5 {
    color: var(--paragraph);
  }
  .testimonial-four__review h5 span {
    color: var(--black);
  }
  .testimonial-four__map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .testimonial-five-area {
    overflow: hidden;
  }
  .testimonial-five__wrp {
    max-width: 1230px;
    margin: 0 auto;
  }
  .testimonial-five-right .section-header, .testimonial-thirteen-right .section-header {
    border-bottom: 1px solid var(--border);
  }
  .testimonial-five__image {
    max-width: 440px;
    position: relative;
    z-index: 1;
  }
  .testimonial-five__image img {
    width: 100%;
  }
  .testimonial-five__image .image-content {
    position: absolute;
    bottom: 50px;
    right: -80px;
    padding: 30px 35px;
    background-color: var(--black);
    display: inline-block;
  }
  .testimonial-five__image .image-content .title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--white);
    display: inline-block;
    margin-bottom: 25px;
  }
  .testimonial-five__image .image-content .users a {
    width: 45px;
    height: 45px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    overflow: hidden;
  }
  .testimonial-five__image .image-content .users a:not(:first-child) {
    margin-left: -10px;
  }
  .testimonial-five__image .image-content .users a.icon {
    color: var(--black);
    background-color: var(--white);
  }
  .testimonial-five__image .image-content .users a:hover {
    transform: scale(1.1);
  }
  @media (max-width: 575px) {
    .testimonial-five__image .image-content {
      right: 20px;
      bottom: 20px;
    }
  }
  .testimonial-five__item .title, .testimonial-thirteen__item .title {
    margin-bottom: 20px;
  }
  .testimonial-five__item .title svg, .testimonial-thirteen__item .title svg {
    margin-right: 10px;
  }
  .testimonial-five__item .title span, .testimonial-thirteen__item .title span {
    font-size: 14px;
  }
  .testimonial-five__item .text, .testimonial-thirteen__item .text {
    font-size: 22px;
    line-height: 30px;
  }
  @media (max-width: 575px) {
    .testimonial-five__item .text, .testimonial-thirteen__item .text {
      font-size: 18px;
    }
  }
  .testimonial-five__item .ratting, .testimonial-thirteen__item .ratting {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
  }
  @media (max-width: 575px) {
    .testimonial-five__item .ratting img, .testimonial-thirteen__item .ratting img {
      width: 100px;
    }
  }
  
  .testimonial-six__image {
    max-width: 861px;
    position: absolute;
    bottom: 0;
    right: 60px;
  }
  .testimonial-six__image img {
    width: 100%;
  }
  .testimonial-six__image .sign {
    position: absolute;
    left: 20%;
    bottom: 50px;
  }
  @media (max-width: 1399px) {
    .testimonial-six__image {
      max-width: 600px;
    }
  }
  @media (max-width: 991px) {
    .testimonial-six__image {
      display: none;
    }
  }
  
  .testimonial-nine-area {
    overflow: hidden;
  }
  .testimonial-nine__wrp {
    max-width: 1230px;
    margin: 0 auto;
  }
  .testimonial-nine-right .section-header {
    border-bottom: 1px solid var(--border);
  }
  .testimonial-nine__image {
    max-width: 508px;
    float: right;
  }
  .testimonial-nine__image img {
    width: 100%;
  }
  .testimonial-nine__item .title {
    margin-bottom: 20px;
  }
  .testimonial-nine__item .title svg {
    margin-right: 10px;
  }
  .testimonial-nine__item .title span {
    font-size: 14px;
  }
  .testimonial-nine__item .text {
    font-size: 22px;
    line-height: 30px;
  }
  @media (max-width: 575px) {
    .testimonial-nine__item .text {
      font-size: 18px;
    }
  }
  .testimonial-nine__item .ratting {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
  }
  @media (max-width: 575px) {
    .testimonial-nine__item .ratting img {
      width: 100px;
    }
  }
  
  .testimonial-ten-area {
    overflow: hidden;
  }
  .testimonial-ten-right {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 100px;
  }
  @media (max-width: 767px) {
    .testimonial-ten-right {
      padding: 60px 30px;
    }
  }
  .testimonial-ten__image {
    height: 100%;
  }
  .testimonial-ten__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .testimonial-ten__item {
    max-width: 946px;
  }
  .testimonial-ten__item .text {
    font-size: 18px;
    line-height: 30px;
  }
  @media (max-width: 575px) {
    .testimonial-ten__item .text {
      font-size: 15px;
      line-height: 26px;
    }
  }
  .testimonial-ten__item .info {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .testimonial-ten__dot .swiper-pagination-bullet {
    width: 18px;
    height: 2px;
    border-radius: 0;
    background-color: #d8d8d8;
    transition: var(--transition);
  }
  .testimonial-ten__dot .swiper-pagination-bullet-active {
    width: 34px;
  }
  
  .testimonial-twelve-area {
    overflow: hidden;
  }
  .testimonial-twelve__wrp {
    max-width: 1390px;
    margin: 0 auto;
  }
  .testimonial-twelve__item {
    background-color: var(--sub-bg);
    padding: 50px;
    border-radius: 10px;
  }
  @media (max-width: 991px) {
    .testimonial-twelve__item {
      padding: 30px;
    }
  }
  .testimonial-twelve__item .text {
    font-size: 18px;
    line-height: 40px;
    font-weight: 800;
    font-family: var(--font-title);
    margin-bottom: 20px;
    margin-top: 30px;
  }
  @media (max-width: 991px) {
    .testimonial-twelve__item .text {
      font-size: 16px;
      line-height: 32px;
    }
  }
  .testimonial-twelve__item .info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .testimonial-twelve__item .info span {
    font-size: 14px;
  }
  .testimonial-twelve__item .info img {
    border-radius: 50%;
  }
  .testimonial-twelve__item .ratting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
  }
  .testimonial-twelve__item .ratting .star i {
    color: #ffd700;
  }
  
  .testimonial-thirteen-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--black);
  }
  .testimonial-thirteen__wrp {
    max-width: 1380px;
    margin: 0 auto;
  }
  .testimonial-thirteen__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
  }
  .testimonial-thirteen__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (max-width: 991px) {
    .testimonial-thirteen__image {
      display: none;
    }
  }
  .testimonial-thirteen-right {
    padding-left: 80px;
  }
  @media (max-width: 991px) {
    .testimonial-thirteen-right {
      padding-left: 0;
    }
  }
  .testimonial-thirteen-right .section-header {
    border-bottom: 1px solid var(--border-light);
  }
  .testimonial-thirteen-right .testimonial__dot .swiper-pagination-bullet {
    border: 2px solid var(--white);
    opacity: 1;
    transition: var(--transition);
  }
  .testimonial-thirteen-right .testimonial__dot .swiper-pagination-bullet-active {
    background-color: var(--white);
  }
  .testimonial-thirteen__item .title {
    color: var(--white);
  }
  .testimonial-thirteen__item .title span {
    color: var(--white);
  }
  .testimonial-thirteen__item .title svg path {
    fill: var(--white);
  }
  .testimonial-thirteen__item .text {
    color: var(--white);
  }
  
  .video-area {
    overflow: hidden;
  }
  .video__wrp {
    height: 430px;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .video__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .video-two-area {
    overflow: hidden;
  }
  .video-two__wrp {
    height: 580px;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .video-two__btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .video-three-area {
    overflow: hidden;
  }
  .video-three__wrp {
    height: 430px;
    position: relative;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
  }
  
  .video-four-area {
    overflow: hidden;
  }
  .video-four__video {
    height: 100%;
  }
  .video-four__video video {
    width: 100%;
    object-fit: cover;
    min-height: 600px;
    height: 100%;
  }
  @media (max-width: 575px) {
    .video-four__video video {
      min-height: 400px;
    }
  }
  .video-four__content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px;
    height: 100%;
  }
  @media (max-width: 1399px) {
    .video-four__content {
      padding: 60px 30px;
    }
  }
  @media (max-width: 991px) {
    .video-four__content {
      padding: 60px 15px;
    }
  }
  .video-four__content::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 28, 39, 0.8980392157);
    content: "";
    z-index: -1;
  }
  
  .video-nine-area {
    overflow: hidden;
  }
  .video-nine__image {
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .video-nine__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-nine__image .btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .video-nine__item {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 130px 120px;
  }
  .video-nine__item::before {
    width: 100%;
    height: 100%;
    background-color: rgba(18, 28, 39, 0.9803921569);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
  }
  @media (max-width: 1399px) {
    .video-nine__item {
      padding: 60px;
    }
  }
  @media (max-width: 575px) {
    .video-nine__item {
      padding: 60px 15px;
    }
  }
  .video-nine__item .text {
    max-width: 610px;
  }
  
  .work-area {
    position: relative;
    z-index: 1;
  }
  .work__image {
    position: relative;
    z-index: 1;
  }
  .work__image img {
    width: 100%;
  }
  .work__image .icon {
    width: 122px;
    position: absolute;
    bottom: 60px;
    right: 60px;
  }
  @media (max-width: 767px) {
    .work__image .icon {
      width: 60px;
      right: 30px;
      bottom: 30px;
    }
  }
  .work__item {
    padding: 40px 50px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    transition: var(--transition);
    display: flex;
    gap: 60px;
  }
  .work__item:nth-child(2) {
    border-top: 1px solid var(--border);
  }
  .work__item span {
    font-size: 128px;
    line-height: 128px;
    font-weight: 500;
    font-family: var(--font-title);
    transition: var(--transition);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.2);
  }
  @media (max-width: 575px) {
    .work__item {
      gap: 20px;
      padding: 20px;
    }
    .work__item span {
      font-size: 60px;
      line-height: 60px;
    }
    .work__item p {
      font-size: 14px;
      line-height: 22px;
    }
  }
  .work__item .content {
    max-width: 430px;
  }
  .work__item .btn-view {
    margin-top: 20px;
  }
  .work__item:hover {
    background-color: var(--sub-bg);
    border: 1px solid var(--sub-bg);
    border-top: none;
  }
  .work__item:hover:nth-child(2) {
    border-top: 1px solid var(--sub-bg);
  }
  .work__item:hover span {
    color: var(--black);
    -webkit-text-fill-color: var(--black);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--black);
  }
  .work__item:hover .btn-view i {
    transform: rotate(-45deg);
  }
  .work__item-left {
    max-width: 800px;
    position: sticky;
    top: 130px;
  }
  .work__item-left .section-header {
    max-width: 460px;
  }
  .work__item-right .text {
    max-width: 450px;
  }
  .work__item.dark-area span {
    -webkit-text-stroke-color: var(--border2);
  }
  
  .work-ten-area {
    overflow: hidden;
  }
  .work-ten__wrp {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
  }
  @media (max-width: 991px) {
    .work-ten__wrp {
      flex-wrap: wrap;
    }
  }
  .work-ten__wrp::after {
    position: absolute;
    top: 95px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    border-top: 1px dashed var(--black);
    content: "";
    z-index: -1;
  }
  @media (max-width: 991px) {
    .work-ten__wrp::after {
      display: none;
    }
  }
  .work-ten__item {
    width: 260px;
    text-align: center;
  }
  @media (max-width: 991px) {
    .work-ten__item {
      width: 45%;
    }
  }
  @media (max-width: 575px) {
    .work-ten__item {
      width: 100%;
    }
  }
  .work-ten__item .image {
    width: 190px;
    height: 190px;
    line-height: 190px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .work-ten__item .image img {
    border-radius: 100%;
  }
  .work-ten__item .image .number {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-title);
    color: var(--white);
    background-color: var(--black);
  }
  .work-ten__item .image::after {
    content: "";
    position: absolute;
    width: 102%;
    height: 102%;
    top: 0px;
    left: -2px;
    z-index: -1;
    border: 2px dashed var(--black);
    border-radius: 100%;
    transition: var(--transition);
    animation: rotate 30s linear infinite;
    opacity: 0;
    visibility: hidden;
  }
  .work-ten__item .content .title {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .work-ten__item:hover .image::after {
    opacity: 1;
    visibility: visible;
  }
  .work-ten__item:hover .image .number {
    animation: bounceIn 1s forwards;
  }
  
  .work-eleven-area {
    overflow: hidden;
  }
  .work-eleven__wrp {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    padding-top: 50px;
  }
  @media (max-width: 991px) {
    .work-eleven__wrp {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 575px) {
    .work-eleven__wrp {
      padding-top: 0;
    }
  }
  .work-eleven__line {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  @media (max-width: 1600px) {
    .work-eleven__line {
      width: 90%;
    }
    .work-eleven__line img {
      width: 100%;
    }
  }
  @media (max-width: 1399px) {
    .work-eleven__line {
      width: 70%;
    }
  }
  @media (max-width: 991px) {
    .work-eleven__line {
      display: none;
    }
  }
  .work-eleven__item {
    width: 260px;
    text-align: center;
  }
  @media (max-width: 991px) {
    .work-eleven__item {
      width: 45%;
    }
  }
  @media (max-width: 575px) {
    .work-eleven__item {
      width: 100%;
    }
  }
  .work-eleven__item .image {
    width: 190px;
    height: 190px;
    line-height: 190px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .work-eleven__item .image img {
    border-radius: 100%;
  }
  .work-eleven__item .image .number {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-title);
    color: var(--white);
    background-color: var(--black);
  }
  .work-eleven__item .image::after {
    content: "";
    position: absolute;
    width: 102%;
    height: 102%;
    top: 0px;
    left: -2px;
    z-index: -1;
    border: 2px dashed var(--black);
    border-radius: 100%;
    transition: var(--transition);
    animation: rotate 30s linear infinite;
    opacity: 0;
    visibility: hidden;
  }
  .work-eleven__item .content .title {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .work-eleven__item:hover .image::after {
    opacity: 1;
    visibility: visible;
  }
  .work-eleven__item:hover .image .number {
    animation: bounceIn 1s forwards;
  }
  .work-eleven__item.have-margin {
    margin-top: -50px;
  }
  @media (max-width: 575px) {
    .work-eleven__item.have-margin {
      margin-top: 0;
    }
  }
  
  .footer-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--black);
  }
  .footer__shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .footer__wrp {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
  }
  @media (max-width: 991px) {
    .footer__wrp {
      flex-wrap: wrap;
    }
  }
  .footer__wrp::after {
    bottom: 0;
    left: 23%;
    width: 1px;
    height: 82%;
    background-color: rgba(255, 255, 255, 0.1019607843);
    position: absolute;
    content: "";
  }
  @media (max-width: 1199px) {
    .footer__wrp::after {
      display: none;
    }
  }
  .footer__item, .footer__item-last {
    width: 190px;
  }
  .footer__item .title, .footer__item-last .title {
    color: var(--white);
    margin-bottom: 15px;
  }
  .footer__item ul li:not(:last-child), .footer__item-last ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer__item ul li a, .footer__item-last ul li a {
    color: var(--paragraph-dark);
    font-size: 18px;
    font-weight: 500;
  }
  .footer__item ul li a:hover, .footer__item-last ul li a:hover {
    padding-left: 5px;
  }
  .footer__item-last {
    width: 380px;
  }
  .footer__item p, .footer__item-last p {
    font-size: 18px;
    line-height: 34px;
    color: var(--paragraph-dark);
  }
  .footer__item .socials, .footer__item-last .socials {
    display: flex;
    gap: 15px;
  }
  .footer__item .socials a, .footer__item-last .socials a {
    color: var(--paragraph-dark);
    font-size: 18px;
  }
  .footer__item .socials a:hover, .footer__item-last .socials a:hover {
    transform: translateY(-2px);
    color: var(--white);
  }
  .footer__item .mailUs, .footer__item-last .mailUs {
    position: relative;
  }
  .footer__item .mailUs input, .footer__item-last .mailUs input {
    width: 100%;
    padding: 20px 40px;
    padding-left: 50px;
    background-color: var(--white);
    border: none;
    color: var(--paragraph);
  }
  .footer__item .mailUs span, .footer__item-last .mailUs span {
    position: absolute;
    left: 20px;
    top: 22px;
    color: var(--paragraph);
  }
  .footer__item .mailUs button, .footer__item-last .mailUs button {
    top: 20px;
    right: 20px;
    position: absolute;
    color: var(--theme-color1);
    font-size: 25px;
  }
  .footer__item-wrp {
    width: 50%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  @media (max-width: 991px) {
    .footer__item-wrp {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 767px) {
    .footer__item-wrp {
      width: 100%;
    }
  }
  .footer__left {
    max-width: 370px;
  }
  .footer__left p {
    color: var(--paragraph-dark);
  }
  .footer__right {
    width: 70%;
  }
  .footer__copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  }
  .footer__copyright p {
    font-weight: 600;
    font-size: 18px;
    color: #75727b;
  }
  .footer__copyright p a {
    color: var(--white);
  }
  .footer__copyright p a:hover {
    color: var(--white);
    text-decoration: underline;
  }
  .footer__copyright .policy {
    font-size: 16px;
    color: var(--white);
  }
  .footer__rectangle {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 80px;
    left: 21%;
    z-index: 0;
  }
  .footer__rectangle .item {
    width: 0px;
    height: 80px;
    background-color: var(--white);
    transition: all 0.5s ease-in-out 0.2s;
    position: absolute;
    top: 0;
    right: 0;
  }
  .footer__rectangle .item.animated {
    width: 80px;
  }
  .footer__rectangle .item-dark {
    width: 0px;
    height: 80px;
    transition: all 0.5s ease-in-out 0.2s;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    position: absolute;
    top: 0;
    left: 80px;
  }
  .footer__rectangle .item-dark.animated {
    width: 80px;
  }
  @media (max-width: 767px) {
    .footer__rectangle {
      display: none;
    }
  }
  
  .footer-two-area {
    overflow: hidden;
    background-color: var(--black);
    position: relative;
    z-index: 1;
    background: #071f3a;
    padding-top: 10px;
  }
  .footer-two__wrp {
    max-width: 1336px;
    margin: 0 auto;
  }
  .footer-two__top {
    padding-bottom: 50px;
  }
  .footer-two__top .title {
    font-size: 120px;
    line-height: 120px;
    color: var(--white);
  }
  .footer-two__top .title a {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .footer-two__top .title a i {
    font-size: 75px;
    margin-top: 20px;
    transition: var(--transition);
  }
  .footer-two__top .title a i:hover {
    transform: rotate(45deg);
  }
  @media (max-width: 991px) {
    .footer-two__top .title {
      font-size: 48px;
      line-height: 50px;
    }
    .footer-two__top .title a {
      gap: 20px;
    }
    .footer-two__top .title a i {
      font-size: 28px;
    }
  }
  .footer-two__item .title {
    color: var(--white);
    margin-bottom: 15px;
  }
  .footer-two__item ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .footer-two__item ul li a {
    color: var(--paragraph-dark);
    font-size: 18px;
    font-weight: 500;
  }
  .footer-two__item ul li a:hover {
    padding-left: 5px;
  }
  .footer-two__item-adress {
    max-width: 310px;
  }
  .footer-two__item-adress .title {
    color: var(--white);
    margin-bottom: 15px;
  }
  .footer-two__item-adress ul li:last-child a {
    text-decoration: underline;
    margin-top: 40px;
  }
  .footer-two__item-adress ul li .adress-text {
    color: var(--paragraph-light);
  }
  .footer-two__item-wrp {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  @media (max-width: 991px) {
    .footer-two__item-wrp {
      padding: 60px 0;
    }
  }
  .footer-two__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0px 70px;
    gap: 5px;
  }
  .footer-two__bottom .socials {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .footer-two__bottom .socials a {
    color: var(--white);
    transition: 0.7s;
  }
  .footer-two__bottom .socials a:hover {
    transform: rotateY(180deg);
  }
  .footer-two__bottom .text {
    color: var(--paragraph-light);
  }
  .footer-two__bottom .text a {
    color: var(--white);
    text-decoration: underline;
  }
  @media (max-width: 767px) {
    .footer-two__bottom {
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
    }
    .footer-two__bottom .text {
      width: 100%;
      font-size: 14px;
      text-align: center;
    }
  }
  .footer-two__rectangle-left {
    position: absolute;
    z-index: -1;
    width: 160px;
    height: 160px;
    bottom: 120px;
    left: 0;
  }
  .footer-two__rectangle-left .item-one {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    width: 0;
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    bottom: 80px;
    left: 0;
  }
  .footer-two__rectangle-left .item-one.animated {
    width: 80px;
  }
  .footer-two__rectangle-left .item-two {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.5s;
    position: absolute;
    top: 80px;
    left: 80px;
  }
  .footer-two__rectangle-left .item-two.animated {
    height: 80px;
  }
  .footer-two__rectangle-left .item-three {
    width: 0px;
    height: 80px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.8s;
    position: absolute;
    bottom: -80px;
    right: 80px;
  }
  .footer-two__rectangle-left .item-three.animated {
    width: 80px;
  }
  @media (max-width: 767px) {
    .footer-two__rectangle-left {
      display: none;
    }
  }
  .footer-two__rectangle-right {
    position: absolute;
    z-index: -1;
    width: 160px;
    height: 160px;
    top: 0px;
    right: 0;
  }
  .footer-two__rectangle-right .item-one {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    width: 0;
    transition: all 0.3s ease-in-out 0.2s;
    position: absolute;
    bottom: 80px;
    right: 0;
  }
  .footer-two__rectangle-right .item-one.animated {
    width: 80px;
  }
  .footer-two__rectangle-right .item-two {
    width: 80px;
    height: 0px;
    background-color: var(--white);
    transition: all 0.3s ease-in-out 0.5s;
    position: absolute;
    top: 80px;
    left: 0px;
  }
  .footer-two__rectangle-right .item-two.animated {
    height: 80px;
  }
  .footer-two__rectangle-right .item-three {
    width: 0px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3019607843);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease-in-out 0.8s;
    position: absolute;
    bottom: -80px;
    left: 80px;
  }
  .footer-two__rectangle-right .item-three.animated {
    width: 80px;
  }
  @media (max-width: 767px) {
    .footer-two__rectangle-right {
      display: none;
    }
  }
  
  .footer-four-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .footer-four__item {
    padding: 60px 30px 30px 80px;
    border-right: 1px solid var(--border-light);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* justify-content: space-between; */
    min-height: 455px;
  }
  @media (max-width: 1199px) {
    .footer-four__item {
      padding: 30px;
    }
  }
  @media (max-width: 991px) {
    .footer-four__item {
      height: 100%;
    }
  }
  .footer-four__item .text {
    color: var(--paragraph-dark);
    margin-top: 30px;
  }
  .footer-four__item ul li a {
    color: var(--paragraph-dark);
    transition: var(--transition);
    font-weight: 500;
  }
  .footer-four__item ul li a:hover {
    transform: translateX(2px);
    color: var(--white);
  }
  .footer-four__item ul li:not(:last-child) {
    margin-bottom: 3px;
  }
  .footer-four__item ul li .address-text {
    color: var(--white);
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .footer-four__item .title {
    color: var(--white);
    position: relative;
    /* padding-left: 20px; */
  }
  .footer-four__item .title::before {
    position: absolute;
    top: 10px;
    left: 0;
    /* width: 10px; */
    /* height: 10px; */
    line-height: 10px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    /* border: 1px solid var(--white); */
    content: "";
    display: none;
  }
  .footer-four__item .socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
  }
  .footer-four__item .socials a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--paragraph-dark);
    color: var(--paragraph-dark);
    transition: var(--transition);
  }
  .footer-four__item .socials a:hover {
    border: 1px solid transparent;
  }
  .footer-four__item .socials a:hover i {
    animation: bounceIn 1s forwards;
  }
  .footer-four__item .copyright-text {
    color: var(--paragraph-dark);
  }
  .footer-four__item .copyright-text a:hover {
    color: var(--white);
    font-weight: 500;
  }
  
  .footer-six-area {
    overflow: hidden;
    background-color: var(--sub-bg);
  }
  .footer-six__wrp {
    padding: 120px 0;
  }
  @media (max-width: 991px) {
    .footer-six__wrp {
      padding: 60px 0;
    }
  }
  .footer-six__item .title {
    margin-bottom: 20px;
  }
  .footer-six__item ul li:not(:last-child) {
    margin-bottom: 8px;
  }
  .footer-six__item ul li a {
    color: var(--paragraph);
    font-size: 18px;
    font-weight: 500;
  }
  .footer-six__item ul li a:hover {
    padding-left: 5px;
  }
  .footer-six__item.address ul li a:hover {
    padding-left: 0;
  }
  .footer-six__item.address ul li:last-child {
    margin-top: 30px;
  }
  .footer-six__item.address ul li:last-child a {
    text-decoration: underline;
    color: var(--black);
  }
  .footer-six__copyright {
    text-align: center;
    padding: 10px 0;
    background-color: var(--black);
  }
  .footer-six__copyright p {
    font-weight: 500;
    color: var(--white);
  }
  .footer-six__copyright p a {
    color: var(--white);
  }
  .footer-six__copyright p a:hover {
    color: var(--white);
    text-decoration: underline;
  }
  .footer-six__copyright .policy {
    color: var(--white);
  }
  
  .footer-eight-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .footer-eight__item .title {
    font-size: 42px;
    line-height: 50px;
    color: var(--white);
  }
  .footer-eight__item .mailUs {
    position: relative;
  }
  .footer-eight__item .mailUs input {
    width: 100%;
    border: 1px solid #262f37;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--white);
  }
  .footer-eight__item .mailUs input::placeholder {
    color: #6c6c6c;
  }
  .footer-eight__item .mailUs input:focus {
    border: 1px solid var(--border-light);
  }
  .footer-eight__item .mailUs button {
    position: absolute;
    top: 14px;
    right: 30px;
    transition: var(--transition);
  }
  .footer-eight__item .mailUs button:hover {
    transform: translateX(5px);
  }
  .footer-eight__item .contact-info {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  @media (max-width: 575px) {
    .footer-eight__item .contact-info {
      margin-top: 50px;
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  .footer-eight__item ul {
    display: flex;
    align-items: center;
  }
  .footer-eight__item ul .icon {
    padding: 5px 0;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid var(--border-light);
  }
  .footer-eight__item ul .info p {
    font-size: 14px;
    line-height: 18px;
    color: var(--paragraph-dark);
  }
  .footer-eight__item ul .info h5 {
    color: var(--white);
  }
  .footer-eight__copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
    gap: 10px;
  }
  @media (max-width: 767px) {
    .footer-eight__copyright {
      text-align: center;
      justify-content: center;
      gap: 20px;
    }
  }
  .footer-eight__copyright .logo {
    width: 140px;
  }
  .footer-eight__copyright .socials {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-eight__copyright .socials a {
    color: var(--white);
    padding: 5px;
    transition: 0.7s;
  }
  .footer-eight__copyright .socials a:hover {
    transform: rotateY(180deg);
  }
  .footer-eight__copyright .rights-text {
    color: var(--paragraph-light);
  }
  .footer-eight__copyright .rights-text a:hover {
    color: var(--white);
  }
  
  .footer-eleven-area {
    overflow: hidden;
    background-color: var(--black);
  }
  .footer-eleven-top {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .footer-eleven-top .wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-eleven-top .footer-menu {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  @media (max-width: 575px) {
    .footer-eleven-top .footer-menu {
      gap: 15px;
      flex-wrap: wrap;
      font-size: 14px;
    }
  }
  .footer-eleven-top .footer-menu li a {
    font-weight: 500;
    color: var(--white);
    position: relative;
  }
  .footer-eleven-top .footer-menu li a::before {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 0;
    height: 1px;
    content: "";
    background-color: var(--white);
    transition: var(--transition);
  }
  .footer-eleven-top .footer-menu li a:hover::before {
    right: unset;
    left: 0;
    width: 100%;
  }
  .footer-eleven-top .footer-info {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .footer-eleven-top .footer-info li a {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-eleven-left {
    max-width: 380px;
  }
  .footer-eleven-left .text {
    color: var(--paragraph-dark);
  }
  .footer-eleven-left .input {
    position: relative;
    margin-top: 40px;
  }
  .footer-eleven-left .input input {
    width: 100%;
    color: var(--white);
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #626262;
    background-color: transparent;
  }
  .footer-eleven-left .input input::placeholder {
    color: var(--white);
  }
  .footer-eleven-left .input button {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    font-weight: 500;
    font-family: var(--font-title);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--border-light);
    border-radius: 24px;
    line-height: 20px;
  }
  .footer-eleven-left .input button i {
    transition: var(--transition);
  }
  .footer-eleven-left .input button:hover i {
    transform: rotate(45deg);
  }
  .footer-eleven-bottom {
    padding-top: 50px;
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--paragraph-dark);
  }
  .footer-eleven-bottom a:hover {
    color: var(--white);
  }
  .footer-eleven-bottom::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 1px;
    background-color: var(--border-light);
    content: "";
  }
  .footer-eleven__item .title {
    color: var(--white);
    margin-bottom: 20px;
  }
  .footer-eleven__item ul li a {
    color: var(--white);
    font-weight: 500;
  }
  .footer-eleven__item .socials {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .footer-eleven__item .socials a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    transition: var(--transition);
    background-color: var(--border-light);
    color: var(--white);
    font-size: 12px;
  }
  .footer-eleven__item .socials a i {
    transition: 0.9s;
  }
  .footer-eleven__item .socials a:hover i {
    transform: rotateY(360deg);
  }
  
  /***
  
  ====================================================================
      Products details
  ====================================================================
  
  ***/
  .tabs-box {
    position: relative;
  }
  
  .tabs-box .tab {
    display: none;
  }
  
  .tabs-box .tab.active-tab {
    display: block;
  }
  
  .product-details .bxslider .image-box {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  
  .product-details .bxslider .image-box img {
    width: 100%;
  }
  
  .product-details .bxslider .thumb-box li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
    width: 100px;
    height: 100px;
  }
  
  .product-details .bxslider .thumb-box li:last-child {
    margin: 0px !important;
  }
  
  .product-details .bxslider .thumb-box li a {
    position: relative;
    display: inline-block;
  }
  
  .product-details .bxslider .thumb-box li a:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 500ms ease;
  }
  
  .product-details .bxslider .thumb-box li a.active:before {
    opacity: 1;
  }
  
  .product-details__top {
    position: relative;
    display: block;
    margin-top: -8px;
  }
  
  .product-details__title {
    font-size: 40px;
    line-height: 44px;
    font-weight: 700;
    margin: 0;
  }
  .product-details__title span {
    position: relative;
    display: inline-block;
    color: var(--theme-color1);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 20px;
    letter-spacing: 0;
  }
  
  .product-details__reveiw {
    display: flex;
    align-items: center;
    margin-top: 22px;
    padding-bottom: 20px;
    margin-bottom: 31px;
    border-bottom: 1px solid #e0e4e8;
  }
  .product-details__reveiw i {
    font-size: 16px;
    color: #fdc009;
  }
  .product-details__reveiw i + i {
    margin-left: 4px;
  }
  .product-details__reveiw span {
    position: relative;
    top: 1px;
    line-height: 1;
    font-size: 16px;
    color: var(--theme-color3);
    margin-left: 18px;
  }
  
  .product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 10px;
    height: 60px;
  }
  .product-details__quantity .quantity-box input {
    width: 98px;
    border-radius: 10px;
    height: 60px;
    border: 1px solid #e0e4e8;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-color1);
  }
  .product-details__quantity .quantity-box button {
    width: 29px;
    height: 29px;
    background-color: transparent;
    color: var(--white);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: var(--theme-color1);
    border: none;
    border-left: 1px solid #e0e4e8;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 300ms ease;
  }
  .product-details__quantity .quantity-box button:hover {
    color: var(--white);
    background-color: var(--theme-color2);
  }
  .product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
  }
  
  .product-details__quantity-title {
    margin: 0;
    color: #222;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-right: 20px;
  }
  
  .product-details__buttons {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 40px;
  }
  
  .product-details__buttons-1 {
    position: relative;
    display: block;
  }
  
  .product-details__buttons-2 {
    position: relative;
    display: block;
    margin-left: 10px;
  }
  .product-details__buttons-2 .thm-btn {
    background-color: var(--theme-color2);
  }
  .product-details__buttons-2 .thm-btn:before {
    background-color: var(--theme-color1);
  }
  .product-details__buttons-2 .thm-btn:after {
    background-color: var(--theme-color1);
  }
  
  .product-details__social {
    position: relative;
    display: flex;
    align-items: center;
  }
  .product-details__social .title {
    position: relative;
    display: block;
  }
  .product-details__social .title h3 {
    color: #222;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
  }
  .product-details__social .social-icon-one {
    margin-left: 30px;
  }
  .product-details__social .social-icon-one li a {
    color: var(--theme-color1);
  }
  .product-details__social .social-icon-one li a:hover {
    color: var(--theme-color2);
  }
  
  .product-discription {
    position: relative;
    display: block;
  }
  .product-discription .product-description__title {
    font-size: 30px;
    margin-bottom: 27px;
  }
  .product-discription .product-description__text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
  }
  .product-discription .product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .product-discription .product-description__list ul {
    position: relative;
    display: block;
  }
  .product-discription .product-description__list ul li {
    position: relative;
    display: block;
    margin-bottom: 2px;
  }
  .product-discription .product-description__list ul li:last-child {
    margin-bottom: 0px;
  }
  .product-discription .product-description__list ul li p {
    margin: 0;
    font-weight: 600;
    color: var(--headings-color);
  }
  .product-discription .product-description__list ul li p span:before {
    position: relative;
    display: inline-block;
    color: var(--theme-color1);
    font-size: 17px;
    line-height: 17px;
    margin-right: 11px;
    top: 2px;
  }
  .product-discription .tabs-content .text p {
    margin-bottom: 17px;
  }
  .product-discription .tabs-content .text p:last-child {
    margin-bottom: 0px;
  }
  .product-discription .tab-btn-box {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 60px;
  }
  .product-discription .tab-btn-box:before {
    position: absolute;
    content: "";
    background-color: #e1e8e4;
    width: 100%;
    height: 1px;
    left: 0px;
    top: 28px;
  }
  .product-discription .tab-btn-box .tab-btns li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: #1e2434;
    text-align: center;
    padding: 14px 30px;
    background-color: #fff;
    border: 1px solid #e1e8e4;
    cursor: pointer;
    margin: 0px 8.5px;
    transition: all 500ms ease;
  }
  .product-discription .tab-btn-box .tab-btns li.active-btn {
    color: var(--white);
    background-color: var(--theme-color1);
  }
  .product-discription .single-comment-box .inner-box {
    position: relative;
    display: block;
    background-color: #f4f5f4;
    padding: 34px 30px 34px 125px;
  }
  .product-discription .single-comment-box .inner-box .comment-thumb {
    position: absolute;
    left: 30px;
    top: 40px;
    border-radius: 50%;
    width: 80px;
  }
  .product-discription .single-comment-box .inner-box .comment-thumb img {
    width: 100%;
    border-radius: 50%;
  }
  .product-discription .single-comment-box .inner-box .rating {
    position: relative;
    display: block;
    margin-bottom: 2px;
  }
  .product-discription .single-comment-box .inner-box .rating li {
    position: relative;
    display: inline-block;
    font-size: 12px;
    float: left;
    margin-right: 4px;
    color: #fdc009;
  }
  .product-discription .single-comment-box .inner-box .rating li:last-child {
    margin: 0px !important;
  }
  .product-discription .single-comment-box .inner-box h5 {
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .product-discription .single-comment-box .inner-box h5 span {
    font-weight: 400;
    text-transform: capitalize;
    margin-left: 10px;
  }
  .product-discription .customer-comment {
    position: relative;
    display: block;
    margin-bottom: 60px;
  }
  .product-discription .comment-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 51px 60px 60px 60px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  }
  .product-discription .comment-box h3 {
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 23px;
  }
  .product-discription .comment-box .form-group {
    position: relative;
    margin-bottom: 15px;
  }
  .product-discription .comment-box .form-group label {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #707582;
    margin-bottom: 8px;
  }
  .product-discription .comment-box .column:last-child .form-group {
    margin-bottom: 0px;
  }
  .product-discription .comment-box .review-box {
    position: relative;
    display: block;
    margin-top: 8px;
  }
  .product-discription .comment-box .review-box p {
    position: relative;
    float: left;
    margin-right: 10px;
  }
  .product-discription .comment-box .review-box .rating {
    position: relative;
    float: left;
  }
  .product-discription .comment-box .review-box .rating li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 28px;
    float: left;
    margin-right: 4px;
    color: #fdc009;
  }
  .product-discription .comment-box .review-box .rating li:last-child {
    margin: 0px !important;
  }
  .product-discription .comment-box .custom-controls-stacked {
    position: relative;
    float: left;
  }
  
  .related-product h3 {
    margin-bottom: 30px;
  }
  
  /***
  
  ====================================================================
   Categories Section
  ====================================================================
  
  ***/
  .categories-section {
    position: relative;
    padding: 100px 0 70px;
  }
  .categories-section .bg-pattern {
    position: absolute;
    left: 0;
    top: -220px;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/icons/pattern-7.html);
    background-repeat: no-repeat;
    background-position: left top;
    z-index: -1;
  }
  .categories-section:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 300px;
    width: 100%;
    background: var(--theme-color3);
    content: "";
    z-index: 1;
  }
  .categories-section:after {
    position: absolute;
    left: 0;
    bottom: -50px;
    height: 70px;
    width: 100%;
    z-index: 2;
    content: "";
    background-image: url(../images/icons/pattern-3.html);
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  
  .category-block {
    position: relative;
    margin-bottom: 30px;
    z-index: 9;
  }
  .category-block .inner-box {
    position: relative;
    text-align: center;
    background: #ffffff;
    padding: 40px 30px 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .category-block .inner-box:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    background-repeat: no-repeat;
    background-position: center bottom;
    content: "";
  }
  .category-block .inner-box:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  .category-block .inner-box:hover .image img {
    -webkit-transform: rotate(10deg) scale(1.2);
    -ms-transform: rotate(10deg) scale(1.2);
    transform: rotate(10deg) scale(1.2);
  }
  .category-block .inner-box.cat-bg-1:before {
    background-image: url(../images/icons/cat-1-bg.html);
  }
  .category-block .inner-box.cat-bg-2:before {
    background-image: url(../images/icons/cat-2-bg.html);
  }
  .category-block .inner-box.cat-bg-3:before {
    background-image: url(../images/icons/cat-3-bg.html);
  }
  .category-block .inner-box.cat-bg-4:before {
    background-image: url(../images/icons/cat-4-bg.html);
  }
  .category-block .image {
    position: relative;
    display: inline-block;
    height: 180px;
    width: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  .category-block .image img {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .category-block h4 {
    font-size: 20px;
    color: var(--theme-color3);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .category-block h4 a {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .category-block h4 a:hover {
    color: var(--theme-color1);
  }
  .category-block p {
    font-size: 14px;
    color: #797f7d;
    line-height: 26px;
    margin-bottom: 0px;
  }
  
  /***
  
  ====================================================================
      Categories Section Two
  ====================================================================
  
  ***/
  .categories-section-two {
    position: relative;
    padding: 120px 0 90px;
  }
  
  .category-block-two {
    position: relative;
    padding-top: 70px;
    margin-bottom: 30px;
    z-index: 9;
  }
  .category-block-two .inner-box {
    position: relative;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 18px;
  }
  .category-block-two .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 60px;
    width: 100%;
    border-radius: 10px;
    background: #e3eee5;
    content: "";
  }
  .category-block-two .inner-box:hover .image:before {
    left: 100%;
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  .category-block-two .inner-box:hover .image img {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  .category-block-two .inner-box:hover h4 a {
    color: var(--theme-color1);
  }
  .category-block-two .content {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 0 40px 40px;
    z-index: 1;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  }
  .category-block-two .content:before {
    position: absolute;
    top: -88px;
    left: 0;
    width: 180px;
    height: 180px;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    background: #e3eee5;
    content: "";
  }
  .category-block-two .content:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    font-size: 30px;
    line-height: 1em;
    color: #e8f3ea;
    height: 15px;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    content: attr(data-text);
  }
  .category-block-two .image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 25px;
    margin-top: -70px;
  }
  .category-block-two .image img {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .category-block-two .image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 120%;
    width: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
    content: "";
    opacity: 0.3;
    left: -100%;
    pointer-events: none;
    z-index: 1;
  }
  .category-block-two h4 {
    font-size: 22px;
    color: var(--theme-color3);
    font-weight: 700;
    margin-bottom: 15px;
  }
  .category-block-two h4 a {
    color: var(--theme-color3);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .category-block-two p {
    font-size: 16px;
    color: #797f7d;
    line-height: 26px;
    margin-bottom: 0px;
  }
  .category-block-two .link {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 50px;
    background: #e8f3ea;
    border-radius: 50%;
    line-height: 50px;
    margin-top: 25px;
    color: #608174;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .category-block-two .link:hover {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  .category-block-two.child-two .link {
    background: #f0e2e3;
  }
  .category-block-two.child-two .inner-box:before {
    background: #f0e2e3;
  }
  .category-block-two.child-two .inner-box:hover h4 a {
    color: #e69da2;
  }
  .category-block-two.child-two .content:before {
    background: #f0e2e3;
  }
  .category-block-two.child-two .content:after {
    color: #f0e2e3;
  }
  .category-block-two.child-three .link {
    background: #f1ede1;
  }
  .category-block-two.child-three .inner-box:before {
    background: #f1ede1;
  }
  .category-block-two.child-three .inner-box:hover h4 a {
    color: #c9b579;
  }
  .category-block-two.child-three .content:before {
    background: #f1ede1;
  }
  .category-block-two.child-three .content:after {
    color: #f1ede1;
  }
  
  /***
  
  ====================================================================
      Products Section
  ====================================================================
  
  ***/
  .products-section {
    position: relative;
    padding: 120px 0;
  }
  
  .products-section .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 670px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .products-section .bg-image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #113629;
    opacity: 0.7;
    content: "";
  }
  
  .products-section .bg-image:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 100%;
    background-image: url(../images/icons/pattern-8.html);
    background-position: center bottom;
    content: "";
  }
  
  .products-section .sec-title h2 {
    font-size: 60px;
  }
  
  .products-section .sec-title .theme-btn {
    margin-top: 30px;
  }
  
  .products-box {
    max-width: 1530px;
    position: relative;
    padding: 120px 60px 90px;
    margin: 120px auto 0;
    background-color: #f7f5ee;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .products-box:before {
    position: absolute;
    left: -90px;
    bottom: 0;
    height: 70%;
    width: 100%;
    background: url(../images/icons/shape-7.html) top left no-repeat;
    content: "";
  }
  
  .products-box .sec-title {
    margin-bottom: 30px;
  }
  
  .products-box .outer-box {
    position: relative;
    padding-right: 400px;
  }
  
  .products-box .outer-box .banner-box-two {
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .banner-box-two {
    position: relative;
  }
  
  .banner-box-two .inner-box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(22, 67, 51)), to(rgba(229, 229, 229, 0)));
    background: -o-linear-gradient(top, rgb(22, 67, 51) 0%, rgba(229, 229, 229, 0) 100%);
    background: linear-gradient(to bottom, rgb(22, 67, 51) 0%, rgba(229, 229, 229, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="var(--theme-color2)", endColorstr="#00e5e5e5",GradientType=0 );
    content: "";
  }
  
  .banner-box-two .inner-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 370px;
    background: var(--theme-color2);
    border-radius: 10px;
    min-height: 440px;
    text-align: center;
    overflow: hidden;
    padding: 20px 20px;
  }
  
  .banner-box-two .title {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  
  .banner-box-two .title strong {
    font-size: 60px;
    line-height: 1em;
    color: var(--theme-color2);
    font-weight: 400;
  }
  
  .banner-box-two h4 {
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }
  
  .product-block-two {
    position: relative;
    margin-bottom: 30px;
  }
  
  .product-block-two .inner-box {
    position: relative;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #ffffff;
    padding: 20px 20px;
    padding-left: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 150px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .product-block-two .inner-box:hover {
    border: 2px solid var(--theme-color1);
  }
  
  .product-block-two .image {
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 50%;
    overflow: hidden;
    height: 110px;
    width: 110px;
    border: 1px solid #e4e1d6;
    margin-bottom: 0px;
  }
  
  .product-block-two .image img {
    width: auto;
    transition: all 300ms ease;
  }
  
  .product-block-two .inner-box:hover .image img {
    -webkit-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
  }
  
  .product-block-two h4 {
    display: block;
    color: var(--theme-color2);
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .product-block-two h4 a {
    color: var(--theme-color2);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .product-block-two .price {
    display: block;
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-color1);
    font-weight: 600;
  }
  
  .product-block-two .price del {
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
    color: #ff0000;
    line-height: 27px;
    opacity: 0.3;
  }
  
  .product-block-two .rating {
    align-items: center;
    color: var(--theme-color2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    font-size: 14px;
    position: relative;
  }
  
  .products-carousel .owl-nav {
    display: none;
  }
  
  .products-carousel .owl-dots {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    position: absolute;
    right: 0;
    top: -80px;
    z-index: 8;
  }
  
  .products-carousel .owl-dot {
    background: #879d91;
    border-radius: 5px;
    display: block;
    height: 7px;
    margin-right: 5px;
    position: relative;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 7px;
  }
  
  .products-carousel .owl-dot.active {
    background: var(--theme-color2);
  }
  
  /***
  
  ====================================================================
      Featured Products
  ====================================================================
  
  ***/
  .featured-products {
    padding: 120px 0 90px;
    position: relative;
  }
  
  .featured-products .bg-shape {
    background: url(../images/icons/pattern-7.html) left bottom no-repeat;
    background-size: 700px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  /*=== Mixitup Gallery ===*/
  .featured-products .filters {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .featured-products .filters .filter-tabs {
    display: inline-block;
    position: relative;
  }
  
  .featured-products .filters li {
    cursor: pointer;
    color: #797f7d;
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin: 0 5px 0;
    padding: 7px 12px 10px;
    position: relative;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .featured-products .filters li:last-child {
    margin-right: 0;
  }
  
  .featured-products .filters .filter.active,
  .featured-products .filters .filter:hover {
    background-color: var(--theme-color1);
    color: #fff;
  }
  
  .featured-products .filters li:before {
    background-color: var(--theme-color2);
    bottom: 8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
  }
  
  .featured-products .filters li.active:before,
  .featured-products .filters li:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
  }
  
  .product-block {
    margin-bottom: 30px;
    position: relative;
  }
  .product-block.mix {
    display: none;
  }
  .product-block .inner-box {
    background: #ffffff;
    border: 1px solid #e4e1d5;
    overflow: hidden;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .product-block .inner-box:hover {
    border: 1px solid var(--theme-color1);
    -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  }
  .product-block .inner-box:hover .image:before {
    left: 100%;
    -webkit-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  .product-block .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0px;
    overflow: hidden;
    position: relative;
  }
  .product-block .image:before {
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    content: "";
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
    height: 100%;
    left: 0;
    left: -100%;
    opacity: 0.3;
    position: absolute;
    pointer-events: none;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  .product-block .image img {
    -webkit-transform: scale(1.1);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: auto;
  }
  
  .product-block .inner-box:hover .image img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  
  .product-block .content {
    padding: 30px 30px 30px;
    position: relative;
  }
  
  .product-block h4 {
    display: block;
    font-size: 22px;
    margin-top: 0;
  }
  
  .product-block h4 a {
    color: var(--theme-color-dark);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .product-block h4 a:hover {
    color: var(--theme-color1);
  }
  
  .product-block .price {
    display: block;
    font-size: 18px;
    font-weight: 600;
  }
  
  .product-block .price del {
    color: #ff0000;
    display: inline-block;
    font-size: 16px;
    line-height: 27px;
    margin-left: 15px;
    opacity: 0.3;
  }
  
  .product-block .rating {
    color: #ffc737;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
  }
  
  .product-block .tag {
    background: #FD5F5C;
    border-radius: 3px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    left: 20px;
    line-height: 23px;
    padding: 0 12px;
    position: absolute;
    text-transform: uppercase;
    top: 30px;
    z-index: 9;
  }
  
  .product-block .icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 20px;
    opacity: 0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    top: 30px;
    visibility: hidden;
  }
  
  .product-block .inner-box:hover .icon-box {
    opacity: 1;
    top: 20px;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
    visibility: visible;
  }
  
  .product-block .ui-btn {
    background-color: var(--theme-color1);
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    display: block;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    width: 40px;
    z-index: 9;
  }
  
  .product-block .ui-btn:hover {
    background-color: var(--theme-color2);
  }
  
  .product-block .cat {
    display: block;
    font-size: 18px;
    color: #707070;
    font-style: italic;
    margin-bottom: 5px;
  }
  
  /*
   * shop-catalog-layouts.scss
   * -----------------------------------------------
  */
  .cart-form .nice-select {
    margin-bottom: 15px;
  }
  
  table.tbl-shopping-cart .product-thumbnail, table.cart-total .product-thumbnail {
    min-width: 64px;
  }
  table.tbl-shopping-cart img, table.cart-total img {
    width: 64px;
    box-shadow: none;
  }
  table.tbl-shopping-cart th,
  table.tbl-shopping-cart td, table.cart-total th,
  table.cart-total td {
    vertical-align: middle;
    border-left: 1px solid #e3e3e3;
    padding: 20px 30px;
  }
  table.tbl-shopping-cart .product-name a, table.cart-total .product-name a {
    color: var(--dark);
  }
  table.tbl-shopping-cart .product-name .variation, table.cart-total .product-name .variation {
    font-size: 0.9rem;
    list-style: none;
  }
  table.tbl-shopping-cart .product-remove a, table.cart-total .product-remove a {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 24px;
    transition: all 300ms ease-out;
    background-color: #757575;
    color: #ffffff;
    text-align: center;
  }
  table.tbl-shopping-cart .coupon-form .apply-button, table.cart-total .coupon-form .apply-button {
    position: relative;
    display: inline-block;
    color: #1e2434;
    background: #f4f5f4;
    padding: 15px 29px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 500ms ease;
  }
  table.tbl-shopping-cart .coupon-form .apply-button:hover, table.cart-total .coupon-form .apply-button:hover {
    color: var(--white);
    background-color: var(--theme-color2);
  }
  
  table.tbl-shopping-cart > thead > tr > th,
  table.tbl-shopping-cart > tbody > tr > th,
  table.tbl-shopping-cart > tfoot > tr > th {
    color: #444;
  }
  
  .payment-method .accordion-box .block {
    background: #f4f5f4;
    box-shadow: none;
    margin-bottom: 20px;
  }
  .payment-method .accordion-box .block .acc-content .payment-info {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 30px 30px 10px 30px;
  }
  .payment-method .accordion-box .block:last-child {
    margin-bottom: 0px;
  }
  .payment-method .accordion-box .block .acc-btn {
    padding: 19px 30px 22px 30px;
  }
  .payment-method .accordion-box .block .acc-btn.active .icon-outer {
    color: #fff;
  }
  .payment-method .accordion-box .block .acc-btn .icon-outer {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 30px;
    height: auto;
    font-size: 28px;
    color: #1e2434;
  }
  .payment-method .accordion-box .block .acc-btn.active .icon-outer {
    color: var(--text-color-bg-theme-color2);
  }
  .payment-method .payment-method h3 {
    margin-bottom: 32px;
  }
  
  .shop-sidebar {
    position: relative;
    display: block;
  }
  .shop-sidebar .sidebar-search {
    margin-bottom: 30px;
  }
  .shop-sidebar .sidebar-search .search-form .form-group {
    position: relative;
    margin: 0px;
  }
  .shop-sidebar .sidebar-search .search-form .form-group input[type=search] {
    position: relative;
    width: 100%;
    height: 52px;
    background-color: var(--sub-bg);
    border: 1px solid var(--theme-light-background);
    border-radius: 5px;
    color: #646578;
    padding: 10px 60px 10px 20px;
    transition: all 500ms ease;
  }
  .shop-sidebar .sidebar-search .search-form .form-group button {
    position: absolute;
    display: inline-block;
    top: 5px;
    right: 5px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 18px;
    color: var(--white);
    background-color: var(--theme-color1);
    cursor: pointer;
    border-radius: 3px;
    transition: all 500ms ease;
  }
  .shop-sidebar .sidebar-search .search-form .form-group button:hover {
    color: var(--white);
    background-color: var(--theme-color2);
  }
  .shop-sidebar .sidebar-widget {
    position: relative;
    display: block;
    background-color: var(--sub-bg);
    padding: 35px 30px 37px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .shop-sidebar .sidebar-widget:last-child {
    margin-bottom: 0px;
  }
  .shop-sidebar .sidebar-widget .widget-title {
    position: relative;
    display: block;
    margin-bottom: 16px;
  }
  .shop-sidebar .category-widget .category-list li {
    position: relative;
    display: block;
    margin-bottom: 14px;
  }
  .shop-sidebar .category-widget .category-list li:last-child {
    margin-bottom: 0px;
  }
  .shop-sidebar .category-widget .category-list li a {
    position: relative;
    display: inline-block;
    color: #646578;
    font-weight: 400;
    padding-left: 20px;
  }
  .shop-sidebar .category-widget .category-list li a:before {
    position: absolute;
    content: "\f0da";
    font-family: "Font Awesome 6 Pro";
    left: 0px;
    top: 0px;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color1);
  }
  .shop-sidebar .category-widget .category-list li a:hover {
    color: var(--theme-color1);
  }
  .shop-sidebar .price-filters .widget-title {
    margin-bottom: 28px;
  }
  .shop-sidebar .post-widget {
    padding-bottom: 9px;
  }
  .shop-sidebar .post-widget .post {
    position: relative;
    padding-left: 90px;
    padding-bottom: 24px;
    margin-bottom: 23px;
    min-height: 108px;
    border-bottom: 1px solid #e1e1e1;
  }
  .shop-sidebar .post-widget .post:last-child {
    margin-bottom: 0px;
    border-bottom: none;
  }
  .shop-sidebar .post-widget .post .post-thumb {
    position: absolute;
    left: 0px;
    width: 70px;
    height: 70px;
    border: 1px solid #d0d4dd;
    border-radius: 5px;
    transition: all 500ms ease;
  }
  .shop-sidebar .post-widget .post .post-thumb img {
    width: 100%;
    border-radius: 5px;
  }
  .shop-sidebar .post-widget .post a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: var(--body-font-weight-bold);
    line-height: 26px;
    margin-bottom: 7px;
  }
  .shop-sidebar .post-widget .post .price {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #858585;
  }
  .shop-sidebar .post-widget .post:hover .post-thumb {
    border-color: var(--theme-color1);
  }
  .shop-sidebar .post-widget .post:hover a {
    color: var(--theme-color1);
  }
  
  .range-slider {
    position: relative;
  }
  .range-slider .title {
    display: inline-block;
    line-height: 26px;
    margin-right: 4px;
    position: relative;
  }
  .range-slider .title:before {
    color: #646578;
    content: "$";
    font-size: 18px;
    left: -5px;
    position: absolute;
    top: -19px;
  }
  .range-slider p {
    color: #646578;
    display: inline-block;
    margin-right: 10px !important;
    position: relative;
  }
  .range-slider .input {
    color: #646578;
    display: inline-block;
    font-size: 18px;
    margin-top: 5px;
    max-width: 75px;
    position: relative;
  }
  .range-slider .input input {
    background: none;
    border-color: transparent;
    color: #646578;
    font-size: 15px;
    text-align: left;
  }
  .range-slider .ui-widget.ui-widget-content {
    background-color: #d0d4dd;
    border: none;
    border-radius: 2px;
    height: 4px;
    margin-bottom: 14px;
  }
  .range-slider .ui-slider .ui-slider-range {
    background-color: var(--theme-color1);
    height: 4px;
    top: 0px;
  }
  .range-slider .ui-state-default {
    background-color: var(--theme-color1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 14px;
    margin-left: 0px;
    position: absolute;
    top: -5px;
    width: 14px;
  }
  .range-slider .ui-state-default:before {
    background-color: #ffffff;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 6px;
  }
  .range-slider .ui-widget-content .ui-state-default {
    background-color: var(--theme-color1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 14px;
    margin-left: 0px;
    top: -5px;
    width: 14px;
  }
  .range-slider .ui-widget-content .ui-state-default:before {
    background-color: #ffffff;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 4px;
    position: absolute;
    top: 4px;
    width: 6px;
  }
  .range-slider input[type=submit] {
    background: var(--theme-color1);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 500;
    float: right;
    margin-top: 0;
    padding: 7px 20px;
    position: relative;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease;
  }
  .range-slider input[type=submit]:hover {
    background-color: var(--theme-color2);
    color: var(--white);
  }
  
  /*** 
  ====================================================================
  Page Title
  ====================================================================
  ***/
  @-webkit-keyframes "ripple" {
    70% {
      -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  @keyframes "ripple" {
    70% {
      -webkit-box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
  .page-title {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 86px;
    padding: 100px 0 110px;
    position: relative;
  }
  .page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #131313;
    opacity: 0.8;
    content: "";
  }
  .page-title .title {
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 17px;
  }
  .page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    max-width: 520px;
  }
  
  .page-breadcrumb {
    position: relative;
    margin-top: 5px;
  }
  .page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
  }
  .page-breadcrumb li:after {
    position: absolute;
    content: "\f105";
    right: -6px;
    top: 1px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 6 Pro";
    color: #ffffff;
  }
  .page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
  }
  .page-breadcrumb li:last-child::after {
    display: none;
  }
  .page-breadcrumb li a {
    color: var(--theme-color1);
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .page-breadcrumb li a:hover {
    color: #ffffff;
  }
  
  .page-title.style-two {
    background-position: center center;
  }
  .page-title.style-two .page-breadcrumb-outer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 8;
  }
  .page-title.style-two .page-breadcrumb li {
    color: rgb(7, 7, 16);
    font-weight: 600;
  }
  .page-title.style-two .page-breadcrumb li:after {
    color: rgb(7, 7, 16);
  }
  .page-title.style-two .page-breadcrumb li a {
    color: rgba(7, 7, 16, 0.6);
  }
  .page-title.style-two .page-breadcrumb li a:hover {
    color: rgb(7, 7, 16);
  }
  
  .background-image {
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  
  .error-page__inner {
    position: relative;
    display: block;
    text-align: center;
  }
  .error-page__inner .error-page__title-box {
    position: relative;
    display: block;
  }
  .error-page__inner .error-page__title {
    position: relative;
    display: inline-block;
    font-size: 280px;
    line-height: 280px;
    margin-bottom: 0;
    color: var(--theme-color1);
  }
  .error-page__inner .error-page__sub-title {
    font-size: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 50px;
    margin-top: -16px;
  }
  .error-page__inner .error-page__text {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  .error-page__inner .error-page__form {
    position: relative;
    display: block;
    margin: 42px auto 20px;
  }
  .error-page__inner .error-page__form input[type=search] {
    height: 60px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #333;
    padding-left: 50px;
    padding-right: 75px;
    border-radius: 7px;
  }
  .error-page__inner .error-page__form button[type=submit] {
    background-color: transparent;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  .error-page__inner .error-page__form-input {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
  }
  
  /***
  =============================================
      Services Details
  =============================================
  ***/
  .service-sidebar {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%;
  }
  .service-sidebar .service-sidebar-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  .service-sidebar .service-sidebar-single-services {
    position: relative;
    display: block;
    background: #f6f4ec;
    border-radius: 10px;
    padding: 35px 30px 25px;
  }
  .service-sidebar .service-sidebar-single-services .title {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-left: 20px;
  }
  .service-sidebar .service-sidebar-single-services .title h3 {
    color: var(--headings-color);
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.02em;
  }
  .service-sidebar .service-sidebar-single-services ul {
    position: relative;
    display: block;
    margin-top: 10px;
  }
  .service-sidebar .service-sidebar-single-services ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
    margin-top: -10px;
  }
  .service-sidebar .service-sidebar-single-services ul li:last-child {
    margin-bottom: 0;
  }
  .service-sidebar .service-sidebar-single-services ul li a {
    position: relative;
    display: block;
    color: var(--agriox-color-1, #687469);
    font-size: 18px;
    padding: 22px 20px 22px;
    border-radius: 10px;
    background: transparent;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .service-sidebar .service-sidebar-single-services ul li a:hover {
    color: var(--headings-color);
  }
  .service-sidebar .service-sidebar-single-services ul li a:hover::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
  }
  .service-sidebar .service-sidebar-single-services ul li a:hover i {
    color: var(--theme-color1);
  }
  .service-sidebar .service-sidebar-single-services ul li a::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: -1;
    opacity: 1;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 300ms linear;
    transition-delay: 0.1s;
    background: #ffffff;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  .service-sidebar .service-sidebar-single-services ul li a i {
    font-size: 16px;
  }
  .service-sidebar .service-sidebar-single-services ul li.current a::before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
    transition: all 300ms linear;
    transition-delay: 0.1s;
  }
  .service-sidebar .service-sidebar-single-services ul li.current a i {
    color: var(--theme-color1);
  }
  .service-sidebar .service-sidebar-single-services ul li.current:first-child {
    margin-top: 20px;
  }
  .service-sidebar .service-sidebar-single-services ul li.current:last-child {
    margin-bottom: 35px;
  }
  .service-sidebar .service-sidebar-single-contact-box {
    position: relative;
    display: block;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    padding: 50px 0px 44px;
    z-index: 1;
  }
  .service-sidebar .service-sidebar-single-contact-box::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(109, 140, 84, 0.93);
    border-radius: 10px;
    content: "";
    z-index: -1;
  }
  .service-sidebar .service-sidebar-single-contact-box .icon {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    text-align: center;
    transition: all 500ms ease;
    border-radius: 50%;
    background: var(--theme-color2);
  }
  .service-sidebar .service-sidebar-single-contact-box .icon:hover {
    background-color: var(--headings-color);
  }
  .service-sidebar .service-sidebar-single-contact-box .icon:hover span::before {
    color: #fff;
  }
  .service-sidebar .service-sidebar-single-contact-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--headings-color);
    font-size: 30px;
    line-height: 60px;
    transition: all 500ms ease;
  }
  .service-sidebar .service-sidebar-single-contact-box .title {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 42px;
  }
  .service-sidebar .service-sidebar-single-contact-box .title h2 {
    color: #ffffff;
    font-size: 36px;
  }
  .service-sidebar .service-sidebar-single-contact-box .phone {
    font-size: 24px;
    line-height: 34px;
  }
  .service-sidebar .service-sidebar-single-contact-box .phone a {
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .service-sidebar .service-sidebar-single-contact-box .phone a:hover {
    color: var(--theme-color1);
  }
  .service-sidebar .service-sidebar-single-contact-box p {
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
  }
  .service-sidebar .service-sidebar-single-btn {
    position: relative;
    display: block;
  }
  .service-sidebar .service-sidebar-single-btn .theme-btn span {
    transform: translate(0);
  }
  .service-sidebar .service-sidebar-single-btn .thm-btn {
    font-size: 16px;
    padding: 13px 50px 28px;
  }
  .service-sidebar .service-sidebar-single-btn .thm-btn span::before {
    position: relative;
    display: inline-block;
    top: 13px;
    color: #334b35;
    font-size: 40px;
    padding-right: 25px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    font-weight: 500;
  }
  .service-sidebar .service-sidebar-single-btn .thm-btn:hover span::before {
    color: #ffffff;
  }
  .service-sidebar .banner-widget {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
  }
  .service-sidebar .banner-widget .widget-content {
    position: relative;
    display: block;
    width: 100%;
    padding: 45px 30px 40px 30px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .service-sidebar .banner-widget .widget-content .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 278px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sidebar .banner-widget .content-box {
    position: relative;
    max-width: 200px;
    width: 100%;
  }
  .service-sidebar .banner-widget .content-box .icon-box {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 40px;
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
    text-align: center;
    border-radius: 5px;
    margin-bottom: 23px;
  }
  .service-sidebar .banner-widget .content-box .icon-box .icon-shape {
    position: absolute;
    top: -15px;
    right: -38px;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
  }
  .service-sidebar .banner-widget .content-box h3 {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .service-sidebar .banner-widget .content-box .theme-btn-two:hover {
    background: #0a267a;
  }
  .service-sidebar .service-sidebar-single-btn .theme-btn {
    padding: 20px 50px;
  }
  .service-sidebar .service-sidebar-single-btn .theme-btn .btn-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-sidebar .service-sidebar-single-btn .theme-btn span::before {
    position: relative;
    display: inline-block;
    font-size: 36px;
    padding-right: 25px;
    margin-top: 7px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    font-weight: 500;
  }
  
  .services-details__content .feature-list .single-item {
    position: relative;
    display: block;
    border: 1px solid #e1e8e4;
    padding: 16px 30px 16px 53px;
    margin-bottom: 20px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
  }
  .services-details__content .feature-list .single-item .icon-box {
    color: var(--theme-color1);
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 18px;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
  }
  .services-details__content .feature-list .single-item .title {
    display: block;
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .services-details__content .feature-list .single-item:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
  }
  .services-details__content .feature-list .single-item:hover .icon-box {
    color: var(--text-color-bg-theme-color2);
  }
  
  .sidebar-service-list {
    margin: 0;
  }
  .sidebar-service-list li + li {
    margin-top: 10px;
  }
  .sidebar-service-list li a {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background-color: #F5F5F5;
    border-radius: 7px;
    padding: 15px 30px;
  }
  .sidebar-service-list li a:hover {
    color: var(--theme-color1);
  }
  .sidebar-service-list li a:hover i {
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--theme-color1);
  }
  .sidebar-service-list li a i {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #191825;
    background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 15px;
  }
  .sidebar-service-list li.current a {
    color: var(--theme-color1);
  }
  .sidebar-service-list li.current a i {
    transform: translateY(-50%);
    color: #fff;
    background-color: var(--theme-color1);
  }
  
  .service-details-help {
    position: relative;
    display: block;
    padding: 57px 55px 50px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
    background-color: var(--theme-color1);
    border-radius: 15px;
    overflow: hidden;
  }
  
  .help-shape-1 {
    position: absolute;
    bottom: -215px;
    left: -95px;
    width: 220px;
    height: 500px;
    background-color: #303030;
    mix-blend-mode: soft-light;
    border-radius: 150px;
    transform: rotate(45deg);
    z-index: -1;
  }
  
  .help-shape-2 {
    background-color: #fff;
    border-radius: 186px;
    height: 350px;
    mix-blend-mode: soft-light;
    position: absolute;
    right: -130px;
    top: -118px;
    transform: rotate(48deg);
    width: 180px;
  }
  
  .help-icon {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    color: #191825;
    display: flex;
    font-size: 32px;
    height: 73px;
    justify-content: center;
    margin: 0 auto 0;
    transition: all 500ms ease;
    width: 73px;
  }
  .help-icon:hover {
    background-color: var(--theme-color2);
  }
  .help-icon:hover span {
    color: #fff;
  }
  
  .help-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 21px;
  }
  
  .help-contact {
    display: block;
    margin-top: 21px;
    position: relative;
  }
  .help-contact p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
    opacity: 0.7;
  }
  .help-contact a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .help-contact a:hover {
    color: #fff;
  }
  
  .innerpage .accordion-box {
    position: relative;
  }
  .innerpage .accordion-box .block {
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    position: relative;
  }
  .innerpage .accordion-box .acc-content {
    display: none;
    position: relative;
  }
  .innerpage .accordion-box .acc-content .content {
    padding: 25px 30px;
    position: relative;
  }
  .innerpage .accordion-box .acc-content .text {
    color: #808287;
    display: block;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
  }
  .innerpage .accordion-box .acc-content.current {
    display: block;
  }
  .innerpage .accordion-box .acc-btn {
    border-bottom: 1px solid #fff;
    color: var(--headings-color);
    cursor: pointer;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: var(--h4-font-weight);
    padding: 20px 30px;
    padding-right: 70px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .innerpage .accordion-box .acc-btn.active {
    background-color: var(--theme-color1);
    color: #fff;
  }
  .innerpage .accordion-box .acc-btn.active .icon {
    color: var(--text-color-bg-theme-color2);
    top: 45%;
  }
  .innerpage .accordion-box .acc-btn.active .icon:before {
    content: "\f068";
  }
  .innerpage .accordion-box .icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--theme-color1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    left: auto;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  /*--------------------------------------------------------------
  # Project Details
  --------------------------------------------------------------*/
  .project-details__img {
    position: relative;
    display: block;
  }
  .project-details__img img {
    width: 100%;
    border-radius: 10px;
  }
  
  .project-details__content {
    position: relative;
    display: block;
  }
  
  .project-details__content-left {
    position: relative;
    display: block;
    margin-top: 31px;
  }
  
  .project-details__content-right {
    position: relative;
    display: block;
    margin-top: 40px;
  }
  
  .project-details__details-box {
    position: relative;
    border-radius: 10px;
    background-color: #f5f5f5;
    padding: 43px 50px 50px;
    z-index: 1;
  }
  @media (max-width: 575.98px) {
    .project-details__details-box {
      padding: 30px 20px;
    }
  }
  
  .project-details__details-list {
    position: relative;
    display: block;
  }
  .project-details__details-list li {
    position: relative;
    display: block;
  }
  .project-details__details-list li + li {
    margin-top: 24px;
  }
  
  .project-details__client {
    font-size: 16px;
    color: #838d9e;
    line-height: 24px;
    margin: 0;
  }
  
  .project-details__name {
    font-size: 16px;
    line-height: 24px;
  }
  
  .project-details__social {
    position: relative;
    display: flex;
    align-items: center;
  }
  .project-details__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color1);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  .project-details__social a:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
  }
  .project-details__social a + a {
    margin-left: 10px;
  }
  
  .project-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid #ece9e0;
    border-bottom: 1px solid #ece9e0;
    padding: 30px 0;
    margin-top: 117px;
  }
  
  .project-details__pagination {
    position: relative;
    display: block;
  }
  .project-details__pagination li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .project-details__pagination li a {
    font-size: 14px;
    color: #757873;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .project-details__pagination li a:hover {
    color: var(--theme-color1);
  }
  .project-details__pagination li a:hover i {
    background-color: var(--theme-color2);
    border: 2px solid var(--theme-color2);
    color: var(--white);
  }
  .project-details__pagination li .content {
    position: relative;
    display: block;
  }
  .project-details__pagination li.next {
    float: left;
    position: relative;
  }
  .project-details__pagination li.next i {
    position: relative;
    height: 52px;
    width: 52px;
    border: 2px solid var(--theme-color2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #0e2207;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-right: 20px;
    z-index: 1;
  }
  .project-details__pagination li.next .content {
    text-align: left;
    font-weight: var(--body-font-weight-bold);
  }
  .project-details__pagination li.previous {
    position: relative;
    float: right;
  }
  .project-details__pagination li.previous i {
    position: relative;
    height: 52px;
    width: 52px;
    border: 2px solid var(--theme-color2);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #0e2207;
    font-size: 16px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-left: 20px;
    z-index: 1;
  }
  .project-details__pagination li.previous .content {
    text-align: right;
  }
  
  .room-facility-list {
    position: relative;
  }
  
  .room-facility-list .icon {
    border: 1px solid var(--theme-color1);
    border-radius: 50%;
    display: block;
    font-size: 22px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    width: 64px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .room-facility-list .list-one:hover .icon {
    background-color: var(--theme-color1);
    color: #fff;
  }
  
  .room-details__content-right {
    display: block;
    margin-top: 40px;
    position: relative;
  }
  
  .room-details__details-box {
    background-color: #f5f6f7;
    border: 1px solid var(--theme-color1);
    border-radius: 10px;
    padding: 43px 50px 30px 50px;
    position: relative;
    z-index: 1;
  }
  
  .product-details.rd-page .bx-wrapper {
    margin-bottom: 30px;
  }
  
  .product-details.rd-page .bx-wrapper .thumb-box li {
    height: auto;
  }
  
  @media only screen and (max-width: 480px) {
    .room-block .inner-box .box-caption .book-btn {
      padding: 0 10px;
      margin-right: 10px;
    }
    .room-block.col-lg-3 .inner-box .box-caption .bx-links li {
      margin-right: 10px;
    }
    .rooms-section {
      padding: 80px 0;
    }
  }
  .list-style-two {
    position: relative;
  }
  
  .list-style-two li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
  }
  
  .list-style-two li:last-child {
    margin-bottom: 0;
  }
  
  .list-style-two li i {
    border-radius: 50%;
    color: var(--theme-color1);
    font-size: 16px;
    left: 0;
    position: absolute;
    top: 7px;
  }
  
  .list-style-two.light li {
    color: var(--theme-color-light);
  }
  
  .list-style-two.two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .list-style-two.two-column li {
    padding-right: 20px;
    width: 50%;
  }
  
  @media (max-width: 767.98px) {
    .list-style-two.two-column li {
      width: 100%;
    }
  }
  /***
  
  ====================================================================
      Blog Details
  ====================================================================
  
  ***/
  .blog-details {
    position: relative;
    display: block;
  }
  
  .blog-details__left {
    position: relative;
    display: block;
  }
  
  .blog-details__img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
  }
  .blog-details__img img {
    width: 100%;
    border-radius: 10px;
  }
  
  .blog-details__date {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--theme-color1);
    text-align: center;
    padding: 21px 24px 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .blog-details__date .day {
    font-size: 16px;
    color: #fff;
    font-weight: var(--body-font-weight-bold);
    line-height: 16px;
  }
  .blog-details__date .month {
    position: relative;
    display: block;
    font-size: 10px;
    font-weight: var(--body-font-weight-bold);
    color: #fff;
    line-height: 12px;
    text-transform: uppercase;
  }
  
  .blog-details__content {
    position: relative;
    display: block;
    margin-top: 22px;
  }
  
  .blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
  }
  .blog-details__meta li + li {
    margin-left: 18px;
  }
  .blog-details__meta li a {
    font-size: 15px;
    color: #777;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .blog-details__meta li a:hover {
    color: var(--theme-color1);
  }
  .blog-details__meta li a i {
    color: var(--theme-color1);
    margin-right: 6px;
  }
  
  .blog-details__title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 12px;
    margin-bottom: 21px;
  }
  
  .blog-details__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 49px;
    border-top: 1px solid #ece9e0;
  }
  @media only screen and (max-width: 767px) {
    .blog-details__bottom {
      gap: 30px;
    }
  }
  .blog-details__bottom p {
    margin: 0;
  }
  
  .blog-details__tags span {
    color: #0e2207;
    font-size: 20px;
    margin-right: 14px;
    font-weight: var(--body-font-weight-bold);
  }
  .blog-details__tags a {
    position: relative;
    font-size: 12px;
    background-color: var(--theme-color1);
    color: var(--white);
    display: inline-block;
    padding: 8px 30px;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 35px;
  }
  .blog-details__tags a:hover {
    background-color: var(--theme-color2);
    color: var(--white);
    text-decoration: none;
  }
  .blog-details__tags a + a {
    margin-left: 6px;
  }
  
  .blog-details__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .blog-details__social-list a {
    position: relative;
    height: 43px;
    width: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-color: var(--sub-bg);
    color: var(--theme-light-background-text-color);
    font-size: 15px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  .blog-details__social-list a:hover {
    color: var(--white);
  }
  .blog-details__social-list a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  .blog-details__social-list a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--theme-color2);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
  .blog-details__social-list a + a {
    margin-left: 10px;
  }
  
  .blog-details__pagenation-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 53px;
  }
  
  .blog-details__pagenation {
    position: relative;
    display: block;
  }
  .blog-details__pagenation li {
    position: relative;
    float: left;
    font-size: 20px;
    color: #0e2207;
    font-weight: var(--body-font-weight-bold);
    color: var(--theme-light-background-text-color);
    background-color: var(--theme-light-background);
    line-height: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    max-width: 370px;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 52px;
    padding-bottom: 52px;
    border-radius: 10px;
  }
  .blog-details__pagenation li:hover {
    background-color: var(--theme-color2);
    color: var(--text-color-bg-theme-color2);
  }
  .blog-details__pagenation li + li {
    margin-left: 30px;
  }
  
  /* Nav Links */
  .nav-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 53px;
  }
  @media only screen and (max-width: 767px) {
    .nav-links {
      flex-direction: column;
      gap: 20px;
    }
  }
  .nav-links .prev {
    display: flex;
    align-items: center;
    height: 100%;
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  @media only screen and (max-width: 767px) {
    .nav-links .prev {
      width: 100%;
    }
  }
  .nav-links .prev .thumb {
    margin-right: 20px;
  }
  .nav-links .next {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: row-reverse;
    width: calc(50% - 15px);
  }
  @media only screen and (max-width: 767px) {
    .nav-links .next {
      width: 100%;
    }
  }
  .nav-links .next .thumb {
    margin-left: 20px;
  }
  .nav-links > div {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .nav-links > div .thumb {
    display: inline-block;
    min-width: 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
  }
  .nav-links > div .thumb a {
    display: inline-block;
  }
  .nav-links > div > a {
    display: inline-block;
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    font-size: 20px;
    line-height: 1.637;
    font-weight: var(--body-font-weight-bold);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    padding: 52px 50px;
    border-radius: 10px;
    width: 100%;
  }
  @media only screen and (max-width: 767px) {
    .nav-links > div > a {
      padding: 30px;
    }
  }
  .nav-links > div > a:hover {
    color: var(--white);
    background-color: var(--theme-color1);
  }
  
  /*** 
  
  ====================================================================
  Sidebar
  ====================================================================
  
  ***/
  @media (max-width: 991px) {
    .sidebar {
      margin-top: 50px;
    }
  }
  .sidebar__single + .sidebar__single {
    margin-top: 30px;
  }
  
  .sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: var(--h4-font-weight);
  }
  
  .sidebar__search {
    position: relative;
    display: block;
  }
  
  .sidebar__search-form {
    position: relative;
  }
  .sidebar__search-form input[type=search] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--theme-color1);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 74px;
    width: 100%;
    padding-right: 80px;
    border-radius: 10px;
  }
  .sidebar__search-form input[type=search]::-webkit-input-placeholder, .sidebar__search-form input[type=search]:-ms-input-placeholder, .sidebar__search-form input[type=search]::-ms-input-placeholder, .sidebar__search-form input[type=search]::placeholder {
    color: var(--white);
    opacity: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__search-form input[type=search] {
      padding-left: 30px;
    }
  }
  .sidebar__search-form button[type=submit] {
    background-color: transparent;
    color: #fff;
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__search-form button[type=submit] {
      width: 42px;
    }
  }
  
  .sidebar__post {
    position: relative;
    display: block;
    padding: 46px 30px 30px;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__post {
      padding: 30px;
    }
  }
  .sidebar__post .sidebar__title {
    margin-left: 20px;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__post .sidebar__title {
      margin-left: 0;
    }
  }
  .sidebar__post .sidebar__post-list {
    margin: 0;
  }
  .sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px 17px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__post .sidebar__post-list li {
      padding: 16px 0;
    }
  }
  .sidebar__post .sidebar__post-list li:hover {
    background-color: #ffffff;
    border-radius: 10px;
  }
  .sidebar__post .sidebar__post-list li + li {
    margin-top: 11px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    flex: 70px 0 0;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-image > img {
    width: 80px;
    border-radius: 10px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
    color: #0e2207;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    color: #757873 !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: var(--theme-color1);
    font-size: 13px;
    padding-right: 5px;
  }
  
  .sidebar__category {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    border-radius: 10px;
    padding: 45px 30px 38px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__category {
      padding: 30px 15px 30px;
    }
  }
  .sidebar__category .sidebar__title {
    padding-left: 20px;
    margin-bottom: 9px;
  }
  .sidebar__category-list {
    margin: 0;
  }
  .sidebar__category-list li + li {
    margin-top: 4px;
  }
  .sidebar__category-list li a {
    color: #757873;
    font-size: 16px;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 10px;
  }
  .sidebar__category-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    color: #0e2207;
    text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
  }
  .sidebar__category-list li a:hover span {
    color: #ffcd1e;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
  .sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--theme-color2);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
  }
  .sidebar__category-list li.active a {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    color: #0e2207;
    border-radius: 10px;
    text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);
  }
  .sidebar__category-list li.active a span {
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    color: #ffcd1e;
  }
  
  .sidebar__tags {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    padding: 46px 45px 50px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__tags {
      padding: 30px;
    }
  }
  .sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 25px;
  }
  
  .sidebar__tags-list {
    margin-top: -10px;
  }
  .sidebar__tags-list a {
    font-size: 14px;
    color: #0e2207;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #ffffff;
    display: inline-block;
    padding: 5px 28px 5px;
    margin-left: 5px;
    border-radius: 30px;
  }
  .sidebar__tags-list a:hover {
    color: var(--white);
    background: var(--theme-color1);
  }
  .sidebar__tags-list a + a {
    margin-left: 5px;
    margin-top: 10px;
  }
  
  .sidebar__comments {
    position: relative;
    display: block;
    color: var(--theme-light-background-text-color);
    background-color: var(--sub-bg);
    padding: 46px 50px 43px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
  }
  @media only screen and (max-width: 767px) {
    .sidebar__comments {
      padding: 30px;
    }
  }
  .sidebar__comments .sidebar__title {
    margin-bottom: 25px;
  }
  
  .sidebar__comments-list {
    position: relative;
    display: block;
  }
  .sidebar__comments-list li {
    position: relative;
    display: block;
    padding-left: 65px;
  }
  .sidebar__comments-list li:hover .sidebar__comments-icon {
    background-color: var(--theme-color1);
    color: var(--theme-color-dark);
  }
  .sidebar__comments-list li + li {
    margin-top: 23px;
  }
  
  .sidebar__comments-icon {
    height: 45px;
    width: 45px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    font-size: 15px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .sidebar__comments-text-box p {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    font-weight: 500;
  }
  .sidebar__comments-text-box p span {
    color: #0e2207;
  }
  .sidebar__comments-text-box h5 {
    font-size: 15px;
    margin: 0;
    line-height: 26px;
    color: #757873;
    font-weight: 500;
    letter-spacing: 0;
  }
  
  /*** 
  
  ====================================================================
      Comments
  ====================================================================
  
  ***/
  .comment-one .comment-one__title {
    margin-bottom: 30px;
  }
  .comment-one .comment-one__single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #ece9e0;
    padding-bottom: 60px;
    margin-bottom: 60px;
    align-items: top;
  }
  @media only screen and (max-width: 767px) {
    .comment-one .comment-one__single {
      flex-direction: column;
    }
  }
  .comment-one .comment-one__content {
    position: relative;
    margin-left: 45px;
  }
  @media only screen and (max-width: 767px) {
    .comment-one .comment-one__content {
      margin-top: 20px;
      margin-left: 0;
    }
  }
  .comment-one .comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--theme-color2);
    margin-bottom: 24px;
  }
  .comment-one .comment-one__content p {
    font-size: 16px;
  }
  .comment-one .comment-one__btn {
    padding: 2px 30px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    border-radius: 35px;
  }
  .comment-one .comment-one__image {
    position: relative;
    display: block;
    border-radius: 50%;
    flex: 100px 0 0;
  }
  .comment-one .comment-one__image img {
    border-radius: 50%;
  }
  
  .comment-form .comment-form__title {
    margin-top: -7px;
  }
  
  /*--------------------------------------------------------------
  # Team Details
  --------------------------------------------------------------*/
  .team-details {
    display: block;
    position: relative;
  }
  
  .team-details__top {
    padding: 0 0 120px;
  }
  
  .team-details-shape-1 {
    bottom: -270px;
    opacity: 0.5;
    position: absolute;
    right: 0;
    z-index: 2;
  }
  .team-details-shape-1 img {
    width: auto;
  }
  
  .team-details__top-left {
    display: block;
    margin-right: 20px;
    position: relative;
  }
  
  .team-details__top-img {
    border-radius: 30px;
    display: block;
    position: relative;
  }
  .team-details__top-img img {
    border-radius: 30px;
    width: 100%;
  }
  
  .team-details__big-text {
    color: #eef0f6;
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    left: -325px;
    letter-spacing: 0.35em;
    position: absolute;
    text-transform: uppercase;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 209px;
  }
  
  .team-details__top-right {
    display: block;
    margin-left: 70px;
    position: relative;
  }
  @media only screen and (max-width: 991px) {
    .team-details__top-right {
      margin-top: 70px;
      margin-left: 0;
    }
  }
  
  .team-details__top-content {
    display: block;
    margin-top: -11px;
    position: relative;
  }
  
  .team-details__top-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 3px;
  }
  
  .team-details__top-title {
    color: var(--theme-color1);
    font-size: 16px;
  }
  
  .team-details__social {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 28px;
    margin-top: 20px;
    position: relative;
  }
  .team-details__social a {
    background-color: var(--theme-color1);
    border-radius: 50%;
    color: var(--theme-color-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 40px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .team-details__social a:hover {
    background-color: var(--theme-color2);
    color: var(--theme-color-light);
  }
  .team-details__social a + a {
    margin-left: 10px;
  }
  
  .team-details__top-text-1 {
    color: var(--theme-color1);
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 30px;
  }
  
  .team-details__top-text-2 {
    padding-bottom: 35px;
    padding-top: 23px;
  }
  
  .team-details__bottom {
    border-top: 1px solid #e4e5ea;
    display: block;
    padding-top: 110px;
    position: relative;
  }
  
  .team-details__bottom-left {
    display: block;
    margin-right: 70px;
    position: relative;
  }
  
  .team-details__bottom-left-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
  }
  
  .team-details__bottom-left-text {
    padding-top: 30px;
  }
  
  .team-details__bottom-right {
    display: block;
    margin-left: 70px;
    margin-top: 1px;
    position: relative;
  }
  @media only screen and (max-width: 991px) {
    .team-details__bottom-right {
      margin-left: 0;
    }
  }
  .team-details__progress {
    display: block;
    position: relative;
    width: 100%;
  }
  .team-details__progress .bar {
    background-color: var(--theme-color2);
    border-radius: 7px;
    height: 13px;
    margin-bottom: 22px;
    position: relative;
    width: 100%;
  }
  .team-details__progress .bar-inner {
    background-color: var(--theme-color1);
    border-radius: 7px;
    display: block;
    height: 13px;
    position: relative;
    transition: all 1500ms ease;
    width: 0px;
  }
  .team-details__progress .count-text {
    bottom: 21px;
    color: var(--theme-color4);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .team-details__progress .bar-inner.counted .count-text {
    opacity: 1;
  }
  .team-details__progress .bar.marb-0 {
    margin-bottom: 0;
  }
  .team-details__progress-single {
    display: block;
    position: relative;
  }
  .team-details__progress-title {
    color: var(--theme-color4);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .team-contact-form {
    background-color: #eef0f6;
  }
  .team-contact-form input[type=text],
  .team-contact-form input[type=email] {
    background-color: #fff;
  }
  .team-contact-form textarea {
    background-color: #fff;
    height: 180px;
  }
  /***
  ====================================================================
          Contact
  ====================================================================
  ***/
  .contact-details__info {
    position: relative;
    display: block;
    margin-top: 41px;
  }
  .contact-details__info li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-details__info li .icon {
    height: 80px;
    width: 80px;
    background-color: var(--theme-color1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
  }
  .contact-details__info li .icon span {
    color: var(--white);
    font-size: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .contact-details__info li .text h6 {
    margin-bottom: 5px;
    margin-top: 0;
  }
  .contact-details__info li:hover .icon {
    background-color: var(--theme-color2);
  }
  .contact-details__info li:hover .icon span {
    color: var(--white);
  }
  .contact-details__info li:hover .text a {
    color: var(--notech-base);
  }
  .contact-details__info li:hover .text a span {
    color: var(--notech-gray);
  }
  .contact-details__info li .text {
    margin-left: 30px;
  }
  .contact-details__info li .text p {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-details__info li .text a {
    font-size: 18px;
    color: var(--notech-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  .contact-details__info li .text span {
    font-size: 20px;
    color: var(--notech-black);
  }
  .contact-details__info li + li {
    margin-top: 30px;
  }
  .map {
    height: 550px;
  }
  .form-control,
  .input-text {
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 0.9rem;
    height: calc(2.25rem + 27px);
    outline: 0;
    padding: 14px 30px;
    width: 100%;
  }
  textarea.form-control {
    height: auto;
  }
  form .error {
    color: red;
    font-size: 13px;
  }
  
  .whatsapp-icon {
      position: fixed;
      background: -webkit-gradient(linear, left top, left bottom, from(#00ff4e), to(#13b500));
      background: -o-linear-gradient(#00ff4e, #13b500);
      background: linear-gradient(#00ff4e, #13b500);
      bottom: 100px;
      -webkit-box-shadow: 0px 0px 4px 1px #12f342;
      box-shadow: 0px 0px 4px 1px #12f342;
      border-radius: 30px;
      padding: 7px 10px;
      line-height: 27px;
      height: 45px;
      width: 45px;
      font-size: 30px;
      z-index: 9;
      color: #fff;
      right: 25px;
  }
  
  .whatsapp-icon:hover {
      background: #fff;
      color: #13b500;
      -webkit-transition: 0.2s ease-in-out;
      -o-transition: 0.2s ease-in-out;
      transition: 0.2s ease-in-out;
      -webkit-box-shadow: 0px 0px 1px 2px #13b500;
      box-shadow: 0px 0px 1px 2px #13b500;
  }
  
  h5.heading5 {
      padding-top: 15px;
      padding-bottom: 15px;
  }
  
  @media Screen and (max-width: 768px){
  li.desktop {
      display: none;
  }
  .main-menu li.mobile {
      display: block;
  }
   }
  
   .main-menu li.mobile {
      display: none;
  }
  
  .brand-six__wrp img {
      width: 100% !important;
      padding: 10px;
  }
.row.mob-sec .mob-sec .feature-two__item {
        padding:5px !importants;
    }


.feature-two__item {
    padding: 10px;
}

.steps__wrp.process-list h4 {
    font-size: 18px !important;
}


.modal-header {
    position: absolute !important;
    top: 0px !important;
    right: 0px !important;
    z-index: 99 !important;
    background: #4083f4 !important;
    padding: 6px !important;
    border-radius: 0px 5px 0px 0px !important;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
    padding: 0px;
}
.modal-body img {
    border-radius: 9px 9px 0px 0px;
    contain-intrinsic-block-size: auto 100px;
}

.dev-li li b {
    display: contents !important;
}

.about-two__content.dev-li li b {
    display: contents !important;
} 

.steps__item h4 {
    line-height: 24px !important;
}


/*porfolio css*/
 .filter-buttons .btn {
      margin: 5px;
      font-weight: 600;
      border-radius: 5px;
    }


.filter-buttons .btn:hover {
    
    background-color: #0b2c4f!important;
    border-color: #0b2c4f !important;
}
    .filter-buttons .btn.active {
      background-color: #1a73e8;
      color: #fff;
    }

    .portfolio-item {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      transition: transform 0.3s;
    }

    .image-wrapper {
      height: 250px;
      overflow: hidden;
    }

    .image-wrapper img {
      width: 100%;
      transition: transform 0.5s ease;
    }

    .image-wrapper:hover img {
      transform: translateY(-20%);
    }

    .portfolio-title {
      text-align: center;
      font-weight: bold;
      padding: 15px 10px;
      font-size: 15px;
      color: #003366;
    }

    .d-none {
      display: none !important;
    }
    
    section.contact-two-area.bg-sub {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 10px;
}
/*  portfolio  */

