@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/OpenSans-Light.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/OpenSans-Medium.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/OpenSans-SemiBold.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/OpenSans-Bold.ttf");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/OpenSans-ExtraBold.ttf");
}

html,
body {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  background-color: var(--app-bg-color);
  height: 100%;
  color: var(--default-color);
  scroll-behavior: smooth;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
:root {
  --background-color: #fff;
  --default-color: #1c1c1c;
  --heading-color: #ccc;
  --white-color: #fff;
  --black-color: #444;
  --app-green-color: #1aab4b;
  --app-red-color: #ea3727;
  --app-blue-color: #168dcf;
  --app-sky-color: #02b7cd;
  --app-violet-color: #4485e0;
  --app-purple-color: #4d52b1;
  --app-orange-color: #ff5e15;
  --app-bg-color: #f6f9fc;
  --app-transition: all 0.3s ease-in-out;
  --section-transform-origin: 100% 0;
  --section-angle: -6deg;
}
.fixed-top .sectionContainer {
  border: 0;
}
.sectionContainer,
.navSticky .sectionContainer,
.subPageHeader .sectionContainer {
  border-left: 1px dashed rgba(66, 71, 112, 0.04);
  border-right: 1px dashed rgba(66, 71, 112, 0.04);
}

/* @media (min-width: 1200px) {
  .sectionContainer,
  .heroContainer {
    max-width: 1080px;
  }
} */

/* Global CSS */
section {
  scroll-margin-top: 40px;
}
.skewDesign::before,
.skewDesign::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: inherit;
  position: absolute;
}
.skewDesign::before {
  transform: skew(0, -3deg);
  top: 0;
  transform-origin: top left;
}
.skewDesign::after {
  transform: skew(0, -3deg);
  bottom: 0;
  transform-origin: bottom right;
}
footer.skewDesign::after {
  transform-origin: 0 0;
}
.contentLayout {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.subPageTitle {
  padding-top: 80px;
}
.subPageTitle .contentLayout {
  padding-top: 40px;
  padding-bottom: 40px;
}
.bg-grey {
  background-color: var(--app-bg-color);
}
.form-control {
  font-weight: 500;
}
.points {
  padding-left: 0;
}
.points li {
  position: relative;
  list-style: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.points li > svg {
  stroke: var(--app-green-color);
  margin-right: 6px;
}
.bg-blue {
  background: var(--app-blue-color);
}
.btn-submit {
  padding: 10px 40px;
}
.subPageHeader {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.6);
}

/* Navigation */
.navPills {
  height: 32px;
  border-radius: 30px;
  width: 50px;
  top: 20px;
  background: var(--app-red-color);
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
  -moz-transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
  -ms-transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
  -o-transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.21, 0.61, 0.36, 1);
}
header {
  transition: var(--app-transition);
}
.globalHeader {
  margin: 5px 0;
}
.subPageHeader .globalHeader {
  margin: 0;
}
.logo {
  filter: brightness(0) invert(1);
  width: 185px;
}
.navSticky,
.subPageHeader {
  border-bottom: 1px solid rgb(0, 0, 0, 0.07);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.navSticky .logo,
.subPageHeader .logo {
  filter: brightness(1) invert(0);
}
.globalNav li a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: var(--app-transition);
}
.globalNav li a:hover {
  opacity: 0.6;
  color: #fff;
}
.navSticky .globalNav li a,
.subPageHeader .globalNav li a {
  color: #4e4e4e;
}
.globalNav li a.active,
.globalNav li .nav-link.active {
  color: var(--white-color);
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 15px;
  }
  .subPageHeader .globalNav li a {
    border-radius: 30px;
    padding: 5px 20px;
  }
  .subPageHeader .globalNav li a:hover {
    background: var(--app-red-color);
    opacity: 1;
    color: #fff;
  }
}
.globalHeader .logoBrand {
  order: 1;
}
.globalHeader .globalNav {
  order: 2;
}

.navbar-toggler {
  border: 0 none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler span {
  display: block;
  background-color: var(--white-color);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
  border-radius: 3px;
}
.navSticky .navbar-toggler span,
.subPageHeader .navbar-toggler span {
  background-color: var(--default-color);
}

.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(2) {
  opacity: 1;
}

.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}

.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}

@media (max-width: 992px) {
  .sectionContainer,
  .heroContainer {
    max-width: 98%;
  }
  .navPills {
    display: none;
  }
  .navbar-toggler {
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile_menu_active {
    overflow: hidden;
  }
  .mobile_menu_active .fixed-top,
  .mobile_menu_active .sticky-top {
    height: 100%;
  }
  .navSticky .navbar-toggler:not(.collapsed) span:nth-child(1),
  .subPageHeader .navbar-toggler:not(.collapsed) span:nth-child(1) {
    background: var(--white-color);
  }
  .navSticky .navbar-toggler:not(.collapsed) span:nth-child(3),
  .subPageHeader .navbar-toggler:not(.collapsed) span:nth-child(3) {
    background: var(--white-color);
  }
  .globalNav ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--white-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .globalNav li a {
    color: var(--default-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
  }
  .globalNav li a.active,
  .globalNav li .nav-link.active {
    color: var(--app-green-color);
  }
  .globalNav li a:hover {
    color: var(--default-color);
  }
  .mobile_menu_active .globalNav ul {
    display: block;
  }
  .mobile_menu_active .globalNav {
    position: fixed;
    overflow: hidden;
    inset: 0;
    transition: var(--app-transition);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(50px);
  }
  .globalNav {
    padding: 0;
    z-index: 9997;
  }
}

/* HeroSection */
.heroContainer {
  padding-top: 185px;
  padding-bottom: 120px;
  color: #fff;
}
.heroContent h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
}
.heroContent h1 span {
  border-bottom: 1px solid;
}
.heroContent p {
  font-size: 34px;
  font-weight: 400;
  padding: 20px 0;
}
.btn-download {
  color: var(--white-color);
  background: var(--app-red-color);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  border-radius: 50px;
  transition: var(--app-transition);
  text-decoration: none;
}
.btn-download:hover,
.btn-download:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-watch-video {
  font-size: 16px;
  transition: var(--app-transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--white-color);
  opacity: 0.8;
}
.btn-watch-video:hover {
  opacity: 0.6;
  transform: translateY(-3px);
}
.btn-watch-video .bi-play-circle {
  width: 2rem;
  height: 2rem;
  margin-right: 8px;
}

/* Mask */
.skewMask {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sectionBg {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform-origin: var(--section-transform-origin);
  transform: skewY(var(--section-angle));
  background: var(--background-color);
  overflow: hidden;
}

/* Home */
.videoContainer {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}
.videoContainer video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Products */
.flipSide {
  border-radius: 15px;
  padding: 20px;
  height: 100%;
}
.flipSide figure {
  padding-bottom: 25px;
}
.flipSide img {
  height: 80px;
}

.flipBox {
  position: relative;
  perspective: 1200px;
  border-radius: 10px;
  height: 100%;
  margin-bottom: 20px;
}
.flipBox img {
  max-height: 60px;
}
.flipBox svg {
  color: var(--app-green-color);
}
.flipBox .flipBoxWrap {
  position: relative;
  transition-property: box-shadow, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  height: 100%;
}
.flipBox .flipBoxWrap .flipSide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.flipBox .flipBoxWrap .flipBoxBack {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg) translateZ(1px);
  background-color: var(--app-green-color) !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 20px;
}

.flipBox .flipBoxWrap .flipBoxBack h2 {
  color: #fff;
}
.flipBox .flipBoxWrap .sub-para {
  color: #ea3727;
  font-weight: bold;
  font-size: 1.25rem;
}
.flipBox .flipBoxWrap .flipBoxBack .sub-para {
  color: #fff;
  font-weight: bold;
}
.flipBox .flipBoxWrap .flipBoxBack p {
  color: #fff;
}

.flipBox .flipBoxWrap .flipBoxBack p a {
  color: #fff;
}
.flipBox:hover .flipBoxWrap {
  transform: rotateY(180deg);
  transform-origin: 50% 50% !important;
}

.flipBox:hover .flipBoxWrap .flipSide {
  -webkit-backface-visibility: inherit;
  backface-visibility: inherit;
}

/* What We Do */
.innerContent {
  padding: 40px 0;
}
.innerContent h3 {
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 20px;
}
.innerContent h1 {
  margin-bottom: 30px;
  font-size: 40px;
}
.theme-white h1,
.theme-white p {
  color: var(--white-color);
  opacity: 0.9;
}
.innerContent p {
  font-size: 16px;
  line-height: 30px;
}
.innerContent .sub-head {
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 20px;
}
.theme-orange .sub-head {
  color: var(--app-orange-color);
}
.theme-purple .sub-head {
  color: var(--app-purple-color);
}
.theme-violet .sub-head {
  color: var(--app-violet-color);
}
.theme-sky .sub-head {
  color: var(--app-sky-color);
}
.titleTag {
  color: #1aab4b;
  background: #bbffd2;
  display: inline-block;
  border-radius: 25px;
  padding: 8px 15px;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.theme-red h3 {
  color: var(--app-red-color);
}

.dynamicImage {
  position: sticky;
  top: calc(50% - 175px);
  right: 0;
  height: 44vh;
}
.dynamicImage img {
  transition: opacity 0.5s, transform 0.5s;
}

@media (max-width: 576px) {
  .btn-download {
    margin-bottom: 20px;
  }
  .heroContent h1 {
    font-size: 56px;
  }
  .heroContent p {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .icon-boxes .col-md-4:nth-child(2) .richContent,
  .icon-boxes .col-md-4:nth-child(4) .richContent,
  .icon-boxes .col-md-4:nth-child(6) .richContent {
    margin-top: -25px;
  }
}

@media (max-width: 992px) {
  .innerContent {
    padding: 20px 0;
  }
  .innerContent h1 {
    margin-bottom: 10px;
  }
  .innerContent h3 {
    margin-bottom: 10px;
  }
}

/* WhyChoose */
.serviceItem {
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  -webkit-transition: var(--app-transition);
  -moz-transition: var(--app-transition);
  transition: var(--app-transition);
}
.icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.chooseHover {
  content: "";
  position: absolute;
  -webkit-transition: var(--app-transition);
  -moz-transition: var(--app-transition);
  transition: var(--app-transition);
  opacity: 0;
}
.serviceItem:hover .chooseHover {
  opacity: 1;
}
.serviceItem h2 {
  margin-top: 10px;
  font-weight: 800;
  font-size: 20px;
}
.serviceItem .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.serviceItem .icon path {
  color: var(--app-bg-color);
}
.serviceItem.item-blue:hover .icon path {
  fill: var(--app-blue-color);
}
.serviceItem.item-sky:hover .icon path {
  fill: var(--app-sky-color);
}
.serviceItem.item-purple:hover .icon path {
  fill: var(--app-purple-color);
}
.serviceItem.item-orange:hover .icon path {
  fill: var(--app-orange-color);
}
.serviceItem.item-violet:hover .icon path {
  fill: var(--app-violet-color);
}
.serviceItem.item-red:hover .icon path {
  fill: var(--app-red-color);
}

.serviceItem .icon .hover {
  content: "";
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s;
  opacity: 0;
}
.serviceItem:hover .icon .hover {
  opacity: 1 !important;
}

/* App Loader */
.appLoader {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 1031;
  overflow: hidden;
}
.loading-container {
  width: 100%;
  max-width: 195px;
  text-align: center;
  color: var(--app-red-color);
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.loading-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  -webkit-animation: movingLine 1.4s infinite ease-in-out;
  animation: movingLine 1.4s infinite ease-in-out;
}

@-webkit-keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }
  33.3%,
  66% {
    opacity: 0.8;
    width: 100%;
  }
  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }
  33.3%,
  66% {
    opacity: 0.8;
    width: 100%;
  }
  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
.loading-text {
  font-size: 30px;
  line-height: 60px;
  font-weight: 800;
  letter-spacing: 10px;
  display: flex;
  justify-content: space-evenly;
}
.loading-text span {
  -webkit-animation: moveLetters 1.4s infinite ease-in-out;
  animation: moveLetters 1.4s infinite ease-in-out;
  transform: translateX(0);
  position: relative;
  display: inline-block;
  opacity: 0;
}

.loading-text span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading-text span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading-text span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading-text span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading-text span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  color: var(--app-green-color);
}

.loading-text span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  color: var(--app-green-color);
}

.loading-text span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  color: var(--app-green-color);
}

@-webkit-keyframes moveLetters {
  0% {
    transform: translateX(-10vw);
    opacity: 0;
  }
  33.3%,
  66% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(10vw);
    opacity: 0;
  }
}

@keyframes moveLetters {
  0% {
    transform: translateX(-10vw);
    opacity: 0;
  }
  33.3%,
  66% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(10vw);
    opacity: 0;
  }
}

/* Testimonials */
.testimonialsItem .box {
  padding: 30px 30px 20px 55px;
  background-color: #fff;
  position: relative;
  border: 1px solid #ebf3ff;
  border-radius: 10px;
  box-shadow: 0px 0 50px #f2f7ff;
  min-height: 130px;
  line-height: 22px;
}
.testimonialsItem .box:after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -24px;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-width: 12px 15px;
  border-top-color: #fff;
}
.quote-img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 25px;
  height: 25px;
}
.testimonialsItem .author {
  margin-top: 25px;
  padding-left: 20px;
}
.author img {
  max-width: 60px;
  border: 1px solid #1aab4b;
  border-radius: 50%;
  padding: 3px;
}
.author .name {
  margin-top: 7px;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: bold;
}
.author p {
  margin: 0;
  font-style: italic;
  font-size: 12px;
}
.feedbackCarousel .owl-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 20px 0;
}
.feedbackCarousel .owl-nav svg {
  stroke: #0073e6;
}
.feedbackCarousel .owl-nav button.owl-prev,
.feedbackCarousel .owl-nav button.owl-next {
  width: 30px;
  height: 30px;
  line-height: 12px;
  background: #fff;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
  margin: 0 5px;
  border-radius: 25px;
  position: relative;
}
.feedbackCarousel .owl-nav button.owl-prev span,
.feedbackCarousel .owl-nav button.owl-next span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.feedbackCarousel .owl-nav button:hover,
.feedbackCarousel .owl-nav button:hover svg {
  background: #0073e6;
  stroke: #fff;
}
.feedbackCarousel .owl-nav button:before {
  content: "";
  position: absolute;
  inset: -2px;
  opacity: 0;
  border-radius: 50%;
}

/* Our Clients */
.clientCarousel,
.feedbackCarousel {
  margin-top: 20px;
}
.clientCarousel .owl-stage {
  transition-timing-function: linear !important;
}
.clientCarousel::before {
  content: "";
  width: 100px;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    270deg,
    rgba(66, 201, 250, 0) 0%,
    hsl(0deg 0% 100%) 100%
  );
  z-index: 1111;
}
.clientCarousel::after {
  content: "";
  width: 100px;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(66, 201, 250, 0) 0%,
    hsl(0deg 0% 100%) 100%
  );
}
.clientCarousel a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 10px;
  border: 1px solid #ebf3ff;
  border-radius: 10px;
  /* box-shadow: 0px 0 10px #f2f7ff; */
  background: var(--app-bg-color);
}
.clientCarousel figure {
  margin: 0;
}
.clientCarousel img {
  max-width: 140px;
  max-height: 100px;
}
.feedbackCarousel .owl-item img {
  width: auto;
}

/* Contact */
#responseMessage {
  transition: opacity 0.5s ease-out;
}
.fade-out {
  opacity: 0;
}
.errorState {
  background: #df1529;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
}
.successState {
  background: #059652;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
}
.spinner-border {
  width: 18px;
  height: 18px;
  border-width: 2px;
  margin-left: 8px;
}

/* Footer */
.footerNav li a {
  text-decoration: none;
  color: var(--default-color);
  transition: var(--app-transition);
  padding-bottom: 5px;
  background-size: 100% 1px;
  background-position-x: 0%;
  background-position-y: calc(100% - 1px);
  background-repeat: no-repeat;
  padding-left: 0px;
  padding-right: 0px;
}
.footerNav li a:hover,
.footerNav li a:focus {
  opacity: 0.7;
  background: linear-gradient(90deg, #000, #000);
  background-size: 100% 1px;
  background-position-x: 0%;
  background-position-y: calc(100% - 1px);
  background-repeat: no-repeat;
  animation-name: underlineHover;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
}
@keyframes underlineHover {
  0% {
    background-position-x: 100%;
    background-size: 100% 1px;
  }
  50% {
    background-position-x: 100%;
    background-size: 0% 1px;
  }
  51% {
    background-position-x: 0%;
    background-size: 0% 1px;
  }
  100% {
    background-position-x: 0%;
    background-size: 100% 1px;
  }
}
.logoRed {
  color: var(--app-red-color);
}
.logoGreen {
  color: var(--app-green-color);
}
.socialIcons .btn {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background: var(--white-color);
  line-height: 25px;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
}
.socialIcons .btn,
.socialIcons .btn:before {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.socialIcons .btn:before {
  content: "";
  width: 120%;
  height: 120%;
  position: absolute;
  transform: rotate(45deg);
  top: 90%;
  left: -110%;
}
.socialIcons .btn:hover:before,
.socialIcons .btn:focus:before {
  top: -10%;
  left: -10%;
}
.socialIcons .btn.facebook {
  color: #3b5998;
}
.socialIcons .btn.youtube {
  color: #ff0831;
}
.socialIcons .btn.twitter {
  color: #000;
}
.socialIcons .btn.instagram {
  color: #fa7e1e;
}
.socialIcons .btn:hover svg,
.socialIcons .btn:focus svg {
  color: #fff;
  transform: scale(1);
}
.socialIcons .btn.facebook:before {
  background-color: #3b5998;
}
.socialIcons .btn.youtube:before {
  background-color: #ff0831;
}
.socialIcons .btn.twitter:before {
  background-color: #000;
}
.socialIcons .btn.instagram:before {
  background-color: #fa7e1e;
}

.market-btn {
  display: flex;
  padding: 0.5rem 0.8rem;
  -webkit-transition: var(--app-transition);
  transition: var(--app-transition);
  border: 1px solid #dedede;
  background-position: center left 0.75rem;
  background-color: var(--background-color);
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  text-decoration: none;
  border-radius: 5px;
  width: 160px;
  gap: 7px;
  align-items: center;
}
.market-btn:hover,
.market-btn:focus {
  background-color: #f2f5fb;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}
.windows-btn {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAwIDQ4MCA0ODAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ4MCA0ODA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8cGF0aCBkPSJNMC4xNzYsMjI0TDAuMDAxLDY3Ljk2M2wxOTItMjYuMDcyVjIyNEgwLjE3NnogTTIyNC4wMDEsMzcuMjQxTDQ3OS45MzcsMHYyMjRIMjI0LjAwMVYzNy4yNDF6IE00NzkuOTk5LDI1NmwtMC4wNjIsMjI0ICAgbC0yNTUuOTM2LTM2LjAwOFYyNTZINDc5Ljk5OXogTTE5Mi4wMDEsNDM5LjkxOEwwLjE1Nyw0MTMuNjIxTDAuMTQ3LDI1NmgxOTEuODU0VjQzOS45MTh6IiBmaWxsPSIjMDBiY2YyIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-position: center left;
  background-size: 1.8rem 1.8rem;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
.google-btn {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-position: center left;
  background-size: 1.8rem 1.8rem;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
.market-btn .market-button-subtitle {
  display: block;
  margin-bottom: -0.25rem;
  font-size: 12px;
  font-weight: 500;
}
.market-btn .market-button-title {
  display: block;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 800;
}
.hero-app .market-btn:nth-child(1) {
  margin-right: 20px;
}

.footerTitle {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
}
.address p {
  padding-left: 25px;
  padding-right: 10px;
  display: inline-block;
}
.address p.map {
  background: url(../images/geo-alt.svg) no-repeat left 4px;
}
.address p.phone {
  background: url(../images/telephone.svg) no-repeat left 3px;
}
.address p.whatsapp {
  background: url(../images/whatsapp.svg) no-repeat left 3px;
}
.address p.mail {
  background: url(../images/envelope-at.svg) no-repeat left 4px;
}
.address a {
  text-decoration: none;
  color: var(--default-color);
}
.address a:hover,
.address a:focus {
  color: var(--app-green-color);
}

/* LegalContent */
.legalContent h2 {
  margin: 20px 0;
}
.legalContent h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.legalContent h5 {
  color: var(--app-blue-color);
  font-weight: 600;
}
.legalContent p {
  margin-bottom: 20px;
}
.legalContent a {
  color: var(--app-green-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--app-transition);
}
.legalContent a:hover,
.legalContent a:focus {
  opacity: 0.7;
}

/* VRDC Section */
.cardInfo {
  background: #287bff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  height: 350px;
  margin: 30px;
  border-radius: 20px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  box-shadow: 0 15px 0 #fff, inset 0 -15px 0 rgba(255, 255, 255, 0.24),
    0 35px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cardInfo::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -40%;
  padding: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2));
  transform: rotate(35deg);
  pointer-events: none;
  filter: blur(5px);
}

.cardBgOne {
  background: linear-gradient(to bottom, #ff2ae0, #645bf6);
}
.cardBgTwo {
  background: linear-gradient(to bottom, #ffec61, #f321d7);
}
.cardBgThree {
  background: linear-gradient(to bottom, #24ff72, #9a4eff);
}
.cardBgFour {
  background: linear-gradient(to bottom, #ff2aec, #f65b5b);
}
.cardBgFive {
  background: linear-gradient(to bottom, #2a6cff, #5bf6ba);
}
.cardBgSix {
  background: linear-gradient(to bottom, #ff512a, #5d5bf6);
}

.cardInfo .icon {
  position: relative;
  width: 140px;
  height: 120px;
  background: #f7f9fc;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1), inset 0 -8px 0 #fff;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.cardInfo .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-top-right-radius: 50px;
  box-shadow: 15px -15px 0 15px #f7f9fc;
}

.cardInfo .icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 50px;
  height: 50px;
  background: transparent;
  border-top-left-radius: 50px;
  box-shadow: -15px -15px 0 15px #f7f9fc;
}

.cardInfo .icon svg {
  width: 75px;
  height: 75px;
  color: #000000;
}

.cardInfo .content {
  position: absolute;
  width: 100%;
  padding: 30px;
  padding-top: 150px;
  text-align: center;
}

.cardInfo .content h2 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 500;
  font-size: calc(1.275rem + 0.3vw);
}

.cardInfo .content span {
  color: #fff;
  line-height: 1.5em;
  font-size: 40px;
  font-weight: 900;
}

@media (max-width: 768px) {
  .contentLayout {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  section {
    scroll-margin-top: 60px;
  }
}
@media (max-width: 992px) {
  .hero-app {
    margin-top: 30px;
  }
}
@media (max-width: 1200px) {
  .market-btn {
    margin-bottom: 10px;
  }
}

/* ScrollTop Button */
.progress-wrap {
  position: fixed;
  right: 35px;
  bottom: 35px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  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::before {
  position: absolute;
  font-weight: 900;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background-image: linear-gradient(298deg, #168dcf, #55c3ff);
  -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: 1;
}

.progress-wrap::after {
  position: absolute;
  font-weight: 900;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #1f2029;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

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

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

.progress-wrap svg.progress-circle path {
  stroke: #1f2029;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* ViewCount */
.wvc {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  color: #000;
  margin: 0 auto;
  left: calc(50% - 116px);
  bottom: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e3e3e3;
  z-index: 10;
  display: inline-block;
  text-align: center;
  width: 255px;
}
.view-count {
  font-weight: 900;
}
/* Advertisement */
.ads-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.ads-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.ads-box {
  background: transparent;
  border: none;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.ads-overlay.show .ads-box {
  transform: scale(1);
  opacity: 1;
}
.ads-box img {
  width: 800px;
  height: 560px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.ads-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
}



@media (max-width: 480px) {
/* Advertisement */
.ads-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.ads-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.ads-box {
  background: transparent;
  border: none;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.ads-overlay.show .ads-box {
  transform: scale(1);
  opacity: 1;
}
.ads-box img {
  width: 300px;
  height: 210px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.ads-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
}
}