@import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --rr-ff-body: 'Plus Jakarta Sans', sans-serif;
  --rr-ff-span: 'Plus Jakarta Sans', bold;
  --rr-ff-heading: 'Plus Jakarta Sans', serif;
  --rr-ff-p: 'Plus Jakarta Sans', sans-serif;
  --rr-fw-normal: normal;
  --rr-fw-thin: 100;
  --rr-fw-elight: 200;
  --rr-fw-light: 300;
  --rr-fw-regular: 400;
  --rr-fw-medium: 500;
  --rr-fw-sbold: 600;
  --rr-fw-bold: 700;
  --rr-fw-ebold: 800;
  --rr-fw-black: 900;
  --rr-fs-body: 16px;
  --rr-fs-p: 16px;
  --rr-fs-h1: 60px;
  --rr-fs-h2: 48px;
  --rr-fs-h3: 24px;
  --rr-fs-h4: 20px;
  --rr-fs-h5: 16px;
  --rr-fs-h6: 14px;
  --rr-color-common-white: #ffffff;
  --rr-color-common-black: #000000;
  --rr-color-common-dark: #232323;
  --rr-color-heading-primary: #11151C;
  --rr-color-text-body: #B0B2B7;
  --rr-color-text-body-light: #74787C;
  --rr-color-theme-primary: #0066DE;
  --rr-color-theme-secondary: #ffc226;
  --rr-color-bg-1: #11151C;
  --rr-color-grey-1: #F8F8F8;
  --rr-color-grey-2: #2D343E;
  --rr-color-grey-light: #F2F3F4;
  --rr-color-border-1: #1E2228;
  --rr-color-border-light: #E4E4E4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background-color: #02050A;
  font-family: var(--rr-ff-body);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--rr-color-text-body);
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4 {
  font-family: var(--rr-ff-heading);
  color: var(--rr-color-common-white);
  margin-top: 0px;
  font-weight: var(--rr-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--rr-fs-h1);
}

h2 {
  font-size: var(--rr-fs-h2);
}

h3 {
  font-size: var(--rr-fs-h3);
}

h4 {
  font-size: var(--rr-fs-h4);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--rr-ff-p);
  font-size: 16px;
  font-weight: var(--rr-fw-normal);
  color: var(--rr-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}



a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

input {
  outline: none;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

*::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--rr-color-common-black);
  color: var(--rr-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--rr-color-common-black);
  font-size: var(--rr-fs-body);
  opacity: 1;
}

.bg-dark-1 {
  background-color: var(--rr-color-bg-1);
}

.container {
  max-width: 1405px;
}

@-webkit-keyframes line-anim {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@keyframes line-anim {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.section-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 490px) {
  .section-heading {
    font-size:24px;
    padding-left: 5px;
  }
}
.section-heading .sub-heading {
  font-family: var(--rr-ff-heading);
  color: #0066DE;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding: 0 50px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .section-heading .sub-heading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 750px) {
  .section-heading .sub-heading {
    font-size: 12px;
    margin-bottom:5px;
  }
}
.section-heading .sub-heading:after, .section-heading .sub-heading:before {
  background: linear-gradient(270deg, rgba(63, 90, 243, 0.4) 0%, transparent 100%);
  content: "";
  width: 37px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section-heading .sub-heading:after {
  background: linear-gradient(90deg, rgba(63, 90, 243, 0.4) 0%, transparent 100%);
  left: auto;
  right: 10px;
}
.section-heading .sub-heading.active:before {
  left: 0;
  opacity: 1;
}
.section-heading .sub-heading.active:after {
  right: 0;
  opacity: 1;
}
.section-heading .sub-heading.after-none:after {
  display: none;
}
.section-heading .section-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  display: block;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .section-heading .section-title {
    font-size: 40px;
  }
  .section-heading .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 490px) {
  .section-title {
    font-size: 28px;
  }
}
.section-heading.heading-3 .section-title {
  font-size: 40px;
}
@media only screen and (max-width: 992px) {
  .section-heading.heading-3 .section-title {
    font-size: 28px;
    line-height: 1.4;
  }
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 40px;
  }
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 80%;
  height: 80%;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.anim-text {
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  br {
    display: none;
  }
}
.mb-20 {
  margin-bottom: 20px;
}

.pt-130 {
  padding-top: 130px;
}

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


.pl-100 {
  padding-left: 100px;
}


.pr-100 {
  padding-right: 100px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-130 {
  padding-top: 130px;
}
@media only screen and (max-width: 992px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 750px) {
  .pt-130 {
    padding-top: 60px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 750px) {
  .pb-130 {
    padding-bottom: 30px;
    padding-top:30px;
  }
}

  #scroll-percentage {
    position: absolute;
  }
  
  #scroll-percentage {
    height: 60px;
    width: 60px;
    background-color: var(--rr-color-common-white);
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    right: 50px;
    transform: scale(0);
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
  }
  @media only screen and (max-width: 992px) {
    #scroll-percentage {
      right: 30px;
    }
  }
  @media only screen and (max-width: 750px) {
    #scroll-percentage {
      bottom: 20px;
      right: 20px;
    }
  }
  
  #scroll-percentage.active {
    bottom: 50px;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  @media only screen and (max-width: 992px) {
    #scroll-percentage.active {
      bottom: 30px;
    }
  }
  @media only screen and (max-width: 750px) {
    #scroll-percentage.active {
      bottom: 20px;
    }
  }
  
  #scroll-percentage-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--rr-color-common-white);
    color: var(--rr-color-theme-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 600;
  }
  
  #scroll-percentage-value i {
    font-size: 20px;
  }
  
  @-webkit-keyframes scrollToTop {
    0% {
      -webkit-transform: translate3d(0, 80%, 0);
      transform: translate3d(0, 80%, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }
  @keyframes scrollToTop {
    0% {
      -webkit-transform: translate3d(0, 80%, 0);
      transform: translate3d(0, 80%, 0);
      visibility: visible;
    }
    to {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }
  .switcher-button {
    position: fixed;
    right: 0;
    top: 45%;
    z-index: 50;
    transform: translateY(-50%) rotate(90deg);
  }
  
  .switcher-button-inner-left:before,
  .switcher-button-inner-left:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    outline: none;
  }
  
  .switcher-button .switcher-button-inner,
  .switcher-button .switcher-button-inner-left {
    position: relative;
    cursor: pointer;
  }
  
  .switcher-button .switcher-button-inner-left:before {
    content: "\f186";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    display: block;
    color: #fff;
    position: absolute;
    z-index: 1;
    margin: 0;
    padding-right: 2px;
    right: 26px;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .fa-arrow-up-long:before, .fa-long-arrow-up:before {
    content: "\f176";
}
  .switcher-button .switcher-button-inner-left:after {
    content: "";
    display: inline-block;
    color: #fff;
    background: var(--rr-color-bg-1);
    border: 1px solid rgba(235, 235, 235, 0.2);
    width: 3.5em;
    height: 1.8em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    border-radius: 1em;
    vertical-align: middle;
    -webkit-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 5px 3px rgba(0, 0, 0, 0.05);
  }
  
  .switcher-button .switcher-button-inner-left {
    color: rgba(250, 250, 250, 0.51);
  }
  
  [data-theme=light] .switcher-button .switcher-button-inner-left:before {
    right: 10px;
    padding-right:7%;
    content: "\f185";
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    color: var(--rr-color-heading-primary);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  [data-theme=light] .switcher-button .switcher-button-inner-left:after {
    background: #fff;
    border: 1px solid rgba(235, 235, 235, 0.2);
   
  }
  [data-theme=light] .switcher-button .switcher-button-inner-left {
    color: rgba(149, 149, 149, 0.51);
  }
  [data-theme=light] .switcher-button .switcher-button-inner-left + .switcher-button-inner {
    color: rgba(250, 250, 250, 0.51);
  }

  .rr-primary-btn {
    background-color: var(--rr-color-theme-primary);
    font-family: var(--rr-ff-heading);
    color: var(--rr-color-common-white);
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 22px 30px;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
  }
  .rr-primary-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
  }
  .rr-primary-btn i {
    margin-left: 10px;
    font-size: 14px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
  }
  .rr-primary-btn:hover {
    color: var(--rr-color-common-white);
  }
  .rr-primary-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .rr-primary-btn:hover i {
    transform: rotate(0deg);
  }
  .rr-primary-btn:focus {
    color: var(--rr-color-common-white);
  }
  .rr-primary-btn.transparent {
    background-color: transparent;
    border: 1px solid var(--rr-color-theme-primary);
    color: var(--rr-color-heading-primary);
  }
  .rr-primary-btn.transparent:hover {
    color: var(--rr-color-common-white);
  }
  .rr-primary-btn.transparent:before {
    background-color: var(--rr-color-theme-primary);
  }

.header {
  background-color: #11151C;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 99;
}

.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px;
}
.header .primary-header-inner .prosat-logo img {
  max-width: 95px;
  width: 100%;
  height: auto;
  
}
@media only screen and (max-width: 770px){
  .header .primary-header-inner .header-right{
    display: block !important;
  }
  .header .primary-header-inner .header-menu-wrap ul{
    display:none;
  }
} 

@media only screen and (max-width: 992px) {
  .header .primary-header-inner .prosat-logo img {
    max-width: 80px;
    margin-left:-50%;
    margin-top:10px;
  }
}

.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.header .primary-header-inner .header-menu-wrap ul {
  margin: 0;
  /* padding-left: 500px; */
  list-style: none;
}
@media (max-width:770px) {      
  .header{
    background-color: #11151C;
    position:fixed;
    top:0;
    position:sticky;
    max-width:100%;
  }
}


.header .primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  margin: 0 25px;
}
.header .primary-header-inner .header-menu-wrap ul li:first-child {
  margin-left: 0;
}
.header .primary-header-inner .header-menu-wrap ul li:last-child {
  margin-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul li a {
  font-family: "Hind Madurai", sans-serif;
  color: var(--rr-color-common-white);
  display: block;
  font-size: 14px;
  padding: 35px 0;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 993px) {
  .header .primary-header-inner .header-menu-wrap ul li.mega-menu {
    position: static;
    display: inline-flex;
  }
  .header .primary-header-inner .header-menu-wrap ul li.mega-menu:after {
    display: inline-flex;
    position: inherit;
    transform: translateY(36px) translateX(-10px);
  }
}

.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
  padding-right: 17px;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a:hover {
  
  color: var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap {
  display: flex;
  align-items: center;
  column-gap: 120px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.header .primary-header-inner .header-right{
  display:none;
}
@media only screen and (max-width:490px){
  .header .primary-header-inner .header-right .sidebar-trigger{
    display: flex;
    margin-left:150%;
  }
}
@media only screen and (max-width:768px){
  .header .primary-header-inner .header-menu-wrap ul li.mega-menu{
    display:none;
  }
}

.header.fixed {
  background-color: var(--rr-color-bg-1);
  top: 0;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-right-wrap .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--rr-color-common-white);
  font-size: 30px;
  opacity: 0.9;
}


#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: block;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--rr-color-bg-1);
  position: fixed;
  transform: translateX(-100%);
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  visibility: hidden;
}


.open-sidebar .sidebar-area {
  right:0;
  visibility: visible;
  transform: translateX(0);
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}
.mean-bar .mean-nav.mean-nav {
  border-radius: 5px;
}
.mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li {
  margin-bottom: 20px;
  font-size:20px;
  padding-left: 20px;
  padding-right:20px;
}

.sidebar-area .side-menu-wrap ul{
  display: block;
}


.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover {
  border: 1px solid var(--rr-color-theme-primary);
}
.header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger svg {
  color: var(--rr-color-common-white);
}

.hero-section-3 {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  padding-left: 13%;
  
}
.hero-section-3 .hero-round-img {
  width: 40%;
  height: auto;
  position: absolute;
  top: 5%;
  right: -5%;
  object-fit: contain;
  image-rendering: optimizeQuality;
}
/* @media (max-width:480px){
  .hero-section-3{
    margin-top: 20%;
  }
} */
@media (max-width:770px) {
  .hero-section-3{
    margin-top: 20%;
    margin-bottom:-20%;
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .hero-section-3 .hero-round-img {
    height:600px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section-3 .hero-round-img {
    right: -60%;
    top: -70%;
    width:500px;
    height:600px;
  }
}
@media only screen and (max-width: 750px) {
  .hero-section-3 .hero-round-img {
    position: absolute;
    max-width: 185px;
    max-height: 185px;
    top: -95px;
    right: -10px;
  }
}



@-webkit-keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes hero-anim-2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
  }
}
.hero-content-3 {
  padding: 300px 0 250px 0;
  padding-left: 2%;
  position: relative;
  z-index: 2;
}

/* @media (max-width: 1024px) {
  .hero-content-3 {
    padding-top: 30%;
    padding-left:15% !important;
  }
  
} */
@media only screen and (max-width:992px) {
  .hero-content-3 {
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 30px;
    padding-bottom: 150px;
  }
}


@media only screen and (max-width: 750px){
  .hero-content-3 {
    padding-top: 30px;
    padding-left: 25px;
    padding-bottom: 50px;
  }
}
.hero-content-3 .title {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content-3 .title.anim-text {
  overflow: visible;
}
.hero-content-3 .title br {
  display: block;
}
@media (max-width: 1199px) {
  .hero-content-3 .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 750px) {
  .hero-content-3 .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 400px) {
  .hero-content-3 .title {
    font-size: 22px;                          
  }
}
.hero-content-3 .title span {
  color: var(--rr-color-theme-primary);
  position: relative;
}
.hero-content-3 .title span:before {
  background-image: url(../img/hero-shape-4.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
  width: 550px;
  height: 550px;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .hero-content-3 .title span:before {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (max-width: 750px) {
  .hero-content-3 .title span:before {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (max-width: 400px) {
  .hero-content-3 .title span:before {
    width: 200px;
    height: 200px;
  }
}
.hero-content-3 p {
  color: var(--rr-color-common-white);
  font-size: 20px;
  font-weight: 500;
  max-width: 800px;
  width: 100%;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media only screen and (max-width: 750px) {
  .hero-content-3 p {
    font-size: 16px;
    text-align: -webkit-auto;
  }
} 

.about-section {
  padding-top: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .about-section {
    padding-top: 70px;
  }
}
.about-section .round-shape {
  position: absolute;
  bottom: -10%;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 750px) {
  .about-section .round-shape {
    display: none;
  }
}

.about-wrap {
  background-color: var(--rr-color-bg-1);
  max-width: 1710px;
  width: 100%;
  padding: 0 115px 0 150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (max-width: 1199px) {
  .about-wrap {
    padding: 0 80px 0 80px;
  }
}
@media only screen and (max-width: 992px) {
  .about-wrap {
    padding: 0 20px;
  }
}
.about-wrap .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.about-wrap .about-content {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .about-wrap .about-content {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 425px) {
  .about-wrap .about-content {
    padding-top: 30px;
    padding-bottom:60px;
  }
}
.about-wrap .about-content .section-heading .section-title {
  margin-bottom: 30px;
}
.about-wrap .about-content p {
  max-width: 730px;
  width: 100%;
  margin-bottom: 40px;
  margin-right:50px;
}
@media (max-width: 770px){
  .about-wrap .about-content p {
    max-width: 770px;
    padding: 0 0.5em;
  }
}
.about-wrap .about-img-wrap {
  text-align: right;
  position: relative;
  max-width: 620px;
  width: 100%;
  margin-left: auto;
}
@media only screen and (max-width: 992px) {
  .about-wrap .about-img-wrap {
    margin-left: 0;
    margin: 0 auto;
  }
}
.about-wrap .about-img-wrap .about-img {
  transform: translateY(-130px);
  position: relative;
  width: 100%;
  margin-left: auto;
}

@media only screen and (min-width:1000px){
  .about-wrap .about-img-wrap .about-img{
    transform: translateY(-80px);
  }
}
@media only screen and (max-width: 992px) {
  .about-wrap .about-img-wrap .about-img {
    margin: 0 auto;
    transform: translateY(0px);
  }
  .about-wrap .about-img-wrap .about-img-2 {
    margin: 0 auto;
    transform: translateY(0px);
    image-rendering: pixelated;
  }
}
@media only screen and (max-width: 750px){
  .about-wrap .about-img-wrap .about-img {
    width:350px;
    height:auto;
    transform: translateY(-50px);
  }
  .about-wrap .about-img-wrap .about-img-2 .img-2 {
    max-width:250px;
    height:auto;
    margin-right:35px;
    transform:translateY(35px);
  }
}
.about-wrap .about-img-wrap .about-img .img-shape {
  background-color: #3F5AF3;
  mix-blend-mode: multiply;
  content: "";
  width: 90px;
  height: 160px;
  position: absolute;
  top: 55%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0.9;
  z-index: 1;
}
.about-wrap .about-img-wrap .about-img .img-shape img {
  transform-origin: inherit;
}
.about-wrap .about-img-wrap .about-img-2 {
  max-width: 325px;
  width: 100%;
  height: 280px;
  position: absolute;
  bottom: 0;
  left: -30px;
}
.about-wrap .about-img-wrap .about-img-2 img {
  border-right: 10px solid var(--rr-color-bg-1);
  border-top: 10px solid var(--rr-color-bg-1);
  width: 100%;
  height: 100%;
}
.about-wrap .about-text {
  max-width: 660px;
  width: 100%;
  position: absolute;
  left: 18%;
  bottom: 20px;
  z-index: -1;
}

.service-section {
  position: relative;
  z-index: 1;
}
.service-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-card {
  background-color: var(--rr-color-bg-1);
  display: grid;
  grid-template-columns: 85px 1fr;
  grid-gap: 30px;
  border: 1px solid var(--rr-color-border-1);
  padding: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .service-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
.service-card .shape {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 490px){
  .service-card .icon{
   margin-left:35%;
  }
  
}
.service-card .icon {
  background-color: var(--rr-color-common-white);
  height: 85px;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.service-card .icon img {
  height: 83px;
  width: 83px;
}
.service-card .content .title {
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .service-card .content .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 490px){
  .service-card .content{
    padding-left:10%;
  }
  
}
.service-card .content .read-more {
  font-size: 16px;
  font-weight: 700;
  color: var(--rr-color-theme-primary);
}
.service-card .content .read-more i {
  margin-left: 5px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-card .content .read-more:hover i {
  margin-left: 10px;
}
.service-card:hover .shape {
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
}


.project-item {
  background-color: transparent;
  border-bottom: 1px solid var(--rr-color-border-1);
}
.project-item .project-content {
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: start;
  grid-gap: 15px;
}
@media only screen and (max-width: 750px) {
  .project-item .project-content {
    grid-template-columns: 1fr;
  }
}
.project-item .project-content .number {
  background-color: #11151c;
  color: var(--rr-color-common-white);
  font-size: 20px;
  font-weight: 700;
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rr-color-border-1);
}
.project-item .project-content .project-right {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-item .project-content .project-right .category {
  font-size: 14px;
  color: var(--rr-color-theme-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.project-item .project-content .project-right .title {
  color: var(--rr-color-common-white);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0px;
}
@media only screen and (max-width: 750px) {
  .project-item .project-content .project-right .title {
    font-size: 24px;
  }
}
.project-item .project-content .project-right .hover-content p {
  margin-bottom: 25px;
  width: 100%;
}

.project-accordion .accordion-item {
  position: relative;
  border: none;
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid var(--rr-color-border-1);
}
@media only screen and (max-width: 750px) {
  .project-accordion .accordion-item {
    padding-left: 10px;
    padding-bottom:10px;
    padding-top:15px;
  }
  .project-accordion .accordion-item .accordion-body {
    padding-top:0px !important;
  }
  .project-accordion .accordion-item .project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb img{
    margin-right:20px;
    max-width:300px;
    height:auto;
  }
}

.project-accordion .accordion-item:first-of-type {
  border-top: 1px solid var(--rr-color-border-1);
}
.project-accordion .accordion-item .accordion-header {
  background-color: transparent;
}

.project-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.project-accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .project-content .number {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.project-accordion .accordion-item .accordion-body {
  padding: 0;
  padding-top: 35px;
  padding-left: 80px;
  padding-bottom: 55px;
  }

@media only screen and (max-width: 992px) {
  .project-accordion .accordion-item .accordion-body {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 440px) {
  .project-accordion .accordion-item .accordion-body {
    padding-top:0px;
    padding-left: 0px;
  }
}
.project-accordion .accordion-item .accordion-body .hover-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.project-accordion .accordion-item .accordion-body .hover-content .content-left ul {
  max-width: 560px;
  width: 100%;
  margin-bottom: 30px;
  
}
.project-accordion .accordion-item .accordion-body .hover-content .content-left ul li{
  margin:15px !important;
  list-style:disc;
  color:var(--rr-color-common-white);
}
@media (max-width: 1199px) {
  .project-accordion .accordion-item .accordion-body .hover-content .content-left ul {
    max-width: 500px;
  }
}
.project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
  max-width: 600px;
  width: 100%;
  height: 300px;
  position: absolute;
  top: 40px;
  right: 0;
  opacity: 0;
  object-fit: contain;
}
@media only screen and (max-width: 756px) {
  .project-accordion .accordion-item .accordion-body .hover-content{
    row-gap:0px;
  }
  .project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
    height:250px;
  }
  .project-accordion .accordion-item .accordion-body .hover-content .content-left ul{
    margin-bottom:5px;
  }
  .project-accordion .accordion-item .accordion-body .hover-content .content-left ul li {
    margin:5px ;
  }
}
.project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb img{
  height:250px;
  width:100%;
}
@media (max-width: 1199px) {
  .project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
    max-width: 370px;
  }
}
@media only screen and (max-width: 992px) {
  .project-accordion .accordion-item .accordion-body .hover-content .content-right .project-thumb {
    position: inherit;
    max-width: 100%;
  }
}
.project-accordion .accordion-item .show .accordion-body .content-right {
  margin-top: -100px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .project-accordion .accordion-item .show .accordion-body .content-right {
    margin-top: 20px;
  }
}
.project-accordion .accordion-item .show .accordion-body .content-right .project-thumb {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-top {
  position: relative;
}

.team-item {
  overflow: hidden;
}
.team-item .team-thumb {
  position: relative;
  height: 420px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: 30px;
}

.team-item .team-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  overflow:hidden;
  
}
.team-item .team-thumb img{
  --w: 660 !important;
}

.team-item .team-content .title {
  font-weight: 700;
}

.team-item .team-content span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-section-2 {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.team-item-2 {
  position: relative;
}
.team-item-2 .team-thumb {
  margin-bottom: 0;
}
.team-item-2 .team-content {
  background-color: var(--rr-color-bg-1);
  text-align: center;
  padding: 25px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  border: 1px solid var(--rr-color-border-1);
  border-top: none;
}


.team-item-2 .team-content span {
  font-size: 16px;
  color: var(--rr-color-theme-primary);
  font-weight: 400;
  text-transform: capitalize;
}

@keyframes asFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes asFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
  }
}

@keyframes asFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}

@keyframes asFadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
  }
}

@keyframes asFadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
  }
}

@keyframes asMoveFromLeft {
  from {
    visibility: hidden;
    transform: translateX(-50px);
  }
  to {
    visibility: visible;
  }
}

@keyframes asMoveFromRight {
  from {
    visibility: hidden;
    transform: translateX(50px);
  }
  to {
    visibility: visible;
  }
}

@keyframes asMoveFromTop {
  from {
    visibility: hidden;
    transform: translateY(-50px);
  }
  to {
    visibility: visible;
  }
}

@keyframes asMoveFromBottom {
  from {
    visibility: hidden;
    transform: translateY(50px);
  }
  to {
    visibility: visible;
  }
}

@keyframes asBlurIn {
  from {
    filter: blur(20px);
    opacity: 0;
  }
}

@keyframes asBlurInLeft {
  from {
    transform: translateX(50px);
    filter: blur(20px);
    opacity: 0;
  }
}

@keyframes asBlurInRight {
  from {
    transform: translateX(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}

@keyframes asBlurInTop {
  from {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
  }
}

@keyframes asBlurInBottom {
  from {
    transform: translateY(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}

@keyframes asZoomIn {
  from {
    transform: scale(5);
    opacity: 0;
  }
}

@keyframes asZoomInLeft {
  from {
    transform: scale(5) translateX(-50%);
    opacity: 0;
  }
}

@keyframes asZoomInRight {
  from {
    transform: scale(5) translateX(50%);
    opacity: 0;
  }
}

@keyframes asZoomInTop {
  from {
    transform: scale(10) translateY(-50%);
    opacity: 0;
  }
}

@keyframes asZoomInBottom {
  from {
    transform: scale(10) translateY(50%);
    opacity: 0;
  }
}

@keyframes asFlipInTop {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: 0 0;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}

@keyframes asFlipInBottom {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: bottom;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}

@keyframes asRollFromLeft {
  from {
    transform: translateX(-60px) perspective(600px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes asRollFromRight {
  from {
    transform: translateX(60px) perspective(600px) rotateY(-180deg);
    opacity: 0;
  }
}

@keyframes asRollFromTop {
  from {
    transform: translateY(-60px) perspective(600px) rotateX(180deg);
    opacity: 0;
  }
}

@keyframes asRollFromBottom {
  from {
    transform: translateY(60px) perspective(600px) rotateX(-180deg);
    opacity: 0;
  }
}

@keyframes asRotateSkateInRight {
  from {
    transform: scaleX(0.2) translateX(100px);
    opacity: 0;
  }
}

@keyframes asRotateSkateInLeft {
  from {
    transform: scaleX(0.2) translateX(-100px);
    opacity: 0;
  }
}

@keyframes asRotateSkateInTop {
  from {
    transform: scaleY(0.2) translateY(-100px);
    opacity: 0;
  }
}

@keyframes asRotateSkateInBottom {
  from {
    transform: scaleY(0.2) translateY(100px);
    opacity: 0;
  }
}

@keyframes asPopUp {
  0% {
    visibility: hidden;
  }
  50% {
    transform: scale(1.1);
    visibility: visible;
  }
}

@keyframes asPopUpLeft {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(-20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}

@keyframes asPopUpRight {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.08) translateY(-15px);
    transform: scale(1.08) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}
@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }
  100% {
    -webkit-transform: scale(1.08) translateY(-15px);
    transform: scale(1.08) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

.req-wrap {
  background-color: var(--rr-color-bg-1);
  position: relative;
  z-index: 1;
  padding: 80px;
  margin: 0;
}

@media only screen and (max-width: 992px) {
  .req-wrap {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 750px) {
  .req-wrap {
    padding: 40px 20px;
  }
}
.req-wrap > div {
  padding: 0;
}
.req-wrap .req-img {
  height: 100%;
  width: 39%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .req-wrap .req-img {
    display: none;
  }
}
.req-wrap .req-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.request-content {
  padding-left: 20px;
}
@media only screen and (max-width: 992px) {
  .request-content {
    padding-left: 0;
  }
}
.request-content .request-form .form-item label {
  color: #8B8E92;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.request-content .request-form .form-item .form-control {
  background-color: #0C0D10;
  color: black;
  font-size: 14px;
  font-weight: 400;
  padding: 15px 20px;
  border: 1px solid #1E2228;
  box-shadow: none;
  margin-bottom: 20px;
}
.request-content .request-form .form-item .form-control::-webkit-input-placeholder {
  color: #515357;
}
.request-content .request-form .form-item .form-control:-moz-placeholder {
  color: #515357;
}
.request-content .request-form .form-item .form-control::-moz-placeholder {
  color: #515357;
}
.request-content .request-form .form-item .form-control:-ms-input-placeholder {
  color: #515357;
}
.request-content .request-form .form-btn {
  margin-top: 20px;
}


.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.copyright-area {
  border-top: 1px solid var(--rr-color-border-1);
  padding: 40px 0;
}
@media only screen and (max-width: 992px) {
  .copyright-area {
    padding: 40px 0;
  }
}

.copyright-content {
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 750px) {
  .copyright-content {
    row-gap: 20px;
  }
}
.copyright-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-family: var(--rr-ff-body);
  margin: 0;
}
.copyright-content p span {
  color: var(--rr-color-theme-primary);
}
@media only screen and (max-width: 750px) {
  .copyright-content p {
    text-align: center;
  }
}
.copyright-content .social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
@media only screen and (max-width: 750px) {
  .copyright-content .social-list {
    justify-content: center;
  }
}
.copyright-content .social-list li a {
  background-color: var(--rr-color-border-1);
  color: var(--rr-color-common-white);
  font-size: 13px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright-content .social-list li a:hover {
  background-color: var(--rr-color-theme-primary);
  color: var(--rr-color-common-white);
}
.copyright-content .social-list li:not(:last-of-type) {
  margin-right: 10px;
}

/*custom cursor*/
@media (max-width:992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mt-cursor:before {
    background: var(--rr-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }
  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }
  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 170px;
}

@media only screen and (max-width: 750px) {
  br {
    display: none;
  }
}

[data-theme=dark] .hbspt-form p span{
    color:#ffffff !important;
  }
  
[data-theme=light] body {
    background-color: var(--rr-color-common-white);
    color: #74787C;
  }
  
  [data-theme=light] h1,
  [data-theme=light] h2,
  [data-theme=light] h3,
  [data-theme=light] h4,
  [data-theme=light] h5,
  [data-theme=light] h6 {
    color: var(--rr-color-heading-primary);
  }
  [data-theme=light] p {
    color: black;
  }
  
  [data-theme=light] .hero-content-3 .title span:before {
    background-image: url(../img/hero-shape-4-light.png);
  }
  [data-theme=light] .section-heading .section-title {
    color: var(--rr-color-heading-primary);
  }
  [data-theme=light] .header {
    background-color: var(--rr-color-common-white);
  }
  
  
  [data-theme=light] .header .primary-header-inner .header-menu-wrap ul li a {
    color: var(--rr-color-heading-primary);
  }
  
  [data-theme=light] .sidebar-area {
    border-left: 1px solid var(--rr-color-border-light);
  }
  [data-theme=light] .sidebar-area {
    background-color: var(--rr-color-common-white);
  }
  
  @media only screen and (max-width: 750px) {
    [data-theme=light].mean-bar .mean-nav.mean-nav > ul li a {
      font-size: 25px;
      padding-left:100px;
  
    }
  }
  [data-theme=light] .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger {
    color: var(--rr-color-theme-primary);
    border: 1px solid var(--rr-color-grey-light);
  }
  [data-theme=light] .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger svg {
    color: var(--rr-color-theme-primary);
  }
  [data-theme=light] .header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger:hover {
    border: 1px solid var(--rr-color-theme-primary) !important;
  }
  [data-theme=light] .inner-header .primary-header-inner .header-right-wrap .header-right .sidebar-trigger svg {
    color: var(--rr-color-common-white);
  }
    
  [data-theme=light] .about-section .round-shape {
    opacity: 0.05;
  }
  [data-theme=light] .about-wrap {
    background-color: var(--rr-color-grey-light);
  }
  [data-theme=light] .about-wrap .shape {
    opacity: 0.05;
  }
  [data-theme=light] .about-wrap .about-text {
    bottom: 50px;
  }
  [data-theme=light] .about-wrap .about-img-wrap .about-img-2 .img-2 {
    border-right: 10px solid var(--rr-color-grey-light);
    border-top: 10px solid var(--rr-color-grey-light);
  }
  
  [data-theme=light] .service-section .shape {
    opacity: 0.05;
  }
  
  [data-theme=light] .project-item .project-content .project-right .title {
    color: var(--rr-color-heading-primary);
  }
  [data-theme=light] .project-accordion .accordion-item {
    border-bottom: 1px solid var(--rr-color-border-light);
  }
  [data-theme=light] .project-accordion .accordion-item:first-child {
    border-top: 1px solid var(--rr-color-border-light);
  }
  [data-theme=light] .project-accordion .accordion-item .accordion-button {
    color: var(--rr-color-heading-primary);
  }
  [data-theme=light] .project-accordion .accordion-item .accordion-button .project-content .number {
    background-color: var(--rr-color-grey-light);
    color: var(--rr-color-heading-primary);
    border: 1px solid var(--rr-color-border-light);
  }
  [data-theme=light] .project-accordion .accordion-item .accordion-button:not(.collapsed) .project-content .number {
    border: 1px solid var(--rr-color-theme-primary);
  }
  [data-theme=light] .project-accordion .accordion-item .accordion-body {
    color: #74787C;
  }
  [data-theme=light] .project-accordion .accordion-item .accordion-body .hover-content .content-left ul li{
    color:black;
  }
  [data-theme=light] .team-section-2 {
    background-image: none !important;
    background-color: var(--rr-color-grey-light);
  }
  [data-theme=light] .team-item-2 .team-content {
    background-color:#ffffff;
    border: none;
  }
  [data-theme=light] .service-card {
    background-color: var(--rr-color-common-white);
    border: 1px solid #E6E6E6;
  }
  [data-theme=light] .service-card .icon {
    background: #E8EDF9;
  }
  [data-theme=light] .copyright-content p {
    color: var(--rr-color-text-body);
  }
  [data-theme=light] .req-wrap {
    background-color: #F0F1F2;
  }
  [data-theme=light] .request-content .request-form .form-item .form-control {
    background-color: var(--rr-color-common-white);
    border: 1px solid var(--rr-color-border-light);
  }
  
