
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #8dffde;
  --theme2: #514DE0;
  --theme3: #0D6DFD;
  --theme5: #F16319;
  --theme6: #FF9960;
  --header: #151518;
  --header2: #072032;
  --text: #CDCDCD;
  --text2: #5C6972;
  --border: #2A2A2A;
  --body-bg: #151518;
  --bg: #1A1A1E;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --secondary-clr: #F2F2F2;
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  color: var(--theme);
  font-size: 17px;
  font-weight: 700;
  padding: 22px 40px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1D1D21;
}
.theme-btn::after {
  content: "";
  background-color: var(--theme);
  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 {
  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;
  }
}
.theme-btn.style-2 {
  border-radius: 10px;
  background-color: var(--theme);
  color: var(--header);
}
.theme-btn.style-2::before, .theme-btn.style-2::after {
  background: #1D1D21;
}
.theme-btn.style-2:hover {
  color: var(--white);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Satoshi Variable", sans-serif;
  font-size: 18px;
  font-weight: 500;
  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: "Satoshi Variable", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 95%;
}

h2 {
  font-size: 65px;
  line-height: 116%;
  font-weight: 700;
}
@media (max-width: 991px) {
  h2 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 27px;
  font-weight: 700;
  line-height: 134%;
}
@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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-wrapper {
    flex-wrap: wrap;
  }
}
.about-wrapper .nav {
  display: grid;
  gap: 16px;
  padding: 0;
  border-right: 1px solid rgba(207, 208, 212, 0.2);
  padding-right: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .nav {
    padding-right: 0;
    border-right: none;
    display: flex;
    margin-bottom: 50px;
  }
}
.about-wrapper .nav .nav-item .nav-link {
  border-radius: 50px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #8dffde;
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  font-family: "Satoshi Variable", sans-serif;
  padding: 35px 60px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 991px) {
  .about-wrapper .nav .nav-item .nav-link {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .nav .nav-item .nav-link {
    font-size: 20px;
    padding: 18px 30px;
  }
}
.about-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--header);
}
.about-wrapper .about-items {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .about-wrapper .about-items {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.about-wrapper .about-items .about-content {
  max-width: 380px;
}
.about-wrapper .about-items .about-content .list-items {
  margin-top: 25px;
  margin-bottom: 50px;
}
.about-wrapper .about-items .about-content .list-items li span {
  display: inline-block;
  font-weight: 700;
  color: var(--white);
  padding-left: 10px;
}
.about-wrapper .about-items .about-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-items .about-image {
  max-width: 542px;
}
.about-wrapper .about-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.about-section {
  position: relative;
  z-index: 5;
}
.about-section .bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.about-section .color-bg {
  position: absolute;
  left: 0;
  bottom: 25%;
  z-index: -1;
}
.about-section .color-bg-2 {
  position: absolute;
  top: -12%;
  right: -100px;
  z-index: -1;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-wrapper .counter-items {
  display: flex;
  align-items: center;
  gap: 30px;
}
.counter-wrapper .counter-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 200px 200px 0px 200px;
  background-color: var(--theme);
  color: var(--header);
  font-size: 42px;
  text-align: center;
}
.counter-wrapper .counter-items .content {
  border-left: 1px solid rgba(207, 208, 212, 0.3);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-items .content {
    padding-left: 0;
    border-left: none;
  }
}
.counter-wrapper .counter-items .content h2 {
  font-size: 70px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .counter-wrapper .counter-items .content h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-items .content p {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-items .content p {
    font-size: 20px;
  }
}

.about-section {
  position: relative;
}

@-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);
  }
}
.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;
  }
}

@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 animate-positive {
  0% {
    width: 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;
  }
}

.brand-image {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .message-items h2 {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .message-items h2 {
    font-size: 55px;
  }
}
@media (max-width: 470px) {
  .message-items h2 {
    font-size: 40px;
  }
}
.message-items h2 span {
  font-weight: 400;
}
.message-items h2 span b {
  font-weight: 400;
  color: var(--theme);
}
.message-items .circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.message-items .lets-talk-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  border-top: 1px solid rgba(207, 208, 212, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .message-items .lets-talk-items {
    flex-wrap: wrap;
    text-align: center;
  }
}
.message-items .lets-talk-items p {
  max-width: 445px;
}
.message-items .lets-circle {
  position: relative;
  max-width: 230px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 126"><path fill-rule="evenodd" clip-rule="evenodd" d="M55.9029 4.52619C59.9922 -0.78983 68.0078 -0.78983 72.0971 4.52619C75.0042 8.30537 80.1389 9.57096 84.4692 7.57565C90.5606 4.76892 97.6581 8.49399 98.8085 15.1015C99.6263 19.7987 103.585 23.3056 108.346 23.5512C115.044 23.8968 119.598 30.4936 117.546 36.8788C116.087 41.4181 117.962 46.3628 122.064 48.7932C127.834 52.2118 128.801 60.1691 124.016 64.8693C120.615 68.2107 119.978 73.4605 122.48 77.5188C126.001 83.2274 123.158 90.7222 116.738 92.6606C112.173 94.0387 109.169 98.3909 109.499 103.147C109.964 109.838 103.964 115.154 97.3777 113.886C92.6956 112.985 88.013 115.443 86.0948 119.808C83.3966 125.948 75.6138 127.866 70.3712 123.683C66.6442 120.71 61.3558 120.71 57.6288 123.683C52.3862 127.866 44.6034 125.948 41.9052 119.808C39.987 115.443 35.3044 112.985 30.6223 113.886C24.0363 115.154 18.0365 109.838 18.5008 103.147C18.8309 98.3909 15.8267 94.0387 11.2623 92.6606C4.84165 90.7222 1.99926 83.2274 5.51975 77.5188C8.02248 73.4605 7.38504 68.2107 3.98382 64.8693C-0.800531 60.1691 0.165651 52.2118 5.93581 48.7932C10.0378 46.3628 11.9131 41.4181 10.4543 36.8788C8.40231 30.4936 12.9557 23.8968 19.6537 23.5512C24.4153 23.3056 28.3737 19.7987 29.1915 15.1015C30.3419 8.49399 37.4394 4.76892 43.5308 7.57565C47.8611 9.57096 52.9958 8.30537 55.9029 4.52619Z"  /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: var(--white);
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  padding: 85px 76px;
  display: block;
  text-align: center;
}

.message-section {
  position: relative;
  z-index: 9;
}
.message-section .bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* Message Section: responsive images */
.message-section .bg-shape img {
  width: 100%;
  height: auto;
  display: block;
}
.message-items .circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.message-items .circle-bg img {
  width: clamp(260px, 45vw, 560px);
  height: auto;
  display: block;
  opacity: 0.35;
  pointer-events: none;
}
.message-items .lets-talk-items {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .message-items .circle-bg img {
    width: 70vw;
    opacity: 0.3;
  }
}

.paralax-image {
  position: relative;
  background-attachment: fixed;
}
.paralax-image img {
  width: 100%;
  height: 100%;
}
.paralax-image.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.faq-wrapper .faq-image-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-wrapper .faq-image-items .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.faq-wrapper .faq-content {
  margin-left: 30px;
}
@media (max-width: 991px) {
  .faq-wrapper .faq-content {
    margin-left: 0;
  }
}
.faq-wrapper .faq-content .accordion-item {
  border: none !important;
  background-color: transparent;
}
.faq-wrapper .faq-content .accordion-item .accordion-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 700;
  color: var(--white);
  border: none !important;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  text-transform: capitalize;
  font-size: 27px;
  font-family: "Satoshi Variable", sans-serif;
  padding-left: 0;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--white);
  font-size: 16px;
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 500;
  color: var(--theme);
}
.faq-wrapper .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--white);
  background-color: transparent;
}
.faq-wrapper .faq-content .accordion-item .accordion-collapse .accordion-body {
  background-color: transparent;
  padding-bottom: 28px;
  color: var(--text);
  padding-left: 0;
  padding-top: 25px;
}
@media (max-width: 1199px) {
  .faq-wrapper.style-2 .faq-content .section-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 470px) {
  .faq-wrapper.style-2 .faq-content .section-title h2 {
    font-size: 32px;
  }
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header {
  border-bottom: 1px solid #E0E1E5;
  padding-bottom: 10px;
  padding-top: 10px;
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
  text-transform: capitalize;
  font-size: 24px;
  font-family: "Satoshi Variable", sans-serif;
  color: var(--header2);
}
@media (max-width: 1199px) {
  .faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
  }
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button::after {
  color: var(--text2);
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  color: var(--theme2);
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--header2);
  background-color: transparent;
}
.faq-wrapper.style-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
  color: var(--text2);
}

.faq-section {
  position: relative;
}
.faq-section .color-bg {
  position: absolute;
  left: 270px;
  top: -150px;
  z-index: -1;
}

/**/

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  display: inline-block;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content h3 {
  font-size: 55px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content h3 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content h3 {
    font-size: 35px;
  }
}
.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: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 18px;
  color: var(--text);
  position: relative;
}
.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-section .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-section .social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  opacity: 0.9;
  transition: all 0.2s ease;
}
.footer-section .social-icon a:hover {
  opacity: 1;
  border-color: var(--theme);
  background: var(--theme);
  color: var(--white);
}
.footer-section .social-icon a i {
  font-size: 16px;
  line-height: 1;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .widget-head h3 {
  color: var(--header2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content p {
  font-weight: 500;
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #e8e7e4;
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--white);
  background-color: var(--theme2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li {
  background-image: linear-gradient(var(--theme2), var(--theme2));
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li a {
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li:hover::before {
  color: var(--theme2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li:hover a {
  color: var(--theme2);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(207, 208, 212, 0.15);
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.footer-bottom .footer-bottom-wrapper .logo-img img,
footer .logo-img img {
  max-height: 100px;
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-wrapper .logo-img img,
  footer .logo-img img {
    max-height: 70px;
  }
}
.footer-bottom p {
  color: var(--text);
}
.footer-bottom p a {
  color: var(--theme);
  font-weight: 400;
  text-decoration: underline;
}
.footer-bottom .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #cfd0d4;
  color: #cdcdcd;
}
.footer-bottom .social-icon a:hover {
  color: var(--theme);
}
.footer-bottom.style-2 {
  border-top: 1px solid #e8e7e4;
}
.footer-bottom.style-2 p {
  color: #5c6972;
}
.footer-bottom.style-2 .footer-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom.style-2 .footer-menu li {
  font-size: 18px;
  color: var(--text2);
  font-weight: 500;
}
.footer-bottom.style-2 .footer-menu li a {
  color: var(--text2);
}
.footer-bottom.style-2 .footer-menu li a:hover {
  color: var(--theme2);
}

.social-icon a {
  border: unset !important;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.social-icon a i {
  color: var(--white);
}

.footer-section {
  position: relative;
}
@media (min-width: 1200px) {
  .footer-section .footer-widgets-wrapper .row {
    display: flex;
    flex-wrap: nowrap;
  }
  .footer-section .footer-widgets-wrapper .row > [class*="col-"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/*Footer 4*/

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  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(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: #120f0f;
  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);
}
.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: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  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(--theme);
}
.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:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 35px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-1 .join-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-1 .join-text img {
  max-height: 20px;
  width: auto;
  height: auto;
  display: inline-block;
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1899px) {
  .header-1 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .header-1 .join-text {
    display: none;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 1600px) {
  .header-1 .header-left {
    gap: 80px;
  }
}
.header-1 .logo .header-logo img {
  max-height: 74px;
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 575px) {
  .header-1 .logo .header-logo img {
    max-height: 60px;
  }
}

.offcanvas__logo img {
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 575px) {
  .offcanvas__logo img {
    max-height: 55px;
  }
}

.offcanvas__info {
  background: var(--bg) 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__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(--header);
}
.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: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

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

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

::-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;
}

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

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

.nice-select {
  background-color: transparent;
  border: transparent;
  float: initial;
  overflow: initial;
  height: initial;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 150%;
  width: 100%;
  border: none;
}
.nice-select:focus, .nice-select:hover {
  border-color: transparent;
}
.nice-select::after {
  height: 8px;
  width: 8px;
  right: -25px;
  top: 15px;
  border-color: var(--header);
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}

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

.ml-200 {
  margin-left: 9px;
}
@media (max-width: 1199px) {
  .ml-200 {
    margin-left: 0;
  }
}

.hero-1 {
  padding: 210px 0 0;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .hero-1 {
    padding: 170px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 170px 0 80px;
  }
}
.hero-1 .hero-content {
  position: relative;
}
.hero-1 .hero-content .color-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero-1 .hero-content p {
  font-size: 27px;
  text-transform: uppercase;
  text-align: center;
  margin-left: 320px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content p {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content p {
    font-size: 24px;
  }
}
.hero-1 .hero-content h1 {
  text-transform: uppercase;
  font-size: 140px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    line-height: 120%;
    text-align: center;
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 img {
    display: none;
  }
}
.hero-1 .hero-content h1 .text {
  font-size: 24px;
  font-weight: 700;
  color: #CDCDCD;
  line-height: 134%;
}
.hero-1 .hero-content h1 b {
  color: var(--theme);
  margin-left: 280px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 b {
    margin-left: 0;
  }
}
.hero-1 .hero-content h1 .text-2 {
  font-weight: 400;
  font-family: "Marcellus", sans-serif;
}
.hero-1 .hero-image {
  margin-top: 150px;
  height: 320px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-left: 0;
    margin-top: 80px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-top: 50px;
    height: 150px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-image {
    height: 80px;
  }
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: 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 "Satoshi Variable", sans-serif, "Satoshi Variable", 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(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Satoshi Variable", 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: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 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: transparent;
  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;
  }
}

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;
}

.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-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;
}

.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);
}

.pricing-box-items {
  margin-top: 30px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1D1D21;
  padding: 50px;
}
@media (max-width: 767px) {
  .pricing-box-items {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .pricing-box-items {
    padding: 35px;
  }
}
.pricing-box-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 200px 0 200px 200px;
  /* filter: grayscale(100%) brightness(300%); */
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
/* .pricing-box-items .icon img {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
} */
.pricing-box-items .pricing-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 30px;
}
.pricing-box-items .pricing-header h3 {
  font-size: 27px;
  margin-bottom: 5px;
}
.pricing-box-items .pricing-header h2 {
  font-size: 55px;
  margin-top: 10px;
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list li span {
  display: inline-block;
  padding-left: 10px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-box-items .pricing-button {
  margin-top: 40px;
}
.pricing-box-items .pricing-button .theme-btn {
  width: 100%;
}
.pricing-box-items:hover .icon {
  filter: initial;
  background-color: var(--theme);
}
.pricing-box-items:hover .icon img {
  filter: initial;
}

.pricing-section {
  position: relative;
}
.pricing-section .nav {
  display: flex;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(207, 208, 212, 0.25);
  gap: 10px;
}
.pricing-section .nav .nav-item .nav-link {
  border-radius: 28px;
  background-color: transparent;
  padding: 10px 20px;
  color: #CDCDCD;
}
.pricing-section .nav .nav-item .nav-link.active {
  background: #EFFB53;
  color: var(--header);
}

.project-wrapper {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .project-wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .project-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .project-wrapper {
    padding: 0 30px;
  }
}
.project-wrapper .project-title {
  font-size: 150px;
  margin-bottom: 30px;
  line-height: 1;
  margin-top: -15px;
}
@media (max-width: 991px) {
  .project-wrapper .project-title {
    font-size: 85px;
  }
}
@media (max-width: 767px) {
  .project-wrapper .project-title {
    margin-bottom: 0;
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .project-wrapper .project-title {
    font-size: 55px;
  }
}
.project-wrapper .project-title img {
  margin-left: 250px;
}
@media (max-width: 1199px) {
  .project-wrapper .project-title img {
    margin-left: 0;
  }
}
.project-wrapper .project-title span {
  font-weight: 400;
  font-family: "Marcellus", sans-serif;
}
.project-wrapper .project-image {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.project-wrapper .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.project-wrapper .project-image:hover {
  transform: rotate(10deg);
}
.project-wrapper .project-content {
  margin-left: 200px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .project-wrapper .project-content {
    margin-left: 0;
  }
}
.project-wrapper .project-content span {
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 20px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}
.project-wrapper .project-content h3 {
  font-size: 65px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 575px) {
  .project-wrapper .project-content h3 {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  .project-wrapper .project-content h3 {
    font-size: 32px;
  }
}
.project-wrapper .project-content h3 a:hover {
  color: var(--theme);
}
.project-wrapper .project-content p {
  max-width: 350px;
  margin-top: 25px;
  margin-bottom: 50px;
}

.project-section {
  position: relative;
  z-index: 1;
}
.project-section .color-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.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;
  }
}

.footer-bg {
  background-color: #101012;
}
