@font-face {
  font-family: "Sora";
  src: url("../../src/font/Sora.ttf") format("truetype");
}
.guard {
  transform-origin: center bottom;
  animation: scale-up 1.3s ease;
  transform: scale(1);
}

@keyframes scale-up {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
/**
 * 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);
}

.home {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

.home,
.about,
.services,
.guards {
  padding: 3rem 7%;
}

@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: 3rem;
  color: rgb(255, 255, 255);
}

.title {
  font-size: 2.6rem;
  text-align: center;
}
.title::after {
  content: "";
  display: block;
  margin: 0px auto;
  height: 8px;
  width: 50px;
  border-radius: 20px;
  background: rgb(84, 193, 245);
}

.about-title {
  font-size: 2.1rem;
}
.about-title::after {
  content: "";
  display: block;
  height: 8px;
  width: 50px;
  border-radius: 20px;
  background: rgb(84, 193, 245);
}

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

.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);
}

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

.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;
}

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;
  background-color: rgb(17, 34, 64);
  padding: 0.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: 3.4rem;
}
header nav .menu {
  display: none;
}
header nav .links {
  display: flex;
  justify-content: flex-end;
  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-color: rgb(17, 34, 64);
  padding: 0.7rem 7%;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 1200px) {
  header {
    background-color: transparent;
  }
  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(20, 20, 20);
  width: 100%;
  overflow: hidden;
}
footer .wrapper {
  padding: 40px 7%;
  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 p {
  color: rgb(146, 146, 146);
}
footer .wrapper .container .social-medias {
  display: flex;
  gap: 1rem;
  align-items: center;
}
footer .wrapper .container img {
  width: auto;
  height: 60px;
  margin-bottom: 20px;
}
footer .wrapper .container .header {
  font-size: 1.3em;
  font-weight: 600;
  margin: 0px 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;
}

/*******************************************************************
============================= 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 {
  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;
}
.home .hero-images .guard {
  position: absolute;
  bottom: 0;
  right: 10rem;
}
.home .hero-images .woman-guard {
  right: 20rem;
}
.home .hero-side1 .home-desc {
  color: rgb(237, 237, 237);
}

/*******************************************************************
============================= 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%;
    background: rgb(5, 5, 5) url("src/assets/background.webp") no-repeat center left/cover;
  }
  .home .hero-images .guard {
    display: none !important;
  }
}
.about-container {
  margin-top: 50px;
  margin-bottom: 80px;
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.about-container .about-image {
  width: 60%;
  aspect-ratio: 1.9/1;
  background-color: rgb(213, 235, 250);
  border-radius: 6px;
  overflow: hidden;
  background: url("src/assets/about-image.webp") no-repeat center center/cover;
}
.about-container .about-text {
  position: absolute;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  text-align: justify;
  right: 0;
}
.about-container .box {
  padding: 15px;
  max-width: 50%;
  border-radius: 4px;
  overflow: hidden;
  background: rgb(17, 34, 64);
  color: rgb(255, 255, 255);
}
.about-container .box p {
  color: rgb(255, 255, 255);
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .about-container {
    margin-top: 50px;
    margin-bottom: 40px;
    width: 100%;
    height: auto;
    display: block;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
  }
  .about-container .about-image {
    display: none;
  }
  .about-container .about-text {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    padding: 15px;
    border-radius: 6px;
    background: #112240 url("src/assets/about-image.webp") no-repeat center center/cover;
  }
  .about-container .box {
    padding: 15px;
    max-width: 100%;
    background: rgba(17, 34, 64, 0.9098039216);
    filter: blur(0.3);
    border-radius: 4px;
  }
}
.services {
  background: rgb(20, 20, 20);
  color: rgb(255, 255, 255);
}

.carousel_container {
  max-width: 1440px;
  margin: 0 auto;
}

.carousel {
  padding: 24px;
}
.carousel h2 {
  margin: 0;
}
.carousel a {
  text-decoration: none;
  color: #fff;
}
.carousel img {
  aspect-ratio: 1/1;
  width: 215px;
  height: 215px;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  --user-drag: none;
  margin-bottom: 16px;
  border-radius: clamp(0px, (100vw - 4px - 100%) * 9999, 4px);
}
.carousel p {
  font-size: 14px;
  margin: 0;
  margin-bottom: 4px;
  color: rgb(255, 255, 255);
}
.carousel span {
  color: #a7a7a7;
  font-size: 14px;
}
.carousel .dragging a {
  pointer-events: none;
}
.carousel .carousel__wrapper {
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1180px) {
  .carousel .carousel__wrapper.has-arrows .carousel__content {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1180px) {
  .carousel .carousel__wrapper.has-arrows .carousel__arrows {
    display: flex;
  }
}
.carousel .carousel__header {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.carousel .carousel__content {
  overflow-y: hidden;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: grid;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 0;
  margin: 0;
  grid-gap: 24px;
  grid-auto-flow: column;
  list-style: none;
}
.carousel .carousel__content::-webkit-scrollbar {
  display: none;
}
.carousel .carousel__item .carousel__description {
  width: 100%;
}
.carousel .carousel__item a {
  display: flex;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  user-select: none;
  margin: 10px 0px;
  padding: 16px;
  background: #181818;
  border-radius: clamp(0px, (100vw - 4px - 100%) * 9999, 8px);
  cursor: pointer;
}
.carousel .carousel__controls {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 24px;
}
.carousel .carousel__arrow {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.carousel .carousel__arrow:before {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=");
  background-size: contain;
  filter: brightness(5);
  display: block;
  width: 18px;
  height: 12px;
  cursor: pointer;
}
.carousel .carousel__arrow.arrow-prev:before {
  transform: rotate(90deg);
}
.carousel .carousel__arrow.arrow-next:before {
  transform: rotate(-90deg);
}
.carousel .carousel__arrow.disabled::before {
  filter: brightness(2);
}

.card_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.card_container .border {
  height: 369px;
  width: 290px;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
}
.card_container .border:hover {
  border: 1px solid #fff;
}
.card_container .card {
  height: 379px;
  width: 300px;
  background: #808080;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  box-shadow: 0 70px 63px -60px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.card_container .card0 {
  background: #c9c9c9 url("src/assets/team/woman.webp") center center no-repeat;
  background-size: 300px;
}
.card_container .card0:hover {
  background: #c9c9c9 url("src/assets/team/woman.webp") left top no-repeat;
  background-size: 430px;
}
.card_container .card0:hover h3 {
  opacity: 1;
}
.card_container .card0:hover .fa {
  opacity: 1;
}
.card_container .card1 {
  background: #c9c9c9 url("src/assets/team/man.webp") center center no-repeat;
  background-size: 300px;
}
.card_container .card1:hover {
  background: #c9c9c9 url("src/assets/team/man.png") left top no-repeat;
  background-size: 480px;
}
.card_container .card1:hover h3 {
  opacity: 1;
}
.card_container .card1:hover .fa {
  opacity: 1;
}
.card_container h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgb(17, 34, 64);
  margin: 20px;
  opacity: 0;
  transition: opacity 1s;
}
.card_container .fa {
  opacity: 0;
  transition: opacity 1s;
}
.card_container .icons {
  position: absolute;
  fill: #fff;
  color: #fff;
  height: 130px;
  top: 226px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

/*******************************************************************
============================= RESPONSIVE===========================
********************************************************************/
@media (max-width: 768px) {
  .card_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
  }
}

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