@font-face {
  font-family: "Teko";
  src: url(../webfonts/Teko-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url(../webfonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #BFF747;
  --theme2: #FFD531;
  --header: #121212;
  --text: #f5f5f4cc;
  --border: #2A2A2A;
  --body-bg: #121212;
  --bg: #171717;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--theme);
  color: var(--header);
  font-size: 18px;
  font-weight: 400;
  padding: 22px 40px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  border-radius: 120px;
  line-height: 1;
  font-family: "DM Sans", sans-serif;
}
.theme-btn::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  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: transparent;
  padding: 0;
}

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

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

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

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

h2 {
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}

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

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(--white);
  transition: all 0.4s ease-in-out;
}

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

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

.about-wrapper .about-image-items {
  margin-top: 30px;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items {
    margin-right: 0;
  }
}
.about-wrapper .about-image-items .support-content {
  background-color: var(--theme);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.support-content a {
  color: #000;
}
.about-wrapper .about-image-items .support-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--header);
}
.about-wrapper .about-image-items .support-content .text-area {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-wrapper .about-image-items .support-content .text-area p {
  font-size: 16px;
  color: var(--header);
  font-weight: 400;
}
.about-wrapper .about-image-items .support-content .text-area .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  text-align: center;
  line-height: 48px;
  color: var(--white);
  background-color: var(--header);
}
.about-wrapper .about-image-items .support-content .text-area .icon i {
  transform: rotate(-40deg);
}
.about-wrapper .about-image-items .about-image-2 {
  position: relative;
}
.about-wrapper .about-image-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.about-wrapper .about-image-items .about-image.style-2 {
  position: relative;
}
.about-wrapper .about-image-items .about-image.style-2 img {
  object-fit: cover;
}
.about-wrapper .about-content {
  margin-left: 70px;
  margin-top: 30px;
}
@media (max-width: 1600px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-icon-items {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}
.about-wrapper .about-content .about-icon-items .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--header);
  font-size: 24px;
  position: relative;
}
.about-wrapper .about-content .about-icon-items .icon .line-bar {
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translateX(-50%);
}
.about-wrapper .about-content .about-icon-items .content {
  flex-basis: 80%;
}
.about-wrapper .about-content .about-icon-items .content h3 {
  margin-bottom: 5px;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@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);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.contact-wrapper .map-items .googpemap iframe {
  width: 100%;
  border-radius: 12px;
  height: 450px;
}
.contact-wrapper .contact-content {
  background-color: #121212;
  padding: 60px 40px;
  border-radius: 12px;
}
.contact-wrapper .contact-content .contact-form-items {
  margin-top: 30px;
}
.contact-wrapper .contact-content .contact-form-items .form-clt span {
  color: var(--text);
  text-transform: capitalize;
  display: block;
  font-size: 16px;
  margin-bottom: 20px;
}
.contact-wrapper .contact-content .contact-form-items .form-clt input,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
  color: var(--text);
  padding: 18px 20px;
  width: 100%;
  background-color: transparent;
  border: none;
  border: 1px solid var(--border);
}
.contact-wrapper .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}

.footer-widgets-wrapper {
  padding: 50px 0 80px;
  position: relative;
  z-index: 9;
}
.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-logo-box {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 32px;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 10px;
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-color: #2A2A2A;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text {
  margin-top: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h4 {
  font-size: 20px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
  text-decoration: underline;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h4 a {
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h5 {
  font-size: 20px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-transform: lowercase;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h5 a {
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  display: table;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 18px;
  color: var(--text);
  position: relative;
  font-weight: 400;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
  background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.footer-bottom p {
  color: var(--white);
  font-weight: 400;
}
.footer-bottom p a {
  color: var(--theme);
  font-weight: 400;
  text-decoration: underline;
}

.footer-right-content {
  padding-top: 80px;
  margin-right: -350px;
  text-align: center;
}
@media (max-width: 1899px) {
  .footer-right-content {
    margin-right: -75px;
  }
}
@media (max-width: 1399px) {
  .footer-right-content {
    margin-right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer-right-content h2 {
  font-size: 40px;
  text-align: center;
}
.footer-right-content .radius-btn {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--border);
  margin: 50px auto 0;
  padding-top: 50px;
}
.footer-right-content .radius-btn i {
  display: block;
  transform: rotate(-40deg);
  margin-bottom: 5px;
}
.footer-right-content .radius-btn:hover {
  background-color: var(--theme);
  color: var(--header);
}
.footer-right-content h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-top: 50px;
}
.footer-right-content p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}

.footer-section.style-2 {
  position: relative;
  z-index: 9;
}
.footer-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1D1D1D;
  z-index: -1;
  left: 73%;
}
@media (max-width: 1399px) {
  .footer-section.style-2::before {
    left: 0;
  }
}

@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-right {
  gap: 24px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-1 {
  border-bottom: 1px solid #2A2A2A;
}
.header-1 .mean__menu-wrapper {
  margin-left: -200px;
}
@media (max-width: 767px) {
  .header-1 .header-right {
    gap: 15px;
  }
  .header-main {
    flex-direction: column;
    row-gap: 10px;
  }
    .header-main p {
      text-align: center;
    }
}

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

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

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

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

.hero-1 {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 44px;
  }
}
.hero-1 .hero-content h1 span {
  color: var(--theme);
  text-decoration: underline;
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 img {
    width: 80px;
  }
}
.hero-1 .hero-content p {
  max-width: 600px;
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}
.hero-1 .hero-image {
  margin-top: 50px;
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-1 .hero-counter {
  padding: 40px;
  background-color: var(--theme);
  display: inline-block;
  width: 340px;
  position: absolute;
  top: 120px;
  right: 172px;
}
@media (max-width: 1600px) {
  .hero-1 .hero-counter {
    right: 0;
  }
}
@media (max-width: 1600px) {
  .hero-1 .hero-counter {
    position: static;
    max-width: 1500px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-counter {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.hero-1 .circle-item {
  width: 170px;
  height: 170px;
  line-height: 179px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  position: absolute;
  right: 30%;
  top: 25%;
}
@media (max-width: 991px) {
  .hero-1 .circle-item {
    display: none;
  }
}
.hero-1 .circle-item .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  top: -4%;
  left: 7%;
  animation: cir36 10s linear infinite;
}
.hero-1 .circle-item .border-line {
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 76px;
  height: 76px;
  line-height: 76px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-1 .circle-item .border-line .arrow-icon {
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
}
.hero-1 .circle-item .border-line .arrow-icon i {
  transform: rotate(-40deg);
}

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

.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(--theme);
  -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(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -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;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--header);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  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(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.portfolio-box-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
@media (max-width: 1199px) {
  .portfolio-box-items {
    gap: 30px;
  }
}
.portfolio-box-items .project-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .portfolio-box-items .project-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.portfolio-box-items .content {
  padding-right: 80px;
  border-right: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .portfolio-box-items .content {
    padding-right: 0;
    border: none;
  }
}
@media (max-width: 575px) {
  .portfolio-box-items {
    flex-direction: column;
  }
    .portfolio-box-items .project-wrap {
      justify-content: center;
      text-align: center;
    }
}
.portfolio-box-items .content span {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 15px;
}
.portfolio-box-items .content h3 {
  font-size: 32px;
}
.portfolio-box-items .content h3 a:hover {
  color: var(--theme);
}
.portfolio-box-items p {
  max-width: 480px;
}
.portfolio-box-items .radius-btn {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--border);
  padding-top: 50px;
  flex-shrink: 0;
}
.portfolio-box-items .radius-btn i {
  display: block;
  transform: rotate(-40deg);
  margin-bottom: 5px;
}
.portfolio-box-items .radius-btn:hover {
  background-color: var(--theme);
  color: var(--header);
}
.portfolio-box-items .project-hover {
  width: 200px;
  height: 240px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  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;
}
.portfolio-box-items:hover .project-hover {
  opacity: 1;
  visibility: visible;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  color: var(--theme);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
}
.section-title h2 span {
  color: var(--theme);
  text-decoration: underline;
}

.section-title-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .section-title-area {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

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

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

.service-box-items {
  margin-top: 30px;
  padding: 32px 30px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .service-box-items {
    border: none;
  }
}
.service-box-items .icon {
  font-size: 40px;
  color: var(--theme);
  position: relative;
  z-index: 9;
}
.service-box-items .content {
  margin-top: 25px;
  position: relative;
  z-index: 9;
}
.service-box-items .content h3 {
  margin-bottom: 10px;
}
.service-box-items .content h3 a:hover {
  color: var(--theme);
}
.service-box-items .content p {
  font-size: 17px;
}
.service-box-items .content .service-btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-box-items .content .service-btn .link-btn {
  font-size: 20px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
  text-transform: capitalize;
  display: inline-block;
}
.service-box-items .content .service-btn:hover .arrow-icon,
.service-box-items .content .service-btn:hover .link-btn {
  color: var(--theme);
}
.service-box-items.border-none {
  border-right: none;
}
.service-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--bg);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.service-box-items:hover {
  border-right: 1px solid var(--theme);
}
.service-box-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-box-items.style-2 {
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
}
.service-box-items.style-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: initial;
}
.service-box-items.style-2::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme);
  border-right: 1px solid var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.service-box-items.style-2:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.service-box-items.style-2:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transform: initial;
  transform-origin: initial;
}
.service-box-items.style-3::before {
  background-color: #1D1D1D;
}
@media (max-width: 1199px) {
  .service-box-items {
    border-right: 1px solid var(--theme);
  }
  .service-box-items::before {
    transform: scale(1, 1);
    transform-origin: top center;
  }
}

.testimonial-box-items {
  margin-top: 30px;
  padding: 40px 35px;
  border-radius: 12px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.4s ease-in-out;
}
.testimonial-box-items .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.testimonial-box-items .client-info .content h5 {
  font-size: 20px;
  font-weight: 500;
}
.testimonial-box-items .client-info .content span {
  font-size: 16px;
  color: #F5F5F4;
}
.testimonial-box-items p {
  font-size: 18px;
}
.testimonial-box-items .testi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.testimonial-box-items .testi-bottom .star {
  color: #55E6A5;
}
.testimonial-box-items .icon {
  position: absolute;
  top: 0;
  right: 0;
}
.testimonial-box-items:hover {
  border: 1px solid var(--theme);
}