@charset "UTF-8";
@font-face {
  font-family: "Sora";
  src: url("../../src/font/Sora.ttf") format("truetype");
}
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

li {
  list-style: none;
}

/*
custom scrollbar
*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(226, 226, 226);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(146, 146, 146);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(84, 193, 245);
}

@font-face {
  font-family: "Sora";
  src: url("../../src/font/Sora.ttf") format("truetype");
}
.menu-close i,
.menu i {
  color: rgb(255, 255, 255);
  font-size: 1.7rem;
}

span {
  width: fit-content;
  background: -webkit-linear-gradient(0deg, rgb(69, 16, 236), rgb(84, 193, 245));
  -webkit-background-clip: text; /* For Safari */
  -webkit-text-fill-color: transparent; /* For Safari */
  background-clip: text;
  --text-fill-color: transparent;
}

.home h1 {
  font-size: 3.4em;
  color: rgb(255, 255, 255);
}

.title {
  font-size: 2.6rem;
}

p {
  color: rgb(146, 146, 146);
}

.top-text p {
  font-size: 1.1em;
  font-weight: normal;
}

/**
 * Basic styles for links
 */
a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.3s linear;
}
a:hover {
  color: rgb(84, 193, 245);
}

.activepage {
  background: -webkit-linear-gradient(0deg, rgb(69, 16, 236), rgb(84, 193, 245));
  -webkit-background-clip: text; /* For Safari */
  -webkit-text-fill-color: transparent; /* For Safari */
  background-clip: text;
  --text-fill-color: transparent;
  transition: 0.3s linear;
}

.registerbtn:hover {
  color: rgb(255, 255, 255);
}

.timeline span {
  font-size: 3rem;
  font-weight: bold;
}
.timeline p {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

h2 {
  margin-block-start: 0.2em;
  margin-block-end: 0.2em;
}

.heading {
  text-align: center;
}

.star {
  font-size: 13px;
}

.name {
  font-size: 0.8em;
  font-weight: bold;
  color: rgb(20, 20, 20);
  margin-block-start: 0em;
  margin-block-end: 0.1em;
}

.job-title {
  font-size: 0.6em;
  margin-block-start: 0.1em;
  margin-block-end: 0em;
  font-weight: bold;
}

.testimonial-text {
  height: 100%;
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
}

.download-text .title {
  max-width: 50%;
  margin-block-start: 0em;
  margin-block-end: 0em;
}
.download-text p {
  max-width: 80%;
  margin-block-start: 1.4em;
  margin-block-end: 2em;
}

footer {
  font-size: 1rem;
}
footer .base p {
  color: rgb(146, 146, 146);
  display: inline;
}
footer .base a {
  white-space: nowrap;
  color: #E3DFE3;
  transition: 0.3S ease;
}
footer .base a:hover {
  color: rgb(146, 146, 146);
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .download-text .title,
  .download-text p {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 425px) {
  .home h1 {
    font-size: 2.6rem;
  }
  .title {
    font-size: 2.1rem;
    text-align: center;
  }
  .financeside h2 {
    text-align: center;
  }
}
/**
 * Basic typography style for copy text
 */
body {
  color: rgb(20, 20, 20);
  font: normal 110%/1.4 "Sora", "Arial", sans-serif;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1180px; /* 1 */
  margin-left: auto; /* 2 */
  margin-right: auto; /* 2 */
  padding-left: 20px; /* 3 */
  padding-right: 20px; /* 3 */
  width: 100%; /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  width: 100vw;
  padding: 1.5rem 7%;
  transition: 0.3s linear;
  z-index: 99;
}
header nav {
  display: grid;
  grid-template-columns: 21% 1fr;
}
header nav .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .logo img {
  height: 2.4rem;
}
header nav .menu {
  display: none;
}
header nav .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12%;
}
header nav .links .menu-close {
  width: 100%;
  text-align: end;
  display: none;
}
header nav .links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

header.active {
  background: rgb(20, 20, 20);
  padding: 0.7rem 7%;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 1200px) {
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header nav .menu {
    display: block;
  }
  header nav .links {
    padding: 2rem 1.5rem;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(20, 20, 20);
    height: 100svh;
    height: 100dvh;
    height: 100vh;
    top: 0;
    right: 0;
    gap: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.5s;
  }
  header nav .links .menu-close {
    display: block;
  }
  header nav .links ul {
    width: 100%;
    padding-inline-start: 0px;
    gap: 2rem 0;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    align-content: center;
  }
  header nav .links.active {
    opacity: 1;
    transform: translateX(0);
  }
}
footer {
  margin-top: 2rem;
  background: rgb(5, 5, 5) url("../../src/assets/curvy-lines.webp") no-repeat center center/cover;
  width: 100%;
  overflow: hidden;
}
footer .wrapper {
  padding: 70px 7% 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5%;
}
footer .wrapper a {
  display: block;
  color: rgb(146, 146, 146);
  transition: 0.3s ease;
}
footer .wrapper a:hover {
  color: rgb(237, 237, 237);
}
footer .wrapper .container .social-medias {
  display: flex;
  gap: 1rem;
  align-items: center;
}
footer .wrapper .container img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}
footer .wrapper .container .header {
  font-size: 1.3em;
  font-weight: 600;
  margin: 30px 0px 45px;
  color: rgb(237, 237, 237);
}
footer .wrapper .container .info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 1rem;
  color: rgb(146, 146, 146);
}
footer .wrapper .container .info i {
  font-size: 16px;
  margin-right: 1rem;
}
footer .base {
  border-top: rgb(146, 146, 146) 1px solid;
  padding: 20px 7%;
  margin-top: 2rem;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  footer {
    display: block;
  }
  footer .wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
  footer .wrapper .container .header {
    margin: 20px 0px 10px;
  }
}
@font-face {
  font-family: "Sora";
  src: url("../../src/font/Sora.ttf") format("truetype");
}
button {
  color: rgb(255, 255, 255);
  border: transparent;
  outline: transparent;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  padding: 12px 18px;
  background: linear-gradient(to right, rgb(69, 16, 236), rgb(84, 193, 245));
}

.registerbtn {
  color: rgb(255, 255, 255);
  border: transparent;
  outline: transparent;
  border-radius: 30px;
  cursor: pointer;
  padding: 8px 20px;
  background: linear-gradient(to right, rgb(69, 16, 236), rgb(84, 193, 245));
  white-space: nowrap;
}

.loginbtn {
  white-space: nowrap;
}

@font-face {
  font-family: "Sora";
  src: url("../../src/font/Sora.ttf") format("truetype");
}
.star {
  color: rgb(207, 207, 207);
}

.checked {
  color: rgb(84, 193, 245);
}

@font-face {
  font-family: "Sora";
  src: url("../../src/font/Sora.ttf") format("truetype");
}
.circle-wrap {
  width: 150px;
  height: 150px;
  background: #ffffff;
  border-radius: 50%;
  transform: scale(40%);
}

.circle-wrap .circle .mask,
.circle-wrap .circle .fill {
  width: 150px;
  height: 150px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask {
  clip: rect(0px, 150px, 150px, 75px);
}

.circle-wrap .percent {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #ffffff;
  line-height: 120px;
  text-align: center;
  margin-top: 9px;
  margin-left: 9px;
  position: absolute;
  z-index: 100;
  font-weight: bold;
  font-size: 0.65em;
  color: rgb(20, 20, 20);
}

/* color animation */
/* 3rd progress bar */
.mask .fill {
  clip: rect(0px, 75px, 150px, 0px);
  background-color: rgb(69, 16, 236);
}

.mask.full,
.circle .fill {
  animation: fill ease-in-out 5s;
  transform: rotate(135deg);
}

@keyframes fill {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
.percent::after {
  font-size: 4em;
  content: counter(count) "%";
  animation: counter 5s linear forwards;
  counter-reset: count 0;
}

@keyframes counter {
  0% {
    counter-increment: count 0;
  }
  5% {
    counter-increment: count 5;
  }
  10% {
    counter-increment: count 10;
  }
  15% {
    counter-increment: count 15;
  }
  20% {
    counter-increment: count 20;
  }
  25% {
    counter-increment: count 25;
  }
  30% {
    counter-increment: count 30;
  }
  35% {
    counter-increment: count 35;
  }
  40% {
    counter-increment: count 40;
  }
  45% {
    counter-increment: count 45;
  }
  50% {
    counter-increment: count 50;
  }
  55% {
    counter-increment: count 55;
  }
  60% {
    counter-increment: count 60;
  }
  65% {
    counter-increment: count 65;
  }
  70% {
    counter-increment: count 70;
  }
  100% {
    counter-increment: count 75;
  }
}
.home {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 2rem 7%;
  display: grid;
  align-items: center;
  grid-template-columns: 50% 1fr;
  overflow: hidden;
  background: rgb(5, 5, 5) url("../../src/assets/background.webp") no-repeat center center/cover;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .home {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 4%;
  }
}
.payment {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background-color: rgb(255, 255, 255);
  padding: 2rem 7%;
}
.payment .top-text {
  display: grid;
  align-items: center;
  grid-template-columns: 50% 1fr;
  padding: 4rem 0 5rem;
}
.payment .features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  gap: 3rem;
}
.payment .features .displayphone {
  width: 18rem;
}
.payment .features .features-text {
  max-width: 50%;
}
.payment .features .features-text .timeline li .item {
  position: relative;
  min-height: 11rem;
  padding: 0 20px 20px 3rem;
  margin-left: 20px;
  border-left: 1px solid rgb(69, 16, 236);
}
.payment .features .features-text .timeline li .item .number {
  position: absolute;
  top: 0px;
  padding-top: 10px;
  left: -2.5rem;
  text-align: center;
  background: rgb(255, 255, 255);
}
.payment .features .features-text .timeline li:last-child .item {
  border-left: none;
  min-height: fit-content;
}
.payment .about-pay-title {
  margin-block-start: 8rem;
}
.payment .finance1 .financeside,
.payment .finance2 .financeside {
  width: 40%;
}
.payment .finance1 {
  gap: 7rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.payment .finance1 .side2 .stats-container {
  width: 366px;
  height: 420px;
  background: linear-gradient(rgb(244, 243, 254), rgb(241, 250, 255));
  opacity: 1;
  position: relative;
  border-radius: 18px;
}
.payment .finance1 .side2 .stats-container .totalspending {
  width: 376px;
  height: 90px;
  background: rgb(255, 255, 255);
  opacity: 1;
  position: absolute;
  top: 30px;
  left: 40px;
  border-radius: 12px;
  box-shadow: 11px 11px 19px rgba(0, 0, 0, 0.1000000015);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s linear;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment .finance1 .side2 .stats-container .totalspending:hover {
  left: 20px;
}
.payment .finance1 .side2 .stats-container .totalspending img {
  height: 75px;
}
.payment .finance1 .side2 .stats-container .expenses {
  width: 338px;
  object-fit: cover;
  height: 255px;
  background: transparent;
  opacity: 1;
  position: absolute;
  top: 145px;
  left: -39px;
  border-radius: 12px;
  box-shadow: -11px 11px 19px rgba(0, 0, 0, 0.1000000015);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s linear;
}
.payment .finance1 .side2 .stats-container .expenses:hover {
  left: -20px;
}
.payment .finance1 .side2 .stats-container .expenses img {
  height: 100%;
}
.payment .finance2 {
  margin-top: 4rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row-reverse;
}
.payment .finance2 .side1 ul li {
  color: rgb(146, 146, 146);
  position: relative;
  margin-block-end: 2rem;
}
.payment .finance2 .side1 ul li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  content: "✓";
  font-size: 9px;
  position: absolute;
  color: rgb(255, 255, 255);
  height: 15px;
  width: 15px;
  left: -25px;
  top: 3px;
  background: linear-gradient(to right, rgb(69, 16, 236), rgb(84, 193, 245));
  border-radius: 50%;
}
.payment .finance2 .side2 .stats-container {
  width: 350px;
  height: 360px;
  background: linear-gradient(rgb(244, 243, 254), rgb(241, 250, 255));
  opacity: 1;
  position: relative;
  border-radius: 18px;
}
.payment .finance2 .side2 .stats-container .spacer {
  width: 340px;
  height: 10px;
  top: 0px;
  right: 0px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: rgb(255, 255, 255);
}
.payment .finance2 .side2 .stats-container .totalexpenses {
  width: 340px;
  height: 80px;
  background: rgb(255, 255, 255);
  opacity: 1;
  position: absolute;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1000000015);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.payment .finance2 .side2 .stats-container .totalexpenses:hover {
  left: 20px;
}
.payment .finance2 .side2 .stats-container .totalexpenses img {
  height: 85px;
}
.payment .finance2 .side2 .stats-container .expense1 {
  top: 30px;
  left: 40px;
}
.payment .finance2 .side2 .stats-container .expense2 {
  top: 140px;
  left: 60px;
}
.payment .finance2 .side2 .stats-container .expense3 {
  top: 250px;
  left: 80px;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .payment {
    padding: 2rem 4%;
  }
  .payment .top-text {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 4rem 0 5rem;
  }
  .payment .features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .payment .features .displayphone {
    width: 16rem;
  }
  .payment .features .features-text {
    max-width: 100%;
  }
  .payment .about-pay-title {
    margin-block-start: 2rem;
    margin-block-end: 0rem;
  }
  .payment .finance1,
  .payment .finance2 {
    display: block;
  }
  .payment .finance1 .financeside,
  .payment .finance2 .financeside {
    width: 100%;
  }
  .payment .finance1 .side2,
  .payment .finance2 .side2 {
    margin: 2rem auto;
    width: fit-content !important;
  }
  .payment .finance1 {
    gap: 0rem;
  }
  .finance2 .side2 .stats-container .spacer {
    right: 0px !important;
  }
  .finance2 .side2 .stats-container .expense1 {
    top: 30px;
    left: 30px !important;
  }
  .finance2 .side2 .stats-container .expense2 {
    top: 140px;
    left: 45px !important;
  }
  .finance2 .side2 .stats-container .expense3 {
    top: 250px;
    left: 60px !important;
  }
}
@media (max-width: 425px) {
  .payment .features .displayphone {
    width: 70%;
  }
  .payment .finance1 .side2,
  .payment .finance2 .side2 {
    display: block;
    margin: 1rem 0;
  }
  .payment .finance2 {
    margin-top: 2rem;
  }
  .finance1 .scaleVector,
  .finance1 .scaleVector2,
  .finance2 .scaleVector,
  .finance2 .scaleVector2 {
    transform-origin: top left;
  }
}
.card {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background-color: rgb(255, 255, 255);
  padding: 2rem 3%;
  padding-top: 8rem;
}
.card .card-info-container {
  border-radius: 2rem;
  background: rgb(20, 20, 20);
  width: 100%;
  height: 100%;
  color: rgb(255, 255, 255);
  padding: 2rem 4%;
}
.card .card-info-container .features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.card .card-info-container .features .cards {
  height: 100%;
  width: 100%;
  position: relative;
}
.card .card-info-container .features .cards .displaycard {
  width: 20rem;
  transform: rotateZ(70deg);
}
.card .card-info-container .features .cards .obsolutecard {
  position: absolute;
  left: 181px;
  top: -135px;
  transform: rotateZ(100deg);
}
.card .card-info-container .features .features-text {
  max-width: 50%;
}
.card .card-info-container .features .features-text .timeline li .item {
  position: relative;
  min-height: 9rem;
  padding: 0 20px 20px 3rem;
  border-left: 1px dashed rgb(146, 146, 146);
}
.card .card-info-container .features .features-text .timeline li .item .dot {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  padding-top: 10px;
  left: -9px;
  text-align: center;
  background: rgb(146, 146, 146);
}
.card .card-info-container .features .features-text .timeline li .item .content {
  transform: translateY(-1rem);
}
.card .card-info-container .features .features-text .timeline li:last-child .item {
  border-left: none;
  min-height: fit-content;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .card {
    padding-top: 5rem;
  }
  .card .card-info-container {
    padding: 2%;
  }
  .card .card-info-container .features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .card .card-info-container .features .cards {
    margin-top: 3rem;
    padding-top: 2rem;
    max-height: 17rem;
  }
  .card .card-info-container .features .cards .displaycard {
    width: 60%;
    transform: rotateZ(60deg) translateY(-20%);
  }
  .card .card-info-container .features .cards .obsolutecard {
    left: 50%;
    top: 0px;
    transform: rotateZ(110deg) translateY(30%);
  }
  .card .card-info-container .features .features-text {
    max-width: 100%;
  }
  .card .card-info-container .features .features-text .timeline li .item {
    position: relative;
    min-height: 9rem;
    padding: 0 0px 20px 1rem;
    border-left: 1px dashed rgb(146, 146, 146);
  }
  .card .card-info-container .features .features-text ul {
    padding-inline-start: 25px;
  }
}
@media (max-width: 425px) {
  .card .card-info-container .features .cards {
    margin-top: 0rem;
    padding-top: 0rem;
    max-height: 6rem;
  }
}
.about {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background-color: rgb(255, 255, 255);
  padding: 2rem 7%;
  padding-top: 7rem;
}
.about .about-title {
  max-width: 36rem;
  margin: 0 auto;
}
.about .testimonials-section {
  width: 100%;
  min-height: 33rem;
  margin-top: 3.5rem;
  background: url("../../src/assets/map.webp") no-repeat center center/contain;
  position: relative;
  overflow: hidden;
}
.about .testimonials-section .icon .imgBox {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0rem;
  left: 0rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 0 0 3px rgb(146, 146, 146);
  transition: 0.5s;
  cursor: pointer;
}
.about .testimonials-section .icon .imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: 0.5s;
}
.about .testimonials-section .icon .imgBox:hover {
  box-shadow: 0 0 0 3px rgb(84, 193, 245);
}
.about .testimonials-section .icon .imgBox:hover img {
  filter: grayscale(0);
}
.about .testimonials-section .icon .imgBox.active {
  box-shadow: 0 0 0 3px rgb(255, 255, 255), 0 0 0 6px rgb(84, 193, 245);
  transform: scale(110%);
}
.about .testimonials-section .icon .imgBox.active img {
  filter: grayscale(0);
}
.about .testimonials-section .icon #imgBox-mmako {
  top: 10%;
  left: 12%;
}
.about .testimonials-section .icon #imgBox-dory {
  top: 15%;
  left: 70%;
}
.about .testimonials-section .icon #imgBox-molemo {
  top: 76%;
  left: 83%;
  transform: scale(70%);
}
.about .testimonials-section .icon #imgBox-lejone {
  top: 70%;
  left: 27%;
  transform: scale(60%);
}
.about .testimonials-section .testimonial-container {
  background-color: aqua;
  position: absolute;
  top: 40%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translate(-60%, -50%) scale(115%);
}
.about .testimonials-section .testimonial-container .testimonialWrapper {
  position: absolute;
  width: fit-content;
  width: 289px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .background-profile {
  position: relative;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .background-profile .big-circle {
  width: 243px;
  height: 243px;
  background: rgb(237, 237, 237);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .background-profile .big-circle .mid-circle {
  width: 193px;
  height: 193px;
  background: rgb(237, 237, 237);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(207, 207, 207);
}
.about .testimonials-section .testimonial-container .testimonialWrapper .background-profile .big-circle .mid-circle .sm-circle {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .background-profile .big-circle .mid-circle .sm-circle img {
  width: 100%;
  height: 100%;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .textbox {
  position: absolute;
  top: 200px;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .textbox .text-background {
  width: 289px;
  height: 134px;
  background: rgb(255, 255, 255);
  position: relative;
  padding: 1rem;
  border-radius: 18px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.about .testimonials-section .testimonial-container .testimonialWrapper .textbox .text-background .names-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .testimonials-section .testimonial-container .testimonialWrapper .textbox .text-background .background-wick {
  width: 26px;
  height: 26px;
  background: rgb(255, 255, 255);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: rotate(-45deg) translateY(-50%);
  overflow: hidden;
  z-index: 9;
}
.about .testimonials-section .testimonial-container .testimonialWrapper.active {
  opacity: 1;
  transform: scale(1);
}
.about .download-app-section {
  margin-top: 6rem;
  min-height: 30rem;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.about .download-app-section .displayphone {
  position: absolute;
  width: 18rem;
  top: 0;
  left: 8rem;
}
.about .download-app-section .download-app {
  border-radius: 2rem;
  background: rgb(20, 20, 20);
  width: 100%;
  height: 100%;
  min-height: 25rem;
  color: rgb(255, 255, 255);
  padding: 2rem 4%;
  display: flex;
  justify-content: flex-end;
}
.about .download-app-section .download-app .download-text {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about .download-app-section .download-app .download-text .download-links {
  display: flex;
  gap: 1.6rem;
}
.about .download-app-section .download-app .download-text .download-links img {
  border-radius: 0.7rem;
  height: 3.5rem;
  border: 2px solid rgb(255, 255, 255);
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .about {
    padding: 2rem 4%;
    padding-top: 4rem;
  }
  .about .testimonials-section {
    min-height: 33rem;
    background: url("../../src/assets/map.webp") no-repeat center center/150%;
  }
  .about .testimonials-section .icon #imgBox-mmako {
    top: 10%;
    left: 12%;
  }
  .about .testimonials-section .icon #imgBox-dory {
    top: 10%;
    left: 80%;
  }
  .about .testimonials-section .icon #imgBox-molemo {
    top: 76%;
    left: 83%;
    transform: scale(70%);
  }
  .about .testimonials-section .icon #imgBox-lejone {
    top: 85%;
    left: 10%;
    transform: scale(60%);
  }
  .about .download-app-section {
    margin-top: 6rem;
    min-height: 30rem;
    border-radius: 2rem;
    background: rgb(20, 20, 20);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .about .download-app-section .displayphone {
    position: relative;
    width: 70%;
    top: 0;
    margin: 2rem auto;
    left: 0;
  }
  .about .download-app-section .download-app {
    width: 100%;
    height: 100%;
    min-height: 25rem;
  }
  .about .download-app-section .download-app .download-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about .download-app-section .download-app .download-text .download-links {
    display: block;
    width: 100%;
  }
  .about .download-app-section .download-app .download-text .download-links img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    height: 3.5rem;
    width: auto;
    border: 2px solid rgb(255, 255, 255);
    margin-bottom: 1rem;
  }
}
@media (max-width: 425px) {
  .about .about-title {
    max-width: 100%;
  }
  .about .testimonials-section {
    min-height: 33rem;
    background: url("../../src/assets/map.webp") no-repeat center center/300%;
  }
  .about .testimonials-section .icon #imgBox-mmako {
    top: 10%;
    left: 12%;
  }
  .about .testimonials-section .icon #imgBox-dory {
    top: 10%;
    left: 75%;
  }
  .about .testimonials-section .icon #imgBox-molemo {
    top: 76%;
    left: 83%;
    transform: scale(70%);
  }
  .about .testimonials-section .icon #imgBox-lejone {
    top: 80%;
    left: 10%;
    transform: scale(60%);
  }
  .about .testimonials-section .testimonial-container .testimonialWrapper.active {
    opacity: 1;
    transform: scale(0.8);
  }
}

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