

.reveal-type {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}
.reveal-type .line .word .char:nth-child(1) {
  text-transform: capitalize !important;
}

.reveal-type-2 {
  text-transform: lowercase !important;
  letter-spacing: -0.7px;
}

.split-in-right {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}

.split-in-right-hero {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}

.split-in-left {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}

.split-in-down {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}
.split-in-down .split-line {
  overflow: hidden;
}

.split-in-scale {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}
.split-in-scale .split-line {
  overflow: hidden;
}

.split-in-rotate {
  text-transform: unset !important;
  letter-spacing: -0.5px;
}
.split-in-rotate .split-line {
  overflow: hidden;
}

.mobile_menu_button {
  width: 95px;
  height: 60px;
  background-color: var(--pr-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .mobile_menu_button {
    width: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .mobile_menu_button {
    width: 158px;
  }
}
.mobile_menu_button .icon {
  width: 24px;
  height: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}
.mobile_menu_button .icon .icon-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--white-color);
  transition: 500ms ease-in-out;
}
.mobile_menu_button .text {
  font-family: var(--ss4);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: capitalize;
}
.mobile_menu_button:hover .icon {
  animation: h1-menu-rotated 2s ease-in-out infinite;
}
.mobile_menu_button:hover .icon .icon-dot:nth-child(1) {
  transform: translate(2px, 2px);
}
.mobile_menu_button:hover .icon .icon-dot:nth-child(3) {
  transform: translate(-2px, 2px);
}
.mobile_menu_button:hover .icon .icon-dot:nth-child(7) {
  transform: translate(2px, -2px);
}
.mobile_menu_button:hover .icon .icon-dot:nth-child(9) {
  transform: translate(-2px, -2px);
}

@keyframes h1-menu-rotated {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.gto-btn-2 {
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background-color: var(--pr-color);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--urbanist);
  text-transform: uppercase;
  color: #fff;
  padding: 21px 35px;
  border-radius: 30px;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  cursor: pointer;
}
.gto-btn-2::after {
  background-color: var(--heading-color);
  border-radius: 30px;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.gto-btn-2 .icon-1 {
  margin-left: 5px;
  rotate: -45deg;
  transition: 400ms ease;
}
.gto-btn-2 .icon-2 {
  margin-right: 4px;
  font-size: 16px;
  transition: 400ms ease;
}
.gto-btn-2 .icon-img {
  margin-right: 5px;
}
.gto-btn-2:is(.footer) {
  padding: 16px 35px;
  border: 1px solid transparent;
}
.gto-btn-2:is(.footer):hover {
  border: 1px solid var(--pr-color);
}
.gto-btn-2:hover {
  color: #fff;
  transform: scale(1.05);
  will-change: transform;
}
.gto-btn-2:hover::after {
  transform: translate(0, 0);
}
.gto-btn-2:hover .icon-1 {
  rotate: 0deg;
}
.gto-btn-2:hover .icon-2 {
  rotate: 45deg;
}

.gto-btn-border {
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background-color: transparent;
  border: 1px solid var(--pr-color);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--urbanist);
  text-transform: uppercase;
  color: var(--pr-color);
  padding: 21px 35px;
  border-radius: 30px;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  cursor: pointer;
}
.gto-btn-border::after {
  background-color: var(--pr-color);
  border-radius: 30px;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.gto-btn-border .icon-1 {
  margin-left: 5px;
  rotate: -45deg;
  transition: 400ms ease;
}
.gto-btn-border:hover {
  color: #fff;
  transform: scale(1.05);
  will-change: transform;
}
.gto-btn-border:hover::after {
  transform: translate(0, 0);
}
.gto-btn-border:hover .icon-1 {
  rotate: 0deg;
}

.gto-play-btn-5 {
  display: inline-block;
  position: relative;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  text-align: center;
  line-height: 77px;
  background-color: var(--pr-color);
  font-size: 24px;
  color: #fff;
  animation: gto-plybtn-5 5s infinite ease-in-out;
  transition: 400ms ease;
}
.gto-play-btn-5:hover {
  color: var(--pr-color);
  background: var(--heading-color);
}

@keyframes gto-plybtn-5 {
  0% {
    outline: 0px solid rgba(0, 0, 0, 0.6);
  }
  100% {
    outline: 30px solid rgba(0, 0, 0, 0);
  }
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 0;
  height: 60px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 20px 20px 0px 0px;
  z-index: 5;
  opacity: 1;
  visibility: visible;
  transition: all 300ms linear;
  background: #a488f6;
  font-size: 20px;
  text-align: center;
  color: #fff;
  transform: translateY(80px);
}

.scroll-top-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8px;
  padding-top: 16px;
}
.scroll-top-wrap .icon-2 {
  font-size: 16px;
  position: absolute;
  left: 33%;
  bottom: 22%;
  transform: translate(-50%, -50%);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.offcanvas-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(4, 0, 23, 0.8);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  transform: scaleX(0);
  transform-origin: left;
}
.offcanvas-overlay:is(.overlay_open) {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.offcanvas-overlay:is(.visible) {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.offcanvas-overlay:is(.active) {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}

/* ======= Text Animation style ======= */
.splitting.animated .char {
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splitting .whitespace {
  width: 10px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.splitting.txt.animated .char {
  -webkit-animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.3s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(10ms * var(--char-index));
  animation-delay: calc(10ms * var(--char-index));
}

.splitting.txt .whitespace {
  width: 5px;
}

@keyframes gtp-p1-img {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(20px, 0px);
  }
  50% {
    transform: translate(0px, -10px);
  }
  75% {
    transform: translate(16px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes text-slide-2 {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
.txr-img {
  --_g: 10% /45% 45% no-repeat linear-gradient(#000 0 0);
  --m: left var(--_i, 0%) top var(--_g), bottom var(--_i, 0%) left var(--_g),
    top var(--_i, 0%) right var(--_g), right var(--_i, 0%) bottom var(--_g);
  -webkit-mask: var(--m);
  mask: var(--m);
  filter: grayscale(100%);
  transition: 1000ms ease;
  transition-delay: 1s;
}

.asx-class:is(.active) .txr-img {
  --_i: 10%;
  filter: grayscale(0);
  transform: scale(1.2);
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background-color: #fff;
}
#preloader .loader {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
#preloader .loader img {
  width: 30%;
  max-width: 150px;
}

.heading {
  font-family: var(--urbanist);
  color: var(--heading-color);
}

.section-title {
  font-size: 65px;
  line-height: 1.15;
  margin-bottom: 35px;
}
.section-title .th-color {
  color: var(--pr-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .section-title:is(.br-hide) br {
    display: none;
  }
}

.subtitle-1 {
  display: inline-block;
  color: var(--pr-color);
  background-color: rgba(236, 72, 19, 0.1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.para {
  font-size: 20px;
  line-height: 30px;
  color: var(--para-color);
  font-weight: 500;
}

/*
************
*************************
07. header
*******************************************************
*************************************************************** */
.header_sticky:is(.sticky) {
  -webkit-transition: all 400ms ease 0s;
  -moz-transition: all 400ms ease 0s;
  -ms-transition: all 400ms ease 0s;
  -o-transition: all 400ms ease 0s;
  transition: all 400ms ease 0s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: slideInDown 0.5s;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
    -ms-transform: translateY(-400px);
    transform: translateY(-400px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.gto-header-1-area:is(.sticky) {
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 999;
}

.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
}

.top-header {
  background: #FFFCF9;
  backdrop-filter: blur(15px);
}
.top-header-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .top-header-content {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.top-header-content .text-item {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 20px;
  color: #606364;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .top-header-content .text-item {
    text-align: center;
  }
}
.top-header-content .text-item i {
  margin-right: 5px;
  color: var(--pr-color);
}
.top-header-content .text-item span {
  display: inline-block;
  color: var(--pr-color);
  margin-right: 3px;
}

.main-header {
  padding: 15px 0;
}

.main-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-navigation .main-navigation .navbar-nav {
  display: inherit;
}
.main-navigation .main-navigation .navbar-nav li {
  display: inline-block;
  margin: 0 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-navigation .main-navigation .navbar-nav li {
    margin: 0 0px;
  }
}
.main-navigation .main-navigation .navbar-nav li a {
  font-family: var(--urbanist);
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  padding: 35px 15px;
  display: inline-block;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-navigation .main-navigation .navbar-nav li a {
    padding: 35px 5px;
  }
}
.main-navigation .main-navigation .navbar-nav li a::after {
  content: "";
  position: absolute;
  background-color: var(--pr-color);
  width: 100%;
  height: 40px;
  border-radius: 100%;
  left: 0;
  top: 24px;
  transform: scaleY(0);
  z-index: -1;
  transition: 400ms ease;
}
.main-navigation .main-navigation .navbar-nav li a:hover {
  color: #fff;
}
.main-navigation .main-navigation .navbar-nav li a:hover::after {
  transform: scaleY(1);
}

/*
header 1
======end======
*/
/*
************
*************************
08. mobile-menu
*******************************************************
*************************************************************** */
.mobile_logo {
  top: 10px;
  left: 15px;
  display: none;
  position: absolute;
}

.mobile_menu_content {
  top: 0px;
  bottom: 0;
  left: -350px;
  height: 100vh;
  z-index: 101;
  position: fixed;
  width: 310px;
  overflow-y: scroll;
  background-color: #0f0d0d;
  padding: 20px 35px 35px 35px;
  -webkit-box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
  box-shadow: 0px 3px 5px rgba(100, 100, 100, 0.19);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.mobile_menu_content .mobile-main-navigation {
  width: 100%;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav {
  width: 100%;
}

.mobile_menu_content .dropdown:after {
  display: none;
}

.mobile_menu_content .navbar-nav .dropdown-menu {
  position: static !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li {
  width: 100%;
  display: block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li a {
  padding: 0;
  width: 100%;
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--urbanist);
  text-transform: capitalize;
  padding: 10px 30px 10px 0 !important;
}
.mobile_menu_content .mobile-main-navigation .navbar-nav li a:hover {
  color: var(--h1-pr-color);
}

.mobile_menu_content .m-brand-logo {
  width: 120px;
  margin: 50px auto;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_content {
  left: 0px;
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.mobile_menu_overlay {
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  right: 0%;
  height: 120vh;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mobile_menu_overlay_on {
  overflow: hidden;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
  opacity: 1;
  visibility: visible;
}

.mobile_menu .mobile-main-navigation .navbar-nav li a:after {
  display: none;
}

.mobile_menu .mobile-main-navigation .dropdown > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu {
  border: none;
  display: none;
  -webkit-transition: none;
  transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 5px 0px;
  width: 100%;
  background-color: transparent;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li {
  border: none;
  padding: 0 10px;
  line-height: 1;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li:hover {
  background-color: transparent;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a {
  color: #fff;
}

.mobile_menu .mobile_menu_content .mobile-main-navigation .navbar-nav .dropdown-menu li a:hover {
  color: var(--h1-pr-color);
  background-color: transparent;
}

.mobile_menu .dropdown {
  position: relative;
}

.mobile_menu .dropdown .dropdown-btn {
  color: #9397a7;
  position: absolute;
  top: 3px;
  right: 0;
  height: 30px;
  padding: 5px 10px;
}

.mobile_menu .dropdown .dropdown-btn.toggle-open {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile_menu .mobile_menu_close {
  top: 25px;
  right: 25px;
  cursor: pointer;
  color: #d60606;
  font-size: 20px;
  position: absolute;
}

.mobile_menu .mobile-search-bar {
  margin-bottom: 40px;
}

.mobile_menu .mobile-search-bar input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #616161;
  background-color: transparent;
}

.mobile_menu .mobile-search-bar input::-webkit-input-placeholder {
  color: #616161;
}

.mobile_menu .mobile-search-bar input::-moz-placeholder {
  color: #616161;
}

.mobile_menu .mobile-search-bar input:-ms-input-placeholder {
  color: #616161;
}

.mobile_menu .mobile-search-bar input::-ms-input-placeholder {
  color: #616161;
}

.mobile_menu .mobile-search-bar input::placeholder {
  color: #616161;
}

.mobile_menu .mobile-search-bar button {
  top: 0;
  right: 0;
  color: #fff;
  padding: 0;
  height: 50px;
  border: none;
  position: absolute;
  background-color: transparent;
}

.mobile_menu .bi-mobile-header-social {
  margin-top: 40px;
}

.mobile_menu .bi-mobile-header-social a {
  color: #fff;
  margin: 0px 8px;
  font-size: 15px;
}

.mobile_menu .bi-mobile-header-social a:hover {
  color: var(--base-color);
}

.mobile_menu_content {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.mobile_menu_content::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 5px;
  opacity: 0;
}
.mobile_menu_content::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 5px;
  opacity: 0;
}
.mobile_menu_content::-webkit-scrollbar-thumb:hover {
  background: var(--clr-theme-secondary);
}

.hero-area {
  padding-top: 210px;
}

.hero-title {
  font-size: 80px;
  line-height: 1.12;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.hero-title .th-color {
  color: var(--pr-color);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 40px;
  }
}

.hero-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .hero-btn-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero-img-wrap {
  position: relative;
}
.hero-img-wrap .hero-img-1 {
  width: 100%;
  max-width: 1020px;
  height: 580px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-img-wrap .hero-img-1 {
    background-position: center center;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-img-wrap .hero-img-1 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .hero-img-wrap . {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 180px;
    width: 280px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-img-wrap .hero-img-1 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 290px;
    width: 100%;
    margin: 0 auto;
  }
}
.hero-img-wrap .hero-img-1 .inner-img-wrap {
  height: 485px;
  overflow: hidden;
  position: absolute;
  left: 130px;
  top: 30px;
  width: 75%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-img-wrap .hero-img-1 .inner-img-wrap {
    left: 98px;
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-img-wrap .hero-img-1 .inner-img-wrap {
    height: 325px;
    left: 90px;
    top: 30px;
    width: 75%;
  }
}
@media (max-width: 767px) {
  .hero-img-wrap .hero-img-1 .inner-img-wrap {
    height: 200px;
    overflow: hidden;
    position: absolute;
    left: 52px;
    top: 95px;
    width: 75%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-img-wrap .hero-img-1 .inner-img-wrap {
    height: 235px;
    left: 66px;
    top: 19px;
    width: 75%;
  }
}
.hero-img-wrap .hero-img-1 .inner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  animation: hero-img-slide 60s infinite;
}
.hero-img-wrap .hero-img-2 {
  width: 100%;
  /* max-width: 590px; */
  max-width: 290px;
  height: 435px;
  overflow: hidden;
  position: absolute;
  right: 330px;
  bottom: 150px;
  border-radius: 10px;
  border: 2px solid #F2E3FF;
  filter: drop-shadow(15px 0px 50px rgba(0, 0, 0, 0.15));
  rotate: -10deg;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-img-wrap .hero-img-2 {
    max-width: 280px;
    right: 210px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-img-wrap .hero-img-2 {
    max-width: 210px;
    right: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-img-wrap .hero-img-2 {
    display: none;
  }
}
.hero-img-wrap .hero-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  animation: hero-img-slide 60s infinite;
}
.hero-img-wrap .hero-img-3 {
  width: 100%;
  /* max-width: 590px; */
  max-width: 290px;
  height: 435px;
  overflow: hidden;
  position: absolute;
  right: 40px;
  bottom: 60px;
  border-radius: 10px;
  border: 2px solid #F2E3FF;
  filter: drop-shadow(15px 0px 50px rgba(0, 0, 0, 0.15));
  rotate: 12deg;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-img-wrap .hero-img-3 {
    max-width: 280px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-img-wrap .hero-img-3 {
    max-width: 210px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-img-wrap .hero-img-3 {
    display: none;
  }
}
.hero-img-wrap .hero-img-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  animation: hero-img-slide 60s infinite;
}

@keyframes hero-img-slide {
  0% {
    object-position: top;
  }
  50% {
    object-position: bottom;
  }
  100% {
    object-position: top;
  }
}
.demo-area {
  padding-top: 230px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .demo-area {
    padding-top: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-area {
    padding-top: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .demo-area {
    padding-top: 60px;
  }
}

.demo-wrap {
  position: relative;
}
.demo-wrap .section-title-wrap .section-title {
  margin: 0 auto;
  width: 100%;
  max-width: 990px;
  margin-bottom: 35px;
}
.demo-wrap .demo-counter {
  position: absolute;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .demo-wrap .demo-counter {
    top: -140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-wrap .demo-counter {
    top: -80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-wrap .demo-counter {
    top: -70px;
  }
}
@media (max-width: 767px) {
  .demo-wrap .demo-counter {
    top: -40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .demo-wrap .demo-counter {
    top: -70px;
  }
}
.demo-wrap .demo-counter .number {
  font-size: 260px;
  font-family: var(--bungee) !important;
  line-height: 1;
  display: block;
  font-weight: 500;
  color: var(--pr-color);
  opacity: 0.12;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .demo-wrap .demo-counter .number {
    font-size: 220px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-wrap .demo-counter .number {
    font-size: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-wrap .demo-counter .number {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .demo-wrap .demo-counter .number {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .demo-wrap .demo-counter .number {
    font-size: 100px;
  }
}
.demo-wrap .demo-counter .number .odometer {
  font-family: var(--bungee) !important;
  line-height: 1 !important;
  font-weight: 400;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .demo-wrap .demo-counter .number .odometer {
    margin-top: -10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .demo-wrap .demo-counter .number .odometer {
    margin-top: -30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 40px;
  }
}
.feature-list li {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--heading-color);
  display: inline-block;
}
.feature-list li:not(:last-child) {
  margin-right: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .feature-list li:not(:last-child) {
    margin-right: 0px;
  }
}
.feature-list li .icon {
  position: relative;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(-3px);
}
.feature-list li .icon svg * {
  fill: var(--pr-color);
}
.feature-list li .icon::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #B7BABC;
  left: -4px;
  top: 4px;
  z-index: -1;
}

.demo-item-wrap .demo-item {
  flex: 0 0 auto;
  position: relative;
  margin-bottom: 50px;
  padding: 0 20px;
  padding-bottom: 15px;
  width: 33%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-item-wrap .demo-item {
    padding: 0 10px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-item-wrap .demo-item {
    padding: 0 10px;
    padding-bottom: 15px;
    width: 49.5%;
  }
}
@media (max-width: 767px) {
  .demo-item-wrap .demo-item {
    padding: 0 10px;
    padding-bottom: 15px;
    width: 100%;
  }
}
.demo-item-wrap .demo-item:is(.big) .main-img {
  height: 560px;
}
.demo-item-wrap .demo-item:is(.md-size) .main-img {
  height: 450px;
}
.demo-item-wrap .demo-item .main-img {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  border: 3px solid #F4F4F4;
  transition: 400ms ease;
  margin-bottom: 15px;
}
.demo-item-wrap .demo-item .main-img::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(14, 25, 30, 0.36) 0%, rgba(14, 25, 30, 0.36) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 400ms ease;
  opacity: 0;
}
.demo-item-wrap .demo-item .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 10s ease;
}
.demo-item-wrap .demo-item .main-img .btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-item-wrap .demo-item .main-img .btn-wrap {
    height: unset;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .demo-item-wrap .demo-item .main-img .btn-wrap {
    height: unset;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .demo-item-wrap .demo-item .main-img .btn-wrap {
    height: 100%;
    flex-wrap: nowrap;
  }
}
.demo-item-wrap .demo-item .main-img .btn-wrap a {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.25);
  transition: 400ms ease;
  opacity: 0;
  visibility: hidden;
}
.demo-item-wrap .demo-item .main-img .btn-wrap a:nth-child(1) {
  transform: translateX(-100px);
}
.demo-item-wrap .demo-item .main-img .btn-wrap a:nth-child(2) {
  transform: translateX(100px);
}
.demo-item-wrap .demo-item .main-img .btn-wrap .gto-btn-2 {
  text-transform: capitalize;
  background: #fff;
  color: #606364;
}
.demo-item-wrap .demo-item .main-img .btn-wrap .gto-btn-2::after {
  background: var(--pr-color);
}
.demo-item-wrap .demo-item .main-img .btn-wrap .gto-btn-2:hover {
  color: #0F0D16;
}
.demo-item-wrap .demo-item .item-name {
  font-size: 26px;
  line-height: 1.61;
  margin-bottom: 0;
  padding-left: 75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-item-wrap .demo-item .item-name {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .demo-item-wrap .demo-item .item-name {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .demo-item-wrap .demo-item .item-name {
    font-size: 24px;
  }
}
.demo-item-wrap .demo-item .item-number {
  display: block;
  font-size: 64px;
  font-family: var(--bungee);
  line-height: 1;
  color: #000;
  position: absolute;
  bottom: 0;
  left: 20px;
  opacity: 0.1;
  transition: 400ms ease;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .demo-item-wrap .demo-item .item-number {
    font-size: 55px;
    left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .demo-item-wrap .demo-item .item-number {
    font-size: 55px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .demo-item-wrap .demo-item .item-number {
    font-size: 55px;
    left: 10px;
  }
}
.demo-item-wrap .demo-item:hover .main-img {
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.25);
}
.demo-item-wrap .demo-item:hover .main-img::after {
  opacity: 1;
}
.demo-item-wrap .demo-item:hover .main-img img {
  object-position: bottom;
}
.demo-item-wrap .demo-item:hover .main-img .btn-wrap a {
  opacity: 1;
  visibility: visible;
}
.demo-item-wrap .demo-item:hover .main-img .btn-wrap a:nth-child(1) {
  transform: translateX(0px);
}
.demo-item-wrap .demo-item:hover .main-img .btn-wrap a:nth-child(2) {
  transform: translateX(0px);
}
.demo-item-wrap .demo-item:hover .item-number {
  color: var(--pr-color);
  opacity: 1;
}

.revolution-wrap {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 0.6fr;
  align-items: center;
  gap: 90px;
  margin-bottom: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .revolution-wrap {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .revolution-wrap {
    gap: 50px;
    grid-template-columns: 1fr;
  }
}
.revolution-wrap .free-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background: var(--pr-color);
  border-radius: 30px;
  padding: 1px 15px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.revolution-wrap .title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.28;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--heading-color);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .revolution-wrap .title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .revolution-wrap .title {
    font-size: 40px;
  }
}
.revolution-wrap .text {
  display: inline-block;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .revolution-wrap .text {
    font-size: 18px;
  }
}
.revolution-wrap .text span {
  color: var(--pr-color);
  margin-right: 8px;
}
.revolution-wrap .pera {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--para-color);
  margin-bottom: 0;
}
.revolution-wrap .icon {
  width: 140px;
  height: 140px;
  border: 5px solid var(--pr-color);
  border-radius: 50%;
  text-align: center;
  line-height: 135px;
  font-size: 50px;
  color: var(--pr-color);
}

.plugin-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.plugin-item-wrap {
  padding: 56px 100px;
  border-radius: 140px;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .plugin-item-wrap {
    gap: 30px;
    padding: 56px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .plugin-item-wrap {
    gap: 30px;
    padding: 56px 60px;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .plugin-item-wrap {
    gap: 30px;
    padding: 56px 15px;
    flex-wrap: wrap;
    border-radius: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .plugin-item-wrap {
    gap: 30px;
    padding: 56px 60px;
    flex-wrap: wrap;
    border-radius: 30px;
  }
}
.plugin-item .logo {
  width: 80px;
  flex: 0 0 auto;
}
.plugin-item .name {
  font-size: 24px;
  line-height: 1.41;
  margin-bottom: 0;
  font-weight: 600;
}

.tutorial-img {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: auto;
}
.tutorial-img .gto-play-btn-5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-area {
  position: relative;
  overflow: hidden;
}
.feature-area .bg-text {
  font-size: 160px;
  font-weight: 900;
  color: var(--heading-color);
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 2%;
  margin: 0;
  opacity: 0.04;
  animation: f-bg-text 10s linear infinite;
  white-space: nowrap;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .feature-area .bg-text {
    font-size: 140px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-area .bg-text {
    font-size: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-area .bg-text {
    font-size: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-area .bg-text {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .feature-area .bg-text {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-area .bg-text {
    font-size: 60px;
  }
}
.feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 1295px;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .feature-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-item {
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(14, 25, 30, 0.1) inset;
  backdrop-filter: blur(10px);
  align-items: center;
  padding: 50px 40px;
  text-align: center;
}
.feature-item .feature-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item .feature-name {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-item .feature-name {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .elmt-area {
    padding-bottom: 120px;
  }
}

.elmt-wrap {
  width: 100%;
  max-width: 1295px;
  margin: auto;
}
.elmt-wrap .section-title-wrap .para {
  width: 100%;
  max-width: 560px;
}
.elmt-wrap .feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .elmt-wrap .feature-list {
    grid-template-columns: 1fr;
  }
}
.elmt-wrap .feature-list li {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}
.elmt-wrap .feature-list li .icon {
  margin-right: 5px;
}
.elmt-wrap .feature-list li .icon svg {
  width: 22px;
}
.elmt-wrap .feature-list li .icon svg * {
  fill: var(--heading-color);
}
.elmt-wrap .feature-list li .icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #B7BABC;
  left: -4px;
  top: 7px;
  z-index: -1;
}

.elmt-img-wrap {
  margin-right: -280px;
  position: relative;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .elmt-img-wrap {
    margin-right: -140px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .elmt-img-wrap {
    margin-right: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .elmt-img-wrap {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .elmt-img-wrap {
    margin-top: 50px;
    margin-right: 0px;
  }
}
.elmt-img-wrap .icon {
  position: absolute;
  left: 0;
  bottom: 35px;
}

.inner-page-area {
  position: relative;
  padding-top: 240px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page-area {
    padding-top: 210px;
  }
}
@media (max-width: 767px) {
  .inner-page-area {
    padding-top: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .inner-page-area {
    padding-top: 190px;
  }
}
.inner-page-overflow {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.inner-page-overflow::after {
  content: "";
  width: 300px;
  height: 120%;
  top: -50px;
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 20%, rgba(255, 248, 203, 0) 100%);
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .inner-page-overflow::after {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .inner-page-overflow::after {
    width: 100px;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 248, 203, 0) 100%);
  }
}
.inner-page-overflow::before {
  content: "";
  width: 300px;
  height: 120%;
  top: -50px;
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 20%, rgba(255, 248, 203, 0) 100%);
  position: absolute;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page-overflow::before {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .inner-page-overflow::before {
    width: 100px;
    background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 248, 203, 0) 100%);
  }
}
.inner-page-wrap-1 {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 50px;
  animation: inner-page-slider-left 40s linear infinite;
}
.inner-page-wrap-2 {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  animation: inner-page-slider-right 40s linear infinite;
}
.inner-page-item {
  flex: 0 0 auto;
  width: 450px;
  height: 310px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 30px 2px rgba(4, 1, 17, 0.08);
  transition: 400ms ease;
}

.inner-page-counter {
  position: absolute;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
}
.inner-page-counter .number {
  font-size: 260px;
  line-height: 1;
  font-weight: 400;
  font-family: var(--bungee);
  color: var(--pr-color);
  opacity: 12%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inner-page-counter .number {
    font-size: 220px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page-counter .number {
    font-size: 190px;
  }
}
@media (max-width: 767px) {
  .inner-page-counter .number {
    font-size: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .inner-page-counter .number {
    font-size: 170px;
  }
}

@keyframes inner-page-slider-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes inner-page-slider-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.woocom-area {
  background-color: rgba(236, 72, 19, 0.08);
}

.woocom-wrap {
  width: 100%;
  max-width: 1295px;
  margin: auto;
}
.woocom-wrap .section-title-wrap {
  width: 100%;
  max-width: 550px;
}
.woocom-wrap .feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .woocom-wrap .feature-list {
    grid-template-columns: 1fr;
  }
}
.woocom-wrap .feature-list li {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
}
.woocom-wrap .feature-list li .icon {
  margin-right: 5px;
}
.woocom-wrap .feature-list li .icon svg {
  width: 22px;
}
.woocom-wrap .feature-list li .icon svg * {
  fill: var(--pr-color);
}
.woocom-wrap .feature-list li .icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #B7BABC;
  left: -4px;
  top: 7px;
  z-index: -1;
}

.woocom-img-wrap {
  margin-right: -190px;
  position: relative;
}
.woocom-img-wrap .bg-shape {
  display: block;
  position: absolute;
  content: "";
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--pr-color);
  right: 0;
  top: -60px;
  z-index: -1;
  opacity: 0.12;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .woocom-img-wrap .bg-shape {
    width: 500px;
    height: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .woocom-img-wrap .bg-shape {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .woocom-img-wrap .bg-shape {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .woocom-img-wrap .bg-shape {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .woocom-img-wrap {
    margin-right: -140px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .woocom-img-wrap {
    margin-right: -40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .woocom-img-wrap {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .woocom-img-wrap {
    margin-top: 100px;
    margin-right: 0px;
  }
}
.woocom-img-wrap .popup-1 {
  position: absolute;
  bottom: -20px;
  left: -100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .woocom-img-wrap .popup-1 {
    width: 30%;
    left: -20px;
  }
}
.woocom-img-wrap .popup-3 {
  position: absolute;
  top: -30px;
  left: 30px;
}
.woocom-img-wrap .popup-2 {
  position: absolute;
  right: 0;
  top: -60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .woocom-img-wrap .popup-2 {
    width: 30%;
  }
}

.portfolio-content .section-title-wrap {
  width: 100%;
  max-width: 510px;
}

.portfolio-area {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-area {
    padding-top: 120px;
    padding-bottom: 70px;
  }
}
.portfolio-area::after {
  position: absolute;
  content: "";
  width: 45%;
  height: 100%;
  background: #5969FC;
  top: 0;
  left: 0;
  opacity: 0.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-area::after {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-area::after {
    width: 30%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-area::after {
    display: none;
  }
}

.portfolio-item {
  flex: 0 0 auto;
  width: 470px;
  height: 680px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-item {
    width: 310px;
    height: 580px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-item {
    width: 410px;
    height: 450px;
  }
}

.portfolio-item-wrap {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.portfolio-item-position {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 56%;
  overflow: hidden;
  padding: 50px 0;
  padding-right: 50px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-item-position {
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .portfolio-item-position {
    position: unset;
    transform: unset;
    max-width: 100%;
  }
}

.responsive-area .feature-list {
  text-align: center;
}
.responsive-img-wrap .img {
  width: 100%;
}

.testimonial-area {
  position: relative;
  background-color: var(--white-color);
}
.testimonial-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 360px;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.testimonial-title-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1290px;
  margin: auto;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-title-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-title-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .testimonial-title-wrap .section-title {
    margin-bottom: 0px;
  }
}
.testimonial-wrap {
  display: flex;
  width: 100%;
  gap: 20px;
  overflow: hidden;
  height: 1020px;
  padding: 50px;
  max-width: 1370px;
  margin: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .testimonial-wrap {
    display: grid;
    grid-template-columns: 1fr;
    padding: 50px 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrap {
    display: grid;
    grid-template-columns: 1fr;
    padding: 50px;
  }
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.testimonial-content:is(.t-content-4) {
  justify-content: flex-end;
  animation: slideup 20s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-content:is(.t-content-4) {
    display: none;
  }
}
.testimonial-content:is(.t-content-3) {
  justify-content: flex-start;
  animation: slidedown 20s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .testimonial-content:is(.t-content-3) {
    display: none;
  }
}
.testimonial-content:is(.t-content-2) {
  animation: slideup 20s linear infinite;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .testimonial-content:is(.t-content-2) {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-content:is(.t-content-2) {
    display: inline-block;
  }
}
.testimonial-content:is(.t-content-1) {
  animation: slidedown 20s linear infinite;
  justify-content: flex-start;
}
.testimonial-item {
  border-radius: 10px;
  background: var(--white-color);
  box-shadow: 0px 5px 30px 0px rgba(0, 7, 26, 0.08);
  padding: 25px;
  margin-bottom: 20px;
}
.testimonial-item .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.testimonial-item .header .icon {
  flex: 0 0 auto;
}
.testimonial-item .header .name {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: capitalize;
  line-height: 1;
}
.testimonial-item .header .name span {
  display: inline-block;
  font-weight: 400;
  color: #4D515F;
}
.testimonial-item .text {
  font-size: 19px;
  line-height: 160%;
  color: var(--heading-color);
  margin-bottom: 15px;
}
.testimonial-item .ratting-wrap i {
  font-size: 16px;
  color: #FFB820;
}

.testimonial-pera {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--para-color);
  margin-bottom: 0;
}

@keyframes slideup {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slidedown {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.support-animation {
  overflow: hidden;
}

.support-area {
  border-radius: 0 0 180px 180px;
}
@media (max-width: 767px) {
  .support-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.support-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .support-wrap {
    grid-template-columns: 1fr;
  }
}
.support-item {
  text-align: center;
  padding: 95px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .support-item {
    padding: 95px 15px;
  }
}
@media (max-width: 767px) {
  .support-item {
    padding: 40px 15px;
  }
}
.support-item:not(:last-child) {
  border-right: 1px solid rgba(14, 25, 30, 0.1);
}
@media (max-width: 767px) {
  .support-item:not(:last-child) {
    border-right: none;
  }
}
.support-item .s-logo {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .support-item .s-logo svg {
    width: 60px;
  }
}
.support-item .s-logo svg * {
  fill: var(--pr-color);
}
.support-item .s-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .support-item .s-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .support-item .s-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .support-item .s-title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .support-item .s-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .support-item .s-title {
    font-size: 28px;
  }
}
.support-item .s-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--urbanist);
}

.txr-text-slide-area {
  position: relative;
  overflow: hidden;
}
.txr-text-slide-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  animation: inner-page-slider-right 20s linear infinite;
  padding: 60px 0;
}
.txr-text-slide-item {
  font-size: 180px;
  margin-bottom: 0;
  line-height: 1;
  text-transform: capitalize;
  white-space: nowrap;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .txr-text-slide-item {
    font-size: 140px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .txr-text-slide-item {
    font-size: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .txr-text-slide-item {
    font-size: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-text-slide-item {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-text-slide-item {
    font-size: 60px;
  }
}
.txr-text-slide-item:is(.style-1) {
  background: var(--pr-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txr-text-slide-item:is(.style-2) {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--pr-color);
  color: transparent;
}

.txr-footer-area {
  border-radius: 300px 300px 0 0;
}
@media (max-width: 767px) {
  .txr-footer-area {
    border-radius: 190px 190px 0 0;
  }
}
.txr-footer-top-content .footer-logo {
  margin-bottom: 30px;
}
.txr-footer-top-content .section-title {
  color: #fff;
}
.txr-footer-top-content .text {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: var(--white-color);
  opacity: 0.7;
  margin-bottom: 43px;
}
.txr-footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.txr-footer-bottom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .txr-footer-bottom-wrap {
    grid-template-columns: 1fr 0.6fr 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.txr-footer-bottom-wrap .author-name {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--white-color);
  line-height: 40px;
  opacity: 0.8;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap .author-name {
    text-align: center;
  }
}
.txr-footer-bottom-wrap .author-name i {
  color: var(--pr-color);
}
.txr-footer-bottom-wrap .author-name a {
  color: var(--pr-color);
}
.txr-footer-bottom-wrap .author-name a:hover {
  color: var(--white-color);
}
.txr-footer-bottom-wrap .f-b-social-link {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap .f-b-social-link {
    text-align: center;
  }
}
.txr-footer-bottom-wrap .f-b-social-link li {
  list-style: none;
  display: inline-block;
}
.txr-footer-bottom-wrap .f-b-social-link li a {
  position: relative;
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  display: inline-block;
  margin: 0 5px;
}
.txr-footer-bottom-wrap .f-b-social-link li a i {
  background: var(--pr-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 500ms;
  position: relative;
  z-index: 1;
}
.txr-footer-bottom-wrap .f-b-social-link li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--pr-color);
  opacity: 0.2;
  left: 0;
  top: 0;
  border-radius: 50%;
  transition: 500ms;
}
.txr-footer-bottom-wrap .f-b-social-link li a:hover i {
  background: unset;
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--white-color);
}
.txr-footer-bottom-wrap .f-b-social-link li a:hover::after {
  opacity: 1;
}
.txr-footer-bottom-wrap .copyright-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: var(--white-color);
  opacity: 0.8;
  display: inline-block;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .txr-footer-bottom-wrap .copyright-text {
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */
