@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap);
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #fe701c;
  /*--theme: #006d5b;*/
  --theme2: #707376;
  /*--theme2: #273339;*/
  --theme3: #e9eff2;
  --title: #041b16;
  --header: #041b16;
  --orange: #e78c45;
  --text: #747d82;
  --text2: #445375;
  --border: rgba(39, 51, 57, 0.15);
  --border-2: rgba(255, 255, 255, 0.2);
  --border-3: #d8d8d8;
  --border-4: #e0e0e0;
  --border-5: #565656;
  --bg-1: #e8eaea;
  --bg-2: #f6f7ff;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
button {
  border: none;
  background-color: #fff0;
  padding: 0;
}
input:focus {
  color: var(--text);
  outline: none;
}
input::placeholder {
  color: #767771;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--title);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 120%;
}
h2 {
  font-size: 40px;
  line-height: 145%;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}
h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 145%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}
h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
h5 {
  font-size: 18px;
  font-weight: 700;
}
h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}
a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--title);
  transition: all 0.4s ease-in-out;
}
p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}
span {
  margin: 0;
  transition: all 0.4s ease-in-out;
}
.info-text-style {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}
.form-contl {
  position: relative;
  margin-top: 30px;
}
.form-contl input {
  position: relative;
  padding: 17px 20px;
  height: 60px;
  background: var(--theme2);
  width: 100%;
  border: 1px solid #6e6e6e;
  opacity: 0.8;
}
.form-contl input::placeholder {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}
.form-contl input.style2 {
  border: none;
}
.form-contl button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
}
.form-contl button.style2 {
  background: #fff0;
  color: var(--theme);
}
input.form-control,
textarea.form-control {
  outline: none;
  box-shadow: none;
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 17px 10px;
  font-size: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
input.form-control:focus,
textarea.form-control:focus {
  background-color: var(--white);
  border: 1px solid var(--border);
  outline: none;
  box-shadow: none;
}
label {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}
.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 13px;
  font-size: 16px;
  color: var(--text);
}
.form-group > i.fa-envelope {
  padding-top: 1px;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
input[type="checkbox"]:checked ~ label:after {
  opacity: 1;
}
input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  line-height: 30px;
}
input[type="checkbox"] ~ label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3.5px;
  background: var(--white);
  border: 1px solid var(--border-2);
  height: 20px;
  width: 20px;
  text-align: center;
  z-index: 9;
}
input[type="checkbox"] ~ label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  background: var(--theme);
  height: 8px;
  width: 8px;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  z-index: 9;
}
input[type="checkbox"].style2 ~ label {
  color: #8b929c;
  padding-left: 23px;
  margin-bottom: -0.5em;
}
input[type="checkbox"].style2 ~ label:before {
  background-color: #fff;
  border: 1px solid #f7ccd7;
  height: 14px;
  width: 14px;
  line-height: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: 6px;
}
input[type="checkbox"].style2:checked ~ label:before {
  color: var(--theme);
}
input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-weight: 700;
  background: var(--white);
  color: #fff0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
input[type="radio"]:checked ~ label::before {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--white);
}
.theme-btn {
  display: inline-block;
  position: relative;
  padding: 17px 27px;
  gap: 10px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: var(--theme);
  z-index: 1;
  line-height: 1;
  overflow: hidden;
  border: 1px solid var(--title);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
@media (max-width: 1399px) {
  .theme-btn {
    font-size: 16px;
    padding: 12px 13px;
  }
}
.theme-btn i,
.theme-btn svg {
  margin-left: 6px;
}
.theme-btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #ffb000;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn:hover {
  color: var(--title) !important;
}
.theme-btn:hover:before {
  top: -96%;
}
.theme-btn.style2 {
  background: var(--white);
  color: var(--theme);
}
.theme-btn.style2:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn.style2:hover {
  color: var(--white) !important;
}
.theme-btn.style2:hover:before {
  top: -96%;
}
.link-btn.style1 {
  display: inline-block;
  width: 92px;
  height: 92px;
  line-height: 92px;
  text-align: center;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 50%;
}
@media (max-width: 1899px) {
  .link-btn.style1 {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.link-btn.style2 {
  display: inline-block;
  width: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  background-color: var(--white);
}
@media (min-width: 1600px) {
  .gx-25 {
    --bs-gutter-x: 25px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-47 {
    --bs-gutter-x: 47px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-64 {
    --bs-gutter-x: 64px;
  }
  .gx-65 {
    --bs-gutter-x: 65px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-95 {
    --bs-gutter-x: 95px;
  }
  .gx-100 {
    --bs-gutter-x: 100px;
  }
  .gx-114 {
    --bs-gutter-x: 114px;
  }
  .gx-85 {
    --bs-gutter-x: 85px;
  }
  .gx-134 {
    --bs-gutter-x: 134px;
  }
  .gx-165 {
    --bs-gutter-x: 165px;
  }
}
.gy-30 {
  --bs-gutter-y: 30px;
}
.gx-0 {
  --bs-gutter-x: 0px;
}
@media (min-width: 1500px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .header-1 .container {
    max-width: 1620px;
  }
  .header-2 .container {
    max-width: 1890px;
  }
  .header-3 .container {
    max-width: 1890px;
  }
  .contact-form-container-wrapper.style1 .container {
    max-width: 1410px;
  }
  .blog-container-wrapper.style1 .container {
    max-width: 1590px;
  }
  .blog-container-wrapper.style3 .container {
    max-width: 1320px;
  }
  .service-container-wrapper.style3 .container {
    max-width: 1480px;
  }
  .intro-container-wrapper.style3 .container {
    max-width: 1773px;
  }
}
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px #fff0;
    box-shadow: 0 0 0 40px #fff0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0;
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px #fff0;
    box-shadow: 0 0 0 40px #fff0;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 #fff0;
    box-shadow: 0 0 0 0 #fff0;
  }
}
.ripple-effect {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  -webkit-box-shadow: 0 0 0 0 #fff;
  box-shadow: 0 0 0 0 #fff;
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -ms-border-radius: 50% !important;
  -o-border-radius: 50% !important;
  animation: rippleOne 2s infinite;
  -webkit-animation: rippleOne 2s infinite;
}
.ripple-effect .playerImg {
  width: 25px;
  height: 25px;
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}
@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}
@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-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);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}
@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
  100% {
    width: var(--progress-width);
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}
.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgb(255 255 255 / 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: #fff0;
}
.ripple-animation,
.play-btn:after,
.play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.wave-anim {
  width: 105px;
  height: 69px;
  background-repeat: repeat;
  background-size: auto;
  animation: wave 70s linear infinite;
}
@keyframes wave {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left -2000px;
  }
}
.fancy-animation {
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.movingX {
  animation: movingX 8s linear infinite;
}
@keyframes movingX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.movingCar {
  animation: movingCar 25s linear infinite;
}
@keyframes movingCar {
  0% {
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    transform: translateX(calc(-100vw + 108%));
  }
  51% {
    transform: translateX(calc(-100vw + 108%)) rotateY(180deg);
  }
  100% {
    transform: translateX(0) rotateY(180deg);
  }
}
.moving {
  animation: moving 8s linear infinite;
}
@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving2 {
  animation: moving2 8s linear infinite;
}
@keyframes moving2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.moving3 {
  animation: moving3 8s linear infinite;
}
@keyframes moving3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}
@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}
@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.spin {
  animation: spin 10s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-color-ani,
.color-animate {
  animation: bgColor 6s linear infinite;
}
@keyframes bgColor {
  0% {
    background-color: #f2ba4c;
  }
  25% {
    background-color: #81f24c;
  }
  50% {
    background-color: #41f27d;
  }
  75% {
    background-color: #0500ff;
  }
  100% {
    background-color: #f2ba4c;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}
.swiper-slide-active .fadein {
  --animation-name: fadein;
}
.swiper-slide-active .scalein {
  --animation-name: scalein;
}
.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}
.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}
.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}
.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}
.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}
.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}
.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}
.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
.spin2 {
  animation: spin2 10s linear infinite;
}
@keyframes spin2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.animation-bubble {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.animation-bubble div[class^="bubble-"] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../img/shape/star.html) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .animation-bubble > :nth-child(even) {
    display: none;
  }
}
.bubble-1 {
  bottom: -5px;
  left: 68%;
  animation: bubble-animation 4.5s infinite ease-in -6.57s;
}
.bubble-2 {
  bottom: -71px;
  left: 97%;
  animation: bubble-animation 4.5s infinite ease-in -5.07s;
}
.bubble-3 {
  bottom: -71px;
  left: 43%;
  animation: bubble-animation 4.5s infinite ease-in -6.73s;
}
.bubble-4 {
  bottom: -3.8px;
  left: 82%;
  animation: bubble-animation 4.5s infinite ease-in -4.04s;
}
.bubble-5 {
  bottom: -73.4px;
  left: 29%;
  animation: bubble-animation 4.5s infinite ease-in -3.11s;
}
.bubble-6 {
  bottom: -71px;
  left: 41%;
  animation: bubble-animation 4.5s infinite ease-in -5.95s;
}
.bubble-7 {
  bottom: -79.4px;
  left: 14%;
  animation: bubble-animation 4.5s infinite ease-in -3.68s;
}
.bubble-8 {
  bottom: -115.4px;
  left: 90%;
  animation: bubble-animation 4.5s infinite ease-in -3.89s;
}
.bubble-9 {
  bottom: -44.6px;
  left: 33%;
  animation: bubble-animation 4.5s infinite ease-in -1.09s;
}
.bubble-10 {
  bottom: -6.2px;
  left: 59%;
  animation: bubble-animation 4.5s infinite ease-in -0.96s;
}
@keyframes bubble-animation {
  0% {
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes icon-anim {
  0% {
    top: 26px;
    right: 90px;
  }
  25% {
    top: 86px;
    right: 110px;
  }
  100% {
    top: 26px;
    right: 90px;
  }
}
.img-shine2 {
  position: relative;
}
.img-shine2:after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #fff0 0%, rgb(255 255 255 / 0.3) 100%);
  transform: skewX(-20deg);
}
.img-shine2:hover:after {
  animation: imgShine 1s;
}
@keyframes imgShine {
  100% {
    left: 125%;
  }
}
.img-shine {
  position: relative;
}
.img-shine::before {
  background-color: rgb(255 255 255 / 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 500ms linear;
  z-index: 22;
}
.img-shine:hover::before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms linear;
}
.water-wave {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme);
  color: #fff0;
  transition: all 0.5s;
  position: relative;
}
.water-wave::before {
  content: attr(data-text);
  position: absolute;
  color: var(--theme);
  width: 0;
  overflow: hidden;
  animation: pulse-width 3s ease-in infinite;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--theme);
}
@keyframes pulse-width {
  50% {
    width: 100%;
  }
}
.splt-txt .whitespace {
  width: 8px;
}
.splt-txt.animated .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 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));
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}
@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}
@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}
@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.fix {
  overflow: hidden;
}
.ralt {
  position: relative;
}
.ripple {
  position: relative;
}
.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(56 75 255 / 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}
.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgb(255 255 255 / 0.2);
}
.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgb(245 255 255 / 0.3);
}
.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}
.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}
@media (max-width: 767px) {
  br {
    display: none;
  }
}
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  width: 100%;
  height: 100%;
}
.page-nav-wrap ul li {
  display: inline-block;
  text-align: center;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff0;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid #e3e3e3;
  color: var(--title);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: #fff0;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: #fff0;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: #ffb000;
  color: var(--header) !important;
  border: 1px solid #fff0;
}
.box-shadow {
  box-shadow: 0 4px 40px 0 rgb(0 0 0 / 0.06);
}
.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}
.pt-110 {
  padding-top: 110px;
}
@media (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}
.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
.pb-110 {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.margin-top-10 {
  margin-top: -10px;
}
.margin-top-5 {
  margin-top: -5px;
}
.margin-top-60 {
  margin-top: -65px;
}
@media (max-width: 1399px) {
  .margin-top-60 {
    margin-top: -25px;
  }
}
@media (max-width: 1199px) {
  .margin-top-60 {
    margin-top: -27px;
  }
}
@media (max-width: 991px) {
  .margin-top-60 {
    margin-top: -75px;
  }
}
@media (max-width: 767px) {
  .margin-top-60 {
    margin-top: -65px;
  }
}
.margin-top-8 {
  margin-top: -10px;
}
.mt-n30 {
  margin-top: -30px !important;
}
.mt-n50 {
  margin-top: -50px !important;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mr-7 {
  margin-right: 7px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mr-44 {
  margin-right: 44px;
}
.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .mb-40 {
    margin-bottom: 25px;
  }
}
.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}
.mt-n10 {
  margin-top: -10px;
}
.mt-n5 {
  margin-top: -5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-90 {
  margin-top: 90px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-55 {
  margin-bottom: 55px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mb-100 {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .mb-md-100 {
    margin-bottom: 100px;
  }
}
.pb-262 {
  padding-bottom: 262px !important;
}
@media (max-width: 767px) {
  .pb-262 {
    padding-bottom: 80px !important;
  }
}
.mxw-345 {
  max-width: 345px;
}
.mxw-412 {
  max-width: 412px;
}
.mxw-440 {
  max-width: 440px;
}
.mxw-530 {
  max-width: 530px;
}
.mxw-565 {
  max-width: 565px;
}
.mxw-570 {
  max-width: 570px;
}
.mxw-586 {
  max-width: 586px;
}
.mxw-630 {
  max-width: 630px;
}
.mxw-640 {
  max-width: 640px;
}
.mxw-651 {
  max-width: 651px;
}
.mxw-685 {
  max-width: 685px;
}
.mxw-850 {
  max-width: 850px;
}
.mxw-848 {
  max-width: 848px;
}
.mxw-705 {
  max-width: 705px;
}
.mxw-770 {
  max-width: 770px;
}
.mxw-300 {
  max-width: 300px;
}
.bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.center {
  text-align: center;
  margin: 0 auto;
}
.bg-theme {
  background-color: var(--theme) !important;
}
.bg-theme2 {
  background: var(--theme2) !important;
}
.bg-theme3 {
  background: var(--theme3) !important;
}
.bg-orange {
  background-color: var(--orange) !important;
}
.bg-color1 {
  background: #e9eff2;
}
.bg-color2 {
  background-color: #343434;
}
.bg-color3 {
  background-color: var(--theme);
}
.bg-title {
  background-color: var(--title);
}
.text-title {
  color: var(--title);
}
.text-dark2 {
  color: #838387 !important;
}
.text-bg-color2 {
  color: var(--theme2) !important;
}
.text-theme-color {
  color: var(--theme) !important;
}
.text-theme-color2 {
  color: var(--theme2) !important;
}
.text-orange-color {
  color: var(--orange) !important;
}
.bg-transparent {
  background: #fff0;
}
.border-theme {
  border: 1px solid var(--theme);
}
.border-dark {
  border-bottom: 1px solid #54595f;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.border-line-left-hidden {
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-line-right-hidden {
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-line-top-hidden {
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-line-bottom-hidden {
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.border-line-top-left-hidden {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-line-bottom-hidden {
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.border-line-top-left-hidden {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-line-top-left-bottom-hidden {
  border-right: 1px solid var(--border);
}
.border-line-top-right-hidden {
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.border-line-top-right-bottom-hidden {
  border-left: 1px solid var(--border);
}
.border-line-top-right-left-hidden {
  border-bottom: 1px solid var(--border);
}
.padding-top-right-45 {
  padding-top: 45px;
  padding-right: 45px;
}
@media (max-width: 1199px) {
  .padding-top-right-45 {
    padding: 0 0;
  }
}
.padding-bottom-right-45 {
  padding-bottom: 45px;
  padding-right: 45px;
}
@media (max-width: 1199px) {
  .padding-bottom-right-45 {
    padding: 0 0;
  }
}
.padding-top-left-45 {
  padding-top: 45px;
  padding-left: 45px;
}
@media (max-width: 1199px) {
  .padding-top-left-45 {
    padding: 0 0;
  }
}
.padding-bottom-left-45 {
  padding-bottom: 45px;
  padding-left: 45px;
}
@media (max-width: 1199px) {
  .padding-bottom-left-45 {
    padding: 0 0;
  }
}
.border-bottom {
  border-bottom: 1px solid rgb(0 0 0 / 0.2) !important;
}
.custom-container-2 {
  max-width: 1330px;
}
.custom-container-3 {
  max-width: 1570px;
}
.custom-container-4 {
  max-width: 1410px;
}
.d-opacity {
  opacity: 0;
  visibility: hidden;
}
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.mean-container a.meanmenu-reveal {
  display: none;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff0),
    to(#5e5ef6)
  );
  background: linear-gradient(to bottom, #fff0 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container
  .mean-nav
  > ul
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}
.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}
.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}
.mean-container .mean-nav ul li > a > i {
  display: none;
}
.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}
.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 rgb(0 0 0 / 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Plus Jakarta Sans", sans-serif, "Plus Jakarta Sans",
    sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  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(--title);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.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: 0;
}
.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;
}
.back-to-top {
  border-radius: 12px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--title);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.section-title .subtitle {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
.section-title .subtitle img {
  margin-right: 10px;
}
.section-title h2 {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 39px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 32px;
  }
}
.section-title .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 107px;
  padding-top: 24px;
  background: var(--theme);
  z-index: 9;
}
.marquee-wrapper.style-1 {
  background-color: #fff0;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .marquee-wrapper.style-1 {
    margin-bottom: 0;
    margin: 30px 0;
  }
}
@media (max-width: 767px) {
  .marquee-wrapper.style-1 {
    margin-bottom: -50px;
    margin: 0 0;
  }
}
.marquee-wrapper.style-1.text-slider {
  height: auto;
}
.marquee-wrapper.style-2 {
  line-height: 55px;
}
.text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}
@media (max-width: 767px) {
  .text-slider {
    font-size: 36px;
  }
}
.text-slider img {
  margin-bottom: 10px;
  margin-right: 8px;
  margin-left: 10px;
}
.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}
.marquee-list {
  float: left;
  width: 50%;
}
.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}
.marquee-item.style1 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: #fff0;
  -webkit-text-stroke: 1px #bcb8b1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.marquee-item.style1 .text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}
.marquee-item.style-2 .text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}
@media (max-width: 767px) {
  .marquee-item.style-2 .text-slider {
    font-size: 36px;
  }
}
.marquee-item.style-2 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme2), var(--theme2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.marquee-item.style-2 .text-style:hover {
  color: var(--theme2);
  background-size: 100% 3px;
  opacity: 0.7;
}
.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}
@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}
@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.marque-section-2 {
  position: relative;
}
.progress-wrap {
  margin-bottom: 15px;
}
.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.progress-wrap .progress-meta .title {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.progress-wrap .progress-meta .percentage {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 500px) {
  .progress-wrap .progress-meta {
    gap: 210px;
  }
}
@media (max-width: 470px) {
  .progress-wrap .progress-meta {
    gap: 150px;
  }
}
.progress-wrap .progress-container {
  position: relative;
  max-width: 504px;
  height: 7px;
  background-color: #d9ddff !important;
  border-radius: 10px;
  overflow: visible;
}
.progress-wrap .progress-container .progress-bar {
  height: 7px;
  background-color: var(--theme2);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 575px) {
  .progress-wrap .progress-container {
    width: 85%;
  }
}
.progress-wrap .progress-container.style2:before,
.progress-wrap .progress-container.style2:after {
  background-color: var(--theme2);
}
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme2);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme2);
  opacity: 0.3;
}
.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgb(255 255 255 / 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: #fff0;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}
input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}
.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}
.section-padding1 {
  padding: 95px 0;
}
@media (max-width: 1199px) {
  .section-padding1 {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .section-padding1 {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .section-padding1 {
    padding: 60px 0;
  }
}
.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}
.nav-pills {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 35px 0 60px;
}
@media (max-width: 1199px) {
  .nav-pills {
    margin: 35px 0 30px;
  }
}
.nav-pills .nav-link {
  background-color: #fff0;
  border: 1px solid rgb(0 0 0 / 0.2);
  color: var(--title);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--title);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
@media (min-width: 1400px) {
  .gap-xxl-20 {
    gap: 5rem !important;
  }
  .gap-xxl-19 {
    gap: 4.75rem !important;
  }
  .gap-xxl-18 {
    gap: 4.5rem !important;
  }
  .gap-xxl-17 {
    gap: 4.25rem !important;
  }
  .gap-xxl-16 {
    gap: 4rem !important;
  }
  .gap-xxl-15 {
    gap: 3.75rem !important;
  }
  .gap-xxl-14 {
    gap: 3.5rem !important;
  }
  .gap-xxl-13 {
    gap: 3.25rem !important;
  }
  .gap-xxl-12 {
    gap: 3rem !important;
  }
  .gap-xxl-11 {
    gap: 2.75rem !important;
  }
  .gap-xxl-10 {
    gap: 2.5rem !important;
  }
  .gap-xxl-9 {
    gap: 2.25rem !important;
  }
  .gap-xxl-8 {
    gap: 2rem !important;
  }
  .gap-xxl-7 {
    gap: 1.75rem !important;
  }
  .gap-xxl-6 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 1.25rem !important;
  }
  .gap-xxl-4 {
    gap: 1rem !important;
  }
  .gap-xxl-3 {
    gap: 0.75rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
}
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .header-logo img {
  width: 150px;
}
@media (max-width: 1199px) {
  .header-main .header-logo img {
    width: 120px;
  }
}
.header-main .header-logo-2 img {
  width: 150px;
}
@media (max-width: 1199px) {
  .header-main .header-logo-2 img {
    width: 120px;
  }
}
.header-main .logo .header-logo img {
  width: 250px;
}
@media (max-width: 1199px) {
  .header-main .logo .header-logo img {
    width: 190px;
  }
}
.header-main .logo .header-logo-2 img {
  width: 250px;
}
@media (max-width: 1199px) {
  .header-main .logo .header-logo-2 img {
    width: 190px;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgb(99 99 99 / 0.2) 0 2px 8px 0;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  line-height: 38px;
  padding: 0 0 0 32px;
  width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--white);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb {
  position: relative;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
  line-height: initial;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  .demo-button
  .theme-btn:hover {
  background-color: var(--white);
  color: var(--header) !important;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb::before {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff0),
    to(#5e5ef6)
  );
  background: linear-gradient(to bottom, #fff0 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb:hover
  .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-thumb
  img {
  width: 100%;
}
.header-main
  .main-menu
  ul
  li
  .has-homemenu
  .homemenu-items
  .homemenu
  .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--white);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--white);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-main .header-right {
  gap: 40px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}
.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
.header-1 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
.header-1 .logo .header-logo-2 {
  display: none;
}
.header-1 .header-right .sidebar__toggle {
  cursor: pointer;
}
.header-1 .header-right .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}
.header-1 .header-right .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--white);
  overflow: hidden;
}
.header-1 .header-right .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 16px;
  width: 15px;
}
.header-1 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--white);
  width: 30px;
}
.header-1 .header-right .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
  width: 15px;
}
.header-1 .header-right .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-1 .header-right .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-1 .header-right .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-1 .header-right .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}
.header-1 .header-logo-2 {
  display: none;
}
@media (max-width: 1899px) {
  .header-1 .header-logo-2 {
    display: block;
  }
}
.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-2 .container-fluid {
  padding: 0 190px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .main-menu ul li a {
  color: var(--header);
}
.header-2 .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-2 .header-right {
  gap: 30px;
}
.header-2 .header-right .sidebar__toggle {
  cursor: pointer;
}
.header-2 .header-right .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}
.header-2 .header-right .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--header);
  overflow: hidden;
}
.header-2 .header-right .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--header);
  left: 16px;
  width: 15px;
}
.header-2 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--header);
  width: 30px;
}
.header-2 .header-right .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--header);
  width: 15px;
}
.header-2 .header-right .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-2 .header-right .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-2 .header-right .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-2 .header-right .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}
.header-2 .header-right .search-icon {
  color: var(--header);
}
@media (max-width: 1199px) {
  .header-2 .header-right .header-button {
    display: none;
  }
}
.header-3 {
  background: rgb(255 255 255 / 0.1);
}
.header-3 .header-right {
  gap: 30px;
}
.header-3 .header-right .sidebar__toggle {
  cursor: pointer;
}
.header-3 .header-right .sidebar__toggle .header-bar {
  position: relative;
  width: 31px;
  height: 18px;
}
.header-3 .header-right .sidebar__toggle .header-bar span {
  position: absolute;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.3s;
  left: 0;
  background: var(--white);
  overflow: hidden;
}
.header-3 .header-right .sidebar__toggle .header-bar span:first-child {
  top: 0;
  background: var(--white);
  left: 16px;
  width: 15px;
}
.header-3 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  top: 44%;
  background: var(--white);
  width: 30px;
}
.header-3 .header-right .sidebar__toggle .header-bar span:last-child {
  bottom: 0;
  background: var(--white);
  width: 15px;
}
.header-3 .header-right .sidebar__toggle .header-bar.active span:first-child {
  transform: rotate(45deg) translate(3px, 9px);
}
.header-3 .header-right .sidebar__toggle .header-bar.active span:nth-child(2) {
  opacity: 0;
}
.header-3 .header-right .sidebar__toggle .header-bar.active span:last-child {
  transform: rotate(-45deg) translate(3px, -9px);
}
.header-3 .header-right .sidebar__toggle .header-bar:hover {
  cursor: pointer;
}
@media (max-width: 1199px) {
  .header-3 .header-right .header-button {
    display: none;
  }
}
.header-3 .header-right .header-button .theme-btn {
  background: rgb(255 255 255 / 0.2);
  border: none;
  padding: 20px 27px;
}
.header-3 .header-right .search-icon {
  color: var(--white);
}
.header-3 .header-logo-2 {
  display: none;
}
.header-3.header-4 {
  position: relative;
  background-color: #fff0;
}
.header-3.header-4 .header-logo {
  display: none;
}
.header-3.header-4 .header-logo-2 {
  display: none;
}
@media (max-width: 1899px) {
  .header-3.header-4 .header-logo-2 {
    display: block;
  }
}
.header-3.header-4 .mega-menu-wrapper {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgb(255 255 255 / 0.6);
}
@media (max-width: 1899px) {
  .header-3.header-4 .mega-menu-wrapper {
    border: none;
  }
}
.header-section-3 {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
}
.header-section-3 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .header-section-3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .header-section-3 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .header-section-3 .container-fluid {
    padding: 0 30px;
  }
}
.header-section-3.header-section-4 .container-fluid {
  padding: 0 120px;
  padding-left: 226px;
}
@media (max-width: 1600px) {
  .header-section-3.header-section-4 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .header-section-3.header-section-4 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .header-section-3.header-section-4 .container-fluid {
    padding: 0 30px;
  }
}
.header-top-section {
  background-color: #273339;
  padding: 12px 0;
}
@media (max-width: 991px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section.style-bg {
  background-color: #fe701c;
  position: relative;
  z-index: 9;
}
.header-top-section.style-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(
    210.75% 326.05% at -18.48% -74.46%,
    rgb(255 255 255 / 0.4) 0%,
    #fff0 100%
  );
  backdrop-filter: blur(25px);
  left: 106px;
  z-index: -1;
}
@media (max-width: 1899px) {
  .header-top-section.style-bg::before {
    left: 0;
  }
}
.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-wrapper ul li {
  color: var(--white);
}
.header-top-wrapper ul li i {
  margin-right: 10px;
}
.header-top-wrapper ul li a {
  color: var(--white);
}
.header-section-4 .header-main .main-menu .has-homemenu {
  left: -80px;
}
.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgb(149 157 165 / 0.2) 0 8px 24px;
}
.sticky.header-1 .logo .header-logo-2 {
  display: block;
}
.sticky.header-1 .logo .header-logo {
  display: none;
}
.sticky.header-1 .header-right .sidebar__toggle .header-bar span {
  background: var(--header);
}
.sticky.header-1 .header-right .sidebar__toggle .header-bar span:first-child {
  background: var(--header);
}
.sticky.header-1 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  background: var(--header);
}
.sticky.header-1 .header-right .sidebar__toggle .header-bar span:last-child {
  background: var(--header);
}
.sticky.header-1 .main-menu ul li a {
  color: var(--header);
}
.sticky.header-1 .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.sticky.header-3 .header-logo-2 {
  display: block;
}
.sticky.header-3 .header-logo {
  display: none;
}
.sticky.header-3 .main-menu ul li a {
  color: var(--header);
}
.sticky.header-3 .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.sticky.header-3 .header-right {
  gap: 30px;
}
.sticky.header-3 .header-right .sidebar__toggle .header-bar span {
  background: var(--header);
}
.sticky.header-3 .header-right .sidebar__toggle .header-bar span:first-child {
  background: var(--header);
}
.sticky.header-3 .header-right .sidebar__toggle .header-bar span:nth-child(2) {
  background: var(--header);
}
.sticky.header-3 .header-right .sidebar__toggle .header-bar span:last-child {
  background: var(--header);
}
@media (max-width: 1199px) {
  .sticky.header-3 .header-right .header-button {
    display: none;
  }
}
.sticky.header-3 .header-right .header-button .theme-btn {
  border: 1px solid var(--border);
  color: var(--header);
}
.sticky.header-3 .header-right .header-button .theme-btn::before {
  background: var(--header);
}
.sticky.header-3 .header-right .header-button .theme-btn:hover {
  color: var(--white) !important;
}
.sticky.header-3 .header-right .search-icon {
  color: var(--header);
}
.sticky.header-4 {
  background-color: var(--white);
}
.sticky.header-4 .header-logo {
  display: block;
}
.sticky.header-4 .mega-menu-wrapper {
  border-bottom: 1px solid #fff0;
}
.sticky.header-4 .header-logo-2 {
  display: none;
}
.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  ul
  li
  .offcanvas__contact-icon
  i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  .header-button
  .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: #fff0;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper
  .offcanvas__content
  .offcanvas__contact
  .social-icon
  a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}
@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(39 51 57 / 0.85);
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 270px 0 140px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 200px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 140px 0;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 48px;
  position: relative;
  z-index: 9;
  font-weight: 800;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 44px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--white);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}
.error-items {
  text-align: center;
  margin: 0 auto;
}
.error-items .error-image {
  max-width: 985px;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.error-items h2 span {
  color: var(--theme);
  font-weight: 300;
}
.error-items p {
  font-size: 18px;
  margin-bottom: 50px;
}
.error-items .error-content {
  max-width: 530px;
  margin: 0 auto;
}
.breadcumb-container-wrapper {
  padding: 250px 0 170px;
  background-color: var(--theme3);
  position: relative;
  overflow: hidden;
}
.breadcumb-container-wrapper .shape1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .breadcumb-container-wrapper .shape1 {
    display: none;
  }
}
.breadcumb-container-wrapper .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .breadcumb-container-wrapper .shape2 {
    display: none;
  }
}
.breadcumb-container-wrapper .breadcumb-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .breadcumb-container-wrapper .breadcumb-wrapper {
    justify-content: center;
  }
}
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading {
  text-align: center;
}
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading h1 {
  color: var(--title);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .breadcumb-container-wrapper .breadcumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading .links {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.32px;
}
.breadcumb-container-wrapper .breadcumb-wrapper .page-heading .links .slash {
  margin: 0 5px;
}
.footer-section {
  background-color: #273339;
}
.footer-widgets-wrapper {
  padding: 80px 0 120px;
  position: relative;
  z-index: 9;
}
.footer-widgets-wrapper .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper .shape-1 {
    display: none;
  }
}
.footer-widgets-wrapper .shape-2 {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper .shape-2 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: 700;
  color: var(--white);
  font-size: 24px;
  border-bottom: 1px solid var(--white);
  display: inline-block;
  padding-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: #fff0;
  border: 1px solid rgb(227 227 227 / 0.2);
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .social-icon
  a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid #fff0;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
  margin-top: 20px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
  color: var(--white);
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info
  li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info
  li
  i {
  font-size: 16px;
  color: var(--white);
  margin-right: 10px;
  font-size: 20px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .contact-info
  li
  a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  input {
  background: #fff0;
  border: none;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgb(255 255 255 / 0.2);
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  input::placeholder {
  color: var(--text);
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  .newsletter-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 55px;
  line-height: 70px;
  border-radius: 4px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  bottom: 5px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-content
  .footer-input
  .newsletter-btn
  i {
  font-size: 32px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
}
.footer-widgets-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
  color: #ffb000;
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .thumb {
  width: 80px;
  height: 80px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .thumb
  img {
  width: 100%;
  height: 100%;
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .content
  .post-date {
  margin-bottom: 10px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .content
  .post-date
  li {
  color: var(--white);
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .content
  h6 {
  font-size: 16px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .content
  h6
  a {
  color: var(--white);
}
.footer-widgets-wrapper
  .single-footer-widget
  .recent-post-area
  .recent-post-items
  .content
  h6
  a:hover {
  color: #ffb000;
}
.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item {
  overflow: hidden;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-post
  .single-post-item
  .thumb {
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 20px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-post
  .single-post-item
  .post-content
  .post-date {
  color: var(--theme);
  margin-bottom: 10px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-post
  .single-post-item
  .post-content
  .post-date
  i {
  margin-right: 10px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-post
  .single-post-item
  .post-content
  h6 {
  font-size: 16px;
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-post
  .single-post-item
  .post-content
  h6
  a {
  color: var(--text);
}
.footer-widgets-wrapper
  .single-footer-widget
  .footer-post
  .single-post-item
  .post-content
  h6
  a:hover {
  color: var(--theme);
}
@media (min-width: 1200px) {
  .footer-widgets-wrapper .single-footer-widget.style-margin {
    margin-left: 70px;
  }
}
.footer-widgets-wrapper .footer-style-2 {
  background-color: rgb(122 135 255 / 0.15);
  margin-top: 30px;
  padding: 20px 50px 50px 50px;
  position: relative;
  z-index: 9;
}
.footer-widgets-wrapper
  .footer-style-2
  .single-footer-widget
  .footer-content
  .contact-info-area-2 {
  margin-top: 20px;
}
.footer-widgets-wrapper
  .footer-style-2
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-info-item-2 {
  display: flex;
  gap: 16px;
}
.footer-widgets-wrapper
  .footer-style-2
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-info-item-2
  .icon {
  font-size: 24px;
  color: var(--white);
}
.footer-widgets-wrapper
  .footer-style-2
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-info-item-2
  .content
  h6 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-widgets-wrapper
  .footer-style-2
  .single-footer-widget
  .footer-content
  .contact-info-area-2
  .contact-info-item-2
  .content
  a {
  color: var(--text);
}
.footer-widgets-wrapper
  .footer-style-2
  .single-footer-widget
  .footer-content
  .apps-image {
  gap: 16px;
  margin-top: 30px;
}
.footer-bottom {
  padding: 20px 0;
  position: relative;
  z-index: 9;
  background-color: var(--theme);
}
@media (max-width: 991px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center !important;
    margin-top: 30px;
  }
}
.footer-bottom .footer-wrapper p {
  color: var(--white);
}
.footer-bottom .footer-wrapper p a {
  color: var(--white);
}
.footer-bottom .footer-wrapper .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom .footer-wrapper .footer-menu li a {
  color: var(--white);
  background-image: linear-gradient(var(--white), var(--white));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .footer-menu li a:hover {
  background-size: 100% 1px;
}
.footer-bottom .scroll-icon {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  line-height: 60px;
  background-color: var(--theme);
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  border: 5px solid var(--white);
  display: inline-block;
  z-index: 99;
}
.footer-bottom.style-2 {
  background-color: rgb(122 135 255 / 0.15);
}
.footer-bottom.style-2 .footer-wrapper p {
  color: rgb(255 255 255 / 0.8);
}
.footer-bottom.style-2 .footer-wrapper p a {
  color: rgb(255 255 255 / 0.8);
}
.footer-bottom.style-2 .footer-wrapper .footer-menu li a {
  color: rgb(255 255 255 / 0.8);
}
.footer-bottom.style-2 .scroll-icon {
  left: 93%;
}
@media (max-width: 1399px) {
  .footer-bottom.style-2 .scroll-icon {
    left: 50%;
  }
}
.footer-bottom.style-3 {
  background-color: initial;
  margin-top: -25px;
}
.footer-bottom.style-3 .footer-wrapper {
  background-color: rgb(122 135 255 / 0.15);
  padding: 35px 30px;
}
@media (max-width: 991px) {
  .footer-bottom.style-3 .footer-wrapper {
    gap: 30px;
    justify-content: space-between !important;
  }
}
@media (max-width: 767px) {
  .footer-bottom.style-3 .footer-wrapper {
    justify-content: center !important;
  }
}
.footer-bottom.style-3 .footer-wrapper p {
  color: rgb(255 255 255 / 0.8);
}
.footer-bottom.style-3 .footer-wrapper p a {
  color: rgb(255 255 255 / 0.8);
}
.footer-bottom.style-3 .scroll-icon {
  top: 25%;
  left: 93%;
}
@media (max-width: 1399px) {
  .footer-bottom.style-3 .scroll-icon {
    left: 50%;
    top: 5%;
  }
}
@media (max-width: 767px) {
  .footer-bottom.style-3 .scroll-icon {
    left: 78%;
    top: 50%;
  }
}
@media (max-width: 575px) {
  .footer-bottom.style-3 .scroll-icon {
    left: 90%;
    top: 50%;
  }
}
.footer-bottom.style-4 {
  background-color: #fff0;
  padding: 30px 0;
}
.service-container-wrapper.style2 {
  margin-top: -5.1em;
}
.service-container-wrapper.style2 .title-wrap {
  margin-bottom: 50px;
}
.service-section {
  position: relative;
}
.service-section .light-shape {
  position: absolute;
  top: 90px;
  right: 130px;
}
@media (max-width: 1199px) {
  .service-section .light-shape {
    display: none;
  }
}
.service-wrapper-4 .service-left-content .service-list {
  margin-bottom: 40px;
}
.service-wrapper-4 .service-left-content .service-list li {
  font-size: 24px;
  font-weight: 500;
  color: var(--title);
  border-top: 1px solid rgb(30 41 46 / 0.15);
  padding: 20px 0;
}
.service-wrapper-4 .service-left-content .service-list li:last-child {
  border-bottom: 1px solid rgb(30 41 46 / 0.15);
}
.service-wrapper-4 .service-box-items {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
}
.service-wrapper-4 .service-box-items .content {
  margin-top: 20px;
}
.service-wrapper-4 .service-box-items .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.service-wrapper-4 .service-box-items .content h3 a:hover {
  color: #ffb000;
}
.service-wrapper-4 .service-box-items .content .link {
  margin-top: 20px;
}
.service-wrapper-4 .service-box-items .content .link a {
  color: var(--theme);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.service-wrapper-4 .service-box-items .content .link a i {
  margin-left: 5px;
}
.service-wrapper-4 .service-box-items .content .link a:hover {
  color: #ffb000;
}
.service-deatails-wrapper .service-details-image img {
  height: 100%;
  width: 100%;
}
.service-deatails-wrapper .details-content {
  margin-top: 40px;
}
.service-deatails-wrapper .details-content h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  color: var(--title);
}
@media (max-width: 991px) {
  .service-deatails-wrapper .details-content h2 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .service-deatails-wrapper .details-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .service-deatails-wrapper .details-content h2 {
    font-size: 32px;
  }
}
.service-deatails-wrapper .details-content .post-card {
  margin-top: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgb(30 41 46 / 0.15);
  padding-bottom: 35px;
}
@media (max-width: 1199px) {
  .service-deatails-wrapper .details-content .post-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.service-deatails-wrapper .details-content .post-card li {
  color: var(--theme);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid rgb(30 41 46 / 0.15);
  margin-right: 20px;
}
@media (max-width: 1199px) {
  .service-deatails-wrapper .details-content .post-card li {
    margin-right: 0;
  }
}
.service-deatails-wrapper .details-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .service-deatails-wrapper .details-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .service-deatails-wrapper .details-content h3 {
    font-size: 28px;
  }
}
.service-deatails-wrapper .details-content .list-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .service-deatails-wrapper .details-content .list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.service-deatails-wrapper .details-content .list-items li {
  color: var(--text);
  text-transform: capitalize;
  position: relative;
}
.service-deatails-wrapper .details-content .list-items li span {
  padding-left: 25px;
  display: inline-block;
}
.service-deatails-wrapper .details-content .list-items li::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--theme);
}
.service-deatails-wrapper .details-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.service-deatails-wrapper .details-content .progress-wrap .pro-items {
  width: 100%;
}
.service-deatails-wrapper
  .details-content
  .progress-wrap
  .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.service-deatails-wrapper .details-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.service-deatails-wrapper
  .details-content
  .progress-wrap
  .pro-items
  .pro-head
  .title {
  font-size: 16px;
  color: var(--title);
  font-weight: 700;
}
.service-deatails-wrapper
  .details-content
  .progress-wrap
  .pro-items
  .pro-head
  .point {
  font-size: 16px;
  color: var(--title);
  font-weight: 700;
}
.service-deatails-wrapper .details-content .progress-wrap .pro-items .progress {
  background: #353536;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}
.service-deatails-wrapper
  .details-content
  .progress-wrap
  .pro-items
  .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 8px;
  width: 0;
}
.service-deatails-wrapper
  .details-content
  .progress-wrap
  .pro-items
  .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
.company-benefit-wrapper {
  position: relative;
}
.company-benefit-wrapper .company-benefit-content .section-title {
  margin-left: 250px;
}
@media (max-width: 1899px) {
  .company-benefit-wrapper .company-benefit-content .section-title {
    margin-left: 150px;
  }
}
@media (max-width: 1399px) {
  .company-benefit-wrapper .company-benefit-content .section-title {
    display: none;
  }
}
.company-benefit-wrapper .company-benefit-content .company-benefit-items {
  text-align: center;
  position: relative;
  padding: 0 0 25px;
  z-index: 9;
}
.company-benefit-wrapper
  .company-benefit-content
  .company-benefit-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  top: 50px;
  height: initial;
}
.company-benefit-wrapper .company-benefit-content .company-benefit-items .icon {
  width: 95px;
  height: 95px;
  line-height: 85px;
  text-align: center;
  border-radius: 50%;
  border: 4px solid var(--white);
  background-color: #aec0c9;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgb(0 0 0 / 0.15);
  transition: all 0.4s ease-in-out;
}
.company-benefit-wrapper
  .company-benefit-content
  .company-benefit-items
  .icon
  svg
  path {
  transition: all 0.4s ease-in-out;
}
.company-benefit-wrapper
  .company-benefit-content
  .company-benefit-items
  .content {
  margin-top: 20px;
}
.company-benefit-wrapper
  .company-benefit-content
  .company-benefit-items
  .content
  h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.company-benefit-wrapper
  .company-benefit-content
  .company-benefit-items:hover
  .icon {
  background-color: #ffb000;
}
.company-benefit-wrapper
  .company-benefit-content
  .company-benefit-items:hover
  .icon
  svg
  path {
  fill: var(--header);
}
.company-benefit {
  position: relative;
}
.company-benefit .company-image {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  max-width: 980px;
}
@media (max-width: 1600px) {
  .company-benefit .company-image {
    max-width: 700px;
  }
}
@media (max-width: 1399px) {
  .company-benefit .company-image {
    display: none;
  }
}
.company-benefit .company-image img {
  width: 100%;
  height: 100%;
}
.company-benefit .line-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.about-wrapper-3 .about-image {
  max-width: 436px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image {
    max-width: 800px;
  }
}
.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-image .about-image-2 {
  max-width: 291px;
  border: 4px solid var(--white);
  position: absolute;
  bottom: 30px;
  right: -37%;
  border: 4px solid var(--white);
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .about-image-2 {
    top: 0;
    right: 0;
    bottom: initial;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-image .about-image-2 {
    max-width: 200px;
  }
}
.about-wrapper-3 .about-image .counter-box {
  padding: 40px;
  background-color: #273339;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}
.about-wrapper-3 .about-image .counter-box h2 {
  font-size: 48px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255 255 255 / 0.75);
  -webkit-text-fill-color: #fff0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.about-wrapper-3 .about-image .counter-box p {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255 255 255 / 0.7);
}
.about-wrapper-3 .about-content {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-content p {
  font-weight: 500;
}
.about-wrapper-3 .about-content .icon-items-area {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .icon-items-area {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.about-wrapper-3 .about-content .icon-items-area .icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-3 .about-content .icon-items-area .icon-items:not(:last-child) {
  border-right: 1px solid #e0e0e0;
  padding-right: 40px;
}
@media (max-width: 575px) {
  .about-wrapper-3
    .about-content
    .icon-items-area
    .icon-items:not(:last-child) {
    border: none !important;
    padding-right: 0;
  }
}
.about-wrapper-3 .about-content .icon-items-area .icon-items .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: rgb(30 41 46 / 0.1);
  text-align: center;
  border-radius: 50%;
}
.about-wrapper-3 .about-content .icon-items-area .icon-items h5 {
  line-height: 167%;
}
.about-wrapper-3 .about-content .contact-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .contact-meta {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.about-wrapper-4 .about-image {
  max-width: 385px;
  margin-left: 20px;
  margin-top: 20px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image {
    margin-left: 0;
    margin-top: 0;
    max-width: 800px;
  }
}
.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 150px 20px 50px 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image img {
    border-radius: 0;
  }
}
.about-wrapper-4 .about-image .border-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image .border-shape {
    display: none;
  }
}
.about-wrapper-4 .about-image .about-image-2 {
  position: absolute;
  top: 60%;
  right: -140px;
  transform: translateY(-50%);
  border: 5px solid var(--white);
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image .about-image-2 {
    right: 0;
    bottom: 0;
    transform: translateY(0);
  }
}
.about-wrapper-4 .about-image .about-image-2 img {
  border-radius: 0;
}
.about-wrapper-4 .about-image .wcu-counter {
  position: absolute;
  top: 36px;
  right: -45px;
  z-index: 5;
  background-color: var(--theme);
  padding: 30px;
  text-align: center;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image .wcu-counter {
    right: 0;
  }
}
.about-wrapper-4 .about-image .wcu-counter .counter {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}
.about-wrapper-4 .about-image .wcu-counter .text {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  margin-top: 5px;
}
.about-wrapper-4 .about-content .list-title {
  margin-top: 20px;
  margin-bottom: 20px;
}
.about-wrapper-4 .about-content .list-title li {
  font-size: 20px;
  color: var(--title);
  font-weight: 600;
}
.about-wrapper-4 .about-content .list-title li:not(:last-child) {
  margin-bottom: 20px;
}
.about-wrapper-4 .about-content .list-title li svg {
  margin-right: 5px;
}
.about-wrapper-4 .about-content .theme-btn {
  margin-top: 30px;
}
.about-wrapper-inner .about-header-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .about-wrapper-inner .about-header-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-inner .about-header-items .counter-area {
  display: flex;
  gap: 50px;
}
@media (max-width: 575px) {
  .about-wrapper-inner .about-header-items .counter-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-inner .about-header-items .counter-area .counter-item h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
.about-wrapper-inner .about-header-items .counter-area .counter-item p {
  color: var(--white);
}
.about-wrapper-inner .about-image {
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px;
}
.about-wrapper-inner .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.about-wrapper-inner .about-image .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  height: 100px;
  width: 100px;
  background: radial-gradient(
    157.24% 123.22% at 47.19% -0.63%,
    rgb(255 255 255 / 0.4) 0%,
    #fff0 100%
  );
  backdrop-filter: blur(21px);
  color: var(--white);
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  font-size: 18px;
}
@media (max-width: 767px) {
  .about-wrapper-inner .about-image .video-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }
}
.about-wrapper-inner .about-content h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 20px;
}
.about-wrapper-inner .progress-wrap .pro-items {
  width: 100%;
}
.about-wrapper-inner .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.about-wrapper-inner .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.about-wrapper-inner .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}
.about-wrapper-inner .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}
.about-wrapper-inner .progress-wrap .pro-items .progress {
  background: #353536;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 8px;
  width: 100%;
}
.about-wrapper-inner .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 8px;
  width: 0;
}
.about-wrapper-inner .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.about-wrapper-inner .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}
.about-section-inner {
  position: relative;
  z-index: 9;
}
.about-section-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  height: 60%;
  z-index: -1;
}
@media (max-width: 991px) {
  .about-section-inner::before {
    height: 90%;
  }
}
.team-details-wrapper .team-details-items {
  border: 1px solid #e5e5e5;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.team-details-wrapper .team-details-items .thumb {
  max-width: 390px;
}
.team-details-wrapper .team-details-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team-details-wrapper .team-details-items .content {
  max-width: 680px;
}
.team-details-wrapper .team-details-items .content .cont {
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-items .content .cont h4 {
  font-size: 36px;
}
.team-details-wrapper .team-details-items .content .signature {
  margin-top: 30px;
}
.team-details-wrapper .team-details-items .content .team-contact-info {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-items .content .team-contact-info {
    padding: 20px 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.team-details-wrapper
  .team-details-items
  .content
  .team-contact-info
  .icon-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1199px) {
  .team-details-wrapper
    .team-details-items
    .content
    .team-contact-info
    .icon-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .team-details-wrapper
    .team-details-items
    .content
    .team-contact-info
    .icon-items {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.team-details-wrapper
  .team-details-items
  .content
  .team-contact-info
  .icon-items
  .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  background-color: #e9eff2;
  color: var(--theme);
}
.team-details-wrapper
  .team-details-items
  .content
  .team-contact-info
  .icon-items
  h5 {
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  text-transform: initial;
}
.team-details-wrapper
  .team-details-items
  .content
  .team-contact-info
  .icon-items
  h5
  a {
  color: var(--text);
}
.team-details-wrapper
  .team-details-items
  .content
  .team-contact-info
  .icon-items
  h5
  a:hover {
  color: var(--theme);
}
.team-details-wrapper .team-details-items .content .team-details-info {
  position: relative;
}
.team-details-wrapper
  .team-details-items
  .content
  .team-details-info:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-items .content .team-details-info span {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16px;
  color: var(--black);
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-items .content .team-details-info span {
    position: static;
  }
}
.team-details-wrapper .team-details-items .content .team-details-info a {
  margin-left: 200px;
  font-size: 16px;
  color: var(--text);
}
@media (max-width: 575px) {
  .team-details-wrapper .team-details-items .content .team-details-info a {
    margin-left: 0;
    display: block;
    margin-top: 10px;
  }
}
.team-details-wrapper .team-details-items .content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-details-wrapper .team-details-items .content .social-icon li {
  background-color: rgb(39 51 57 / 0.15);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
  text-align: center;
  cursor: pointer;
}
.team-details-wrapper .team-details-items .content .social-icon li a i {
  color: var(--title);
  transition: all 0.4s ease-in-out;
}
.team-details-wrapper .team-details-items .content .social-icon li:hover {
  background-color: var(--theme);
}
.team-details-wrapper .team-details-items .content .social-icon li:hover a i {
  color: var(--white);
}
.personal-information-area {
  background: #e9eff2;
  padding-top: 60px;
  margin-top: 60px;
}
.personal-information-wrapper .personal-skill-wrapper {
  padding: 28px 30px;
  background-color: var(--white);
  margin-top: 60px;
}
.personal-information-wrapper .personal-skill-wrapper h4 {
  font-size: 20px;
  margin-bottom: 30px;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items {
  width: 100%;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items
  .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items
  .pro-head
  .title {
  font-size: 16px;
  color: var(--title);
  font-weight: 700;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items
  .pro-head
  .point {
  font-size: 16px;
  color: var(--title);
  font-weight: 700;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items
  .progress {
  background: #f6f3fe;
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 15px;
  width: 100%;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items
  .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 15px;
  width: 0;
}
.personal-information-wrapper
  .personal-skill-wrapper
  .progress-wrap
  .pro-items
  .style-two {
  animation: load2 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}
.pricing-box-items {
  border-radius: 15px 0 0 15px;
  background: var(--white);
  box-shadow: 0 4px 40px 0 rgb(0 0 0 / 0.08);
  padding: 40px;
  border-radius: 15px;
}
.pricing-box-items .pricing-header {
  margin-bottom: 40px;
  position: relative;
}
.pricing-box-items .pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
}
.pricing-box-items .pricing-header h2 {
  font-size: 48px;
  font-weight: 800;
}
.pricing-box-items .pricing-header h2 sub {
  font-size: 18px;
  font-weight: 400;
  margin-left: -10px;
}
.pricing-box-items .pricing-header .icon {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.pricing-box-items .pricing-items {
  margin-top: 30px;
}
.pricing-box-items .pricing-items li {
  font-size: 18px;
  color: var(--title);
}
.pricing-box-items .pricing-items li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-box-items .pricing-items li i {
  color: #677c87;
  margin-right: 8px;
}
.pricing-box-items .theme-btn {
  width: 100%;
  text-align: center;
  border-radius: 4px;
  background-color: #e9eff2;
  color: #1e292e;
  border: none;
}
.pricing-box-items .theme-btn::before {
  background-color: var(--theme);
}
.pricing-box-items .theme-btn:hover {
  color: var(--white) !important;
}
.pricing-box-items.active {
  background-color: var(--theme);
}
.pricing-box-items.active .pricing-header h3 {
  color: var(--white);
}
.pricing-box-items.active .pricing-header h2 {
  color: var(--white);
}
.pricing-box-items.active .pricing-header h2 sub {
  color: var(--white);
}
.pricing-box-items.active .pricing-items {
  margin-top: 30px;
}
.pricing-box-items.active .pricing-items li {
  color: var(--white);
}
.pricing-section .nav {
  border: none;
  margin-bottom: 50px;
}
.pricing-section .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
}
.pricing-section .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: #fff0;
  z-index: 2;
  color: var(--text);
  margin-bottom: 0;
}
.pricing-section .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: #ffb000;
  width: 75px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid #ffb000;
}
.pricing-section .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--header);
  z-index: 1;
}
.pricing-section .nav .nav-link:first-child {
  padding-left: 0;
}
.pricing-section .nav .nav-link:last-child {
  padding-right: 0;
}
.pricing-section .nav .nav-link:last-child::after {
  display: none;
}
.pricing-section .nav .nav-link:last-child::before {
  display: none;
}
.pricing-section .nav .nav-link.active {
  color: var(--title);
}
.pricing-section .nav .nav-link.active::after {
  right: 8px;
}
.gallery-image {
  position: relative;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.gallery-image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  z-index: 9;
  font-size: 30px;
  color: var(--white);
}
.gallery-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 15px;
  background: rgb(13 18 40 / 0.8);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.gallery-image:hover::before {
  opacity: 1;
  visibility: visible;
}
.gallery-image:hover .icon {
  opacity: 1;
}
.gallery-image.mt-3 {
  margin-top: 24px !important;
}
.blog-classic-wrapper .blog-classic-post {
  padding: 30px;
  border: 1px solid #e3e3e3;
}
.blog-classic-wrapper .blog-classic-post:not(:last-child) {
  margin-bottom: 25px;
}
.blog-classic-wrapper .blog-classic-post .blog-image {
  position: relative;
}
.blog-classic-wrapper .blog-classic-post .blog-image img {
  width: 100%;
  height: 100%;
}
.blog-classic-wrapper .blog-classic-post .blog-image .video-btn {
  width: 57px;
  height: 57px;
  line-height: 57px;
  border-radius: 50px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 22px;
}
.blog-classic-wrapper .blog-classic-post .blog-image h4 {
  font-size: 24px;
  font-weight: 700;
  background: var(--title);
  color: var(--white);
  padding: 12px 16px;
  display: grid;
  position: absolute;
  top: 40px;
  left: 40px;
  line-height: 1;
}
.blog-classic-wrapper .blog-classic-post .blog-image h4 span {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}
.blog-classic-wrapper .blog-classic-post .array-button .array-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--title);
  color: var(--white);
  position: absolute;
  left: 9%;
  top: 50%;
  border: 1px solid #fff0;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.blog-classic-wrapper .blog-classic-post .array-button .array-prev:hover {
  background-color: var(--title);
  color: var(--white);
  border: 1px solid #fff0;
}
.blog-classic-wrapper .blog-classic-post .array-button .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 50px;
  background-color: #fff0;
  color: var(--white);
  position: absolute;
  right: 2%;
  top: 50%;
  border: 1px solid var(--white);
  transform: translate(-50%, -50%);
  z-index: 99;
}
.blog-classic-wrapper .blog-classic-post .array-button .array-next:hover {
  background-color: var(--title);
  color: var(--white);
  border: 1px solid #fff0;
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content .meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content .meta li {
  color: var(--text);
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content .meta li i {
  margin-right: 8px;
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content .meta .tag {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content .meta .tag img {
  margin-right: 8px;
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content h4 {
  font-size: 24px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 25px;
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content h4 a:hover {
  color: var(--theme);
}
.blog-classic-wrapper .blog-classic-post .blog-classic-content .theme-btn {
  margin-top: 30px;
}
.blog-classic-wrapper .main-sidebar .single-sidebar-widgett {
  padding: 40px 30px;
  background-color: #f2f5fa;
  margin-bottom: 30px;
}
.blog-classic-wrapper .main-sidebar .single-sidebar-widgett .wid-title {
  margin-bottom: 25px;
}
.blog-classic-wrapper .main-sidebar .single-sidebar-widgett .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .wid-title
  h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background-color: var(--title);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .wid-title
  h3::before {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 63px;
  height: 2px;
  content: "";
  background-color: var(--title);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .search-widgett
  form {
  width: 100%;
  position: relative;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .search-widgett
  form
  input {
  background-color: var(--white);
  font-size: 16px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .search-widgett
  form
  button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .search-widgett
  form
  button:hover {
  background-color: var(--title);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  font-size: 16px;
  line-height: 1;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li
  a {
  color: var(--title);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li
  span {
  transition: all 0.4s ease-in-out;
  color: var(--title);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li:not(:last-child) {
  margin-bottom: 12px;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li:hover {
  background-color: #ffb000;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li:hover
  a {
  color: var(--header);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li:hover
  span {
  color: var(--header);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li.active {
  background-color: #ffb000;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li.active
  a {
  color: var(--header);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li.active
  span {
  color: var(--header);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  ul {
  margin-bottom: 8px;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  ul
  li
  i {
  color: var(--theme);
  margin-right: 5px;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  h6 {
  font-size: 16px;
  font-weight: 700;
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  h6
  a:hover {
  color: var(--theme);
}
.blog-classic-wrapper .main-sidebar .single-sidebar-widgett .tagcloud a {
  display: inline-block;
  padding: 10px 13px;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  color: var(--text);
}
.blog-classic-wrapper
  .main-sidebar
  .single-sidebar-widgett
  .tagcloud
  a:last-child {
  margin-right: 0;
}
.blog-classic-wrapper .main-sidebar .single-sidebar-widgett .tagcloud a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.blog-details-wrapper .blog-details-post .details-image {
  position: relative;
}
.blog-details-wrapper .blog-details-post .details-image img {
  width: 100%;
  height: 100%;
}
.blog-details-wrapper .blog-details-post .details-image h4 {
  font-size: 24px;
  font-weight: 700;
  background: var(--title);
  color: var(--white);
  padding: 12px 16px;
  display: grid;
  position: absolute;
  top: 40px;
  left: 40px;
  line-height: 1;
}
@media (max-width: 767px) {
  .blog-details-wrapper .blog-details-post .details-image h4 {
    top: 20px;
    left: 20px;
  }
}
.blog-details-wrapper .blog-details-post .details-image h4 span {
  font-size: 14px;
  color: var(--white);
  font-weight: 400;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}
.blog-details-wrapper .blog-details-post .blog-details-content .meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .blog-details-wrapper .blog-details-post .blog-details-content .meta {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-details-wrapper .blog-details-post .blog-details-content .meta li {
  color: var(--text);
}
.blog-details-wrapper .blog-details-post .blog-details-content .meta li i {
  margin-right: 8px;
}
.blog-details-wrapper .blog-details-post .blog-details-content .meta .tag {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.blog-details-wrapper .blog-details-post .blog-details-content .meta .tag img {
  margin-right: 8px;
}
.blog-details-wrapper .blog-details-post .blog-details-content h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.blog-details-wrapper .blog-details-post .blog-details-content h4 a:hover {
  color: var(--theme);
}
.blog-details-wrapper .blog-details-post .blog-details-content .thumb {
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details-wrapper .blog-details-post .blog-details-content .thumb img {
  width: 100%;
  height: 100%;
}
.blog-details-wrapper .blog-details-post .blog-details-content .hilight-text {
  border-left: 4px solid var(--theme2);
  padding: 36px 40px;
  background-color: var(--theme3);
}
.blog-details-wrapper .blog-details-post .blog-details-content .hilight-text p {
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
  color: var(--title);
}
.blog-details-wrapper
  .blog-details-post
  .blog-details-content
  .hilight-text
  svg {
  float: right;
  margin-top: -30px;
}
.blog-details-wrapper .tag-share-wrap {
  border-top: 1px solid #e6e5e5;
  border-bottom: 1px solid #e6e5e5;
  padding: 30px 0;
  margin-top: 40px;
}
.blog-details-wrapper .tag-share-wrap .tagcloud span {
  display: inline-block;
  font-weight: 600;
  color: var(--title);
  margin-right: 15px;
}
.blog-details-wrapper .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: #fff0;
  border: 1px solid #e6e5e5;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
}
@media (max-width: 575px) {
  .blog-details-wrapper .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.blog-details-wrapper .tag-share-wrap .tagcloud a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.blog-details-wrapper .tag-share-wrap .social-share span {
  font-size: 16px;
  color: var(--title);
  font-weight: 600;
}
.blog-details-wrapper .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--title);
}
.blog-details-wrapper .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.blog-details-wrapper .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.blog-details-wrapper .comments-area {
  margin-top: 40px;
}
.blog-details-wrapper .comments-area .comments-heading h4 {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .blog-details-wrapper .comments-area .comments-heading h4 {
    font-size: 22px;
  }
}
.blog-details-wrapper .comments-area .blog-single-comment {
  border-bottom: 1px solid #e6e5e5;
}
@media (max-width: 575px) {
  .blog-details-wrapper .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-details-wrapper .comments-area .blog-single-comment .content .head {
  margin-bottom: 10px;
}
.blog-details-wrapper
  .comments-area
  .blog-single-comment
  .content
  .head
  .con
  h4 {
  margin-bottom: 5px;
  font-weight: 500;
}
.blog-details-wrapper
  .comments-area
  .blog-single-comment
  .content
  .head
  .reply {
  padding: 8px 16px;
  font-weight: 400;
  background-color: #0d1228;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.blog-details-wrapper
  .comments-area
  .blog-single-comment
  .content
  .head
  .reply:hover {
  background-color: var(--title);
}
.blog-details-wrapper .comment-form-wrap h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .blog-details-wrapper .comment-form-wrap h4 {
    margin-bottom: 20px;
  }
}
.blog-details-wrapper .comment-form-wrap .form-clt span {
  color: #0d1228;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.blog-details-wrapper .comment-form-wrap .form-clt input,
.blog-details-wrapper .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: #fff0;
  border: 1px solid #d4dced;
  padding: 16px 20px;
  font-weight: 400;
  color: #677c87;
}
.blog-details-wrapper .comment-form-wrap .form-clt input::placeholder,
.blog-details-wrapper .comment-form-wrap .form-clt textarea::placeholder {
  color: #677c87;
}
.blog-details-wrapper .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}
.main-sidebar .single-sidebar-widgett {
  padding: 40px 30px;
  background-color: #f2f5fa;
  margin-bottom: 30px;
}
.main-sidebar .single-sidebar-widgett .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widgett .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
}
.main-sidebar .single-sidebar-widgett .wid-title h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  content: "";
  background-color: var(--title);
}
.main-sidebar .single-sidebar-widgett .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 63px;
  height: 2px;
  content: "";
  background-color: var(--title);
}
.main-sidebar .single-sidebar-widgett .search-widgett form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widgett .search-widgett form input {
  background-color: var(--white);
  font-size: 16px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sidebar .single-sidebar-widgett .search-widgett form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sidebar .single-sidebar-widgett .search-widgett form button:hover {
  background-color: var(--title);
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  font-size: 16px;
  line-height: 1;
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li a {
  color: var(--title);
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--title);
}
.main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li:hover {
  background-color: #ffb000;
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li:hover a {
  color: var(--header);
}
.main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li:hover
  span {
  color: var(--header);
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li.active {
  background-color: #ffb000;
}
.main-sidebar .single-sidebar-widgett .news-widget-categoriess ul li.active a {
  color: var(--header);
}
.main-sidebar
  .single-sidebar-widgett
  .news-widget-categoriess
  ul
  li.active
  span {
  color: var(--header);
}
.main-sidebar .single-sidebar-widgett .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  ul {
  margin-bottom: 8px;
}
.main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  ul
  li
  i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  h6 {
  font-size: 16px;
  font-weight: 700;
}
.main-sidebar
  .single-sidebar-widgett
  .recent-post-area
  .recent-items
  .recent-content
  h6
  a:hover {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widgett .tagcloud a {
  display: inline-block;
  padding: 10px 13px;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  color: var(--text);
}
.main-sidebar .single-sidebar-widgett .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widgett .tagcloud a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.client-wrapper.style1 .section-title {
  text-align: center;
}
.client-wrapper.style1 .section-title .title {
  text-align: center;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgb(255 255 255 / 0.2);
  display: inline-block;
  margin: 0 auto 60px;
  color: var(--white);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.client-wrapper.style1 .client-logo {
  text-align: center;
}
.client-container-wrapper.style1 {
  position: relative;
}
.client-container-wrapper.style1:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--title);
  opacity: 0.2;
  z-index: 1;
}
.contact-wrapper-form .contact-list-left ul li {
  background-color: #e9eff2;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-wrapper-form .contact-list-left ul li:not(:last-child) {
  margin-bottom: 20px;
}
.contact-wrapper-form .contact-list-left ul li .icon {
  width: 84px;
  height: 84px;
  line-height: 84px;
  background-color: #fff0;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  position: relative;
  border: 1px dotted var(--title);
  color: var(--title);
  z-index: 9;
}
.contact-wrapper-form .contact-list-left ul li .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  line-height: 64px;
  background-color: var(--white);
  content: "";
  border-radius: 50%;
  z-index: -1;
}
.contact-wrapper-form .contact-list-left ul li .content {
  flex-basis: 60%;
}
.contact-wrapper-form .contact-list-left ul li .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-wrapper-form .contact-list-left ul li .content p a {
  color: var(--text);
}
.contact-wrapper-form .contact-form-items {
  border-radius: 20px;
  background-color: #e9eff2;
  padding: 30px;
}
.contact-wrapper-form .contact-form-items .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.contact-wrapper-form .contact-form-items .form-clt input,
.contact-wrapper-form .contact-form-items .form-clt textarea {
  border: none;
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  text-transform: capitalize;
  height: initial;
  padding: 16px 20px;
  line-height: 1;
}
.contact-wrapper-form .contact-form-items .form-clt textarea {
  padding-bottom: 117px;
}
.map-items .googpemap iframe {
  width: 100%;
  height: 600px;
}
@media (max-width: 767px) {
  .map-items .googpemap iframe {
    height: 550px;
  }
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 450px;
  }
}
.case-studies-section-4 .client-items {
  position: relative;
  z-index: 9;
}
.case-studies-section-4 .client-items .client-img {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-studies-section-4 .client-items .client-img .star-icon .star {
  font-size: 14px;
  color: #fbb03b;
}
.case-studies-section-4 .client-items .client-img .star-icon span {
  color: var(--white);
  font-size: 14px;
  line-height: 1;
}
.case-studies-wrapper-4 .case-studies-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 35px 0;
  position: relative;
}
@media (max-width: 991px) {
  .case-studies-wrapper-4 .case-studies-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.case-studies-wrapper-4 .case-studies-items .content {
  max-width: 570px;
}
.case-studies-wrapper-4 .case-studies-items .content h3 {
  font-size: 24px;
}
.case-studies-wrapper-4 .case-studies-items .content h3 a {
  color: var(--white);
}
.case-studies-wrapper-4 .case-studies-items .content span {
  color: #ffb000;
  display: inline-block;
  margin-bottom: 20px;
}
.case-studies-wrapper-4 .case-studies-items .content p {
  color: var(--white);
}
.case-studies-wrapper-4 .case-studies-items .main-button .arrow-btn {
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: rgb(255 255 255 / 0.1);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
}
.case-studies-wrapper-4 .case-studies-items .case-studies-hover {
  width: 296px;
  height: 346px;
  position: absolute;
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-12.317deg);
  inset-inline-start: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
}
.case-studies-wrapper-4 .case-studies-items:hover .case-studies-hover {
  opacity: 1;
  visibility: visible;
}
.case-studies-wrapper-4 .bor-top {
  border-top: 1px solid rgb(255 255 255 / 0.4);
}
.case-studies-wrapper-4 .bor-bottom {
  border-bottom: 1px solid rgb(255 255 255 / 0.4);
}
.project-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .details-content {
  margin-top: 30px;
}
.project-details-wrapper .details-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}
.project-details-wrapper .details-content .project-info-list {
  padding: 40px 30px;
  position: relative;
  z-index: 9;
  background-color: var(--white);
  box-shadow: 0 4px 25px 0 rgb(0 0 0 / 0.06);
  margin-top: -120px;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .project-details-wrapper .details-content .project-info-list {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.project-details-wrapper .details-content .project-info-list h4 {
  font-size: 22px;
  font-weight: 500;
}
.project-details-wrapper .details-content .project-info-list ul {
  margin-top: 30px;
}
.project-details-wrapper .details-content .project-info-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #1e292e;
  border-top: 1px solid #747d82;
  padding: 20px 0;
}
.project-details-wrapper .details-content .project-info-list ul li:last-child {
  border-bottom: 1px solid #747d82;
}
.project-details-wrapper
  .details-content
  .project-info-list
  ul
  li
  .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-details-wrapper
  .details-content
  .project-info-list
  ul
  li
  .social-links
  a {
  color: var(--text);
}
.project-details-wrapper .details-content .check-list {
  margin-top: 30px;
}
.project-details-wrapper .details-content .check-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--title);
  display: flex;
  align-items: center;
  gap: 15px;
}
.project-details-wrapper .details-content .check-list li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .details-content .check-list li span {
  width: 22px;
  height: 22px;
  line-height: 18px;
  text-align: center;
  border: 1px solid #273339;
  display: inline-block;
}
.project-details-wrapper .details-content .details-image-2 img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .slider-button {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 65px;
  padding: 25px 0;
}
.project-details-wrapper .slider-button .cmn-next,
.project-details-wrapper .slider-button .cmn-prev {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
  border: 1px solid #e5e5e5;
}
.project-details-wrapper .slider-button .cmn-next i,
.project-details-wrapper .slider-button .cmn-prev i {
  color: #454750;
  font-size: 24px;
  transition: all 0.4s;
}
.project-details-wrapper .slider-button .cmn-next:hover,
.project-details-wrapper .slider-button .cmn-prev:hover {
  background: #ffb000;
  border-color: var(--theme);
  border: 1px solid #fff0;
}
.project-details-wrapper .slider-button .cmn-next:hover i,
.project-details-wrapper .slider-button .cmn-prev:hover i {
  color: var(--white);
}
@media (max-width: 1399px) {
  .project-details-wrapper .slider-button .cmn-next,
  .project-details-wrapper .slider-button .cmn-prev {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .project-details-wrapper .slider-button .cmn-next i,
  .project-details-wrapper .slider-button .cmn-prev i {
    font-size: 17px;
  }
}
@media (max-width: 1399px) {
  .project-details-wrapper .slider-button .cmn-next,
  .project-details-wrapper .slider-button .cmn-prev {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }
  .project-details-wrapper .slider-button .cmn-next i,
  .project-details-wrapper .slider-button .cmn-prev i {
    font-size: 16px;
  }
}
.project-details-wrapper .slider-button .previus-text {
  font-size: 22px;
  color: var(--title);
}
@media (max-width: 575px) {
  .project-details-wrapper .slider-button .previus-text {
    font-size: 18px;
  }
  .project-details-wrapper .slider-button .project-storke {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .project-details-wrapper .slider-button .previus-text {
    font-size: 16px;
  }
  .project-details-wrapper .slider-button .project-storke {
    font-size: 24px;
  }
}
@media (max-width: 470px) {
  .project-details-wrapper .slider-button .previus-text {
    font-size: 14px;
  }
  .project-details-wrapper .slider-button .project-storke {
    display: none;
  }
}
.award-container-wrapper.style1 {
  position: relative;
}
.award-container-wrapper.style1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--title);
  opacity: 0.2;
  z-index: 1;
}
.award-container-wrapper.style1 .section-title {
  margin-bottom: 50px;
}
.award-list-item {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.award-list-item .award-name {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
  transition: all 0.4s;
}
@media (max-width: 1899px) {
  .award-list-item .award-name {
    font-size: 30px;
    line-height: 80px;
  }
}
.award-list-item .award-thumb {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.award-list-item .award-thumb img {
  max-width: 100%;
}
.award-list-item .achieve-date {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
  transition: all 0.4s;
}
@media (max-width: 1899px) {
  .award-list-item .achieve-date {
    font-size: 30px;
    line-height: 80px;
  }
}
.award-list-item:hover .award-thumb {
  opacity: 1;
  visibility: visible;
}
.award-list-item:hover .award-name {
  color: var(--theme);
}
.award-list-item:hover .achieve-date {
  color: var(--theme);
}
.cta-container-wrapper.style2 {
  position: relative;
}
.cta-container-wrapper.style2 .shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cta-wrapper.style2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}
@media (max-width: 1199px) {
  .cta-wrapper.style2 {
    flex-direction: column;
  }
}
.cta-wrapper.style2 .cta-thumb1 {
  position: relative;
  display: inline-block;
}
.cta-wrapper.style2 .cta-thumb1 img {
  position: relative;
  z-index: 3;
  transform: rotate(-4deg);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
}
.cta-wrapper.style2 .cta-thumb1 .bg-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 243.642px;
  height: 263.384px;
  transform: rotate(-9.063deg);
  background-color: var(--white);
  opacity: 0.3;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.cta-wrapper.style2 .cta-text {
  color: var(--white);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  text-transform: uppercase;
  max-width: 890px;
}
@media (max-width: 1899px) {
  .cta-wrapper.style2 .cta-text {
    max-width: 800px;
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper.style2 .cta-text {
    max-width: 500px;
    font-size: 50px;
    line-height: 70px;
  }
}
.cta-wrapper.style2 .cta-text .stroke-text {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-fill-color: #fff0;
}
@media (max-width: 1899px) {
  .cta-wrapper.style2 .cta-text .stroke-text {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper.style2 .cta-text .stroke-text {
    font-size: 50px;
    line-height: 1;
  }
}
.cta-wrapper.style2 .cta-text .underline-text {
  text-decoration: underline;
}
.cta-wrapper.style2 .cta-text .stroke-underlined {
  color: var(--white);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-fill-color: #fff0;
  text-decoration-line: underline;
  text-transform: uppercase;
}
@media (max-width: 1899px) {
  .cta-wrapper.style2 .cta-text .stroke-underlined {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .cta-wrapper.style2 .cta-text .stroke-underlined {
    font-size: 50px;
    line-height: 1;
  }
}
.cta-wrapper.style2 .cta-thumb2 {
  position: relative;
  display: inline-block;
}
.cta-wrapper.style2 .cta-thumb2 img {
  position: relative;
  z-index: 3;
  transform: rotate(176deg);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transform: rotate(176deg);
  -moz-transform: rotate(176deg);
  -ms-transform: rotate(176deg);
  -o-transform: rotate(176deg);
}
.cta-wrapper.style2 .cta-thumb2 .bg-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 243.642px;
  height: 263.384px;
  transform: rotate(170.95deg);
  background-color: var(--white);
  opacity: 0.3;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-transform: rotate(170.95deg);
  -moz-transform: rotate(170.95deg);
  -ms-transform: rotate(170.95deg);
  -o-transform: rotate(170.95deg);
}
.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--bg-2);
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
}
.main-sidebar .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: var(--theme);
  border: none;
  color: var(--white);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul {
  padding-left: 0;
  list-style-type: none;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--title);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a span {
  transition: all 0.4s ease-in-out;
  color: var(--title);
}
.main-sidebar
  .single-sidebar-widget
  .news-widget-categories
  ul
  li:not(:last-child) {
  margin-bottom: 12px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
  background: var(--theme);
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--white) !important;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
  background: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--white);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e5e5;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-thumb
  img {
  width: 78px;
  height: 79px;
  object-fit: cover;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-content
  ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-content
  ul
  li {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-content
  ul
  li
  i {
  color: var(--theme2);
  margin-right: 5px;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-content
  h6 {
  font-weight: 700;
  margin-bottom: 0;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-content
  h6
  a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.main-sidebar
  .single-sidebar-widget
  .recent-post-area
  .recent-items
  .recent-content
  h6
  a:hover {
  color: #ffb000;
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-flex;
  padding: 10px 16px;
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--white);
  margin-right: 5px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background: var(--theme);
  color: var(--white) !important;
}
.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.recent-post .media-img {
  margin-right: 20px;
  width: 95px;
  overflow: hidden;
  flex: none;
}
.recent-post .media-img img {
  width: 100%;
  transition: 0.4s ease-in-out;
}
.recent-post .post-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 10px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: capitalize;
}
.recent-post .recent-post-meta {
  margin-bottom: -2px;
}
.recent-post .recent-post-meta .price {
  font-size: 18px;
  font-weight: 700;
  color: #c5c5c5;
}
.recent-post .recent-post-meta .price del {
  margin-right: 10px;
}
.recent-post .recent-post-meta .price strong {
  color: var(--theme);
  font-weight: 700;
}
.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.recent-post .recent-post-meta a i {
  margin-right: 9px;
  color: var(--theme2);
  transition: 0.4s;
}
.recent-post .recent-post-meta a:hover {
  color: var(--theme);
}
.recent-post .recent-post-meta a:hover i {
  color: var(--theme);
}
.recent-post:hover .media-img img {
  transform: scale(1.1);
}
.widget_shopping_cart .widget_title {
  margin-bottom: 30px;
  border-bottom: none;
}
.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}
.widget_shopping_cart ul li {
  list-style-type: none;
}
.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 30px 30px 90px;
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  margin-bottom: 0;
  text-align: left;
}
.widget_shopping_cart .mini_cart_item:first-child {
  border-top: 1px solid rgb(0 0 0 / 0.1);
}
.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 6px;
}
.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme);
}
.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  transform: translateY(-50%);
  color: var(--text);
}
.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme);
}
.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 18px;
}
.widget_shopping_cart .quantity {
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
}
.widget_shopping_cart .total {
  margin-top: 20px;
  font-size: 18px;
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.widget_shopping_cart .total strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.widget_shopping_cart .amount {
  padding-left: 5px;
}
.widget_shopping_cart .as-btn {
  margin-right: 15px;
}
.widget_shopping_cart .as-btn:last-child {
  margin-right: 0;
}
@media (max-width: 1199px) {
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
}
@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}
select,
.single-select,
.form-control,
.form-select,
textarea,
input {
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--border);
  color: var(--text);
  background-color: #fff0;
  font-size: 16px;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: 0.4s ease-in-out;
  border-radius: 0;
}
select:focus,
.single-select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme);
  background-color: var(--white);
}
select::placeholder,
.single-select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--text);
}
.form-text {
  font-size: 16px;
}
.form-text a {
  color: var(--title);
  font-weight: 500;
}
.single-select,
.form-select,
select {
  display: block;
  width: 100%;
  line-height: 56px;
  height: 56px;
  padding: 0 20px;
  font-size: 16px;
  cursor: pointer;
  background-image: none;
}
.single-select:after,
.form-select:after,
select:after {
  border-bottom: 1px solid var(--title);
  border-right: 1px solid var(--title);
  right: 20px;
  height: 7px;
  width: 7px;
}
.single-select .list,
.form-select .list,
select .list {
  width: 100%;
  display: block;
  border-radius: 0;
}
.single-select.style2,
.form-select.style2,
select.style2 {
  padding: 0 20px;
  font-size: 16px;
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 24px 12px;
}
.single-select.style2:after,
.form-select.style2:after,
select.style2:after {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 6px;
  border-top: solid 6px var(--body-color);
  border-left: solid 5px #fff0;
  border-right: solid 5px #fff0;
  transform: rotate(0);
  border-bottom: 0;
  margin-top: -2px;
  z-index: 9;
}
.single-select.style2.open:after,
.form-select.style2.open:after,
select.style2.open:after {
  border-top: 0;
  border-bottom: solid 6px var(--body-color);
  border-left: solid 5px #fff0;
  border-right: solid 5px #fff0;
  transform: none;
}
.single-select.style3,
.form-select.style3,
select.style3 {
  background: var(--border);
  padding: 0 20px;
  font-size: 14px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 50px 10px;
  background-repeat: no-repeat;
  background-position: right;
}
.single-select.style-white2,
.form-select.style-white2,
select.style-white2 {
  background: var(--white);
  border-color: var(--white);
  padding: 0 30px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 70px 12px;
  background-repeat: no-repeat;
  background-position: right;
}
.single-select.style-white2:after,
.form-select.style-white2:after,
select.style-white2:after {
  right: 30px;
}
.single-select {
  background-image: none !important;
}
textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
}
textarea.form-control.style2,
textarea.style2 {
  min-height: 105px;
}
.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 21px;
  font-size: 16px;
  color: var(--text);
}
.form-group > i.fa-envelope {
  padding-top: 1px;
}
.form-group > i.fa-comment {
  margin-top: -2px;
}
.form-group > i.fa-chevron-down {
  width: 17px;
  background-color: var(--text);
}
.form-group.has-label > i {
  top: 50px;
}
.form-group .input-icon {
  display: inline-block;
  position: absolute;
  right: 42px;
  top: 19px;
  font-size: 16px;
  color: var(--text);
}
.form-group .input-icon:hover {
  color: var(--theme);
}
.form-group.style-2 .form-control {
  padding: 0 30px 0 55px;
}
.form-group.style-2 textarea.form-control {
  padding: 16px 30px 30px 55px;
}
.form-group.style-white .form-control {
  background: var(--white);
}
.form-group.style-white2 .form-control {
  background: var(--white);
  border-color: var(--white);
  padding: 0 45px 0 30px;
}
.form-group.style-white2 textarea.form-control {
  padding: 16px 45px 30px 30px;
}
[class*="col-"].form-group > i {
  right: calc(var(--bs-gutter-x) / 2 + 25px);
}
[class*="col-"].form-group .form-icon-left {
  left: calc(var(--bs-gutter-x) / 2 + 30px);
  right: auto;
}
option:checked,
option:focus,
option:hover {
  background-color: var(--theme);
  color: var(--white);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
  border-radius: 10px;
}
input[type="checkbox"]:checked ~ label:after {
  opacity: 1;
}
input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
input[type="checkbox"] ~ label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3.5px;
  background: var(--white);
  border: 1px solid var(--border);
  height: 20px;
  width: 20px;
  text-align: center;
}
input[type="checkbox"] ~ label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  background: var(--theme);
  height: 8px;
  width: 8px;
  opacity: 0;
  transition: 0.4s;
}
input[type="checkbox"].style2 ~ label {
  color: #8b929c;
  padding-left: 23px;
  margin-bottom: -0.5em;
}
input[type="checkbox"].style2 ~ label:before {
  background-color: #fff;
  border: 1px solid #f7ccd7;
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}
input[type="checkbox"].style2:checked ~ label:before {
  color: var(--theme);
}
input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white);
  color: #fff0;
  transition: all 0.2s ease;
}
input[type="radio"]:checked ~ label::before {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--white);
}
label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
}
textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid red !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}
textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right
    calc(0.375em + 0.8875rem);
}
.row.no-gutters > .form-group {
  margin-bottom: 0;
}
.form-messages {
  display: none;
}
.form-messages.mb-0 * {
  margin-bottom: 0;
}
.form-messages.success {
  color: green;
  display: block;
}
.form-messages.error {
  color: red;
  display: block;
}
.form-messages pre {
  padding: 0;
  background-color: #fff0;
  color: inherit;
}
.hero-1 {
  background-color: var(--theme);
  position: relative;
}
.hero-1::before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 106px;
  height: 100%;
  content: "";
  background-color: #273339;
  z-index: 9;
}
@media (max-width: 1899px) {
  .hero-1::before {
    display: none;
  }
}
.hero-1::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgb(30 41 46 / 0.64);
}
.hero-1 .container-fluid {
  padding: 0 180px;
}
@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
.hero-1 .hero-content {
  position: relative;
  height: 100%;
  z-index: 9;
  padding-top: 180px;
}
@media (max-width: 1899px) {
  .hero-1 .hero-content {
    padding-top: 150px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content {
    padding-top: 100px;
  }
}
.hero-1 .hero-content h1 {
  color: var(--white);
  letter-spacing: -3.2px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 58px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 36px;
  }
}
.hero-1 .hero-content h1 span {
  font-weight: 200;
  color: #76878f;
}
.hero-1 .hero-content .arrow-icon {
  margin-top: 50px;
}
.hero-1 .hero-content .hero-counter-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-counter-items {
    flex-wrap: wrap;
    gap: 30px;
    position: static;
  }
}
.hero-1 .hero-content .hero-counter-items .counter-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-1 .hero-content .hero-counter-items .counter-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}
.hero-1 .hero-content .hero-counter-items .counter-box .content .star {
  color: #ff821c;
}
.hero-1 .hero-content .hero-counter-items .counter-box .content p {
  font-weight: 500;
}
.hero-1 .hero-image {
  margin-right: -25%;
  height: 900px;
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-left: 0;
    margin-right: -40px;
    height: 880px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-image {
    height: 650px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-image {
    height: 550px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-image {
    height: 450px;
  }
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-1 .social-list {
  transform: rotate(-90deg);
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 20px;
  z-index: 9;
}
@media (max-width: 1899px) {
  .hero-1 .social-list {
    display: none;
  }
}
.hero-1 .social-list li {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-1 .social-list li a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.hero-1 .hero-logo {
  position: absolute;
  top: 40px;
  left: 30px;
  z-index: 9;
}
.hero-1 .hero-logo img {
  width: 50px;
}
@media (max-width: 1899px) {
  .hero-1 .hero-logo {
    display: none;
  }
}
.hero-2 {
  background-color: #f6f6f6;
  padding: 150px 0 80px;
  position: relative;
  z-index: 8;
}
.hero-2 .container-fluid {
  padding: 0 175px;
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
.hero-2 .expert-image {
  margin-bottom: 50px;
}
.hero-2 .expert-image img {
  width: 100%;
  height: 100%;
}
.hero-2 .hero-content h1 {
  font-size: 74px;
  font-weight: 500;
  line-height: 127.027%;
  letter-spacing: -2.96px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 72px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 58px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 36px;
  }
}
.hero-2 .hero-content p {
  max-width: 651px;
  font-weight: 500;
}
.hero-2 .hero-content .client-img {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .client-img {
    flex-wrap: wrap;
  }
}
.hero-2 .hero-content .client-img span {
  font-size: 14px;
  font-weight: 600;
  color: var(--title);
}
.hero-2 .social-list {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .hero-2 .social-list {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-2 .social-list .social-icon {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgb(30 41 46 / 0.8);
}
.hero-2 .social-list ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  .hero-2 .social-list ul {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.hero-2 .social-list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-2 .social-list ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--title);
}
.hero-2 .shape-img {
  position: absolute;
  bottom: 140px;
  right: 0;
  z-index: -1;
}
.hero-2 .video-btn {
  position: absolute;
  top: 61%;
  left: 58%;
  transform: translate(-50%, -50%);
  z-index: 9;
  display: inline-block;
  width: 122px;
  height: 122px;
  background: #273339;
  border-radius: 50%;
  text-align: center;
  line-height: 122px;
  font-size: 24px;
  color: var(--white);
}
@media (max-width: 991px) {
  .hero-2 .video-btn {
    display: none;
  }
}
.hero-2 .video-btn img {
  animation: cir36 10s linear infinite;
  position: absolute;
  top: 12px;
  left: 10px;
}
.hero-section-4 {
  position: relative;
}
.hero-section-4 .swiper-slide.swiper-slide-active .slider-image {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-4 .social-list {
  transform: rotate(-90deg);
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 20px;
  z-index: 9;
}
@media (max-width: 1899px) {
  .hero-section-4 .social-list {
    display: none;
  }
}
.hero-section-4 .social-list li {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-section-4 .social-list li a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.hero-section-4 .hero-logo {
  position: absolute;
  top: 92px;
  left: 30px;
  z-index: 9999;
}
.hero-section-4 .hero-logo img {
  width: 50px;
}
@media (max-width: 1899px) {
  .hero-section-4 .hero-logo {
    display: none;
  }
}
.hero-section-4::before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 106px;
  height: 100%;
  content: "";
  opacity: 0.65;
  background: #1e292e;
  z-index: 9;
}
@media (max-width: 1899px) {
  .hero-section-4::before {
    display: none;
  }
}
.hero-4 {
  position: relative;
}
.hero-4 .container-fluid {
  padding: 0 228px;
}
@media (max-width: 1600px) {
  .hero-4 .container-fluid {
    padding: 50px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .container-fluid {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .container-fluid {
    padding: 30px;
  }
}
.hero-4 .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  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;
}
.hero-4 .slider-image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  background: #1e292e;
}
.hero-4 .hero-content {
  position: relative;
  z-index: 9;
  padding: 280px 0 200px;
}
@media (max-width: 1600px) {
  .hero-4 .hero-content {
    padding: 250px 0 200px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .hero-content {
    padding: 220px 0 200px;
  }
}
@media (max-width: 1199px) {
  .hero-4 .hero-content {
    padding: 190px 0 170px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    padding: 160px 0 140px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content {
    padding: 130px 0 120px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content {
    padding: 100px 0 90px;
  }
}
.hero-4 .hero-content p {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white);
}
.hero-4 .hero-content h1 {
  font-size: 74px;
  color: var(--white);
  font-weight: 700;
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-4 .hero-content .circle-text {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}
.hero-4 .hero-content .circle-text .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 24px;
}
.hero-4 .hero-content .circle-text img {
  animation: cir36 10s linear infinite;
}
.hero-section-4 {
  position: relative;
}
.hero-section-4 .array-button {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}
@media (max-width: 1199px) {
  .hero-section-4 .array-button {
    display: none;
  }
}
.hero-section-4 .array-button .array-prevs,
.hero-section-4 .array-button .array-nexts {
  width: 80px;
  height: 56px;
  line-height: 56px;
}
.hero-section-4 .array-button .array-prevs {
  background-color: var(--white);
  color: var(--header);
}
.hero-section-4 .array-button .array-nexts {
  background-color: #273339;
  color: var(--white);
}
.intro-section {
  position: relative;
}
.intro-section .array-button {
  display: flex;
  align-items: center;
  gap: 500px;
  margin-top: 40px;
  position: absolute;
  z-index: 999;
  bottom: 80px;
  left: 120px;
}
@media (max-width: 1199px) {
  .intro-section .array-button {
    display: none;
  }
}
.intro-section .array-button::before {
  position: absolute;
  top: 14px;
  left: 100px;
  content: "";
  width: 465px;
  height: 1px;
  opacity: 0.5;
  background: var(--white);
}
@media (max-width: 1899px) {
  .intro-section .array-button::before {
    display: none;
  }
}
.intro-section .array-button .array-prevs,
.intro-section .array-button .array-nexts {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.intro-section .array-button .array-nexts {
  color: var(--white);
}
.section-bg {
  background-color: #e9eff2;
}
.section-bg2 {
  background-color: var(--theme);
}
.maxw-470 {
  max-width: 470px;
}
.mt-n368 {
  margin-top: -368px;
}
.pb-425 {
  padding-bottom: 425px !important;
}
.checklist li {
  margin-bottom: 15px;
}
.checklist li:last-child {
  margin-bottom: 0;
}
.checklist li i {
  color: var(--white);
  font-size: 10px;
  margin-right: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background-color: var(--title);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.profile-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-meta .thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.profile-meta .content .name {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.64px;
}
.profile-meta .content .designation {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.56px;
}
.profile-meta-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1199px) {
  .profile-meta-2 {
    flex-wrap: wrap;
  }
}
.profile-meta-2 .thumb img {
  margin-left: -25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 1199px) {
  .profile-meta-2 .thumb img {
    margin-left: 0;
  }
}
.process-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .process-box {
    flex-wrap: wrap;
  }
}
.process-box .number-circle {
  background-color: var(--theme3);
  color: var(--theme);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.process-box:hover .number-circle {
  background-color: #ffb000;
  color: var(--header);
}
.process-box .content {
  max-width: 323px;
}
.process-box .content .title {
  color: #162340;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.process-box .content .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}
.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  margin: -1.7em 0;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm.style1 {
  animation: scroll2 60s linear infinite;
  -webkit-animation: scroll2 60s linear infinite;
  color: var(--title);
}
.scrolling-wrap .comm.style1 .dot {
  -webkit-text-stroke: 1px var(--title);
  -webkit-text-fill-color: #fff0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  text-transform: uppercase;
}
.scrolling-wrap .comm.style1 .cmn-textslide {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  text-transform: capitalize;
}
.scrolling-wrap .comm.style1 .cmn-textslide.style2 {
  color: #aec0c9;
}
.scrolling-wrap .comm.style1 .cmn-textslide.style3 {
  font-weight: 600;
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .scrolling-wrap {
    gap: 14px;
  }
  .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.service-card.style1 {
  padding: 10px;
  background-color: var(--white);
  position: relative;
  z-index: 9;
}
.service-card.style1 .thumb img {
  width: 100%;
  height: 100%;
}
.service-card.style1 .content {
  position: relative;
  margin: 20px 20px 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.service-card.style1 .content h4 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.service-card.style1 .content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.96px;
}
.service-card.style1 .content h4 a:hover {
  color: #ffb000;
}
.service-card.style1 .content .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.64px;
}
.service-card.style1 .content .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme3);
  position: absolute;
  top: -50px;
  right: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  border: 4px solid var(--theme3);
}
.service-card.style1 .content .icon i {
  display: inline-block;
  color: var(--theme);
  font-size: 26px;
  text-align: center;
}
.service-card.style1 .link-meta {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card.style1 .link-meta a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.64px;
}
.service-card.style1 .link-meta a:hover {
  color: #ffb000;
}
.service-card.style1:hover .content .icon {
  background-color: #ffb000;
  border: 4px solid var(--white);
}
.service-card.style1:hover .content .icon i {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.service-card.style2 {
  display: flex;
  align-items: center;
  background-color: #e9eff2;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .service-card.style2 {
    flex-wrap: wrap;
    gap: 30px;
    display: initial;
  }
}
.service-card.style2 .content {
  padding: 30px 20px 30px 30px;
  max-width: 310px;
}
.service-card.style2 .content .card-subtitle {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
}
.service-card.style2 .content .card-subtitle img {
  margin-right: 10px;
}
.service-card.style2 .content h4 {
  margin-top: 10px;
  margin-bottom: 100px;
}
.service-card.style2 .content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.service-card.style2 .content h4 a:hover {
  color: #ffb000;
}
.service-card.style2 .thumb {
  overflow: hidden;
  width: 262px;
  height: 340px;
}
@media (max-width: 767px) {
  .service-card.style2 .thumb {
    max-width: 600px;
    width: initial;
  }
  .service-card.style2 .thumb img {
    width: 100% !important;
  }
}
.service-card.style2 .thumb img {
  width: 262px;
  height: 340px;
  object-fit: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.service-card.style2:hover .thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.service-card.style3 {
  display: flex;
  align-items: start;
  gap: 30px;
}
@media (max-width: 767px) {
  .service-card.style3 {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.service-card.style3 .content h3 {
  margin-bottom: 16px;
}
.service-card.style3 .content h3 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.48px;
}
.service-card.style3 .content h3 a:hover {
  color: #ffb000;
}
.service-card.style3 .content .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
.service-card.style3 .content .link a {
  color: var(--theme);
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  position: relative;
  display: inline-block;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-card.style3 .content .link a:hover {
  color: #ffb000;
  background-size: 100% 2px;
  background-image: linear-gradient(#ffb000, #ffb000);
}
.service-card.style3 .content .link a i {
  margin-left: 5px;
}
.project-card.style1 {
  position: relative;
}
.project-card.style1.child2 {
  margin-top: 120px;
}
@media (max-width: 1199px) {
  .project-card.style1.child2 {
    margin-top: 0;
  }
}
.project-card.style1 .thumb img {
  width: 100%;
}
.project-card.style1 .project-content {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  padding: 10px 10px 10px 20px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-card.style1 .project-content .content .tag {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
}
.project-card.style1 .project-content .content h4 a {
  color: var(--theme2);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.project-card.style1 .project-content .content h4 a:hover {
  color: #ffb000;
}
.project-card.style1 .project-content .link-meta a {
  display: inline-block;
  width: 56px;
  height: 91px;
  line-height: 91px;
  text-align: center;
  border-radius: 24px;
  background-color: #e8eaea;
}
.project-card.style1 .project-content .link-meta a i {
  color: var(--theme);
  font-size: 20px;
}
.project-card.style1 .project-content .link-meta a:hover {
  background-color: #ffb000;
}
.project-card.style1 .project-content .link-meta a:hover i {
  color: var(--header);
}
.project-card.style2 {
  position: relative;
}
.project-card.style2 .project-thumb {
  position: relative;
}
.project-card.style2 .project-thumb img {
  width: 100%;
}
.project-card.style2 .project-thumb:before {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(1deg, #273339 -4.62%, #fff0 99.51%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.project-card.style2 .project-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 40px;
  left: 40px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.project-card.style2 .project-content .tag {
  color: #aec0c9;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
}
.project-card.style2 .project-content .project-title a {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
}
.project-card.style2 .project-content .project-title a:hover {
  color: #ffb000;
}
.project-card.style2 .icon {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.project-card.style2 .icon i {
  font-size: 50px;
  color: var(--white);
}
.project-card.style2 .icon i:hover {
  color: #ffb000;
}
.project-card.style2:hover .project-thumb:before {
  opacity: 1;
  visibility: visible;
}
.project-card.style2:hover .project-content {
  opacity: 1;
  visibility: visible;
}
.project-card.style2:hover .icon {
  opacity: 1;
  visibility: visible;
}
.team-card.style1 {
  position: relative;
  z-index: 99;
}
.team-card.style1 .thumb {
  position: relative;
  overflow: hidden;
}
.team-card.style1 .thumb a img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.team-card.style1 .thumb .social-media {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.team-card.style1 .thumb .social-media li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--white);
  color: var(--white);
}
.team-card.style1 .thumb .social-media li a:hover {
  background-color: #ffb000;
  color: var(--header) !important;
  border: 1px solid #fff0;
}
.team-card.style1 .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.team-card.style1 .content .name-wrap .name {
  margin-top: 15px;
  margin-bottom: 1px;
}
.team-card.style1 .content .name-wrap .name a {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.88px;
}
.team-card.style1 .content .name-wrap .name a:hover {
  color: #ffb000;
}
.team-card.style1 .content .name-wrap .designation {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.team-card.style1 .content .link-meta {
  margin-top: 5px;
}
.team-card.style1 .content .link-meta a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--bg-1);
}
.team-card.style1 .content .link-meta a i {
  font-size: 18px;
}
.team-card.style1 .content .link-meta a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.team-card.style1:hover .thumb a img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.team-card.style1:hover .thumb .social-media {
  opacity: 1;
  visibility: visible;
  left: 24px;
}
.team-card.style3 {
  position: relative;
}
.team-card.style3 .team-thumb img {
  width: 100%;
  height: 100%;
}
.team-card.style3 .team-content {
  position: absolute;
  bottom: 34px;
  left: 40px;
  right: 40px;
  text-align: center;
  padding: 54px 24px 24px;
  background: rgb(39 51 57 / 0.9);
  backdrop-filter: blur(4px);
}
.team-card.style3 .team-content h3 {
  margin-top: 20px;
}
.team-card.style3 .team-content h3 a {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
}
.team-card.style3 .team-content .text {
  opacity: 0.8;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.32px;
}
.team-card.style3 .team-content .social-links {
  max-width: 60px;
  height: 60px;
  margin: -80px auto auto;
  position: relative;
  background: rgb(39 51 57 / 0.3);
  backdrop-filter: blur(4px);
  text-align: center;
  border: 1px solid var(--white);
  transition: all 0.4s ease-in-out;
}
.team-card.style3 .team-content .social-links .social-media {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.team-card.style3 .team-content .social-links .social-media a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
}
.team-card.style3 .team-content .social-links .social-media a i {
  color: var(--title);
  transition: all 0.4s ease-in-out;
}
.team-card.style3 .team-content .social-links .social-media a:hover {
  background-color: #ffb000;
}
.team-card.style3 .team-content .social-links .social-media a:hover i {
  color: var(--header);
}
.team-card.style3 .team-content .social-links .plus-btn {
  position: relative;
  opacity: 1;
  visibility: visible;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
  transition: all 0.4s ease-in-out;
}
.team-card.style3 .team-content .social-links .plus-btn i {
  color: var(--title);
}
.team-card.style3 .team-content .social-links:hover {
  max-width: 210px;
}
.team-card.style3 .team-content .social-links:hover .social-media {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.team-card.style3 .team-content .social-links:hover .plus-btn {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .testimonial-section {
    background-image: initial !important;
    background-color: #e9eff2;
  }
}
@media (max-width: 991px) {
  .testimonial-section .testimonialSliderThree {
    padding-top: 0 !important;
  }
}
.testimonial-card.style1 {
  position: relative;
}
.testimonial-card.style1 .testimonial-content {
  position: relative;
  padding: 45px 32px 52px 40px;
  background-color: var(--white);
  border-bottom: 4px solid var(--theme2);
  box-shadow: 0 10px 60px 0 rgb(0 0 0 / 0.1);
}
.testimonial-card.style1 .testimonial-content .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.testimonial-card.style1 .testimonial-content .icon-wrapper .star {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card.style1 .testimonial-content .icon-wrapper .star i {
  color: #f68b21;
  font-size: 14px;
}
.testimonial-card.style1 .testimonial-content .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.testimonial-card.style1 .testimonial-content .shape {
  position: absolute;
  left: 40px;
  bottom: -24px;
}
.testimonial-card.style1 .profile-meta {
  margin-top: 30px;
  margin-left: 40px;
}
.testimonial-card.style2 {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgb(30 41 46 / 0.15);
  background-color: #ecf1f4;
}
.testimonial-card.style2 .testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.testimonial-card.style2 .testimonial-header .profile .name {
  color: #00194c;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
}
.testimonial-card.style2 .testimonial-header .profile .designation {
  color: #445375;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.testimonial-card.style2 .testimonial-content {
  position: relative;
}
.testimonial-card.style2 .testimonial-content .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.testimonial-card.style2 .testimonial-content .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.testimonial-card.style2 .testimonial-content .icon-wrapper .star {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card.style2 .testimonial-content .icon-wrapper .star i {
  color: #f68b21;
  font-size: 14px;
}
.testimonial-card.style2 .profile-meta {
  margin-top: 30px;
  margin-left: 40px;
}
.testimonial-card.style3 {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgb(30 41 46 / 0.15);
  background-color: #ecf1f4;
}
.testimonial-card.style3 .testimonial-header .profile {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 20px;
}
.testimonial-card.style3 .testimonial-header .profile .thumb {
  margin-top: -120px;
}
.testimonial-card.style3 .testimonial-header .profile .thumb img {
  max-width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-card.style3 .testimonial-header .profile .content .name {
  color: #00194c;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
}
.testimonial-card.style3 .testimonial-header .profile .content .designation {
  color: #445375;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.testimonial-card.style3 .testimonial-content {
  position: relative;
}
.testimonial-card.style3 .testimonial-content .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.testimonial-card.style3 .testimonial-content .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.testimonial-card.style3 .testimonial-content .icon-wrapper .star {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card.style3 .testimonial-content .icon-wrapper .star i {
  color: #f68b21;
  font-size: 14px;
}
.testimonial-card.style3 .profile-meta {
  margin-top: 30px;
  margin-left: 40px;
}
.testimonial-card.style4 .text {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 50px;
}
.testimonial-card.style4 .testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card.style1 .thumb {
  overflow: hidden;
}
.blog-card.style1 .thumb img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style1 .blog-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 20px 30px 76px;
  background-color: var(--theme3);
}
.blog-card.style1 .blog-content .date {
  position: absolute;
  top: 80px;
  left: -40px;
  display: flex;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  padding: 10px;
  background-color: var(--theme2);
  width: 152px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.blog-card.style1 .blog-content .date img {
  margin-right: 10px;
}
.blog-card.style1 .blog-content .content .meta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.blog-card.style1 .blog-content .content .meta .posted-by img {
  margin-right: 8px;
}
.blog-card.style1 .blog-content .content .meta .tag {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.blog-card.style1 .blog-content .content .meta .tag img {
  margin-right: 8px;
}
.blog-card.style1 .blog-content .content h4 {
  margin-top: 15px;
  margin-bottom: 25px;
}
.blog-card.style1 .blog-content .content h4 a {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.blog-card.style1 .blog-content .content h4 a:hover {
  color: #ffb000;
}
.blog-card.style1 .blog-content .content .link-meta a {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 18px;
  color: var(--header);
}
.blog-card.style1 .blog-content .content .link-meta a i {
  margin-left: 5px;
}
.blog-card.style1 .blog-content .content .link-meta a:hover {
  color: #ffb000;
}
.blog-card.style1:hover .thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.blog-card.style2 {
  border: 1px solid #e6e6e6;
  background-color: var(--white);
}
.blog-card.style2 .thumb {
  overflow: hidden;
}
.blog-card.style2 .thumb img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style2 .blog-content {
  padding: 30px 24px;
}
.blog-card.style2 .blog-content .tag {
  margin-bottom: 10px;
}
.blog-card.style2 .blog-content .tag a {
  display: inline-block;
  padding: 1px 19px;
  background-color: var(--theme2);
  color: var(--theme3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}
.blog-card.style2 .blog-content h4 {
  margin-bottom: 20px;
}
.blog-card.style2 .blog-content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.96px;
}
.blog-card.style2 .blog-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-card.style2 .blog-content .blog-meta .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style2 .blog-content .blog-meta .comment {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style2:hover .thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.blog-card.style3 {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid #e6e6e6;
  background-color: var(--white);
}
@media (max-width: 1199px) {
  .blog-card.style3 {
    flex-wrap: wrap;
  }
}
.blog-card.style3 .thumb {
  overflow: hidden;
}
.blog-card.style3 .thumb img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style3 .blog-content {
  max-width: 300px;
}
.blog-card.style3 .blog-content .tag {
  margin-bottom: 10px;
}
.blog-card.style3 .blog-content .tag a {
  display: inline-block;
  padding: 1px 19px;
  background-color: var(--theme2);
  color: var(--theme3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}
.blog-card.style3 .blog-content .tag a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.blog-card.style3 .blog-content h4 {
  margin-bottom: 20px;
}
.blog-card.style3 .blog-content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.96px;
}
.blog-card.style3 .blog-content h4 a:hover {
  color: #ffb000;
}
.blog-card.style3 .blog-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-card.style3 .blog-content .blog-meta .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style3 .blog-content .blog-meta .comment {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style3:hover .thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.blog-card.style4 .blog-thumb img {
  max-width: 100%;
}
@media (max-width: 1199px) {
  .blog-card.style4 .blog-thumb img {
    width: 100%;
    height: 100%;
  }
}
.blog-card.style4 .blog-content {
  padding: 30px;
  background: #e9eff2;
  max-width: 370px;
  margin-left: 40px;
  margin-top: -75px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .blog-card.style4 .blog-content {
    margin-top: 0;
    margin-left: 0;
    max-width: initial;
  }
}
.blog-card.style4 .blog-content .tag {
  margin-bottom: 10px;
}
.blog-card.style4 .blog-content .tag a {
  display: inline-block;
  padding: 1px 19px;
  background-color: var(--theme2);
  color: var(--theme3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}
.blog-card.style4 .blog-content h4 {
  margin-bottom: 20px;
}
.blog-card.style4 .blog-content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.96px;
}
.blog-card.style4 .blog-content h4 a:hover {
  color: #ffb000;
}
.blog-card.style4 .blog-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .blog-card.style4 .blog-content .blog-meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.blog-card.style4 .blog-content .blog-meta .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style4 .blog-content .blog-meta .comment {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style4 .blog-content .link-meta a {
  display: inline-block;
  font-size: 16px;
  color: var(--header);
  font-weight: 500;
}
.blog-card.style4 .blog-content .link-meta a i {
  margin-left: 5px;
}
.blog-card.style4 .blog-content .link-meta a:hover {
  color: #ffb000;
}
.blog-card.style5 {
  border: 1px solid #e6e6e6;
  background-color: var(--theme3);
  margin-top: 30px;
}
.blog-card.style5 .thumb {
  overflow: hidden;
}
.blog-card.style5 .thumb img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style5 .blog-content {
  padding: 30px 24px;
}
.blog-card.style5 .blog-content .blog-meta-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 1199px) {
  .blog-card.style5 .blog-content .blog-meta-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-card.style5 .blog-content .blog-meta-wrapper .tag {
  margin-right: 30px;
}
.blog-card.style5 .blog-content .blog-meta-wrapper .tag a {
  display: inline-block;
  padding: 1px 19px;
  background-color: var(--theme2);
  color: var(--theme3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}
.blog-card.style5 .blog-content .blog-meta-wrapper .tag a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.blog-card.style5 .blog-content .blog-meta-wrapper .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-card.style5 .blog-content .blog-meta-wrapper .blog-meta .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style5 .blog-content .blog-meta-wrapper .blog-meta .comment {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style5 .blog-content h4 {
  margin-bottom: 15px;
}
.blog-card.style5 .blog-content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.96px;
}
.blog-card.style5 .blog-content h4 a:hover {
  color: #ffb000;
}
.blog-card.style5 .blog-content .text {
  color: var(--border-5);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
.blog-card.style5:hover .thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.blog-card.style6 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  background-color: var(--theme3);
  margin-top: 30px;
}
@media (max-width: 575px) {
  .blog-card.style6 {
    flex-wrap: wrap;
  }
}
.blog-card.style6 .thumb {
  overflow: hidden;
}
.blog-card.style6 .thumb img {
  width: 100%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style6 .blog-content {
  max-width: 300px;
}
.blog-card.style6 .blog-content .tag {
  margin-bottom: 10px;
}
.blog-card.style6 .blog-content .tag a {
  display: inline-block;
  padding: 1px 19px;
  background-color: #fff0;
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  border: 1px solid #e6e6e6;
}
.blog-card.style6 .blog-content .tag a:hover {
  background-color: #ffb000;
  color: var(--header);
}
.blog-card.style6 .blog-content h4 {
  margin-bottom: 10px;
}
.blog-card.style6 .blog-content h4 a {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.96px;
}
.blog-card.style6 .blog-content h4 a:hover {
  color: #ffb000;
}
.blog-card.style6 .blog-content .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-card.style6 .blog-content .blog-meta .date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style6 .blog-content .blog-meta .comment {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card.style6:hover .thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.counter-box-card.style3 {
  padding: 36px;
  display: inline-block;
  background-color: var(--white);
  box-shadow: 0 4px 63px 0 rgb(15 28 51 / 0.1);
  max-width: 185px;
  max-height: 140px;
  margin-top: 15px;
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .counter-box-card.style3 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    margin-top: 0;
    margin-right: 0;
  }
}
.counter-box-card.style3 .counter {
  color: var(--theme);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
}
.counter-box-card.style3 .text {
  color: var(--theme);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.team-bg-area {
  position: relative;
}
.team-bg-area::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #e9eff2;
  height: 60%;
  z-index: -1;
}
.about-wrapper.style1 .about-thumb {
  position: relative;
}
.about-wrapper.style1 .about-thumb .thumb1 {
  position: relative;
  z-index: 2;
  max-width: 386px;
}
.about-wrapper.style1 .about-thumb .thumb1 img {
  width: 100%;
  height: 100%;
}
.about-wrapper.style1 .about-thumb .thumb2 {
  position: absolute;
  z-index: 4;
  bottom: 0;
  border: 10px solid var(--white);
  right: 29px;
}
@media (max-width: 575px) {
  .about-wrapper.style1 .about-thumb .thumb2 {
    right: 0;
    max-width: 200px;
    bottom: 70px;
  }
  .about-wrapper.style1 .about-thumb .thumb2 img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper.style1 .about-thumb .shape {
  margin-top: 20px;
}
.about-wrapper.style1 .about-thumb .counter-box {
  position: absolute;
  top: 70px;
  right: 40px;
  transform: rotate(-90deg);
}
@media (max-width: 1199px) {
  .about-wrapper.style1 .about-thumb .counter-box {
    display: none;
  }
}
.about-wrapper.style1 .about-thumb .counter-box h2 {
  font-size: 48px;
  font-weight: 700;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(116 125 130 / 0.35);
  -webkit-text-fill-color: #fff0;
}
.about-wrapper.style1 .about-thumb .counter-box p {
  font-weight: 500;
  font-size: 18px;
  color: #1e292e;
}
.about-wrapper.style1 .about-content .section-title {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.about-wrapper.style1 .about-content .checklist-wrapper {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .about-wrapper.style1 .about-content .checklist-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.about-wrapper.style1 .about-content .contact-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper.style1 .about-content .contact-meta {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.service-container-wrapper.style1 {
  position: relative;
}
.service-container-wrapper.style1 .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.project-wrapper.style1 .section-title {
  margin-bottom: 50px;
}
.project-wrapper.style1 .projectSliderOne .swiper {
  overflow: visible;
}
.brand-wrapper.style1 .brand-title {
  position: relative;
  color: var(--theme);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 30px;
}
.brand-wrapper.style1 .brand-title:before {
  position: absolute;
  content: "";
  width: 430px;
  height: 1px;
  top: 15px;
  left: 0;
  background-color: var(--border);
}
@media (max-width: 1199px) {
  .brand-wrapper.style1 .brand-title:before {
    display: none;
  }
}
.brand-wrapper.style1 .brand-title:after {
  position: absolute;
  content: "";
  width: 430px;
  height: 1px;
  top: 15px;
  right: 0;
  background-color: var(--border);
}
@media (max-width: 1199px) {
  .brand-wrapper.style1 .brand-title:after {
    display: none;
  }
}
.brand-logo-box {
  max-width: 250px;
  height: 50px;
  overflow: hidden;
  margin: auto;
  position: relative;
  display: block;
}
.brand-logo-box:hover a img.gray {
  opacity: 1;
  visibility: visible;
  transition: all 0.7s ease-in-out;
  transform: translateY(0%);
}
.brand-logo-box:hover a img.original {
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease-in-out;
  transform: translateY(100%);
}
.brand-logo-box img {
  margin: 0 auto;
  transition: all 0.7s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.brand-logo-box img.gray {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease-in-out;
  transform: translateY(-100%);
}
.brand-logo-box img.original {
  opacity: 0.2;
  transition: all 0.7s ease-in-out;
  transform: translateY(0%);
}
.team-wrapper.style1 .section-title {
  margin-bottom: 50px;
}
.testimonial-wrapper.style1 .testimonial-content {
  position: relative;
}
.testimonial-wrapper.style1 .testimonial-content .arrow-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
.testimonial-wrapper.style1 .testimonial-content .arrow-btn .slider-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style1 .testimonial-content .arrow-btn .slider-prev:hover {
  background-color: #ffb000;
  color: var(--header);
}
.testimonial-wrapper.style1 .testimonial-content .arrow-btn .slider-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style1 .testimonial-content .arrow-btn .slider-next:hover {
  background-color: #ffb000;
  color: var(--header);
}
.testimonial-wrapper.style1 .testimonial-content .profile-rating .logo {
  margin-bottom: 10px;
}
.testimonial-wrapper.style1 .testimonial-content .profile-rating .logo i {
  color: #20e281;
  margin-right: 5px;
}
.testimonial-wrapper.style1 .testimonial-content .profile-rating .rating-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-wrapper.style1
  .testimonial-content
  .profile-rating
  .rating-area
  .profile-thumbs {
  margin-left: 20px;
}
.testimonial-wrapper.style1
  .testimonial-content
  .profile-rating
  .rating-area
  .profile-thumbs
  img {
  margin-left: -20px;
  border: 1px solid var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-wrapper.style1
  .testimonial-content
  .profile-rating
  .rating-area
  .rating
  .star {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-wrapper.style1
  .testimonial-content
  .profile-rating
  .rating-area
  .rating
  .star
  i {
  color: #f68b21;
  font-size: 10px;
}
.testimonial-wrapper.style1 .testimonialSliderOne {
  margin-right: -295px;
  margin-top: -40px;
}
.testimonial-wrapper.style1 .testimonialSliderOne .swiper-slide {
  margin: 38px 30px 30px 0;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style1
  .testimonialSliderOne
  .swiper-slide.swiper-slide-active
  .testimonial-card.style1 {
  position: relative;
}
.testimonial-wrapper.style1
  .testimonialSliderOne
  .swiper-slide.swiper-slide-active
  .testimonial-card.style1
  .testimonial-content {
  background-color: var(--theme3);
  box-shadow: none;
}
.testimonial-wrapper.margin-minus-bottom {
  margin-bottom: -30px;
}
.map-items .googpemap iframe {
  width: 100%;
  height: 600px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}
.contact-map.style2 {
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.contact-info-wrapper.style2 {
  position: absolute;
  top: 0;
  left: 90px;
  right: 90px;
  max-width: 430px;
  margin: 0 auto;
  padding: 30px;
  background: var(--theme);
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}
.contact-info-wrapper.style2 .shape-left {
  position: absolute;
  top: 0;
  left: -28px;
}
.contact-info-wrapper.style2 .shape-right {
  position: absolute;
  top: 0;
  right: -28px;
}
.contact-info-wrapper.style2 h2 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}
.contact-info-wrapper.style2 .contact-info.style2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}
@media (max-width: 1199px) {
  .contact-info-wrapper.style2 .contact-info.style2 {
    flex-wrap: wrap;
  }
}
.contact-info-wrapper.style2 .contact-info.style2 .content h3 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.contact-info-wrapper.style2 .contact-info.style2 .content h3 a {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.contact-info-wrapper.style2 .contact-info.style2 .icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background: rgb(255 255 255 / 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 1399px) {
  .contact-info-wrapper.style2 {
    left: 40px;
    right: 40px;
  }
}
@media (max-width: 767px) {
  .contact-info-wrapper.style2 {
    left: 10px;
    right: 10px;
  }
}
.contact-form-wrapper.style1 {
  padding: 60px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 25px 0 rgb(0 0 0 / 0.06);
}
@media (max-width: 767px) {
  .contact-form-wrapper.style1 {
    padding: 10px;
  }
}
.contact-form.style1 {
  padding: 46px 42px 46px 38px;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.contact-form.style1 h2 {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.contact-form.style1 input {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.contact-form.style1 textarea.form-control {
  border-radius: 8px;
  margin-bottom: 25px;
}
.contact-form.style1 .single-select {
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 575px) {
  .contact-form.style1 {
    padding: 30px;
  }
}
.contact-form.style1 .theme-btn::before {
  transform: translateX(-50%) rotate(-5deg);
}
.contact-form.style1 .theme-btn:hover i {
  color: var(--title) !important;
}
.blog-wrapper.style1 .section-title {
  margin-bottom: 55px;
}
.cta-container-wrapper.style1 {
  position: relative;
}
.cta-container-wrapper.style1 .section-title {
  position: relative;
  z-index: 3;
}
.cta-container-wrapper.style1 .btn-wrapper {
  position: relative;
  z-index: 3;
}
.cta-container-wrapper.style1:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  opacity: 0.7;
}
.service-wrapper.style2 .service-content .btn-wrapper {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .service-wrapper.style2 .service-links {
    margin-bottom: -20px;
  }
}
.service-wrapper.style2 .service-links .link-box {
  transition: all 0.4s ease-in-out;
}
.service-wrapper.style2 .service-links .link-box a {
  padding: 20px 24px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
}
.service-wrapper.style2 .service-links .link-box a .text {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  transition: all 0.4s ease-in-out;
}
.service-wrapper.style2 .service-links .link-box a .icon {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.service-wrapper.style2 .service-links .link-box:hover {
  background-color: var(--theme2);
}
.service-wrapper.style2 .service-links .link-box:hover a {
  color: var(--white) !important;
}
.service-wrapper.style2 .service-links .link-box:hover a .text {
  color: var(--white);
}
.service-wrapper.style2 .service-links .link-box:hover a .icon {
  opacity: 1;
  visibility: visible;
}
.about-wrapper.style2 {
  background-color: var(--white);
}
.about-wrapper.style2 .about-thumb {
  height: 662px;
}
.about-wrapper.style2 .about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-wrapper.style2 .about-content {
  position: relative;
  padding: 0 60px 0 0;
  background-color: var(--white);
}
@media (min-width: 1400px) {
  .about-wrapper.style2 .about-content {
    margin-left: 40px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style2 .about-content {
    padding: 30px;
    padding-top: 0;
  }
}
.about-wrapper.style2 .about-content .shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.about-wrapper.style2 .about-content .section-title {
  margin-bottom: 40px;
}
.about-wrapper.style2 .about-content .btn-wrapper {
  margin-top: 40px;
}
.about-fancy-box.style1 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 1199px) {
  .about-fancy-box.style1 {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-fancy-box.style1 .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #f1f2f2;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.about-fancy-box.style1 .content {
  max-width: 400px;
}
.about-fancy-box.style1 .content .title {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
}
.about-fancy-box.style1 .content .desc {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.project-wrapper.style2 .section-title {
  margin-bottom: 60px;
}
.projectSliderTwo .swiper {
  overflow: visible;
}
.project-bg-white {
  position: relative;
}
.project-bg-white::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 60%;
}
.core-feature-wrapper .core-feature-thumb img {
  width: 100%;
  height: 100%;
}
.core-feature-box.style1 {
  margin-bottom: 22px;
  padding: 20px;
  background-color: var(--theme3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .core-feature-box.style1 {
    flex-wrap: wrap;
  }
}
.core-feature-box.style1 .title-wrap {
  color: var(--theme);
  font-family: var(--title);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.96px;
}
@media (max-width: 1199px) {
  .core-feature-box.style1 .title-wrap {
    font-size: 20px;
  }
}
.core-feature-box.style1 .title-wrap .box-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 20px;
  background: rgb(30 41 46 / 0.1);
}
.core-feature-box.style1 .title-wrap .box-icon svg path {
  fill: var(--theme);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.core-feature-box.style1 p {
  margin-left: -200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .core-feature-box.style1 p {
    margin-left: 0;
  }
}
.core-feature-box.style1 .icon i {
  font-size: 25px;
  color: var(--text);
  transition: all 0.4s ease-in-out;
}
.core-feature-box.style1:hover {
  margin-right: -250px;
}
@media (max-width: 991px) {
  .core-feature-box.style1:hover {
    margin-right: 0;
  }
}
.core-feature-box.style1:hover .title-wrap .box-icon {
  background: #ffb000;
}
.core-feature-box.style1:hover .title-wrap .box-icon svg path {
  fill: var(--header);
}
.core-feature-box.style1:hover p {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}
@media (max-width: 991px) {
  .core-feature-box.style1:hover p {
    display: none;
  }
}
.core-feature-box.style1:hover .icon i {
  transform: rotate(-90deg);
}
.wcu-wrapper.style2 {
  padding: 30px 0;
}
.wcu-wrapper.style2 .wcu-content {
  padding: 90px 0;
}
@media (max-width: 991px) {
  .wcu-wrapper.style2 .wcu-content {
    padding: 30px 0;
  }
}
.wcu-wrapper.style2 .wcu-content .section-title .subtitle {
  color: var(--white);
}
.wcu-wrapper.style2 .wcu-content .section-title h2 {
  color: var(--white);
}
.wcu-wrapper.style2 .wcu-content .service-links-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style2 .wcu-content .service-links-wrapper {
    flex-wrap: wrap;
  }
}
.wcu-wrapper.style2 .wcu-thumb {
  margin-right: -350px;
  margin-bottom: -70px;
  position: relative;
}
@media (max-width: 1399px) {
  .wcu-wrapper.style2 .wcu-thumb {
    margin-right: 0;
  }
}
.wcu-wrapper.style2 .wcu-thumb img {
  max-width: 100%;
}
.wcu-wrapper.style2 .wcu-thumb .content-box {
  padding: 35px 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 370px;
  z-index: 9;
}
@media (max-width: 1899px) {
  .wcu-wrapper.style2 .wcu-thumb .content-box {
    right: initial;
    left: 0;
  }
}
@media (max-width: 1399px) {
  .wcu-wrapper.style2 .wcu-thumb .content-box {
    display: none;
  }
}
.wcu-wrapper.style2 .wcu-thumb .content-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(
    248.78% 185.9% at 73.59% -55.7%,
    rgb(255 255 255 / 0.4) 0%,
    #fff0 100%
  );
  backdrop-filter: blur(21px);
  z-index: -1;
  top: 85px;
  height: initial;
}
.wcu-wrapper.style2 .wcu-thumb .content-box .video-btn {
  position: relative;
  display: inline-block;
  width: 122px;
  height: 122px;
  background: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 122px;
  font-size: 24px;
  color: var(--title);
}
.wcu-wrapper.style2 .wcu-thumb .content-box .video-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  line-height: 140px;
  background-color: rgb(255 255 255 / 0.2);
  border-radius: 50%;
  content: "";
}
.wcu-wrapper.style2 .wcu-thumb .content-box .video-btn img {
  animation: cir36 10s linear infinite;
  position: absolute;
  top: 12px;
  left: 10px;
}
.wcu-wrapper.style2 .wcu-thumb .content-box p {
  font-weight: 500;
  color: var(--white);
  margin-top: 30px;
}
.about-service-meta {
  margin-top: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-service-meta {
    margin-top: 40px;
  }
}
@media (max-width: 1199px) {
  .about-service-meta {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-service-meta .meta-box {
  position: relative;
}
.about-service-meta .meta-box::before {
  position: absolute;
  top: 50%;
  right: -45px;
  content: "";
  width: 5px;
  height: 5px;
  transform: rotate(-90deg);
  background-color: var(--white);
}
@media (max-width: 1199px) {
  .about-service-meta .meta-box::before {
    display: none;
  }
}
.about-service-meta .meta-box .counter {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 12px;
}
.about-service-meta .meta-box .text {
  opacity: 0.9;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: lowercase;
}
.work-process-wrapper.style-4 {
  background-color: var(--theme3);
  position: relative;
}
.work-process-wrapper.style-4.style-details {
  background-color: var(--white);
}
.work-process-wrapper.style-4 .section-title {
  max-width: 525px;
}
@media (min-width: 1400px) {
  .work-process-wrapper.style-4 .container {
    max-width: 1350px;
  }
}
@media (max-width: 767px) {
  .work-process-wrapper.style-4 {
    margin-bottom: 0;
  }
}
.work-process-wrapper.style-4 .section-title {
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .work-process-wrapper.style-4 .section-title {
    margin-bottom: 30px;
  }
}
.work-process-wrapper.style-4 .section-title .purple {
  color: #bba5e0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
}
@media (max-width: 767px) {
  .work-process-wrapper.style-4 .section-title .purple {
    font-size: 48px;
    line-height: 1;
  }
}
.work-process-wrapper.style-4 .section-title .dot {
  color: var(--theme);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 74px;
}
@media (max-width: 767px) {
  .work-process-wrapper.style-4 .section-title .dot {
    display: none;
  }
}
.work-process-wrapper.style-4 .single-process {
  border-top: 1px solid rgb(30 41 46 / 0.25);
}
@media (max-width: 1199px) {
  .work-process-wrapper.style-4 .single-process {
    border: none;
  }
}
.work-process-wrapper.style-4 .single-process .dot-and-step-no {
  margin-bottom: 10px;
}
.work-process-wrapper.style-4 .single-process .dot-and-step-no .dot {
  margin-bottom: 25px;
  position: relative;
}
.work-process-wrapper.style-4 .single-process .dot-and-step-no .dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--title);
  display: block;
  margin-left: 32px;
  margin-bottom: 90px;
  position: relative;
  margin-top: -5px;
}
@media (max-width: 1199px) {
  .work-process-wrapper.style-4 .single-process .dot-and-step-no .dot span {
    display: none;
  }
}
.work-process-wrapper.style-4
  .single-process
  .dot-and-step-no
  .dot
  span::before {
  position: absolute;
  bottom: -72px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: #1e292e;
  opacity: 0.25;
  width: 1px;
  height: 75px;
}
.work-process-wrapper.style-4 .single-process .dot-and-step-no .step-no {
  position: relative;
  display: flex;
  align-items: center;
}
.work-process-wrapper.style-4 .single-process .dot-and-step-no .step-no h2 {
  -webkit-text-fill-color: #fff0;
  -webkit-text-stroke: 1px rgb(30 41 46 / 0.3);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 55px;
  font-weight: 900;
  line-height: 66.56px;
  letter-spacing: 0.06em;
  text-align: left;
  margin-bottom: 0;
  transition: 0.5s;
}
@media (max-width: 1399px) {
  .work-process-wrapper.style-4 .single-process .dot-and-step-no .step-no h2 {
    font-size: 85px;
  }
}
@media (max-width: 1199px) {
  .work-process-wrapper.style-4 .single-process .dot-and-step-no .step-no h2 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .work-process-wrapper.style-4 .single-process .dot-and-step-no .step-no h2 {
    font-size: 75px;
  }
}
.work-process-wrapper.style-4 .single-process .dot-and-step-no .step-no h6 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e292e;
  text-transform: uppercase;
  transform: rotate(-90deg);
}
.work-process-wrapper.style-4 .single-process .process-content {
  max-width: 260px;
}
.work-process-wrapper.style-4 .single-process .process-content h3 {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
}
.work-process-wrapper.style-4 .single-process .process-content p {
  color: rgba(var(--title), 0.5);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.03em;
  text-align: left;
}
.work-process-wrapper.style-4
  .single-process:hover
  .dot-and-step-no
  .step-no
  h2 {
  -webkit-text-stroke: 1px #ffb000;
}
.team-member-wrapper.style3 .section-title {
  margin-bottom: 55px;
}
.testimonial-wrapper.style2 .testimonial-content {
  position: relative;
  max-width: 415px;
}
.testimonial-wrapper.style2 .testimonial-content .arrow-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
.testimonial-wrapper.style2 .testimonial-content .arrow-btn .slider-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style2 .testimonial-content .arrow-btn .slider-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-wrapper.style2 .testimonial-content .arrow-btn .slider-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style2 .testimonial-content .arrow-btn .slider-next:hover {
  background-color: #ffb000;
  color: var(--header);
}
.testimonial-wrapper.style2 .testimonialSliderTwo {
  margin-right: -295px;
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style2 .testimonialSliderTwo {
    margin-left: 0;
    margin-right: 0;
  }
}
.testimonial-wrapper.style2 .testimonialSliderTwo .swiper-slide {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style2
  .testimonialSliderTwo
  .swiper-slide.swiper-slide-active
  .testimonial-card.style1 {
  position: relative;
}
.testimonial-wrapper.style2
  .testimonialSliderTwo
  .swiper-slide.swiper-slide-active
  .testimonial-card.style1
  .testimonial-content {
  background-color: var(--theme3);
  box-shadow: none;
}
.faq-wrapper.style2 .faq-thumb-wrapper {
  position: relative;
  margin-bottom: 60px;
  margin-left: 148px;
}
@media (max-width: 1199px) {
  .faq-wrapper.style2 .faq-thumb-wrapper {
    margin-left: 0;
    margin-bottom: 0;
  }
  .faq-wrapper.style2 .faq-thumb-wrapper img {
    width: 100%;
    height: 100%;
  }
}
.faq-wrapper.style2 .faq-thumb-wrapper .thumb1 {
  position: relative;
}
.faq-wrapper.style2 .faq-thumb-wrapper .thumb2 {
  position: absolute;
  bottom: -130px;
  left: -148px;
  max-width: 300px;
}
@media (max-width: 1199px) {
  .faq-wrapper.style2 .faq-thumb-wrapper .thumb2 {
    left: 0;
    bottom: 0;
  }
}
.faq-wrapper.style2 .accordion .er-accordion-item {
  border: 1px solid #e9e9e9;
  margin-bottom: 20px;
  border-radius: 0;
}
.faq-wrapper.style2 .accordion .er-accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-header {
  margin: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-button {
  color: var(--title);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  padding: 15px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-align: left;
}
@media (max-width: 575px) {
  .faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-button {
    padding: 20px;
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-button {
    padding: 14px;
  }
}
.faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-button span {
  z-index: 11;
}
.faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-button span i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  font-size: 16px;
  display: inline-block;
}
.faq-wrapper.style2
  .accordion
  .er-accordion-item
  .er-accordion-button.collapsed
  span {
  transform: rotate(-90deg);
}
.faq-wrapper.style2
  .accordion
  .er-accordion-item
  .er-accordion-button.collapsed
  span
  i {
  background-color: var(--theme2);
  color: var(--white);
}
.faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-body {
  background-color: var(--white);
  padding: 0 50px 30px 35px;
  fill: var(--white);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  -webkit-border-radius: 0 0 20px 20px;
  -moz-border-radius: 0 0 20px 20px;
  -ms-border-radius: 0 0 20px 20px;
  -o-border-radius: 0 0 20px 20px;
}
@media (max-width: 450px) {
  .faq-wrapper.style2 .accordion .er-accordion-item .er-accordion-body {
    padding: 0 26px 26px 26px;
  }
}
.blog-wrapper.style2 .section-title {
  margin-bottom: 55px;
}
.intro-container-wrapper.style3 {
  position: relative;
}
.intro-container-wrapper.style3 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .intro-container-wrapper.style3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1399px) {
  .intro-container-wrapper.style3 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
  .intro-container-wrapper.style3 .container-fluid {
    padding: 0 30px;
  }
}
.intro-container-wrapper.style3 .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  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;
}
.intro-container-wrapper.style3 .slider-image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(30 41 46 / 0.6);
}
.intro-section .swiper-slide.swiper-slide-active .slider-image {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.intro-wrapper.style3 {
  position: relative;
}
.intro-wrapper.style3 .intro-content {
  position: relative;
  z-index: 5;
  padding: 250px 0 240px;
}
@media (max-width: 991px) {
  .intro-wrapper.style3 .intro-content {
    padding-bottom: 0;
    padding-top: 150px;
  }
}
.intro-wrapper.style3 .intro-content h1 {
  color: var(--white);
  font-family: var(--title);
  font-size: 76px;
  font-style: normal;
  font-weight: 300;
  line-height: 116%;
  letter-spacing: -3.04px;
  text-transform: capitalize;
  max-width: 703px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style3 .intro-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style3 .intro-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style3 .intro-content h1 {
    font-size: 40px;
  }
}
.intro-wrapper.style3 .intro-content h1 span {
  font-style: italic;
  font-weight: 800;
}
.intro-wrapper.style3 .intro-content .big-text {
  display: block;
  font-size: 125px;
  font-weight: 700;
  line-height: 78.2px;
  color: #fff;
  -webkit-text-stroke: 2px rgb(255 255 255 / 0.4);
  -webkit-text-fill-color: #fff0;
  opacity: 0.3;
  margin-top: 21px;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 260px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style3 .intro-content .big-text {
    display: none;
  }
}
.intro-wrapper.style3 .intro-content .intro-bottom-content-box {
  margin-top: 60px;
  background: radial-gradient(
    258.86% 216.49% at -18.48% -74.46%,
    rgb(255 255 255 / 0.4) 0%,
    #fff0 100%
  );
  backdrop-filter: blur(25px);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 991px) {
  .intro-wrapper.style3 .intro-content .intro-bottom-content-box {
    position: static;
  }
}
.intro-wrapper.style3
  .intro-content
  .intro-bottom-content-box
  .intro-bottom-content {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-right: -100px;
}
@media (max-width: 767px) {
  .intro-wrapper.style3
    .intro-content
    .intro-bottom-content-box
    .intro-bottom-content {
    flex-wrap: wrap;
    gap: 30px;
    margin-right: 0;
  }
}
.intro-wrapper.style3
  .intro-content
  .intro-bottom-content-box
  .intro-bottom-content
  .box-wrapper {
  padding: 40px;
  display: flex;
  gap: 38px;
}
@media (max-width: 767px) {
  .intro-wrapper.style3
    .intro-content
    .intro-bottom-content-box
    .intro-bottom-content
    .box-wrapper {
    padding-bottom: 0;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.intro-wrapper.style3
  .intro-content
  .intro-bottom-content-box
  .intro-bottom-content
  .box-wrapper
  .bottom-box
  .text {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  max-width: 200px;
}
.intro-wrapper.style3
  .intro-content
  .intro-bottom-content-box
  .intro-bottom-content
  .box-wrapper
  .bottom-box
  .text2 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  max-width: 212px;
}
.service-wrapper.style3 .service-content .section-title h2 {
  margin-bottom: 172px;
}
@media (max-width: 991px) {
  .service-wrapper.style3 .service-content .section-title h2 {
    margin-bottom: 30px;
  }
}
.achievement-wrapper.style3 .about-service-meta {
  margin-top: 0;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.achievement-wrapper.style3 .achievement-contact-meta {
  margin-top: -80px;
  z-index: 5;
}
.achievement-container-wrapper.style3 .achievement-thumb {
  height: 700px;
  background-attachment: fixed;
}
.wcu-wrapper.style3 .wcu-thumb {
  position: relative;
  margin-left: 102px;
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style3 .wcu-thumb {
    margin-left: 0;
    margin-right: 0;
  }
  .wcu-wrapper.style3 .wcu-thumb img {
    width: 100%;
    height: 100%;
  }
}
.wcu-wrapper.style3 .wcu-thumb .thumb1 {
  position: relative;
  z-index: 5;
}
.wcu-wrapper.style3 .wcu-thumb .wcu-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 430px;
  height: 431px;
  border-radius: 150px 0;
  background-color: var(--theme2);
  z-index: 1;
}
.wcu-wrapper.style3 .wcu-thumb .static-box {
  display: inline-block;
  width: 199px;
  height: 173px;
  position: absolute;
  bottom: 0;
  right: -60px;
  z-index: 6;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 8px 24px 96px 0 rgb(126 138 253 / 0.08);
}
@media (max-width: 1199px) {
  .wcu-wrapper.style3 .wcu-thumb .static-box {
    right: 0;
  }
}
.wcu-wrapper.style3 .wcu-thumb .counter-box-card {
  position: absolute;
  top: 166px;
  left: -102px;
  z-index: 6;
  width: 170px;
  height: 108px;
  padding: 24px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 8px 6px 30px 0 rgb(0 0 0 / 0.1);
}
@media (max-width: 1199px) {
  .wcu-wrapper.style3 .wcu-thumb .counter-box-card {
    left: 0;
  }
}
.wcu-wrapper.style3 .wcu-thumb .counter-box-card .counter {
  color: var(--Secondery-color, #1e292e);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.wcu-wrapper.style3 .wcu-content .text {
  margin-bottom: 30px;
}
.wcu-wrapper.style3 .wcu-content .check-list-items {
  display: flex;
  align-items: center;
  gap: 120px;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style3 .wcu-content .check-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar span {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .content h6 {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .wcu-wrapper.style3 .wcu-content .single-circle-bar .content br {
    display: block;
  }
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar {
  position: relative;
  height: 80px;
  width: 80px;
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 20px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--title);
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar .background {
  background-color: #aec0c9 !important;
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--theme) !important;
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: #aec0c9 !important;
}
.wcu-wrapper.style3 .wcu-content .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme) !important;
}
.project-wrapper.style3 .section-title {
  margin-bottom: 60px;
}
.project-item.style3 {
  position: relative;
  padding: 40px 0;
  border-top: 1px solid rgb(255 255 255 / 0.3);
  border-bottom: 1px solid rgb(255 255 255 / 0.3);
}
.project-item.style3 .project-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  color: var(--white);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .project-item.style3 .project-name {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .project-item.style3 .d-flex {
    justify-content: start !important;
    gap: 10px;
  }
}
.project-item.style3 .hover-image {
  max-width: 300px;
  right: 200px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-15deg);
  transform: translateY(-50%) rotate(-15deg);
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
@media (max-width: 767px) {
  .project-item.style3 .hover-image {
    display: none;
  }
}
.project-item.style3 .project-link a {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
}
.project-item.style3:hover .project-name {
  color: var(--white);
}
.project-item.style3:hover .hover-image {
  visibility: visible;
  opacity: 1;
}
.about-wrapper.style3 .about-thumb {
  position: relative;
}
.about-wrapper.style3 .about-thumb .thumb1 {
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-thumb .thumb1 img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper.style3 .about-thumb .thumb2 {
  position: absolute;
  z-index: 4;
  bottom: 0;
  border: 10px solid var(--white);
  right: 0;
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-thumb .thumb2 {
    max-width: 250px;
  }
  .about-wrapper.style3 .about-thumb .thumb2 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style3 .about-thumb .thumb2 {
    max-width: 200px;
  }
}
.about-wrapper.style3 .about-thumb .shape {
  margin-top: 20px;
}
.about-wrapper.style3 .about-content .checklist-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 30px;
  margin-top: 40px;
  border-bottom: 1px solid var(--border);
  border: 1px solid rgb(30 41 46 / 0.1);
  background-color: var(--theme3);
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-content .checklist-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper.style3 .about-content .contact-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper.style3 .about-content .contact-meta {
    flex-wrap: wrap;
  }
}
.testimonial-wrapper.style3 .section-title {
  margin-bottom: 60px;
}
.testimonial-wrapper.style3 .testimonial-thumb .thumb {
  width: 100%;
  margin-left: -460px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style3 .testimonial-thumb .thumb {
    margin-left: 0;
  }
  .testimonial-wrapper.style3 .testimonial-thumb .thumb img {
    width: 100%;
    height: 100%;
  }
}
.testimonial-wrapper.style3 .testimonialSliderThree {
  position: relative;
}
.testimonial-wrapper.style3 .testimonialSliderThree .arrow-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
.testimonial-wrapper.style3 .testimonialSliderThree .arrow-btn .slider-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style3
  .testimonialSliderThree
  .arrow-btn
  .slider-prev:hover {
  background-color: #ffb000;
  color: var(--header);
}
.testimonial-wrapper.style3 .testimonialSliderThree .arrow-btn .slider-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.08);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style3
  .testimonialSliderThree
  .arrow-btn
  .slider-next:hover {
  background-color: #ffb000;
  color: var(--header);
}
.testimonial-wrapper.style3 .testimonialSliderThree {
  margin-right: -295px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style3 .testimonialSliderThree {
    margin-right: 0;
  }
}
.testimonial-wrapper.style3 .testimonialSliderThree .swiper {
  padding-top: 50px;
}
.testimonial-wrapper.style3 .testimonialSliderThree .swiper-slide {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-wrapper.style3
  .testimonialSliderThree
  .swiper-slide.swiper-slide-active
  .testimonial-card.style1 {
  position: relative;
}
.testimonial-wrapper.style3
  .testimonialSliderThree
  .swiper-slide.swiper-slide-active
  .testimonial-card.style1
  .testimonial-content {
  background-color: var(--theme3);
  box-shadow: none;
}
.blog-wrapper.style3 .section-title {
  margin-bottom: 60px;
}
.wcu-wrapper.style4 .wcu-thumb {
  position: relative;
  margin-right: 186px;
}
.wcu-wrapper.style4 .wcu-thumb .thumb1 {
  position: relative;
  z-index: 3;
}
.wcu-wrapper.style4 .wcu-thumb .thumb2 {
  position: absolute;
  z-index: 5;
  bottom: 36px;
  right: -186px;
  border-radius: 150px 0 50px 0;
  height: 340px;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style4 .wcu-thumb .thumb2 {
    right: initial;
    bottom: 0;
  }
}
.wcu-wrapper.style4 .wcu-thumb .thumb2 img {
  border-radius: 150px 0 50px 0;
  border: 4px solid #e9eff2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.wcu-wrapper.style4 .wcu-thumb .wcu-counter {
  position: absolute;
  top: 36px;
  right: -147px;
  z-index: 5;
  background-color: var(--theme);
  padding: 30px;
}
.wcu-wrapper.style4 .wcu-thumb .wcu-counter .counter {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}
.wcu-wrapper.style4 .wcu-thumb .wcu-counter .text {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  margin-top: 5px;
}
.wcu-wrapper.style4 .wcu-content .checklist-wrapper {
  margin: 30px 0;
  border: 1px solid rgb(30 41 46 / 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 400px;
}
@media (max-width: 1199px) {
  .wcu-wrapper.style4 .wcu-content .checklist-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.wcu-wrapper.style4 .wcu-content .wcu-counter-box h2 {
  font-size: 48px;
  font-weight: 800;
}
.wcu-wrapper.style4 .wcu-content .btn-wrapper {
  margin-top: 20px;
}
.video-container-wrapper.style4 {
  position: relative;
  padding: 209px 0;
  background-attachment: fixed;
}
@media (max-width: 1199px) {
  .video-container-wrapper.style4 {
    padding: 200px 0;
  }
}
@media (max-width: 767px) {
  .video-container-wrapper.style4 {
    padding: 170px 0;
  }
}
@media (max-width: 575px) {
  .video-container-wrapper.style4 {
    padding: 150px 0;
  }
}
.video-container-wrapper.style4:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(8 33 31 / 0.6);
}
.video-wrapper.style4 {
  max-width: 785px;
  margin: 0 auto;
  text-align: center;
  display: block;
}
.video-wrapper.style4 h2 {
  position: relative;
  z-index: 4;
  color: var(--white);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.video-wrapper.style4 .video-wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 48px;
}
.video-wrapper.style4 .video-wrap a {
  position: relative;
  display: inline-block;
}
.video-wrapper.style4 .video-wrap a i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 22px;
  color: var(--white);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.video-wrapper.style4 .video-wrap a img {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 100px;
  animation: cir36 10s linear infinite;
}
.testimonial-wrapper.style4 .testimonial-thumb {
  border-radius: 1000px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  -ms-border-radius: 1000px;
  -o-border-radius: 1000px;
}
.testimonial-wrapper.style4 .testimonial-thumb img {
  border-radius: 1000px;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  -ms-border-radius: 1000px;
  -o-border-radius: 1000px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style4 .testimonial-thumb img {
    width: 100%;
    height: 100%;
  }
}
.work-process-container-wrapper.style4 {
  position: relative;
}
.work-process-container-wrapper.style4 .shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .work-process-container-wrapper.style4 .shape {
    display: none;
  }
}
.work-process-wrapper.style4 {
  position: relative;
}
.work-process-wrapper.style4
  .work-process-content
  .work-process-list
  .process-box:nth-child(2) {
  position: relative;
}
.work-process-wrapper.style4
  .work-process-content
  .work-process-list
  .process-box:nth-child(2)
  .number-circle {
  position: relative;
  z-index: 5;
  background-color: #ffb000;
  color: var(--header);
}
.work-process-wrapper.style4
  .work-process-content
  .work-process-list
  .process-box:nth-child(2):before {
  position: absolute;
  z-index: 1;
  content: "";
  top: -80px;
  left: 35px;
  width: 1px;
  height: 230px;
  background: var(--theme3);
}
@media (max-width: 1199px) {
  .work-process-wrapper.style4
    .work-process-content
    .work-process-list
    .process-box:nth-child(2):before {
    display: none;
  }
}
.work-process-wrapper.style4 .work-process-thumb {
  position: relative;
}
.work-process-wrapper.style4 .work-process-thumb .thumb-shape {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 53%;
  transform: translate(-53%, -50%);
  -webkit-transform: translate(-53%, -50%);
  -moz-transform: translate(-53%, -50%);
  -ms-transform: translate(-53%, -50%);
  -o-transform: translate(-53%, -50%);
}
.work-process-wrapper.style4 .work-process-thumb .thumb-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.work-process-wrapper.style4 .work-process-thumb .thumb-wrapper .thumb1 {
  position: relative;
  z-index: 5;
}
.work-process-wrapper.style4 .work-process-thumb .thumb-wrapper .thumb1 img {
  width: 100%;
  height: 100%;
}
.work-process-wrapper.style4 .work-process-thumb .thumb-wrapper .thumb2 {
  position: relative;
  z-index: 5;
  margin-top: -60px;
}
@media (max-width: 991px) {
  .work-process-wrapper.style4 .work-process-thumb .thumb-wrapper .thumb2 {
    margin-top: 0;
  }
}
.work-process-wrapper.style4 .work-process-thumb .thumb-wrapper .thumb2 img {
  width: 100%;
  height: 100%;
}
