/***************************************************
==================== CSS INDEX ======================
****************************************************
01. Fonts Decration
02. CSS Variables
03. Default CSS
04. Scroll to Top CSS
05. Button CSS
06. Header CSS
07. Hero CSS
08. Feature CSS
09. Demo Section CSS
10. Elementor Section CSS
11. Blocks Section CSS
12. Inner Page CSS
13. Features Two CSS
14. Responsive Device CSS
15. FAQ CSS
16. Footer CSS
17. Marquee CSS
18. Responsive CSS
****************************************************/

/* 01. Fonts Decration */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/* 02. CSS Variables */
:root {
  --primary-color: #A1FF75;
  --black-color: #000000;
  --black-color-2: #020202;
  --black-color-3: #404040;
  --white-color: #FFFFFF;

  --font-grotesk: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}


/* 03. Default CSS */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
p,
li {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--font-grotesk);
  font-weight: 400;
}

.container-1290 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-1220 {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}



.sec-title {
  font-weight: 700;
  font-size: 70px;
  line-height: 1.12;
  letter-spacing: -2.1px;
  color: var(--black-color-2);
}

.sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  background-color: var(--primary-color);
  padding: 3px 25px 2px;
  border-radius: 100px;
  display: inline-block;
}

.sub-title-2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-color-2);
  display: inline-block;
  border: 1px solid #E8E8E8;
  padding: 2px 22px;
  border-radius: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.img-reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.img-reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}


/* 04. Scroll to Top CSS */
.scroll--top {
  position: fixed;
  width: 36px;
  height: 36px;
  bottom: 0;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--black-color-2);
  fill: var(--white-color);
  color: var(--white-color);
  cursor: pointer;
  border-radius: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.scroll--top svg {
  transform: rotate(-90deg);
  width: 12px;
  height: auto;
  line-height: 0;
}

.scroll--top.showed {
  opacity: 1;
  bottom: 20px;
  visibility: visible;
}

.scroll--top:hover {
  fill: var(--black-color-2);
  color: var(--black-color-2);
  background-color: var(--primary-color);
}

/* 05. Button CSS */
.tp-btn-primary {
  fill: var(--black-color);
  color: var(--black-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 17px 29px;
  border-radius: 100px;
  transition: all 0.3s;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tp-btn-primary svg {
  width: 1em;
  height: 1em;
}

.tp-btn-primary2 {
  fill: var(--black-color);
  color: var(--black-color);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 12px 12px 12px 40px;
  border-radius: 100px;
  transition: all 0.3s;
  background-color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tp-btn-primary2 svg {
  width: 1em;
  height: 1em;
}

.tp-btn-primary2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--black-color-2);
  fill: var(--white-color);
  color: var(--white-color);
  border-radius: 100px;
}

.tp-btn-light {
  fill: var(--black-color);
  color: var(--black-color);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 22px 36px;
  border-radius: 100px;
  transition: all 0.3s;
  background-color: var(--white-color);
  display: inline-flex;
  gap: 8px;
}

.tp-btn-light svg {
  width: 1em;
  height: 1em;
}


.tp-btn-light:hover {
  background-color: var(--primary-color);
}


/* 06. Header CSS */
.tp-header-area {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tp-header-area.scrolled {
  background: var(--black-color-2);
}

.tp-header-wrapper {
  gap: 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 0 50px;
}

.tp-header-btn {
  text-align: right;
}

.tp-header-menu {
  text-align: center;
}

.tp-main-menu li {
  list-style: none;
}

.tp-main-menu ul li {
  display: inline-block;
  padding: 0 15px;
}

.tp-main-menu ul li:hover .main-dropdown {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

.tp-main-menu ul li:hover .mega-menu {
  top: 60px;
  opacity: 1;
  visibility: visible;
}

.tp-main-menu ul li a {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: var(--white-color);
  position: relative;
  padding: 15px 5px;
  display: inline-block;
}

.tp-main-menu ul li a:hover {
  color: var(--primary-color);
}

.tp-main-menu .main-dropdown {
  position: absolute;
  width: 260px;
  top: 60px;
  background: var(--black-color-2);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 5;
  border-radius: 5px;
}

.tp-main-menu .main-dropdown li {
  padding: 0 30px;
  display: block;
  text-align: left;
  position: relative;
}

.tp-main-menu .main-dropdown li:hover .sub-dropdown {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.tp-main-menu .main-dropdown li a {
  text-transform: capitalize;
  color: var(--white-color);
  padding: 7px 0;
}

.tp-main-menu .main-dropdown li a:hover {
  color: var(--primary-color);
}

.tp-main-menu .main-dropdown li a::after {
  display: none;
}

.tp-main-menu .sub-dropdown {
  position: absolute;
  width: 260px;
  left: 90%;
  top: 0;
  background: var(--black-color);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 5;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.tp-main-menu .sub-dropdown li {
  padding: 0 30px;
  display: block;
  text-align: left;
  position: relative;
}

.tp-main-menu .sub-dropdown li a {
  color: var(--white-color);
  padding: 10px 0;
}

.tp-main-menu .has-dropdown {
  position: relative;
}

.tp-main-menu .has-dropdown:hover::after {
  color: var(--primary-color);
}

.tp-main-menu .has-dropdown::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 6px;
  top: 22px;
  right: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='6' viewBox='0 0 7 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.70195 4.93333L0.201953 1.6C-0.292474 0.940764 0.177908 0 1.00195 0H6.00195C6.826 0 7.29638 0.940764 6.80195 1.6L4.30195 4.93333C3.90195 5.46667 3.10195 5.46667 2.70195 4.93333Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.tp-main-menu .has-dropdown:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='6' viewBox='0 0 7 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.70195 4.93333L0.201953 1.6C-0.292474 0.940764 0.177908 0 1.00195 0H6.00195C6.826 0 7.29638 0.940764 6.80195 1.6L4.30195 4.93333C3.90195 5.46667 3.10195 5.46667 2.70195 4.93333Z' fill='%23A1FF75'/%3E%3C/svg%3E");
}

.tp-main-menu .has-megamenu {
  position: static;
}

.tp-main-menu .has-megamenu:hover::after {
  color: var(--primary-color);
}

.tp-main-menu .has-megamenu::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 30px;
  color: var(--white-color);
  font-weight: 700;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.tp-main-menu .main-dropdown .has-dropdown {
  position: relative;
}

.tp-main-menu .main-dropdown .has-dropdown:hover::after {
  color: var(--primary-color);
}

.tp-main-menu .main-dropdown .has-dropdown::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 15px;
  right: 20px;
  color: var(--white-color);
  transform: rotate(-90deg);
  font-weight: 700;
  transition: all 0.2s;
}

.tp-main-menu .mega-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 60px;
  z-index: 9;
  background-color: var(--black-color);
  text-align: left;
  padding: 40px 230px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.tp-main-menu .mega-menu li {
  display: block;
}

.tp-main-menu .mega-menu li:first-child {
  font-size: 18px;
  color: var(--white-color);
  padding-bottom: 10px;
  text-transform: capitalize;
}

.tp-main-menu .mega-menu li a {
  padding: 8px 5px;
}

.mean-container .mean-nav>ul {
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-bar {
  padding: 0;
  height: 80vh;
  overflow-y: auto;
  background: transparent;
}

.mean-container .mean-nav {
  margin-top: 0;
  background-color: transparent;
}

.mean-container .mean-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1490196078);
}

.mean-container .mean-nav ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1490196078);
}

.mean-container .mean-nav ul li .main-dropdown li:last-child {
  border-bottom: none;
}

.mean-container .mean-nav ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white-color);
  padding: 13px 15px;
  text-transform: uppercase;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  background: transparent;
}

.mean-container .mean-nav ul li a.mean-expand {
  padding: 0 !important;
  line-height: 44px;
  height: 44px;
  width: 40px;
  background: transparent;
  border: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: transparent;
}

.mean-container .mean-nav ul li li a {
  padding: 13px 30px;
  border-top: none;
  opacity: 1;
  color: var(--white-color);
}

.tp-offcanvas-area {
  background-color: var(--black-color);
  z-index: 11;
  position: fixed;
  height: 100%;
  width: 360px;
  right: -360px;
  top: 0;
  transition: all 0.3s;
}

.tp-offcanvas-area.open {
  right: 0;
}

.tp-offcanvas-area .btn--close {
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  background-color: transparent;
  border-radius: 3px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-offcanvas-area .btn--close svg {
  width: 1em;
  height: 1em;
}

.tp-offcanvas-body {
  margin-top: 20px;
}

.mobile-menu-open {
  display: none;
}

body.menu-opened {
  position: relative;
  overflow: hidden;
}

body.menu-opened::before {
  position: fixed;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  transition: 0.3s;
  z-index: 10;
}

.tp-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 0;
}


/* 07. Hero CSS */
.tp-hero-area {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
  position: relative;
  background-position: center;
}


.tp-hero-wrapper {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
}

.tp-hero-wrapper .title {
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--white-color);
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.tp-hero-wrapper .sub-title {
  margin-bottom: 30px;
  background-color: var(--white-color);
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.tp-hero-wrapper .img-group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.tp-hero-wrapper .img-1 {
  margin-right: -80px;
}

.tp-hero-wrapper .img-2 {
  position: relative;
  z-index: 2;
}

.tp-hero-wrapper .img-3 {
  margin-left: -80px;
}

.tp-hero-wrapper .btn-group {
  gap: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

/* 08. Feature CSS */
.tp-feature-list-area {
  background: var(--primary-color);
  padding: 22px 0;
}

.tp-feature-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-feature-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--black-color-2);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.tp-core-features-titlebox {
  text-align: center;
  padding-bottom: 50px;
}

.tp-core-features-list {
  gap: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.tp-core-features-item {
  border-radius: 15px;
  position: relative;
}

.tp-core-features-item .title {
  font-weight: 500;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: -3%;
  color: var(--white-color);
  padding-bottom: 18px;
}

.tp-core-features-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white-color);
  padding-bottom: 50px;
  font-family: var(--font-mono);
}

.tp-core-features-item .live-demo {
  background: var(--primary-color);
  display: inline-block;
  border-radius: 10px;
  padding: 15px;
  width: 112px;
  position: absolute;
  bottom: 65px;
  left: 10px;
}

.tp-core-features-item .demo-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 14px;
  color: var(--black-color);
}

.tp-core-features-item.item-1 .font-wrap {
  background: var(--primary-color);
  display: inline-block;
  border-radius: 10px;
  padding: 15px;
  width: 112px;
  position: absolute;
  bottom: 65px;
  left: 10px;
}

.tp-core-features-item.item-1 .total-demos {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--black-color);
  padding-bottom: 10px;
}

.tp-core-features-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.tp-core-features-item.item-group {
  padding: 0;
  display: grid;
  gap: 15px;
}

.tp-core-features-item.item-4 .circle-wrap {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #000;
}

.tp-core-features-item.item-2 .faster-wrap {
  gap: 25px;
  display: flex;
  align-items: flex-start;
}

.tp-core-features-item.item-2 .faster-text span {
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
}

.tp-core-features-item.item-3 .gtmtrix-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}

.tp-core-features-item.item-3 .score-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tp-core-features-item.item-3 .grade {
  color: #4499D4;
  font-size: 85px;
  font-weight: 700;
}


/* 09. Demo Section CSS */
.tp-demo-area {
  position: relative;
  padding-top: 130px;
}

.tp-demo-wrapper {
  padding: 0 50px;
}

.tp-demo-titlebox {
  max-width: 840px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.tp-demo-titlebox .sec-title {
  line-height: 1.11;
}

.tp-demo-list {
  display: grid;
  gap: 70px 50px;
  grid-template-columns: 1fr 1fr 1fr;
}

.tp-demo-item {
  border-radius: 15px;
  overflow: hidden;
}

.tp-demo-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tp-demo-number {
  background: linear-gradient(179.59deg,
      #A1FF75 0.35%,
      rgba(255, 255, 255, 0) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 245px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.tp-demo-hover-label {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99999;
  color: #000;
  gap: 6px;
  opacity: 0;
  transform: scale(0.8);
  will-change: transform;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.66px;
  color: var(--black-color-2);
  padding: 10px;
}

.tp-demo-hover-number {
  display: inline-block;
  padding: 10px 10px 5px;
  width: 50px;
  background-color: var(--primary-color);
  border-radius: 15px 15px 0 0;
}

.tp-demo-hover-title {
  background-color: var(--primary-color);
  border-radius: 0 15px 15px 15px;
  padding: 7px 10px 10px;
}

.tp-demo-hover-label img {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 60px;
  top: 33px;
}

.tp-demo-hover-label a {
  cursor: none;
}

/* 10. Elementor Section CSS */
.tp-elementor-wrapper {
  gap: 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.tp-elementor-left .sub-title {
  margin-bottom: 20px;
}

.tp-elementor-right img {
  max-width: 100%;
}

.tp-elementor-left p {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--black-color-3);
  padding-top: 20px;
  padding-bottom: 50px;
}

.tp-elementor-left ul {
  display: grid;
  gap: 20px;
}

.tp-elementor-left li {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--black-color-2);
  display: flex;
  gap: 10px;
}

.tp-elementor-right {
  margin-right: -130px;
  text-align: right;
}

/* 11. Blocks Section CSS */
.tp-blocks-section {
  position: relative;
}

.tp-blocks-titlebox {
  max-width: 840px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 70px;
}

.tp-blocks-wrapper {
  display: grid;
  gap: 40px;
}

.tp-blocks-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.tp-blocks-item {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  border: 1px solid #EEEEEEEE;
  border-radius: 100px;
  padding: 16px 26px;
}

.tp-blocks-item:nth-child(odd) {
  background: linear-gradient(215deg, rgba(255, 255, 255, 0) 45%, #A1FF75 100%);
}

/* 12. Inner Page CSS */
.tp-inner-page-section {
  background: var(--black-color-2);
}

.tp-inner-page-titlebox {
  max-width: 840px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 55px;
}

.tp-inner-page-titlebox .sec-title {
  color: var(--white-color);
}

.tp-inner-page-titlebox .sub-title {
  margin-bottom: 25px;
}

.tp-inner-page-item img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.innerpage-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -34px;
}

.innerpage-pagination .swiper-pagination-bullet {
  background: #999999;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.innerpage-pagination .swiper-pagination-bullet-active {
  background: #A1FF75;
}

.innperpage-navigation {
  max-width: 470px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 65px auto 0;
}

.innerpage-btn-prev,
.innerpage-btn-next {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  border-radius: 100px;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s;
}

.innerpage-btn-prev:hover,
.innerpage-btn-next:hover {
  background-color: var(--primary-color);
}

/* 13. Features Two CSS */
.tp-features2-titlebox {
  text-align: center;
  padding-bottom: 55px;
}

.tp-features2-wrapper {
  display: grid;
  gap: 32px;
}

.tp-features2-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tp-features2-item {
  min-height: 143px;
  border: 1px solid #EEEEEE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 200px;
  border-radius: 100px;
  padding: 25px 30px;
  /* transition: all 0.3s; */
}

.tp-features2-item:hover {
  border-color: transparent;
  box-shadow: 0px 4px 60px 0px #0202020D;
}

.tp-features2-item .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: var(--black-color-2);
  padding-top: 12px;
  margin-top: auto;
}

/* 14. Responsive Device CSS */
.tp-responsive-titlebox {
  text-align: center;
  padding-bottom: 40px;
}

.tp-responsive-img {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 65px;
}

.tp-responsive-img img {
  max-width: 100%;
}

.tp-responsive-list {
  max-width: 1070px;
  margin: 0 auto;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 41px 70px 44px;
  border-radius: 16px;
}

.tp-responsive-item {
  text-align: center;
}

.tp-responsive-item .title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 12px;
  color: var(--black-color-2);
}

.tp-responsive-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black-color-2);
  padding-top: 3px;
}

.tp-responsive-titlebox .sub-title-2 {
  margin-bottom: 18px;
}

/* 15. FAQ CSS */
.tp-faq-wrapper {
  max-width: 910px;
  margin: 0 auto;
  padding: 0 30px;
}

.tp-faq-titlebox {
  text-align: center;
  padding-bottom: 65px;
}

.tp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tp-faq-item {
  border-radius: 20px;
  transition: border-color 0.22s ease-out, background-color 0.22s ease-out;
  box-shadow: 0px 4px 60px 0px #0202020D;
}

.tp-faq-question {
  flex: 1;
}

.tp-faq-header {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--black-color-2);
  padding: 17px 30px;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.tp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease-out, padding-bottom 0.22s ease-out, padding-top 0.22s ease-out;
  will-change: max-height;
}

.tp-faq-body p {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--black-color-3);
  padding: 0 30px 30px;
}

/* 16. Footer CSS */
.tp-footer-area {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.tp-footer-content {
  max-width: 970px;
  margin: 0 auto;
  margin-bottom: 140px;
}

.tp-footer-content .sec-title {
  color: var(--white-color);
  padding-bottom: 30px;
}

.tp-footer-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 70px;
}

.tp-footer-content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--white-color);
}

.tp-footer-content .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.tp-footer-copyright {
  border-top: 1px solid #FFFFFF26;
  padding-top: 18px;
  padding-bottom: 15px;
}

.tp-footer-copyright p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--white-color);
}

/* 17. Marquee CSS */
.tp--marquee-text-inner {
  gap: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  will-change: transform;
  z-index: 2;
  position: relative;
}

.tp--marquee-text {
  font-weight: 500;
  font-size: 145px;
  line-height: 1;
  letter-spacing: -4px;
  vertical-align: middle;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: rgba(2, 2, 2, 0.1490196078);
}

.tp--marquee-text-inner.inner-2 {
  gap: 30px;
}

.tp--marquee-text-area {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}

.tp--marquee-text-style-2 .text-wrapper {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  padding: 0 15px;
}



/* 18. Responsive CSS */
@media (max-width: 1919px) {
  .tp-main-menu .main-dropdown li:hover .sub-dropdown {
    left: -100%;
  }

  .tp-main-menu .sub-dropdown {
    left: -90%;
  }

  .tp-main-menu .mega-menu {
    padding: 40px 50px;
  }


}


@media (max-width: 1399px) {
  .pb-120 {
    padding-bottom: 110px;
  }

  .pt-120 {
    padding-top: 110px;
  }

  .sec-title {
    font-size: 60px;
    letter-spacing: -2px;
  }

  .tp-main-menu .mega-menu {
    padding: 40px 20px;
  }

  .tp-header-wrapper {
    padding: 0 30px;
  }

  .tp-hero-wrapper .title {
    font-size: 80px;
    letter-spacing: -2px;
    margin-bottom: 45px;
  }

  .tp-hero-wrapper .img-1,
  .tp-hero-wrapper .img-3 {
    max-width: 380px;
  }

  .tp-hero-wrapper .img-2 {
    max-width: 705px;
  }

  .tp-core-features-titlebox {
    padding-bottom: 50px;
  }

  .tp-demo-titlebox {
    max-width: 750px;
    padding-bottom: 46px;
  }

  .tp-demo-list {
    gap: 50px 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tp-elementor-right {
    margin-right: 0;
  }

  .tp--marquee-text {
    font-size: 120px;
    letter-spacing: -3px;
  }

  .tp-demo-area {
    padding-top: 100px;
  }

  .tp-demo-number {
    font-size: 200px;
  }

  .tp-blocks-titlebox {
    max-width: 700px;
    padding-top: 85px;
    padding-bottom: 60px;
  }

  .tp-blocks-list {
    gap: 20px;
  }

  .tp-blocks-wrapper {
    gap: 30px;
  }

  .tp-inner-page-titlebox {
    margin-bottom: 50px;
  }

  .tp-features2-titlebox {
    padding-bottom: 45px;
  }

  .tp-features2-list {
    gap: 25px;
  }

  .tp-features2-wrapper {
    gap: 28px;
  }

  .tp-footer-content {
    max-width: 910px;
    margin-bottom: 120px;
  }

}


@media (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 90px;
  }

  .pt-110 {
    padding-top: 90px;
  }

  .pb-120 {
    padding-bottom: 90px;
  }

  .pt-120 {
    padding-top: 90px;
  }

  .sec-title {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .tp-header-menu {
    display: none;
  }

  .mobile-menu-open {
    display: block;
    font-size: 20px;
  }

  .tp-header-wrapper {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu-open svg {
    width: 1em;
    height: 1em;
  }

  .tp-header-wrapper {
    padding: 0 15px;
  }

  .tp-hero-wrapper .title {
    font-size: 70px;
    letter-spacing: -1px;
    margin-bottom: 30px;
    max-width: 800px;
  }

  .tp-hero-wrapper .img-1,
  .tp-hero-wrapper .img-3 {
    max-width: 280px;
  }

  .tp-hero-wrapper .img-2 {
    max-width: 564px;
  }

  .tp-btn-primary2 {
    padding: 10px 10px 10px 40px;
  }

  .tp-btn-light {
    padding: 20px 36px;
  }

  .tp-hero-wrapper {
    padding: 0 15px;
  }

  .tp-core-features-titlebox {
    padding-bottom: 40px;
  }

  .tp-demo-number {
    font-size: 160px;
  }

  .tp-demo-titlebox .sec-title {
    max-width: 650px;
  }

  .tp-demo-area {
    padding-top: 75px;
  }

  .tp-demo-wrapper {
    padding: 0 15px;
  }

  .tp-demo-list {
    gap: 30px 20px;
  }

  .tp--marquee-text {
    font-size: 100px;
    letter-spacing: -2px;
  }

  .tp-blocks-titlebox {
    max-width: 560px;
    padding-top: 65px;
    padding-bottom: 50px;
  }

  .tp-blocks-item {
    font-size: 20px;
    padding: 15px 20px;
  }

  .tp-blocks-wrapper {
    gap: 25px;
  }

  .tp-blocks-list {
    gap: 10px;
  }

  .tp-inner-page-titlebox {
    max-width: 630px;
    margin-bottom: 45px;
  }

  .innperpage-navigation {
    margin: 40px auto 0;
  }

  .tp-features2-titlebox {
    padding-bottom: 40px;
  }

  .tp-features2-item img {
    max-width: 36px;
    height: auto;
  }

  .tp-features2-item {
    min-height: 120px;
    min-width: 170px;
    padding: 20px 25px;
  }

  .tp-features2-item .title {
    font-size: 16px;
    padding-top: 10px;
  }

  .tp-features2-list {
    gap: 10px;
  }

  .tp-responsive-img {
    margin-bottom: 50px;
  }

  .tp-faq-titlebox {
    padding-bottom: 50px;
  }

  .tp-faq-list {
    gap: 20px;
  }

  .tp-footer-content {
    margin-bottom: 90px;
  }
}

@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 70px;
  }

  .pt-110 {
    padding-top: 70px;
  }

  .pb-120 {
    padding-bottom: 70px;
  }

  .pt-120 {
    padding-top: 70px;
  }

  .sec-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .sub-title {
    font-size: 16px;
  }

  .tp-hero-wrapper .title {
    font-size: 60px;
  }

  .tp-header-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .tp-btn-primary {
    padding: 15px 24px;
  }

  .tp-hero-wrapper .img-1,
  .tp-hero-wrapper .img-3 {
    max-width: 220px;
  }

  .tp-hero-wrapper .img-2 {
    max-width: 450px;
  }

  .tp-feature-list li {
    gap: 5px;
    font-size: 16px;
  }

  .tp-feature-list li svg {
    width: 18px;
  }

  .tp-core-features-titlebox {
    padding-bottom: 30px;
  }

  .tp-core-features-list {
    gap: 10px;
  }

  .tp-core-features-item.item-group {
    gap: 10px;
  }

  .tp-demo-number {
    font-size: 130px;
  }

  .tp-demo-titlebox {
    max-width: 510px;
    padding-bottom: 35px;
  }

  .tp-demo-area {
    padding-top: 50px;
  }

  .tp-demo-list {
    gap: 20px 15px;
    grid-template-columns: 1fr 1fr;
  }

  .tp-elementor-wrapper {
    gap: 20px;
  }

  .tp-elementor-left p {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .tp--marquee-text {
    font-size: 90px;
    letter-spacing: -1px;
  }

  .tp--marquee-text img {
    max-width: 70px;
  }

  .tp--marquee-text-inner {
    gap: 30px;
  }

  .tp-blocks-titlebox {
    max-width: 460px;
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .tp-blocks-item {
    font-size: 16px;
    padding: 12px 14px;
  }

  .tp-blocks-wrapper {
    gap: 20px;
  }

  .tp-blocks-list {
    gap: 3px;
  }

  .tp-inner-page-titlebox .sec-title {
    max-width: 450px;
    margin: 0 auto;
  }

  .innerpage-btn-prev,
  .innerpage-btn-next {
    width: 50px;
    height: 50px;
  }

  .sub-title-2 {
    font-size: 16px;
  }

  .tp-responsive-titlebox {
    padding-bottom: 35px;
  }

  .tp-responsive-img {
    margin-bottom: 40px;
  }

  .tp-responsive-list {
    padding: 30px 30px 25px;
  }

  .tp-responsive-item .title {
    font-size: 16px;
  }

  .tp-responsive-item p {
    font-size: 14px;
  }

  .tp-faq-titlebox {
    padding-bottom: 40px;
  }

  .tp-faq-body p {
    font-size: 16px;
  }

  .tp-faq-header {
    font-size: 20px;
  }

  .tp-footer-content {
    margin-bottom: 70px;
  }

  .tp-footer-content ul {
    gap: 15px;
    margin-bottom: 50px;
    justify-content: space-between;
  }

  .tp-footer-content ul li {
    gap: 15px;
    font-size: 16px;
    color: var(--white-color);
  }

  .tp-hero-area {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .pb-110 {
    padding-bottom: 50px;
  }

  .pt-110 {
    padding-top: 50px;
  }

  .pb-120 {
    padding-bottom: 50px;
  }

  .pt-120 {
    padding-top: 50px;
  }

  .sec-title {
    font-size: 32px;
    letter-spacing: 0;
  }

  .sub-title {
    font-size: 16px;
  }

  .tp-header-btn {
    display: none;
  }

  .tp-hero-wrapper .title {
    font-size: 40px;
  }

  .tp-hero-area {
    padding-top: 120px;
  }

  .tp-hero-wrapper .btn-group {
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }

  .btn-group a {
    justify-content: center;
    width: 100%;
  }

  .tp-hero-wrapper .img-2 {
    max-width: 220px;
  }

  .tp-hero-wrapper .img-1,
  .tp-hero-wrapper .img-3 {
    max-width: 120px;
  }

  .tp-hero-wrapper .img-1 {
    margin-right: -50px;
  }

  .tp-hero-wrapper .img-3 {
    margin-left: -50px;
  }

  .tp-header-wrapper {
    grid-template-columns: 1fr auto;
  }

  .tp-core-features-titlebox {
    padding-bottom: 25px;
  }

  .tp-core-features-list {
    grid-template-columns: 1fr;
  }

  .tp-demo-number {
    font-size: 100px;
  }

  .tp-demo-area {
    padding-top: 40px;
  }

  .tp-demo-titlebox {
    padding-bottom: 25px;
  }

  .tp-demo-list {
    gap: 10px;
  }

  .tp-elementor-wrapper {
    grid-template-columns: 1fr;
  }

  .tp-elementor-left .sub-title {
    margin-bottom: 15px;
  }

  .tp-elementor-left p {
    padding-top: 7px;
    padding-bottom: 25px;
    font-size: 16px;
  }

  .tp-elementor-left li {
    font-size: 16px;
    gap: 7px;
  }

  .tp-elementor-left li svg {
    width: 18px;
  }

  .tp-elementor-left ul {
    display: grid;
    gap: 15px;
  }

  .tp--marquee-text {
    font-size: 80px;
    letter-spacing: 0;
  }

  .tp-blocks-titlebox {
    max-width: 460px;
    padding-top: 35px;
    padding-bottom: 25px;
  }

  .tp-blocks-wrapper,
  .tp-blocks-list {
    gap: 15px;
  }

  .tp-inner-page-titlebox .sub-title {
    margin-bottom: 20px;
  }

  .tp-inner-page-titlebox {
    max-width: 630px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .innperpage-navigation {
    margin: 30px auto 0px;
    padding: 0 15px;
  }

  .tp-features2-titlebox {
    padding-bottom: 30px;
  }

  .tp-features2-item {
    min-height: 110px;
    min-width: 150px;
    padding: 20px;
  }

  .tp-features2-wrapper {
    gap: 15px;
  }

  .tp-responsive-titlebox {
    padding-bottom: 25px;
  }

  .tp-responsive-img {
    margin-bottom: 30px;
  }

  .tp-responsive-list {
    flex-wrap: wrap;
    gap: 30px;
  }

  .tp-faq-wrapper {
    max-width: 910px;
    padding: 0 15px;
  }

  .tp-faq-header {
    padding: 15px;
    font-size: 18px;
  }

  .tp-faq-body p {
    padding: 0 15px 20px;
  }

  .tp-faq-list {
    gap: 15px;
  }

  .tp-footer-content .sec-title {
    padding-bottom: 25px;
  }

  .tp-footer-content ul {
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .tp-footer-content .btn-group {
    gap: 10px;
    flex-wrap: wrap;
  }

  .tp-footer-content {
    margin-bottom: 50px;
  }

  .tp-feature-list {
    flex-wrap: wrap;
    gap: 5px;
  }

  .scroll--top {
    right: 15px;
  }

  .scroll--top.showed {
    bottom: 15px;
  }

  .tp-header-area {
    padding-top: 15px;
    padding-bottom: 8px;
  }

}