@charset "UTF-8";
body {
  font-family: "Rubik", sans-serif;
}
body a {
  text-decoration: none;
}
body .pt-120 {
  padding-top: 110px;
}

#hero {
  padding-top: 50px;
  padding-bottom: 100px;
}
#hero h1 {
  font-size: 52px;
  padding-bottom: 40px;
}
#hero .p-lg {
  font-size: 20px;
}

.page-error {
  margin-top: 120px;
  margin-bottom: 100px;
}
.page-error__image {
  padding: 30px 0;
}

.text {
  line-height: 1.8;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: Black;
  color: white;
}
.cookies .container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.cookies .container p {
  padding: 0;
  margin: 0;
}
.cookies .container a {
  border: 1px Solid white;
  padding: 4px 20px;
  color: white;
}

.landing {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 76px;
  background-image: url(../images/bg.jpg);
  background-attachment: fixed;
}
.landing main {
  flex-grow: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.header-logo {
  max-height: 50px;
}
.header a {
  font-size: 18px;
}

.footer {
  padding-top: 30px;
  padding-bottom: 20px;
}
.footer .bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer a {
  font-size: 16px;
  color: Gray;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social {
  display: flex;
  gap: 15px;
  font-size: 24px;
}
.footer-social a {
  font-size: 24px;
}

.hidden {
  display: none;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card .card-body {
  padding: 2rem;
}
.card .card-body .bi {
  font-size: 2.5rem;
  color: #007bff;
}
.card .card-body h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.card .card-body p {
  color: #6c757d;
  font-size: 1rem;
}

.how-it-works {
  padding: 80px 0;
}
.how-it-works .steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.how-it-works .step {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 240px;
  transition: transform 0.3s ease-in-out;
}
.how-it-works .step:hover {
  transform: translateY(-5px);
}
.how-it-works .step .icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}
.how-it-works .step h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #343a40;
}
.how-it-works .step p {
  font-size: 14px;
  color: #6c757d;
}
@media (max-width: 992px) {
  .how-it-works .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.who-can-use {
  padding: 80px 0;
  text-align: center;
}
.who-can-use .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 10px;
}
.who-can-use .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.who-can-use .user-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.who-can-use .user-card:hover {
  transform: translateY(-5px);
}
.who-can-use .user-card .emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}
.who-can-use .user-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 5px;
}
.who-can-use .user-card p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

.comment-section {
  padding: 80px 0;
}
.comment-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 40px;
}
.comment-section .testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
  position: relative;
}
.comment-section .testimonial-card:hover {
  transform: translateY(-5px);
}
.comment-section .testimonial-card blockquote {
  position: relative;
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 20px;
}
.comment-section .testimonial-card blockquote .quote-icon {
  font-size: 40px;
  color: #e83e8c;
  position: absolute;
  top: -10px;
  left: -5px;
  font-weight: bold;
}
.comment-section .testimonial-card blockquote .testimonial-text {
  padding-left: 30px;
}
.comment-section .testimonial-card blockquote .testimonial-text strong {
  color: #212529;
}
.comment-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}
.comment-section .testimonial-card .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.comment-section .testimonial-card .testimonial-author h5 {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  margin: 0;
}
.comment-section .testimonial-card .testimonial-author span {
  font-size: 14px;
  color: #6c757d;
}

.faq-section {
  padding: 80px 0;
}
.faq-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 30px;
}
.faq-section .faq-list {
  max-width: 100%;
  margin: 0 auto;
}
.faq-section .faq-list .faq-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}
.faq-section .faq-list .faq-item:hover {
  transform: translateY(-3px);
}
.faq-section .faq-list .faq-item h5 {
  font-size: 18px;
  font-weight: bold;
  color: #e83e8c;
  margin-bottom: 5px;
}
.faq-section .faq-list .faq-item p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}
.faq-section .faq-footer {
  margin-top: 30px;
  font-size: 16px;
  color: #495057;
}
.faq-section .faq-footer .highlight {
  font-weight: bold;
  color: #e83e8c;
}

.about-section {
  padding: 80px 0;
}
.about-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.about-section .about-intro {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}
.about-section .about-content {
  max-width: 100%;
  margin: 0 auto;
}
.about-section .about-content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  color: #222;
}
.about-section .about-content p {
  font-size: 16px;
  color: #666;
}
.about-section .about-content .about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.about-section .about-content .about-features .feature {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}
.about-section .about-content .about-features .feature:hover {
  transform: translateY(-5px);
}
.about-section .about-content .about-features .feature h4 {
  font-size: 18px;
  color: #e83e8c;
  font-weight: bold;
  margin-bottom: 10px;
}
.about-section .about-content .about-features .feature p {
  font-size: 16px;
  color: #555;
}
.about-section .about-content .about-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.about-section .about-content .about-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.about-section .about-content .about-list li:before {
  content: "✔";
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}
.about-section .about-content .about-contact {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.security-section {
  padding: 80px 0;
}
.security-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 10px;
}
.security-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}
.security-section .security-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}
.security-section .security-steps .security-step {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 600px;
  transition: transform 0.3s ease-in-out;
}
.security-section .security-steps .security-step:hover {
  transform: translateY(-5px);
}
.security-section .security-steps .security-step h3 {
  font-size: 20px;
  font-weight: bold;
  color: #e83e8c;
  margin-bottom: 10px;
}
.security-section .security-steps .security-step p {
  font-size: 16px;
  color: #555;
}
.security-section .security-steps .security-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.security-section .security-steps .security-step ul li {
  font-size: 16px;
  color: #333;
  padding: 5px 0;
}
.security-section .contact-box {
  font-size: 18px;
  color: #333;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}
.security-section .contact-box a {
  color: #e83e8c;
  text-decoration: none;
  font-weight: bold;
}
.security-section .contact-box a:hover {
  text-decoration: underline;
}

.table-customer tr th,
.table-customer tr td {
  padding: 14px;
  background-color: transparent;
}

.breadcrumb {
  margin-bottom: 0;
}

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