@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
:root {
  --color-primary: #3a37eb;
  --color-secondary:#111D5E;
  --color-terciary:#90FF03;
  --color-body: #6F737B;
  --color-heading-1: #1C2539;
  --background-color-1:#181C25;
  --color-white:#fff;
  --color-light-heading: #181c32;
  --color-light-body: #65676b;
  --color-border-white: #00000024;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "DM Sans", sans-serif;
  --font-secondary:"Urbanist", sans-serif;
  --font-size-b1: 16px;
  --font-size-b2: 18px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 30px;
  --line-height-b3: 1.7;
  --h1: 66px;
  --h2: 56px;
  --h3: 48px;
  --h4: 36px;
  --h5: 24px;
  --h6: 22px;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "DM Sans", sans-serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
  background: #F7F7F9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow-x: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: "Urbanist", sans-serif;
  line-height: 1.4074;
  color: var(--color-heading-1);
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 91px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.23;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 54px;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
    transform: translate3d(0, 50px, 0) scale(0.7);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
    transform: translate3d(0, 20px, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rts-btn {
  padding: 18px 29px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  font-family: var(--font-secondary);
  border-radius: 15px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.rts-btn:active {
  border: none !important;
  box-shadow: none !important;
}
.rts-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 14px;
}
.rts-btn:hover::before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.rts-btn:focus {
  box-shadow: none;
  border: none;
}
.rts-btn.btn-primary {
  color: #fff;
  background: #111A2E;
}
.rts-btn.btn-primary::before {
  background: var(--color-primary);
}
.rts-btn.btn-primary:hover {
  background: #111A2E;
  color: #fff;
}
.rts-btn.btn-secondary {
  color: var(--color-primary);
  background: var(--color-primary);
}
.rts-btn.btn-secondary::before {
  background: #fff;
}
.rts-btn.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
.rts-btn.hover-title::before {
  background: var(--color-primary) !important;
}
.rts-btn.hover-title:hover {
  background: #111A2E;
  color: #fff;
}

.rts-loanding-header {
  overflow-x: hidden;
}

.header-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-wrapper .logo-area .thumbnail img {
    width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .header-main-wrapper .logo-area .thumbnail img {
    width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .header-main-wrapper .nav-area {
    display: none;
  }
}
.header-main-wrapper .nav-area .nav li {
  margin: 0 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-wrapper .nav-area .nav li {
    margin: 0 7px;
  }
}
.header-main-wrapper .nav-area .nav li a {
  color: #111A2E;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  transition: 0.3s;
}
.header-main-wrapper .nav-area .nav li a:hover {
  color: var(--color-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-wrapper .button-area .rts-btn {
    padding: 14px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-main-wrapper .button-area .rts-btn {
    padding: 14px 20px;
  }
}

.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  backdrop-filter: blur(9px);
  width: 100%;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  background: #fff;
  z-index: 999;
}
.header--sticky.sticky .thumbnail img {
  max-width: 140px;
}

.banner-area-start {
  position: relative;
  overflow-x: hidden;
}
.banner-area-start .five-circle {
  position: absolute;
  top: -10%;
  z-index: 5;
  right: -26%;
  animation: jump-2 8s linear infinite;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .banner-area-start .five-circle {
    right: -56%;
    top: -19%;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-area-start .five-circle {
    display: none;
  }
}

.bg-banner {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.bg-banner .shape-area .shape {
  position: absolute;
  z-index: -1;
}
.bg-banner .shape-area .one-circle {
  top: -45%;
  left: -5%;
  z-index: -1;
  animation: jump-2 8s linear infinite;
}
@media only screen and (max-width: 767px) {
  .bg-banner .shape-area .one-circle {
    height: 300px;
    width: 300px;
    top: -30%;
  }
}
.bg-banner .shape-area .two-circle {
  bottom: -9%;
  left: 0%;
  z-index: -1;
  animation: jump-1 5s linear infinite;
}
.bg-banner .shape-area .three-circle {
  bottom: 23%;
  left: 18%;
  animation: jump-3 7s linear infinite;
}
.bg-banner .shape-area .four-circle {
  bottom: 40%;
  animation: jump-2 5s linear infinite;
  left: 5%;
}
.bg-banner .shape-area .five-circle {
  bottom: 15%;
  animation: jump-2 5s linear infinite;
  right: -33%;
  z-index: 1;
}
.bg-banner .shape-area .six-circle {
  bottom: -18%;
  animation: jump-3 10s linear infinite;
  right: -15%;
}
@media only screen and (max-width: 767px) {
  .bg-banner .shape-area .six-circle {
    height: 300px;
    width: 300px;
  }
}

.banner-wrapper-one {
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-wrapper-one .inner {
  padding: 110px 0 170px 0;
}
.banner-wrapper-one .section-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0 0 0;
}
@media(max-width:767px){
  .banner-wrapper-one .section-bottom{
    display: none;
  }
}
.banner-wrapper-one .section-bottom .content{
  display: flex;
  align-items: center;
  background: #fff;
  margin: 0 15px;
  border-radius: 75px;
  padding: 18px;
  width: 210px;
}
.banner-wrapper-one .section-bottom .content .number{
  background: #3B38EB;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 12px;
}

.banner-wrapper-one .section-bottom .content .text{
  text-align: left;
}
.banner-wrapper-one .section-bottom .content .text h6{
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.banner-wrapper-one .section-bottom .content .text p{
  color: #000;
  margin: 0;
}
.banner-wrapper-one h1.title {
  font-weight: 700;
  font-size: 72px;
  line-height: 90px;
}
@media only screen and (max-width: 1199px) {
  .banner-wrapper-one h1.title {
    font-size: 56px;
    line-height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-wrapper-one h1.title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 450px) {
  .banner-wrapper-one h1.title br {
    display: none;
  }
}
.banner-wrapper-one .icon-area {
  text-align: center;
  margin-top: 40px;
}
.banner-wrapper-one .icon-area ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.banner-wrapper-one .icon-area ul li {
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  .banner-wrapper-one .icon-area ul li {
    margin: 0 5px;
  }
}
.banner-wrapper-one .icon-area ul li a {
  padding: 20px;
  background: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: block;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .banner-wrapper-one .icon-area ul li a {
    height: 60px;
    width: 60px;
  }
}
.banner-wrapper-one .icon-area ul li a img {
  width: 38px;
  height: 38px;
}
@media only screen and (max-width: 767px) {
  .banner-wrapper-one .icon-area ul li a img {
    width: 26px;
    height: 26px;
  }
}
.banner-wrapper-one .icon-area ul li a:hover {
  transform: translateY(-7px) scale(1.2);
}

.container-two {
  max-width: 1760px;
  margin: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container-two {
    max-width: 90%;
  }
}

.bg-banner {
  background: linear-gradient(270deg, #E8E7FD 0%, #FFFFFF 100%);
}

.home-demo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .home-demo-wrapper {
    justify-content: center;
  }
}

.single-home {
  width: 27%;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-home {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .single-home {
    width: 90%;
  }
}
.single-home.seperator {
  position: relative;
  padding-top: 80px;
  margin-bottom: 80px !important;
  float: left;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .single-home.seperator {
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.single-home.seperator.first::before {
  width: 117%;
}
.single-home.seperator.second::before {
  width: 135%;
  left: -88px;
}
.single-home.seperator.second{
  margin: 0 30px;
}
.single-home.seperator.fourth.onepage{
  margin: 0 50px;
}
.single-home.seperator.third::after {
  display: none;
}
.single-home.seperator.fourth::after {
  position: absolute;
  content: "";
  right: -50px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #E5E5E9;
  z-index: 1;
}
.single-home.seperator.eighth::after {
  display: none;
}
.single-home.seperator.third::before {
  width: 119%;
  left: -88px;
}
.single-home.seperator.first-child {
  padding-top: 0;
}
.single-home.seperator.rp-0 {
  padding-right: 0;
}
.single-home.seperator.rp-0::after {
  display: none;
}
.single-home.seperator.pl-0 {
  padding-left: 0;
}
.single-home.seperator::after {
  position: absolute;
  content: "";
  right: -50px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #E5E5E9;
  z-index: 1;
}
@media(max-width:991px){
  .single-home.seperator.fourth{
    margin: 0 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-home.seperator::after {
    right: -11%;
  }
}
@media only screen and (max-width: 1199px) {
  .single-home.seperator::after {
    right: -13% !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-home.seperator::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .single-home.seperator::after {
    display: none;
  }
}
.single-home .thumbnail {
  width: 100%;
}
.single-home .thumbnail img {
  width: 100%;
  transition: 0.3s;
}
.single-home .inner {
  display: flex;
  justify-content: space-between;
  padding: 18px 19px;
  margin-top: 30px;
}
.single-home .inner.rts-btn {
  border-radius: 0;
}
.single-home .inner.rts-btn::after {
  border-radius: 0;
}
.single-home .inner.rts-btn::before {
  border-radius: 0;
}
.single-home .inner .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}
.single-home .inner .title span{
  opacity: 1;;
}
.single-home .inner span {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.3;
}
.single-home:hover .thumbnail img {
  transform: translateY(-10px);
}

.rts-section-gap {
  padding: 120px 0;
}

.coming-soon {
  filter: blur(2px);
  cursor: not-allowed;
}

.all-demos .demo-nav-tab {
  padding: 18px 29px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  font-family: var(--font-secondary);
  border-radius: 15px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  cursor: pointer;
  margin: 0 10px 80px 10px;
}
@media (max-width: 576px) {
  .all-demos .demo-nav-tab {
    margin-bottom: 20px;
  }
}
.all-demos .demo-nav-tab:hover {
  background: var(--color-primary);
  color: #fff;
}
.all-demos .demo-nav-tab:hover::before {
  transform: scaleX(0);
}
.all-demos .demo-nav-tab::before {
  content: "";
  background: #111A2E;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  border-radius: 14px;
}
.all-demos .demo-nav-tab.active {
  background: #111A2E;
}
.all-demos .demo-nav-tab.active::before {
  background: var(--color-primary);
}
.all-demos .demo-nav-tab.active:hover {
  background: #111A2E;
}
.all-demos .demo-tab {
  display: none;
}
.all-demos .demo-tab.active {
  display: block;
  animation: fadeInUp 2s;
}
@media (max-width: 576px) {
  .all-demos .demo-tab.active {
    margin-top: 30px;
  }
}
.all-demos .demo-tab ul {
  padding: 0;
}

.pb--180 {
  margin-bottom: 30px;
}
.pt--180 {
  padding-top: 180px !important;
}

.section-gap {
  padding: 110px 0;
}
.section-gap h2.title {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  color: #111A2E;
}
@media only screen and (max-width: 575px) {
  .section-gap h2.title {
    font-size: 36px;
    line-height: 45px;
  }
}

.mb-50 {
  margin-bottom: 57px;
}

.single-inner-page {
  filter: drop-shadow(0px 4px 53px rgba(199, 198, 206, 0.34));
}
.single-inner-page .thumbnail img {
  width: 100%;
}

.pt--100 {
  padding-top: 80px;
}

.pb--50 {
  padding-bottom: 50px;
}

.rts-home-demo-area .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  color: #111A2E;
}
@media (max-width: 576px) {
  .rts-home-demo-area .title {
    font-size: 36px;
    line-height: 45px;
  }
}

.inner-page-area {
  position: relative;
}
.inner-page-area .inner_page {
  padding: 50px 0 80px 0;
}
.inner-page-area .swiper-button-wrapper .swiper-button-next {
  height: 55px;
  width: 55px;
  background: #fff;
  border-radius: 10px;
  top: 88%;
  right: 46.5%;
  transition: 0.3s;
  box-shadow: 0px 17px 25px rgba(28, 28, 53, 0.08);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-next {
    right: 44%;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-next {
    right: 44%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-next {
    right: 42%;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-next {
    right: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-next {
    right: 38%;
  }
}
@media only screen and (max-width: 479px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-next {
    right: 36%;
  }
}
.inner-page-area .swiper-button-wrapper .swiper-button-next path {
  fill: var(--color-primary);
  transition: 0.3s;
}
.inner-page-area .swiper-button-wrapper .swiper-button-next:hover {
  background: var(--color-primary);
}
.inner-page-area .swiper-button-wrapper .swiper-button-next:hover path {
  fill: #fff;
}
.inner-page-area .swiper-button-wrapper .swiper-button-next::after {
  display: none;
}
.inner-page-area .swiper-button-wrapper .swiper-button-prev {
  height: 55px;
  width: 55px;
  background: #fff;
  border-radius: 10px;
  bottom: 0;
  left: 46.5%;
  top: 88%;
  transition: 0.3s;
  box-shadow: 0px 17px 25px rgba(28, 28, 53, 0.08);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-prev {
    left: 46%;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-prev {
    left: 46%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-prev {
    left: 42%;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-prev {
    left: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-prev {
    left: 38%;
  }
}
@media only screen and (max-width: 479px) {
  .inner-page-area .swiper-button-wrapper .swiper-button-prev {
    left: 36%;
  }
}
.inner-page-area .swiper-button-wrapper .swiper-button-prev:hover {
  background: var(--color-primary);
}
.inner-page-area .swiper-button-wrapper .swiper-button-prev:hover path {
  fill: #fff;
}
.inner-page-area .swiper-button-wrapper .swiper-button-prev path {
  fill: var(--color-primary);
  transition: 0.3s;
}
.inner-page-area .swiper-button-wrapper .swiper-button-prev::after {
  display: none;
}

.responsive-section{
  background: #151515;
}
@media(max-width:991px){
  .responsive-section .order{
    order: 2;
  }
}
@media(max-width:991px){
  .responsive-section .title-area{
    margin-top: 40px;
  }
}
.responsive-section .title-area .title{
  color: #fff;
  font-weight: 700;
}
@media(max-width:576px){
  .responsive-section .title-area .title{
    font-size: 34px;
  }
}
.responsive-section .item-wraper{
  padding: 0;
  margin-top: 40px ;
}
.responsive-section .item-wraper .wraper{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.responsive-section .item-wraper .wraper .icon{
  margin-right: 15px;
}
@media(max-width:576px){
  .responsive-section .item-wraper .wraper .icon img{
    width:50px;
  }
}
.responsive-section .item-wraper .wraper .text{
  color: #fff;
}
@media(max-width:1200px){
  .responsive-section .item-wraper .wraper .text{
    font-size: 28px;
  }
}
@media(max-width:576px){
  .responsive-section .item-wraper .wraper .text{
    font-size: 20px;
  }
}
.responsive-section .hero-image img{
  max-width: 100%;
}

.page-builder-section{
  background: linear-gradient(136.01deg, #B10431 0%, #2A1F61 100%);
  position: relative;
  padding-top: 110px;
  padding-bottom: 180px;
}
@media(max-width:1200px){
  .page-builder-section{
    padding-bottom: 110px;
  }
}
.page-builder-section .image img{
  max-width: 100%;
}
.page-builder-section .section-bottom{
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -65px;
  right: 50%;
  transform: translateX(50%);
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
@media(max-width:1200px){
  .page-builder-section .section-bottom{
    position: unset;
    transform: none;
    margin-top: 40px;
  }
}
@media(max-width:768px){
  .page-builder-section .section-bottom{
    display: none;
  }
}
.page-builder-section .section-bottom .content{
  display: flex;
  align-items: center;
  background: #fff;
  margin: 0 15px;
  border-radius: 75px;
  padding: 25px;
  width: 350px;
}
@media(max-width:1200px){
  .page-builder-section .section-bottom .content{
    margin-bottom: 10px;
    width: 300px;
  }
}
.page-builder-section .section-bottom .content .icon img{
  max-width: 100%;
}
.page-builder-section .section-bottom .content .text{
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(94.4deg, #3B38EB 0%, #9E0CD1 99.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 20px;
}
@media(max-width:1200px){
  .page-builder-section .section-bottom .content .text{
    font-size: 25px;
  }
}
.page-builder-section .title-area{
  margin-bottom: 60px;
}
.page-builder-section .title-area .title{
  color: #fff;
  margin-bottom: 15px;
}
.page-builder-section .title-area .logo{
  margin-bottom: 35px;
}
.page-builder-section .title-area .text{
  color: #fff;
  margin-bottom: 30px;
}
.page-builder-section .title-area .desc{
  color: #fff;
}
.feature-bg {
  background: #151515;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}
.feature-bg .title-area {
  position: relative;
}
.feature-bg .title-area::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 0;
  background-image: url(../images/feature/shape/02.png);
  width: 78px;
  height: 78px;
  background-repeat: no-repeat;
  background-size: cover;
  animation: jump-3 10s linear infinite;
}
.feature-bg::after {
  position: absolute;
  content: "";
  left: -13%;
  top: 10%;
  background-image: url(../images/feature/shape/01.png);
  height: 428px;
  width: 428px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: jump-3 8s linear infinite;
  z-index: -1;
}
.feature-bg::before {
  position: absolute;
  content: "";
  right: -13%;
  top: 50%;
  background-image: url(../images/feature/shape/01.png);
  height: 428px;
  width: 428px;
  background-repeat: no-repeat;
  background-size: contain;
  animation: jump-3 10s linear infinite;
  z-index: -1;
}
.feature-bg .title-area .title {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-bg .title-area .title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-bg .title-area .title {
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .feature-bg .title-area .title {
    font-size: 26px;
    line-height: 45px;
  }
}

.mt--50 {
  margin-top: 30px;
}

.inner-feature {
  text-align: center;
  background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, #1E1E1E 100%);
  border: 1px solid #1E1E1E;
  border-radius: 10px;
  padding: 45px 35px;
}
.inner-feature img {
  margin-bottom: 25px;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s;
  width: 70px;
  height: 70px;
}
.inner-feature .title {
  color: #fff;
}
.inner-feature p.disc {
  margin-bottom: 0;
  color: #6F737B;
}
.inner-feature:hover img {
  transform: translateY(-10px);
}

.bg_footer-img {
  background-image: url(../images/footer/01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.rts-footer-area {
  padding-top: 156px;
  padding-bottom: 156px;
  overflow: hidden;
}
.rts-footer-area .footer-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}
.rts-footer-area .footer-wrapper span {
  color: #FFFFFF;
}
.rts-footer-area .footer-wrapper .title {
  font-style: normal;
  font-weight: 700;
  font-size: 72px;
  line-height: 82px;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-footer-area .footer-wrapper .title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-footer-area .footer-wrapper .title {
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-footer-area .footer-wrapper .title {
    font-size: 26px;
    line-height: 45px;
  }
}
.rts-footer-area .footer-wrapper a.rts-btn {
  margin-top: 20px;
}
.rts-footer-area .footer-wrapper span.water-mark {
  position: absolute;
  left: 1%;
  line-height: 198px;
  width: 100%;
  top: 25%;
  font-size: 100px;
  font-weight: 800;
  -webkit-background-clip: text;
  font-size: 260px;
  height: 128px;
  max-height: max-content;
  min-width: max-content;
  font-weight: 700;
  z-index: 0;
  display: flex;
  align-items: center;
  opacity: 0.25;
  font-family: var(--font-secondary);
  z-index: -1;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.1921568627);
  -webkit-text-stroke-color: white;
  font-size: 280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-footer-area .footer-wrapper span.water-mark {
    font-size: 180px;
    left: 10%;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-footer-area .footer-wrapper span.water-mark {
    font-size: 180px;
    left: 10%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-footer-area .footer-wrapper span.water-mark {
    font-size: 100px;
    left: 15%;
    top: -5%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-footer-area .footer-wrapper span.water-mark {
    font-size: 100px;
    left: 10%;
    top: -20%;
  }
}
@media only screen and (max-width: 479px) {
  .rts-footer-area .footer-wrapper span.water-mark {
    font-size: 65px;
    left: 0%;
    top: -20%;
  }
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 2px solid var(--color-primary);
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\e84b";
  border: 2px solid var(--color-primary);
}

.progress-wrap::before {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: #fff;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 34px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.home-blue .progress-wrap svg.progress-circle path {
  stroke: var(--color-primary-2);
}
.home-blue .progress-wrap::after {
  border-color: var(--color-primary-2);
  box-shadow: 0px 3px 20px 6px rgba(7, 66, 233, 0.3215686275);
  color: var(--color-primary-2);
}

.single-service {
  text-align: center;
  padding: 26px;
  box-shadow: rgba(24, 16, 16, 0.0509803922) 12px 0px 33px;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
  height: 100%;
}
.single-service .inner-area img {
  width: 70px;
}
.single-service .inner-area .title {
  font-size: 20px;
  font-weight: 700;
  color: #1c2539;
  margin-top: 20px;
}
.single-service .inner-area .des {
  max-width: 300px;
  margin: 20px auto 10px;
  font-size: 16px;
  color: #5d666f;
}
.single-service:hover {
  transform: translateY(10px) scale(0.95);
}

/* Loader Styles start here */
.loader-wrapper {
  --line-width: .5px;
  --curtain-color: #e0e5ff;
  --outer-line-color: #7883e6;
  --middle-line-color: #46459d;
  --inner-line-color: var(--color-primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  /*   transform: translate(-50%, -50%); */
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius: 100%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

.loader:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius: 100%;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--curtain-color);
  width: 51%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: var(--color-primary);
}

::selection {
  color: #fff;
  background: var(--color-primary);
}
.single-home.fourth.six{
  width: 44%;
}
@media only screen and (max-width: 767px){
  .single-home.fourth.six{
    width: 90%;
  }
}
 .single-home.fourth.six.seventh:after{
  display: none !important;
} 